/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../themes/pinxin/assets_new/vendor/owlcarousel2.3.4/dist/assets/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

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

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

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

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

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

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

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

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

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

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.figure {
  display: inline-block;
}

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

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

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

a > code {
  color: inherit;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

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

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

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

.col-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 {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

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

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

.table-bordered {
  border: 1px solid #dee2e6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

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

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

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

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

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

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

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

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

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

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

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

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

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

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

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

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

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

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

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

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

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

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

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

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

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

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

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

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

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

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

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

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

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

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

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

.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

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

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

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

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

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

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

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

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

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

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

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

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

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

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

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

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

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

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

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

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

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

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

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

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

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

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

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

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

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

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

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

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

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

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

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success: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: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

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

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

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

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

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

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

.fade {
  transition: opacity 0.15s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

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

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

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

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

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

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

.input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  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:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

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

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

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

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

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

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

@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;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

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

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

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

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

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

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

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

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

.tab-content > .active {
  display: block;
}

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

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  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: 50% / 100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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 {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

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

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

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

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

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

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

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

.card-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;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

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

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

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

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

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

@media (min-width: 576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    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 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

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

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

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

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

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

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

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

.breadcrumb-item.active {
  color: #6c757d;
}

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

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

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

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

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

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

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

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

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

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

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

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

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

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

.badge:empty {
  display: none;
}

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

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

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-heading {
  color: inherit;
}

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

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

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

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

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

.alert-primary .alert-link {
  color: #002752;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

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

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

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

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

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

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

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

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

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

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

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

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

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

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

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

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

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

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

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

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

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

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

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

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

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

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

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

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

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.toast {
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

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

.toast.showing {
  opacity: 1;
}

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

.toast.hide {
  display: none;
}

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

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

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

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

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

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

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

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

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

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

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

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

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

.modal-footer > * {
  margin: 0.25rem;
}

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

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

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

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

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

.tooltip.show {
  opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

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

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  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%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-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 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

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

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  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: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

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

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

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

.carousel-indicators .active {
  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;
}

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

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

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
  animation: .75s linear infinite spinner-border;
}

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

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

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

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: .75s linear infinite spinner-grow;
  animation: .75s linear infinite spinner-grow;
}

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

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

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

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

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

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

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

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

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

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

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

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

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

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

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

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

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.border-primary {
  border-color: #007bff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

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

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

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

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*# sourceMappingURL=bootstrap.css.map */

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../themes/pinxin/assets_new/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../themes/pinxin/assets_new/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../themes/pinxin/assets_new/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../themes/pinxin/assets_new/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../themes/pinxin/assets_new/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../themes/pinxin/assets_new/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -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{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}






/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

h1 {
    margin-top: 0px;
    margin-bottom: 18px;
    font-family: Archivo, sans-serif;
    color: #1f1b1a;
    font-size: 57px;
    line-height: 1.12em;
    font-weight: 700;
}

h2 {
    margin-top: 0px;
    margin-bottom: 18px;
    font-family: Archivo, sans-serif;
    color: #1f1b1a;
    font-size: 44px;
    line-height: 1.12em;
    font-weight: 700;
}

h3 {
    margin-top: 0px;
    margin-bottom: 18px;
    font-family: Archivo, sans-serif;
    color: #1f1b1a;
    font-size: 36px;
    line-height: 1.1em;
    font-weight: 700;
}

h4 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-family: Archivo, sans-serif;
    color: #1f1b1a;
    font-size: 30px;
    line-height: 1.1em;
    font-weight: 700;
}

h5 {
    margin-top: 0px;
    margin-bottom: 12px;
    font-family: Archivo, sans-serif;
    color: #1f1b1a;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 700;
}

h6 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: Archivo, sans-serif;
    color: #1f1b1a;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 700;
}
@font-face {
  font-family: 'webflow-icons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class^="w-icon-"],
[class*=" w-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webflow-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.w-icon-slider-right:before {
  content: "\e600";
}
.w-icon-slider-left:before {
  content: "\e601";
}
.w-icon-nav-menu:before {
  content: "\e602";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\e603";
}
.w-icon-file-upload-remove:before {
  content: "\e900";
}
.w-icon-file-upload-icon:before {
  content: "\e903";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.2em;
  line-height: 20px;
  color: #333;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
html.w-mod-touch * {
  background-attachment: scroll !important;
}
.w-block {
  display: block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-clearfix:after {
  clear: both;
}
.w-hidden {
  display: none;
}
.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
input.w-button {
  -webkit-appearance: button;
}
html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
.w-webflow-badge,
.w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1.0;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1.0 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}
figure {
  margin: 0;
  margin-bottom: 10px;
}
figcaption {
  margin-top: 5px;
  text-align: center;
}
ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}
.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.w-embed:before,
.w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-embed:after {
  clear: both;
}
.w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.w-video iframe,
.w-video object,
.w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
button,
html input[type="button"],
input[type="reset"] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.w-form {
  margin: 0 0 15px;
}
.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}
.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999;
}
.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}
.w-input:focus,
.w-select:focus {
  border-color: #3898EC;
  outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.w-input,
textarea.w-select {
  height: auto;
}
.w-select {
  background-color: #f3f3f3;
}
.w-select[multiple] {
  height: auto;
}
.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.w-radio:before,
.w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-radio:after {
  clear: both;
}
.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
.w-radio-input {
  margin-top: 3px;
}
.w-file-upload {
  display: block;
  margin-bottom: 10px;
}
.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}
.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  display: inline-block;
  color: #333333;
}
.w-file-upload-error {
  display: block;
  margin-top: 10px;
}
.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}
.w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}
.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}
.w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}
.w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}
.w-icon-file-upload-uploading {
  height: 20px;
}
.w-container {
  margin-left: 10px;
  max-width: 940px;
}
.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-container:after {
  clear: both;
}
.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.w-row:before,
.w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-row:after {
  clear: both;
}
.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.w-col-1 {
  width: 8.33333333%;
}
.w-col-2 {
  width: 16.66666667%;
}
.w-col-3 {
  width: 25%;
}
.w-col-4 {
  width: 33.33333333%;
}
.w-col-5 {
  width: 41.66666667%;
}
.w-col-6 {
  width: 50%;
}
.w-col-7 {
  width: 58.33333333%;
}
.w-col-8 {
  width: 66.66666667%;
}
.w-col-9 {
  width: 75%;
}
.w-col-10 {
  width: 83.33333333%;
}
.w-col-11 {
  width: 91.66666667%;
}
.w-col-12 {
  width: 100%;
}
.w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333333%;
  }
  .w-col-medium-2 {
    width: 16.66666667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.33333333%;
  }
  .w-col-medium-5 {
    width: 41.66666667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.33333333%;
  }
  .w-col-medium-8 {
    width: 66.66666667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.33333333%;
  }
  .w-col-medium-11 {
    width: 91.66666667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333333%;
  }
  .w-col-small-2 {
    width: 16.66666667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.33333333%;
  }
  .w-col-small-5 {
    width: 41.66666667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.33333333%;
  }
  .w-col-small-8 {
    width: 66.66666667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.33333333%;
  }
  .w-col-small-11 {
    width: 91.66666667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
}
.w-widget {
  position: relative;
}
.w-widget-map {
  width: 100%;
  height: 400px;
}
.w-widget-map label {
  width: auto;
  display: inline;
}
.w-widget-map img {
  max-width: inherit;
}
.w-widget-map .gm-style-iw {
  text-align: center;
}
.w-widget-map .gm-style-iw > button {
  display: none !important;
}
.w-widget-twitter {
  overflow: hidden;
}
.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}
.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}
.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}
.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}
.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}
.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}
.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.w-widget-gplus {
  overflow: hidden;
}
.w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-nav.w-round > div {
  border-radius: 100%;
}
.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
  color: #fff;
}
.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.w-slider-dot.w-active {
  background-color: #fff;
}
.w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.w-slider-dot:focus.w-active {
  box-shadow: none;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
  position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}
.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.w-slider-force-show {
  display: block !important;
}
.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.w-dropdown-toggle:focus {
  outline: 0;
}
.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.w-dropdown-list.w--open {
  display: block;
}
.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.w-dropdown-link.w--current {
  color: #0082f3;
}
.w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  /* 2 */
}
/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.w-lightbox-view:before {
  content: "";
  height: 100vh;
}
/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}
.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
  display: block;
  float: none;
  /* 1 */
  max-width: 100vw;
  max-height: 100vh;
}
.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}
.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}
/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
}
/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  /* 2 */
}
.w-lightbox-active {
  opacity: .3;
}
.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin .8s infinite linear;
  animation: spin .8s infinite linear;
}
.w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}
.w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }
  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: .5;
  }
  .w-lightbox-close {
    opacity: .8;
  }
  .w-lightbox-control:hover {
    opacity: 1;
  }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}
.w-richtext:before,
.w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-richtext:after {
  clear: both;
}
.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}
.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
  outline: 2px solid #2895f7;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}
.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
  content: '';
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.w-richtext figure {
  position: relative;
  max-width: 60%;
}
.w-richtext figure > div:before {
  cursor: default!important;
}
.w-richtext figure img {
  width: 100%;
}
.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.w-richtext figure div {
  /* fix incorrectly sized selection border in the data manager */
  font-size: 0px;
  color: transparent;
}
.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
  display: table;
}
.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}
.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}
.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}
.w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}
.w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  /* padding-bottom is used for aspect ratios in video figures
      we want the div to inherit that so hover/selection borders in the designer-canvas
      fit right*/
  padding-bottom: inherit;
}
.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}
.w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}
.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.w-nav:before,
.w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-nav:after {
  clear: both;
}
.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.w-nav-link.w--current {
  color: #0082f3;
}
.w-nav-menu {
  position: relative;
  float: right;
}
[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.w--nav-link-open {
  display: block;
  position: relative;
}
.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}
.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}
.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.w-nav-button:focus {
  outline: 0;
}
.w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}
.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}
.w-nav[data-collapse="all"] .w-nav-button {
  display: block;
}
.w--nav-dropdown-open {
  display: block;
}
.w--nav-dropdown-toggle-open {
  display: block;
}
.w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}
.w-tabs {
  position: relative;
}
.w-tabs:before,
.w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-tabs:after {
  clear: both;
}
.w-tab-menu {
  position: relative;
}
.w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}
.w-tab-link.w--current {
  background-color: #C8C8C8;
}
.w-tab-link:focus {
  outline: 0;
}
.w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.w-tab-pane {
  position: relative;
  display: none;
}
.w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}
.w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}
.w-dyn-hide {
  display: none !important;
}
.w-dyn-bind-empty {
  display: none !important;
}
.w-condition-invisible {
  display: none !important;
}

.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.w-commerce-commerceaddtocartform {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.w-commerce-commerceaddtocartoptionpill {
  margin-right: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #000;
  border-bottom-color: #000;
  border-left-color: #000;
  border-right-color: #000;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  color: #000;
  background-color: #fff;
  cursor: pointer;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}
OO
.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  background-color: #e6e6e6;
  border-top-color: #e6e6e6;
  border-bottom-color: #e6e6e6;
  border-left-color: #e6e6e6;
  border-right-color: #e6e6e6;
  cursor: not-allowed;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 10px;
  padding-top: 8px;
  padding-right: 6px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commerceaddtocartquantityinput::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  background-color: #3898ec;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  background-color: #e6e6e6;
  border-top-color: #e6e6e6;
  border-bottom-color: #e6e6e6;
  border-left-color: #e6e6e6;
  border-right-color: #e6e6e6;
  cursor: not-allowed;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  background-color: #3898ec;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 10px;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  background-color: #e6e6e6;
  border-top-color: #e6e6e6;
  border-bottom-color: #e6e6e6;
  border-left-color: #e6e6e6;
  border-right-color: #e6e6e6;
  cursor: not-allowed;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #ddd;
}

.w-commerce-commerceaddtocarterror {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #ffdede;
}

.w-commerce-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  background-color: #3898ec;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecartopenlinkcount {
  display: inline-block;
  height: 18px;
  min-width: 18px;
  margin-left: 8px;
  padding-right: 6px;
  padding-left: 6px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  background-color: #fff;
  color: #3898ec;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
}

.w-commerce-commercecartcontainerwrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  position: absolute;
  top: 100%;
  left: 0px;
  right: auto;
  bottom: auto;
  background-color: transparent;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  position: absolute;
  left: auto;
  top: 100%;
  right: 0px;
  bottom: auto;
  background-color: transparent;
}

.w-commerce-commercecartcontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 480px;
  min-width: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto;
  background-color: #fff;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.25);
}

.w-commerce-commercecartheader {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e6e6e6;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.w-commerce-commercecartheading {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.w-commerce-commercecartcloselink {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartformwrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}

.w-commerce-commercecartform {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}

.w-commerce-commercecartlist {
  overflow: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
  -webkit-overflow-scrolling: touch;
}

.w-commerce-commercecartitem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecartiteminfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
  margin-left: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}

.w-commerce-commercecartproductname {
  font-weight: 700;
}

.w-commerce-commercecartoptionlist {
  text-decoration: none;
  padding-left: 0px;
  margin-bottom: 0px;
  list-style-type: none;
}

.w-commerce-commercecartquantity {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 10px;
  padding-top: 8px;
  padding-right: 6px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecartquantity::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecartquantity::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecartfooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e6e6e6;
}

.w-commerce-commercecartlineitem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.w-commerce-commercecartordervalue {
  font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
  background-color: #000;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 8px;
  height: 38px;
  min-height: 30px;
}

.w-commerce-commercecartapplepayicon {
  width: 100%;
  height: 50%;
  min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
  background-color: #000;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 8px;
  height: 38px;
}

.w-commerce-commercequickcheckoutgoogleicon {
  display: block;
  margin-right: 8px;
}

.w-commerce-commercequickcheckoutmicrosofticon {
  display: block;
  margin-right: 8px;
}

.w-commerce-commercecartcheckoutbutton {
  background-color: #3898ec;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
}

.w-commerce-commercecartemptystate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}

.w-commerce-commercecarterrorstate {
  margin-top: 0px;
  margin-right: 24px;
  margin-bottom: 24px;
  margin-left: 24px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  background-color: #ffdede;
}

.w-commerce-commercecheckoutformcontainer {
  width: 100%;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #f5f5f5;
}

.w-commerce-commercelayoutmain {
  -webkit-flex-basis: 800px;
  -ms-flex-preferred-size: 800px;
  flex-basis: 800px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 20px;
  padding-left: 20px;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e6e6e6;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e6e6e6;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e6e6e6;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #e6e6e6;
  background-color: #fff;
}

.w-commerce-commercecheckoutblockcontent {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e6e6e6;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e6e6e6;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #e6e6e6;
  background-color: #fff;
}

.w-commerce-commercecheckoutlabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutemailinput::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingfullname::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingstreetaddress::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -8px;
  margin-left: -8px;
}

.w-commerce-commercecheckoutcolumn {
  padding-right: 8px;
  padding-left: 8px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}

.w-commerce-commercecheckoutshippingcity {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingcity::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingstateprovince::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingzippostalcode::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutshippingcountryselector::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left-color: #e6e6e6;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-color: #e6e6e6;
  border-right-width: 1px;
  border-right-style: solid;
}

.w-commerce-commercecheckoutshippingmethoditem {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  padding-left: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom-color: #e6e6e6;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin-bottom: 0px;
  background-color: #fff;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  margin-left: 12px;
  margin-right: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #e6e6e6;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e6e6e6;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e6e6e6;
  background-color: #fff;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: text;
}

.w-commerce-commercecheckoutcardnumber::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: text;
}

.w-commerce-commercecheckoutcardexpirationdate::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: text;
}

.w-commerce-commercecheckoutcardsecuritycode::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
  margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
  font-weight: 400;
  margin-left: 8px;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
  margin-top: 16px;
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingfullname::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingstreetaddress::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingcity::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingstateprovince::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingzippostalcode::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.w-commerce-commercecheckoutbillingcountryselector::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 20px;
  padding-left: 20px;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e6e6e6;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e6e6e6;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e6e6e6;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #e6e6e6;
  background-color: #fff;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  margin-left: 16px;
  margin-right: 16px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: pre-wrap;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  text-decoration: none;
  padding-left: 0px;
  margin-bottom: 0px;
  list-style-type: none;
}

.w-commerce-commercelayoutsidebar {
  -webkit-flex-basis: 320px;
  -ms-flex-preferred-size: 320px;
  flex-basis: 320px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 8px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.w-commerce-commercecheckoutordersummaryextraitemslistitem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 8px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercecheckoutdiscounts {
  background-color: #fff;
  border-bottom-color: #e6e6e6;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: #e6e6e6;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-color: #e6e6e6;
  border-right-style: solid;
  border-right-width: 1px;
  border-top-color: #e6e6e6;
  border-top-style: solid;
  border-top-width: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}

.w-commerce-commercecheckoutdiscountslabel {
  margin-bottom: 8px;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.w-commerce-commercecheckoutdiscountsinput {
  background-color: #fafafa;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #ddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: block;
  height: 38px;
  line-height: 20px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: 0%;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
  min-width: 0px;
}

.w-commerce-commercecheckoutdiscountsinput::-webkit-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutdiscountsinput:-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutdiscountsinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutdiscountsinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutdiscountsinput:focus {
  border-top-color: #3898ec;
  border-right-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutdiscountsbutton {
  background-color: #3898ec;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-left: 8px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  height: 38px;
}

.w-commerce-commercecheckoutplaceorderbutton {
  background-color: #3898ec;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  color: #fff;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 20px;
  text-align: center;
}

.w-commerce-commercecheckouterrorstate {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  background-color: #ffdede;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  width: 100%;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #f5f5f5;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: 0.33em;
}

.w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  background-color: #ffdede;
}

.w-commerce-commerceorderconfirmationcontainer {
  width: 100%;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #f5f5f5;
}

.w-commerce-commercecheckoutshippingsummarywrapper {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .w-commerce-commercelayoutmain {
    margin-right: 0px;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .w-commerce-commercelayoutsidebar {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-modal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .w-commerce-commercecartquantity {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutemailinput {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutshippingfullname {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutshippingstreetaddress {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutshippingstateprovince {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutshippingzippostalcode {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutshippingcountryselector {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutcardnumber {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutcardexpirationdate {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutcardsecuritycode {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingfullname {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingstreetaddress {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingcity {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingstateprovince {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingzippostalcode {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutbillingcountryselector {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutdiscountsinput {
    font-size: 16px;
  }
}
html {
    scroll-padding-top: 66px;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  font-family: Jost, sans-serif;
  color: #615e5d;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
}

/*Moved to Header CSS*/
/*h1 {*/
/*  margin-top: 0px;*/
/*  margin-bottom: 18px;*/
/*  font-family: Archivo, sans-serif;*/
/*  color: #1f1b1a;*/
/*  font-size: 57px;*/
/*  line-height: 1.12em;*/
/*  font-weight: 700;*/
/*}*/

/*h2 {*/
/*  margin-top: 0px;*/
/*  margin-bottom: 18px;*/
/*  font-family: Archivo, sans-serif;*/
/*  color: #1f1b1a;*/
/*  font-size: 44px;*/
/*  line-height: 1.12em;*/
/*  font-weight: 700;*/
/*}*/

/*h3 {*/
/*  margin-top: 0px;*/
/*  margin-bottom: 18px;*/
/*  font-family: Archivo, sans-serif;*/
/*  color: #1f1b1a;*/
/*  font-size: 36px;*/
/*  line-height: 1.1em;*/
/*  font-weight: 700;*/
/*}*/

/*h4 {*/
/*  margin-top: 0px;*/
/*  margin-bottom: 15px;*/
/*  font-family: Archivo, sans-serif;*/
/*  color: #1f1b1a;*/
/*  font-size: 30px;*/
/*  line-height: 1.1em;*/
/*  font-weight: 700;*/
/*}*/

/*h5 {*/
/*  margin-top: 0px;*/
/*  margin-bottom: 12px;*/
/*  font-family: Archivo, sans-serif;*/
/*  color: #1f1b1a;*/
/*  font-size: 24px;*/
/*  line-height: 1.2em;*/
/*  font-weight: 700;*/
/*}*/

/*h6 {*/
/*  margin-top: 0px;*/
/*  margin-bottom: 10px;*/
/*  font-family: Archivo, sans-serif;*/
/*  color: #1f1b1a;*/
/*  font-size: 18px;*/
/*  line-height: 1.2em;*/
/*  font-weight: 700;*/
/*}*/

p {
  margin-bottom: 22px;
}

a {
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #00a36c;
  text-decoration: underline;
}

a:hover {
  color: #fb8c23;
}

ul {
  margin-top: 0px;
  margin-bottom: 22px;
  padding-left: 34px;
  color: #1f1b1a;
}

ol {
  margin-top: 0px;
  margin-bottom: 22px;
  padding-left: 34px;
  color: #1f1b1a;
}

li {
  padding-top: 4px;
  padding-bottom: 4px;
}

img {
  display: inline-block;
  max-width: 100%;
}

strong {
  color: #1f1b1a;
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  margin-bottom: 22px;
  margin-left: 12px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-left: 2px solid #e8e3df;
  color: #1f1b1a;
  font-size: 22px;
  line-height: 1.5em;
  font-style: italic;
}

figure {
  overflow: hidden;
  margin-top: 34px;
  margin-bottom: 34px;
  border-radius: 10px;
}

figcaption {
  margin-top: 0px;
  padding: 12px 20px;
  background-color: #f4f2f0;
  color: #1f1b1a;
  font-size: 16px;
  line-height: 1.4em;
  text-align: center;
}

.wave-navbar {
  position: absolute;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_top_1.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.navbar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 100;
  background-color: transparent;
}

.block-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 2% 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 50px 0 rgba(63, 44, 39, 0.18);
}

.nav-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  padding: 5px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  width: auto;
  height: auto;
  max-height: 80px;
  max-width: 80%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.nav-menu {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link {
  padding: 14px 26px;
  color: #1f1b1a;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-link.w--current {
  color: #00a36c;
}

.dropdown-text {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dropdown-toggle {
  padding: 14px 42px 14px 26px;
}

.icon-dropdown {
  margin-right: 26px;
  font-size: 12px;
  line-height: 1em;
}

.dropdown-link {
  padding-right: 14px;
  padding-left: 14px;
  color: #1f1b1a;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dropdown-link.w--current {
  color: #00a36c;
}

.dropdown-list {
  z-index: 99;
  background-color: #fff;
}

.dropdown-list.w--open {
  overflow: hidden;
  padding: 12px;
  border-radius: 10px;
  background-color: #fff;
}

.button-nav {
  padding: 13px 27px;
  border-radius: 50px;
  background-color: #806958;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-nav:hover {
  background-color: #00a36c;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.wave-navbar-dropdown {
  position: absolute;
  display: none;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_top_3.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.section-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-top: 122px;
  padding-bottom: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f2f0;
}

.section-hero.green {
  background-color: transparent;
  background-image: url('../themes/pinxin/assets_new/images/texture.png'), -webkit-gradient(linear, left top, left bottom, from(#00a36c), to(#00a36c));
  background-image: url('../themes/pinxin/assets_new/images/texture.png'), linear-gradient(180deg, #00a36c, #00a36c);
  background-position: 50% 50%, 0px 0px;
  background-size: auto, auto;
}

.section-hero.post-page {
  padding-bottom: 0px;
  background-color: #fff;
}

.wave-white-1-down {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_down_1.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.block-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 650px;
  margin-top: 35px;
  margin-bottom: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  margin-bottom: 28px;
  font-size: 81px;
  line-height: 1.05em;
}

.hero-title.white {
  font-family: 'Fontspring demo recoleta', sans-serif;
  color: #d0aa7f;
  font-size: 100px;
}

.hero-paragraph {
  max-width: 530px;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.5em;
}

.hero-paragraph.white {
  color: #fff;
  font-size: 26px;
  letter-spacing: 5px;
  text-transform: capitalize;
}

.button-large {
  padding: 25px 50px;
  border-radius: 50px;
  background-color: #ff3000;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-large:hover {
  background-color: #fb8c23;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.button-large.orange {
  background-color: #d0aa7f;
  font-family: Tensentype, sans-serif;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-transform: none;
}

.button-large.orange:hover {
  background-color: #ff3000;
}

.button-large.white {
  background-color: #fff;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
}

.button-large.white:hover {
  background-color: #00a36c;
  color: #fff;
}

.button-large.green {
  background-color: #00a36c;
}

.button-large.green:hover {
  background-color: #16bed1;
}

.button-large.blue {
  background-color: #16bed1;
}

.button-large.blue:hover {
  background-color: #00a36c;
}

.content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1350px;
  padding: 75px 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -o-object-fit: fill;
  object-fit: fill;
}

.img-hero {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: perspective(1000px);
  transform: perspective(1000px);
}

.text-hero {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-food-1 {
  position: absolute;
  left: -506px;
  bottom: -228px;
  z-index: 10;
  width: 500px;
  height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
}

.image-food-1.single-page {
  left: -506px;
  bottom: -394px;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.food-shadow-1 {
  position: absolute;
  left: -316px;
  bottom: -196px;
  z-index: 5;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: #1f1b1a;
  opacity: 0.3;
  -webkit-filter: blur(80px);
  filter: blur(80px);
}

.food-shadow-1.single-page {
  left: -297px;
  bottom: -300px;
}

.image-food-2 {
  position: absolute;
  top: -175px;
  right: -574px;
  z-index: 10;
  width: 500px;
  height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
}

.image-food-2.single-page {
  top: -302px;
  right: -530px;
}

.image-food-3 {
  position: absolute;
  left: -246px;
  top: -202px;
  z-index: 10;
  width: 300px;
  height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}

.image-food-3.single-page {
  left: -203px;
  top: -255px;
}

.food-shadow-3 {
  position: absolute;
  left: -109px;
  top: -56px;
  z-index: 5;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: #1f1b1a;
  opacity: 0.3;
  -webkit-filter: blur(80px);
  filter: blur(80px);
}

.food-shadow-3.single-page {
  left: -53px;
  top: -103px;
}

.food-shadow-2 {
  position: absolute;
  top: -8px;
  right: -585px;
  z-index: 5;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: #1f1b1a;
  opacity: 0.3;
  -webkit-filter: blur(80px);
  filter: blur(80px);
}

.food-shadow-2.single-page {
  top: -101px;
  right: -513px;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.padding {
  padding-bottom: 36px;
}

.grid-3-columns {
  width: 100%;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.blob {
  width: 150px;
  height: 150px;
  border-radius: 0px;
  background-color: #fff;
  -o-object-fit: contain;
  object-fit: contain;
}

.feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.icon-red {
  position: absolute;
  width: 27px;
  height: 27px;
}

.icon-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.paragraph-small {
  max-width: 390px;
  font-size: 18px;
  line-height: 1.6em;
}

.grid-full {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.wave-white-2-top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_top_2.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.image-grid {
  width: 100%;
  min-height: 600px;
  border-radius: 0px;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 15%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #00a36c;
  background-image: url('../themes/pinxin/assets_new/images/texture.png');
  background-position: 50% 50%;
  background-size: auto;
}

.block-full-text {
  max-width: 520px;
}

.paragraph-white {
  margin-bottom: 36px;
  color: #fff;
}

.title {
  margin-bottom: 14px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  color: #806958;
  font-size: 51px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1em;
}

.title.white {
  color: #fff;
}

.subtitle {
  padding-right: 5px;
  padding-bottom: 13px;
  padding-left: 5px;
  font-family: Archivo, sans-serif;
  color: #806958;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3em;
}

.subtitle.white {
  color: #fff;
}

.button {
  padding: 20px 37px;
  border-radius: 50px;
  background-color: #ff3000;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button:hover {
  background-color: #fb8c23;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.button.orange {
  background-color: #806958;
}

.button.orange:hover {
  background-color: #ff3000;
}

.button.white {
  background-color: #d0aa7f;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
}

.button.white:hover {
  background-color: #00a36c;
  color: #fff;
}

.button.green {
  background-color: #00a36c;
}

.button.green:hover {
  background-color: #16bed1;
}

.button.blue {
  background-color: #16bed1;
}

.button.blue:hover {
  background-color: #00a36c;
}

.grid-2-columns {
  display: -ms-grid;
  display: grid;
  width: 100%;
  justify-items: start;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-grid-row-align: auto;
  align-self: auto;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-areas: "Area";
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.paragraph {
  font-size: 25px;
  margin-bottom: 0px;
  color: #806958;
}

.block-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 12%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.icon-list-red {
  width: 18px;
  height: 18px;
  margin-right: 14px;
}

.feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 17px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-list-heading {
  margin-bottom: 0px;
}

.blob-group {
  -o-object-fit: contain;
  object-fit: contain;
}

.food-blob-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.food-shadow-blob {
  position: absolute;
  left: 129px;
  top: 158px;
  z-index: 25;
  width: 250px;
  height: 300px;
  margin-top: -62px;
  margin-left: 131px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-radius: 100%;
  background-color: #1f1b1a;
  opacity: 0.3;
  -webkit-filter: blur(80px);
  filter: blur(80px);
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.image-food-blob {
  position: absolute;
  left: -12px;
  bottom: -505px;
  z-index: 30;
  max-width: 500px;
  margin-bottom: 40px;
  padding-top: 0px;
  padding-bottom: 0px;
  -o-object-fit: contain;
  object-fit: contain;
}

.block-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 1000px;
}

.section-background {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-top: 46px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f2f0;
}

.section-background.padding {
  padding-top: 24px;
  padding-bottom: 26px;
}

.wave-white-3-top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_top_3.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.grid-4-columns {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-column-gap: 28px;
  grid-row-gap: 30px;
  grid-template-areas: ".";
  -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.testimonial {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  padding-right: 25px;
  padding-bottom: 30px;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  /*background-color: #fff;*/
  text-align: center;
}

.heading-testimonial {
  color: #806958;
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 500;
}

.paragraph-testimonial {
  /*max-width: 390px;*/
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6em;
}

.icon-testimonial {
  width: 12px;
  height: 12px;
}

.image-testimonial {
  width: 650px;
  height: 600px;
  max-width: 100%;
  margin-top: 23px;
  /*margin-bottom: 22px;*/
  border-radius: 12%;
  -o-object-fit: cover;
  object-fit: cover;
}

.accent-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 27, 26, 0.35)), to(rgba(31, 27, 26, 0.35))), url('../themes/pinxin/assets_new/images/image_2.jpg');
  background-image: linear-gradient(180deg, rgba(31, 27, 26, 0.35), rgba(31, 27, 26, 0.35)), url('../themes/pinxin/assets_new/images/image_2.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, scroll;
}

.wave-white-2-down {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_down_2.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.wave-grey-1-top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_grey_top_1.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.accent-title {
  margin-bottom: 27px;
  padding-top: 0px;
  color: #fff;
  font-size: 81px;
  line-height: 1.05em;
}

.accent-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  margin-top: 85px;
  margin-bottom: 85px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.text-extra {
  font-family: 'Homemade Apple', sans-serif;
  font-weight: 400;
}

.grid-banner {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 10px;
  background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), -webkit-gradient(linear, left top, left bottom, from(#fb8c23), to(#fb8c23));
  background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), linear-gradient(180deg, #fb8c23, #fb8c23);
  background-position: 50% 50%, 0px 0px;
  background-size: auto, auto;
}

.button-small {
  padding: 13px 27px;
  border-radius: 50px;
  background-color: #806958;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-small:hover {
  background-color: #fb8c23;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.button-small.orange {
  background-color: #fb8c23;
}

.button-small.orange:hover {
  background-color: #ff3000;
}

.button-small.white {
  background-color: #fff;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
}

.button-small.white:hover {
  background-color: #00a36c;
  color: #fff;
}

.button-small.green {
  background-color: #00a36c;
}

.button-small.green:hover {
  background-color: #16bed1;
}

.button-small.blue {
  background-color: #16bed1;
}

.button-small.blue:hover {
  background-color: #00a36c;
}

.text-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 520px;
  margin: 60px 12% 60px 88px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.image-banner {
  width: 100%;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 100% 100%;
  object-position: 100% 100%;
}

.grid-faq {
  width: 100%;
  max-width: 780px;
  margin-top: 10px;
  margin-bottom: 20px;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.accordion-item {
  border-radius: 10px;
  background-color: #fff;
}

.accordion-heading {
  margin-right: 25px;
  margin-bottom: 0px;
}

.accordion-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: padding 200ms cubic-bezier(.25, .46, .45, .94);
  transition: padding 200ms cubic-bezier(.25, .46, .45, .94);
  cursor: pointer;
}

.accordion-header:hover {
  padding-left: 28px;
}

.accordion-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-right: 24px;
  padding-left: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.paragraph-accordion {
  font-size: 18px;
  line-height: 1.6em;
}

.wave-grey-2-top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_grey_top_2.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.accent-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0e2820;
  /*background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 27, 26, 0.5)), to(rgba(31, 27, 26, 0.5))), url('../images/vip-bg.jpg');*/
  /*background-image: linear-gradient(180deg, rgba(31, 27, 26, 0.5), rgba(31, 27, 26, 0.5)), url('../images/vip-bg.jpg');*/
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, scroll;
}

.footer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wave-footer {
  position: absolute;
  left: 0%;
  top: -36px;
  right: 0%;
  bottom: auto;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_footer.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.content-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1350px;
  padding: 40px 25px 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-footer {
  width: 250px;
  /*height: 64px;*/
  margin-right: 16px;
}

.link-footer {
  margin-right: 16px;
  margin-left: 16px;
  opacity: 0.4;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

.link-footer:hover {
  opacity: 1;
  color: #fff;
}

.grid-social {
  margin-left: 16px;
  grid-auto-flow: column;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.social-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  /*background-color: hsla(0, 0%, 100%, 0.05);*/
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
}

.social-link:hover {
  /*background-color: hsla(0, 0%, 100%, 0.1);*/
  /*-webkit-transform: scale(1.1);*/
  /*-ms-transform: scale(1.1);*/
  /*transform: scale(1.1);*/
}

.image-social {
  width: 40px;
  height: 40px;
  filter: invert(76%) sepia(46%) saturate(302%) hue-rotate(348deg) brightness(300%) contrast(90%);
}

.form {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 18px;
  -ms-grid-columns: 2.5fr 1fr;
  grid-template-columns: 2.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.form-block {
  width: 100%;
  max-width: 520px;
}

.text-field {
  height: 59px;
  padding: 14px 23px;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e3df;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 18px;
  line-height: 1.2em;
}

.text-field:focus {
  border-color: #ccc2ba;
}

.text-field::-webkit-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field:-ms-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field::-ms-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field::placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field.margin {
  margin-bottom: 14px;
}

.submit-button {
  padding: 20px 37px;
  border-radius: 50px;
  background-color: #d0aa7f;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #ff3000;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.success-message {
  padding: 18px;
  border-radius: 10px;
  background-color: #00a36c;
}

.text-success {
  color: #fff;
}

.error-message {
  margin-top: 12px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 10px;
  background-color: #ff3000;
}

.text-error {
  color: #fff;
}

.icon-shopping-cart {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}

.cart-button {
  margin-right: 10px;
  padding-top: 13px;
  padding-bottom: 13px;
  border-radius: 50px;
  background-color: transparent;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  color: #1f1b1a;
}

.cart-button:hover {
  background-color: #f4f2f0;
  color: #1f1b1a;
}

.cart-quantity {
  background-color: #00a36c;
  color: #fff;
}

.text-cart {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-list-wrapper {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.collection-list-product {
  display: -ms-grid;
  display: grid;
  width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.empty-state {
  padding: 16px;
  border-radius: 10px;
  background-color: #f4f2f0;
}

.text-empty {
  color: #1f1b1a;
}

.product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e3df;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.plan-thumbnail {
  width: 500%;
  height: 500px;
  margin-bottom: -5px;
  padding-bottom: 0px;
  -webkit-transition: -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  -o-object-fit: cover;
  object-fit: cover;
}

.plan-thumbnail:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.price-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  margin-bottom: 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.plan-price {
  color: #806958;
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 700;
}

.plan-price-info {
  margin-left: 12px;
  opacity: 0.5;
  color: #1f1b1a;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: left;
}

.link-product {
  /*overflow: hidden;*/
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  flex-direction: column;
  align-items: center !important;
}

.meals-text {
  margin-right: 3px;
  margin-left: 3px;
  color: #806958;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
}

.meals {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -16px;
  padding: 7px 12px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 8px 20px -8px rgba(31, 27, 26, 0.3);
}

.product-name {
  margin-bottom: 0px;
}

.link-product-name {
  margin-top: 38px;
  margin-bottom: 16px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  text-decoration: none;
}

.link-product-name:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.block-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 10%;
  padding-bottom: 73px;
  padding-left: 10%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 75px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-thumbnail {
  width: 100%;
  height: 340px;
  -webkit-transition: -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  -o-object-fit: cover;
  object-fit: cover;
}

.product-thumbnail:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.product-price {
  color: #ff3000;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 700;
}

.price-block-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-compare-at-price {
  margin-left: 15px;
  color: rgba(31, 27, 26, 0.4);
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-decoration: line-through;
}

.link-plan-name {
  margin-bottom: 12px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  text-decoration: none;
}

.link-plan-name:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.plan-name {
  margin-bottom: 0px;
  padding-top: 33px;
  color: #806958;
  font-size: 40px;
}

.add-to-cart {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.default-state {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.field-label {
  margin-right: 10px;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 400;
}

.add-to-cart-button-small {
  margin-right: 8px;
  margin-left: 8px;
  padding: 13px 27px;
  border-radius: 50px;
  background-color: #f4f2f0;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.add-to-cart-button-small:hover {
  background-color: #00a36c;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.buy-now-button-small {
  padding: 13px 27px;
  border-radius: 50px;
  background-color: #f4f2f0;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.buy-now-button-small:hover {
  background-color: #fb8c23;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.quantity {
  width: 68px;
  height: 42px;
  margin-right: 0px;
  margin-bottom: 0px;
  border-color: #e8e3df;
  border-radius: 50px;
  background-color: #fff;
  -webkit-transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
}

.quantity:focus {
  border-color: #ccc2ba;
}

.block-add-to-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.out-of-stock-state {
  margin-top: 0px;
  padding-right: 14px;
  padding-left: 14px;
  border-radius: 10px;
  background-color: #f4f2f0;
}

.text-stock-state {
  color: #1f1b1a;
}

.close-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.close-button:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.cart-container {
  border-radius: 10px;
}

.cart-header {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom-color: #e8e3df;
}

.cart-footer {
  padding-top: 22px;
  border-top-color: #e8e3df;
}

.image-cart-item {
  border-radius: 10px;
}

.cart-item-name {
  font-family: Archivo, sans-serif;
  color: #1f1b1a;
  font-size: 18px;
  line-height: 1.2em;
}

.cart-item-price {
  margin-bottom: 4px;
  color: #615e5d;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 500;
}

.remove-button {
  color: #ff3000;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  text-decoration: none;
}

.text-subtotal {
  color: #1f1b1a;
  font-size: 20px;
  line-height: 1.5em;
}

.checkout-button {
  padding: 20px 37px;
  border-radius: 50px;
  background-color: #00a36c;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-button:hover {
  background-color: #16bed1;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.apple-pay {
  height: 45px;
  border-radius: 50px;
}

.pay-with-browser {
  height: 45px;
  border-radius: 50px;
}

.pay-with-browser:hover {
  color: #fff;
}

.web-payments {
  margin-bottom: 9px;
}

.cart-empty-state {
  padding-top: 80px;
  padding-bottom: 90px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-cart-empty {
  margin-bottom: 20px;
}

.cart-error-message {
  padding-right: 15px;
  padding-left: 15px;
  border-style: solid;
  border-width: 2px;
  border-color: #ff3000;
  border-radius: 10px;
  background-color: transparent;
}

.cart-text-error {
  color: #ff3000;
  text-align: center;
}

.cart {
  z-index: 50;
}

.accent-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../themes/pinxin/assets_new/images/texture.png'), -webkit-gradient(linear, left top, left bottom, from(#00a36c), to(#00a36c));
  background-image: url('../themes/pinxin/assets_new/images/texture.png'), linear-gradient(180deg, #00a36c, #00a36c);
  background-position: 50% 50%, 0px 0px;
  background-size: auto, auto;
}

.feature-number {
  position: absolute;
  left: -15%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33px;
  height: 33px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background-color: #806958;
  box-shadow: 0 10px 20px -3px rgba(63, 44, 39, 0.18);
}

.number {
  color: #fff;
  font-size: 16px;
  line-height: 1em;
  font-weight: 700;
}

.block-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.orange-texture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 720px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 10%;
  padding: 80px 70px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 30px;
  background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), -webkit-gradient(linear, left top, left bottom, from(#fb8c23), to(#fb8c23));
  background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), linear-gradient(180deg, #fb8c23, #fb8c23);
  background-position: 50% 50%, 0px 0px;
  background-size: auto, auto;
}

.hero-title-small {
  margin-bottom: 28px;
  line-height: 1.05em;
}

.hero-title-small.white {
  color: #fff;
}

.hero-grid-image {
  width: 100%;
  min-height: 600px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  background-image: url('../themes/pinxin/assets_new/images/hero.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-hero-optional {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wave-white-3-down {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 20;
  width: 100%;
  height: 36px;
  background-image: url('../themes/pinxin/assets_new/images/wave_white_down_3.svg');
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat-x;
  background-attachment: scroll;
}

.hero-grid {
  width: 100%;
  min-height: 700px;
  grid-auto-flow: column;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: ". Area";
  -ms-grid-columns: 2fr;
  grid-template-columns: 2fr;
  -ms-grid-rows: minmax(auto, 0.25fr);
  grid-template-rows: minmax(auto, 0.25fr);
}

.green-texture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 11px;
  padding: 120px 10%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), -webkit-gradient(linear, left top, left bottom, from(#1c372a), to(#1c372a));
  background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), linear-gradient(180deg, #1c372a, #1c372a);
  background-position: 50% 50%, 0px 0px;
  background-size: auto, auto;
  text-align: center;
}

.section-top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 122px;
  padding-bottom: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.section-top.background {
  background-color: #f4f2f0;
}

.grid-product-single {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image-product-single {
  width: 100%;
  border-radius: 10px;
}

.product-price-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.price {
  /*color: #ff3000;*/
  /*font-size: 30px;*/
  /*line-height: 1.2em;*/
  font-weight: 300 !important;
}

.block-product-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 7%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.add-to-cart-button {
  margin-right: 8px;
  margin-left: 8px;
  padding: 20px 37px;
  border-radius: 50px;
  background-color: #00a36c;
  -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.add-to-cart-button:hover {
  background-color: #16bed1;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.quantity-large {
  width: 90px;
  height: 59px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 14px 10px 14px 15px;
  border-color: #e8e3df;
  border-radius: 50px;
  background-color: #fff;
  -webkit-transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
}

.quantity-large:focus {
  border-color: #ccc2ba;
}

.buy-now-button {
  padding: 20px 37px;
  border-radius: 50px;
  background-color: #f4f2f0;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.buy-now-button:hover {
  background-color: #fb8c23;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.rich-text-block-product {
  margin-bottom: 12px;
}

.collection-list-wrapper-categories {
  position: relative;
  z-index: 10;
}

.collection-list-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button-categories {
  margin-right: 5px;
  margin-left: 5px;
  padding: 20px 37px;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e3df;
  border-radius: 50px;
  background-color: #fff;
  -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94), transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-categories:hover {
  background-color: #fb8c23;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.button-categories.w--current {
  background-color: #fb8c23;
  color: #fff;
}

.button-categories.w--current:hover {
  background-color: #ff3000;
}

.paragraph-single-page {
  max-width: 530px;
  font-size: 24px;
  line-height: 1.5em;
}

.paragraph-single-page.white {
  color: #fff;
}

.paragraph-single-page.large-max-w {
  max-width: none;
}

.categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 36px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkout-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: auto;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.checkout-contents {
  margin-right: 0px;
}

.checkout-sidebar {
  top: 150px;
}

.grid-checkout-container {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 1350px;
  padding-right: 25px;
  padding-bottom: 60px;
  padding-left: 25px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.order-summary {
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 10px;
  background-color: #fff;
}

.block-content {
  padding-right: 0px;
  padding-left: 0px;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  background-color: transparent;
}

.block-header {
  padding: 20px 0px;
  border-style: none none solid;
  border-bottom-color: #e8e3df;
  background-color: transparent;
}

.checkout-heading {
  margin-bottom: 0px;
}

.discounts {
  padding: 25px 0px 30px;
  border-style: solid none none;
  border-top-color: #e8e3df;
}

.field-label-discounts {
  font-family: Archivo, sans-serif;
  color: #1f1b1a;
  font-size: 18px;
  font-weight: 700;
}

.text-field-checkout {
  height: 38px;
  margin-bottom: 10px;
  padding: 7px 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e3df;
  border-radius: 30px;
  background-color: #f6f6f5;
  -webkit-transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 18px;
  line-height: 1.2em;
}

.text-field-checkout:focus,
.text-field-checkout.-wfp-focus {
  border-color: #ccc2ba;
}

.text-field-checkout::-webkit-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field-checkout:-ms-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field-checkout::-ms-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.text-field-checkout::placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.checkout-group {
  margin-bottom: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.field-label-checkout {
  font-family: Archivo, sans-serif;
  color: #1f1b1a;
  font-size: 16px;
  font-weight: 500;
}

.field-label-checkout {
  margin-top: 8px;
  line-height: 1.5em;
}

.country {
  padding-right: 16px;
  padding-left: 16px;
  border-color: #e8e3df;
  border-radius: 30px;
  background-color: #f6f6f5;
  -webkit-transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 18px;
  line-height: 1.2em;
}

.country:focus {
  border-color: #ccc2ba;
}

.text-required {
  color: #00a36c;
  font-size: 18px;
  font-weight: 500;
}

.shipping-method {
  padding-right: 0px;
  padding-left: 10px;
  border-bottom-style: none;
  background-color: transparent;
}

.field-label-shipping {
  margin-top: 8px;
  font-family: Archivo, sans-serif;
  color: #1f1b1a;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 700;
}

.shipping-method-list {
  margin-bottom: 20px;
  border-right-style: none;
  border-left-style: none;
}

.empty-state-shipping {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 16px;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-radius: 10px;
  background-color: rgba(255, 48, 0, 0.11);
}

.text-empty-shipping {
  color: #ff3000;
}

.checkbox-label {
  font-size: 17px;
}

.checkbox {
  margin-top: 9px;
}

.checkout-price {
  font-size: 18px;
  font-weight: 500;
}

.text-quantity-order {
  color: rgba(97, 94, 93, 0.8);
  font-size: 18px;
}

.paypal-checkout-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: auto;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.order-confirmation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: auto;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.block-center-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 12%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.block-circle {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-blob-circle {
  width: 420px;
  height: 420px;
  max-width: none;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.work-number-a {
  position: absolute;
  left: 0%;
  top: 10%;
  right: auto;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0 10px 40px -3px rgba(63, 44, 39, 0.18);
}

.number-large {
  color: #ff3000;
  font-size: 24px;
  line-height: 1em;
  font-weight: 700;
}

.grid-group {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  grid-column-gap: 0px;
  grid-row-gap: 65px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-group.large {
  grid-row-gap: 100px;
}

.block-image-work {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-work {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.work-number-b {
  position: absolute;
  left: 20px;
  top: 20px;
  right: auto;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0 10px 40px -3px rgba(63, 44, 39, 0.18);
}

.work-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 17px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.work-number-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33px;
  height: 33px;
  margin-right: 18px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0 10px 20px -3px rgba(63, 44, 39, 0.18);
}

.work-list-heading {
  margin-top: 2px;
  margin-bottom: 7px;
}

.page-content {
  width: 100%;
  max-width: 860px;
}

.page-content.center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.image-section-full {
  width: 100%;
  max-height: 70vh;
  max-width: none;
  min-height: 400px;
  background-color: #f4f2f0;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-image-food {
  z-index: 30;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
  margin-bottom: 50px;
  margin-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-food-about {
  z-index: 2;
  width: 480px;
  -o-object-fit: contain;
  object-fit: contain;
}

.grid-4-columns-full {
  width: 100%;
  margin-bottom: 36px;
  padding-right: 25px;
  padding-left: 25px;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image-grid-full {
  width: 100%;
  min-height: 530px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.grid-story {
  width: 100%;
  margin-top: 36px;
  margin-bottom: 36px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.image-grid-story {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.grid-values {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.icon-value {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background-color: #f4f2f0;
}

.value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.block-contact-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 600px;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f2f0;
  background-image: url('../themes/pinxin/assets_new/images/contact.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.block-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 780px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 55px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.form-block-contact {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 0px;
}

.form-contact {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 18px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.textarea {
  max-height: 300px;
  max-width: 100%;
  min-height: 130px;
  min-width: 100%;
  padding: 18px 23px;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e3df;
  border-radius: 30px;
  -webkit-transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  transition: border-color 300ms cubic-bezier(.25, .46, .45, .94);
  color: #1f1b1a;
  font-size: 18px;
  line-height: 1.2em;
}

.textarea:focus {
  border-color: #ccc2ba;
}

.textarea::-webkit-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.textarea:-ms-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.textarea::-ms-input-placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.textarea::placeholder {
  color: rgba(31, 27, 26, 0.55);
}

.section-get-started {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 86px;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #f4f2f0;
  background-image: url('../themes/pinxin/assets_new/images/get_started.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.grid-get-started {
  display: -ms-grid;
  display: grid;
  max-width: 1300px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 55px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 10px;
  background-color: #fff;
}

.block-get-started-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #e8e3df;
  text-align: center;
}

.form-block-started {
  width: 100%;
  max-width: 500px;
  margin-top: 15px;
  margin-bottom: 0px;
}

.form-started {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 18px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.block-get-started-left {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.feature-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 22px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-feature-option {
  margin-left: 26px;
}

.collection-list-wrapper-blog {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 40px;
}

.collection-list-blog {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  grid-auto-columns: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.blog-thumbnail {
  width: 100%;
  height: 380px;
  -webkit-transition: -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94);
  transition: transform 300ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 300ms cubic-bezier(.25, .46, .45, .94);
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-thumbnail:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.link-blog-thumbnail {
  overflow: hidden;
  width: 50%;
  border-radius: 10px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.link-post-name {
  margin-bottom: 32px;
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  text-decoration: none;
}

.link-post-name:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.post-title {
  margin-bottom: 0px;
}

.text-publication-date {
  display: inline-block;
  margin-bottom: 10px;
  padding-right: 12px;
  padding-left: 12px;
  border-radius: 8px;
  background-color: rgba(0, 163, 108, 0.1);
  color: #00a36c;
  font-size: 14px;
  font-weight: 500;
}

.block-blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding-right: 5%;
  padding-left: 5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.collection-item-blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-bottom: 1px solid #e8e3df;
}

.collection-item-blog:nth-child(even) {
  margin-left: -5%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.image-blog-main {
  width: 100%;
  max-height: 70vh;
  max-width: none;
  min-height: 600px;
  background-color: #f4f2f0;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-single-page {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 860px;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.grid-image-licensing {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image-licensing {
  width: 100%;
  height: 220px;
  max-width: none;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.space {
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #e8e3df;
}

.icon-licensing {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 22px;
  border-radius: 10px;
  background-color: #f4f2f0;
}

.grid-style-colors {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.style-color {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #e8e3df;
  border-radius: 10px;
  background-color: #fff;
  color: #1f1b1a;
}

.style-color.background {
  background-color: #f4f2f0;
}

.style-color.border {
  background-color: #e8e3df;
}

.style-color.paragraphs {
  background-color: #615e5d;
  color: #fff;
}

.style-color.heading {
  background-color: #1f1b1a;
  color: #fff;
}

.style-color.green {
  background-color: #00a36c;
  color: #fff;
}

.style-color.red {
  background-color: #ff3000;
  color: #fff;
}

.style-color.orange {
  background-color: #fb8c23;
  color: #fff;
}

.style-color.blue {
  background-color: #16bed1;
  color: #fff;
}

.text-style-color {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 500;
}

.style-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  padding: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #f4f2f0;
}

.style-buttons.dark {
  background-color: #1f1b1a;
}

.grid-buttons {
  justify-items: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../themes/pinxin/assets_new/images/get_started.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  margin-right: 10px;
  margin-left: 10px;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-utility-page {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.image-head-page {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e8e3df;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 27, 26, 0.35)), to(rgba(31, 27, 26, 0.35))), url('../themes/pinxin/assets_new/images/how_it_works_page.jpg');
  background-image: linear-gradient(180deg, rgba(31, 27, 26, 0.35), rgba(31, 27, 26, 0.35)), url('../themes/pinxin/assets_new/images/how_it_works_page.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.fonts-licensing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  padding: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #f4f2f0;
}

.text-licensing-font {
  font-family: Archivo, sans-serif;
  color: #1f1b1a;
  font-size: 30px;
}

.text-licensing-font.homemade-apple {
  font-family: 'Homemade Apple', sans-serif;
}

.text-licensing-font.jost {
  font-family: Jost, sans-serif;
}

.link-licensing-font {
  margin-right: 20px;
}

.heading {
  color: #806958 !important;
}

.heading-2 {
  color: #C6987B !important;
}

.paragraph-2 {
  font-family: Tensentype, sans-serif;
  color: #fff;
  font-size: 50px;
}

.bold-text {
  font-family: 'Tengxiangqinyuanjian w3 1 webfont', sans-serif;
  color: #806958;
  line-height: 1.2em;
  text-transform: none;
}

.image {
  position: static;
  margin-top: -74px;
  padding-top: 0px;
  padding-left: 0px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -o-object-fit: fill;
  object-fit: fill;
}

.image-2 {
  position: absolute;
  left: 254px;
}

.columns {
  margin-top: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  background-color: #806958;
}

.image-3 {
  position: absolute;
  left: -200px;
  top: 399px;
}

.image-4 {
  position: relative;
}

.text-block {
  position: static;
  padding-top: 0px;
  padding-bottom: 17px;
  color: #fff;
  font-size: 40px;
}

/*.container {*/
/*  max-width: none;*/
/*  padding-right: 0px;*/
/*  border-radius: 11px;*/
/*}*/

.image-5 {
  width: auto;
  height: auto;
  border-radius: 18px;
}

.image-4-copy {
  position: relative;
}

.h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 56px;
  line-height: 64px;
}

.h2.how {
  margin-bottom: 32px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #806958;
}

.brand_wrap {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.brand_logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  padding: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand_grid-text {
  background-color: #806958;
}

._480.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(100vh - 800px);
}

._100.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(100vh - 74px);
  width: 100%;
  z-index: 20;
}

.ingredients .brand_wrap {
  margin-top: -84px;
}

.brand_block {
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.container-2 {
  width: 100%;
  max-width: 1232px;
  margin-right: auto;
  margin-left: auto;
}

.brand_content {
  display: -ms-grid;
  display: grid;
  padding-top: 64px;
  padding-bottom: 80px;
  grid-auto-columns: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  text-align: -webkit-center;
}

.brand_image {
  position: relative;
  display: block;
  width: 97%;
  -o-object-fit: cover;
  object-fit: cover;
}

.brand_container {
  overflow: visible;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: center;
}

.brand_logo {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.full-centre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.creator_block {
  display: block;
  min-width: 394px;
  margin-right: 24px;
  padding: 32px;
  border-radius: 12px;
  background-color: transparent;
}

.block-profile-img {
  width: 64px;
  height: 64px;
  margin-right: 24px;
}

.h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 32px;
  line-height: 40px;
}

.h3.centre {
  text-align: center;
}

.block_followers {
  margin-top: 5px;
}

.creator_container {
  overflow: hidden;
  padding: 64px 24px 120px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.block_username {
  font-size: 24px;
  font-weight: 700;
}

.creator_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.creators_wrap {
  position: relative;
  display: block;
  padding-top: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.block_top-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.block_text {
  max-width: 330px;
}

.feature_grid {
  height: 52vw;
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature_image {
  position: absolute;
}

.feature_image-wrap {
  position: relative;
  width: 100%;
  max-width: 567px;
}

.section.ingredients {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-color: #1c372a;
  -o-object-fit: fill;
  object-fit: fill;
}

.feature_image._3 {
  bottom: 0px;
  width: 20%;
}

.feature_grid.flip {
  position: static;
  display: -ms-grid;
  display: grid;
  height: 450px;
  max-width: 1000px;
  padding-bottom: 0px;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.paragraph-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #d0aa7f;
  font-size: 40px;
  text-align: center;
}

.heading-6 {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  color: #d0aa7f;
  font-size: 60px;
  text-align: center;
}

.locale-container select {
    padding: 10px 27px;
    height: auto !important;
    border: 0px;
}

@media screen and (min-width: 1440px) {

    .section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .section-background.padding {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: #806958;
  }

  .testimonial {
    position: static;
    min-width: 0px;
    margin-top: 0px;
    padding-right: 0px;
    padding-bottom: 22px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .paragraph-testimonial {
    /*max-width: 370px;*/
  }

  .image-testimonial {
    width: 550px;
    height: 600px;
    margin-top: 0px;
    border-radius: 0%;
  }

  .section-hero-optional {
    overflow: hidden;
  }

  .container-2 {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 75px;
    padding-top: 75px;
    padding-right: 25px;
    padding-left: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .feature_text {
    color: #fff;
  }

  .brand_content {
    position: static;
    padding-top: 80px;
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .creator_block {
    overflow: hidden;
    max-height: 500px;
    min-height: 0px;
    min-width: 400px;
    padding: 0px;
    border-radius: 20px;
  }

  .creator_container {
    padding-bottom: 64px;
  }

  .creators_wrap {
    padding-top: 0px;
  }

  .feature_grid {
    height: 640px;
  }

  .feature_wrap._2 {
    position: relative;
    overflow: visible;
    padding-top: 0px;
    padding-bottom: 0px;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .feature_image._1 {
    top: 0%;
    width: 100%;
    max-width: 100%;
  }

  .feature_image._2 {
    padding-bottom: 0px;
  }

  .feature_text-2 {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    line-height: 1.1em;
  }

  .feature_image-wrap {
    max-width: 600px;
  }

  .columns-2 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .heading-5 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 60px;
  }

  .container-3 {
    padding-top: 45px;
    padding-bottom: 0px;
  }
}


@media screen and (max-width: 1295px) {

  .ingredients .brand_wrap {
    margin-top: -98px;
  }

  ._480.sticky {
    top: calc(100vh - 500px);
  }
}

@media screen and (max-width: 1180px) {

  .ingredients .brand_wrap {
    margin-top: -83px;
  }
}

@media screen and (max-width: 1024px) {

  .ingredients .brand_wrap {
    margin-top: -58px;
  }

  ._100.sticky {
    top: calc(100vh - 58px);
  }
}

@media screen and (max-width: 991px) {

  .navbar {
    position: relative;
  }

  #layout-content.padding-top {
    padding-top: 0px;
  }

  .ingredients .brand_wrap {
    margin-top: -52px;
  }

  ._480.sticky {
    top: calc(100vh - 390px);
  }

  ._100.sticky {
    top: calc(100vh - 48px);
  }

  .feature_grid.flip {
    width: 100%;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 33px;
  }

  h4 {
    font-size: 27px;
  }

  h5 {
    font-size: 22px;
  }

  .block-navbar {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-menu {
    padding-top: 5px;
    padding-bottom: 15px;
    background-color: #fff;
  }

  .nav-link {
    margin-right: 20px;
    margin-left: 20px;
    padding: 17px 10px;
  }

  .dropdown-text {
    display: inline-block;
  }

  .dropdown-toggle {
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .dropdown {
    padding-right: 20px;
    padding-left: 20px;
  }

  .icon-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
  }

  .dropdown-list.w--open {
    background-color: #f4f2f0;
  }

  .wave-navbar-dropdown {
    display: block;
    margin-top: 15px;
  }

  .icon-menu {
    font-size: 20px;
  }

  .menu-button {
    margin-left: 5px;
    padding: 12px;
    border-radius: 50px;
    background-color: #f4f2f0;
    -webkit-transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94);
    transition: color 300ms cubic-bezier(.25, .46, .45, .94), background-color 300ms cubic-bezier(.25, .46, .45, .94);
    color: #1f1b1a;
    line-height: 1.2em;
  }

  .menu-button.w--open {
    background-color: #0e2820;
    color: #fff;
  }

  .section-hero {
    padding-top: 35px;
  }

  .block-hero {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: 65px;
  }

  .hero-paragraph {
    font-size: 22px;
  }

  .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .image-food-1 {
    left: -282px;
    bottom: -271px;
    width: 400px;
    height: 400px;
  }

  .image-food-1.single-page {
    left: -266px;
    bottom: -300px;
    width: 350px;
    height: 350px;
  }

  .food-shadow-1 {
    left: -120px;
    bottom: -226px;
    width: 250px;
    height: 250px;
  }

  .food-shadow-1.single-page {
    left: -91px;
    bottom: -237px;
    width: 200px;
    height: 200px;
  }

  .image-food-2 {
    top: -219px;
    right: -348px;
    width: 400px;
    height: 400px;
  }

  .image-food-2.single-page {
    top: -277px;
    right: -232px;
    width: 350px;
    height: 350px;
  }

  .image-food-3 {
    left: -190px;
    width: 250px;
    height: 250px;
  }

  .image-food-3.single-page {
    left: -115px;
    top: -214px;
  }

  .food-shadow-3 {
    left: -82px;
    width: 120px;
    height: 120px;
  }

  .food-shadow-3.single-page {
    left: -21px;
    top: -111px;
  }

  .food-shadow-2 {
    right: -258px;
    width: 200px;
    height: 200px;
  }

  .food-shadow-2.single-page {
    right: -232px;
  }

  .grid-3-columns {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }

  .block-full {
    padding: 90px 10%;
  }

  .grid-2-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .block-right {
    padding: 30px 5%;
  }

  .image-food-blob {
    width: 85%;
  }

  .grid-4-columns {
    grid-column-gap: 15px;
  }

  .testimonial {
    padding-right: 20px;
    padding-left: 20px;
  }

  .accent-title {
    font-size: 65px;
  }

  .accent-center {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .content-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .collection-list-product {
    justify-items: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .group {
    margin-top: 65px;
  }

  .block-left {
    padding-top: 30px;
    padding-right: 5%;
    padding-bottom: 30px;
  }

  .orange-texture {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 40px 35px;
  }

  .hero-title-small {
    margin-bottom: 20px;
  }

  .hero-grid-image {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }

  .section-hero-optional {
    padding-top: 0px;
  }

  .green-texture {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-top {
    padding-top: 35px;
  }

  .grid-product-single {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 24px;
  }

  .block-product-single {
    padding-right: 5%;
    padding-left: 5%;
  }

  .paragraph-single-page {
    font-size: 22px;
  }

  .checkout-sidebar {
    top: 30px;
  }

  .grid-checkout-container {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .block-center-grid {
    padding: 20px 4%;
  }

  .image-blob-circle {
    width: 300px;
    height: 300px;
  }

  .grid-group {
    grid-row-gap: 40px;
  }

  .grid-group.large {
    grid-row-gap: 60px;
  }

  .grid-4-columns-full {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .image-grid-full {
    min-height: 200px;
  }

  .grid-values {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .section-get-started {
    padding-top: 0px;
  }

  .grid-get-started {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .block-get-started-right {
    padding-top: 50px;
    padding-left: 0px;
    border-top: 1px solid #e8e3df;
    border-left-style: none;
  }

  .feature-option {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .image-blog-main {
    min-height: 400px;
  }

  .columns {
    padding-right: 25px;
  }

  .h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .brand_logo-wrap {
    padding: 15px;
  }

  .container-2 {
    width: 90%;
  }

  .brand_content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .brand_image {
    min-height: 0px;
  }

  .creator_block {
    display: block;
  }

  .h3 {
    font-size: 28px;
    line-height: 1.2;
  }

  .creator_container {
    padding-bottom: 80px;
  }

  .creators_wrap {
    padding-top: 80px;
  }

  .feature_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .feature_wrap._2 {
    padding-bottom: 0px;
    padding-top: 0px;
  }
}

@media screen and (max-width: 767px) {

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 29px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .button-nav {
    display: none;
  }

  .hero-title {
    margin-bottom: 20px;
    font-size: 57px;
  }

  .hero-paragraph {
    margin-bottom: 30px;
  }

  .content {
    padding: 50px 25px;
  }

  .image-food-1 {
    left: -250px;
    bottom: -297px;
  }

  .image-food-1.single-page {
    left: -150px;
    bottom: -283px;
    width: 300px;
    height: 300px;
  }

  .food-shadow-1.single-page {
    left: 24px;
    bottom: -181px;
    width: 150px;
    height: 150px;
  }

  .image-food-2 {
    top: -244px;
    right: -316px;
  }

  .image-food-2.single-page {
    top: -263px;
    right: -157px;
    width: 300px;
    height: 300px;
  }

  .image-food-3 {
    left: -155px;
    top: -193px;
  }

  .image-food-3.single-page {
    left: -5px;
    top: -205px;
    width: 200px;
    height: 200px;
  }

  .food-shadow-3.single-page {
    left: 69px;
  }

  .food-shadow-2.single-page {
    right: -87px;
    width: 150px;
    height: 150px;
  }

  .grid-3-columns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-full {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .image-grid {
    min-height: 400px;
  }

  .block-full {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .grid-2-columns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .blob-group {
    max-width: 500px;
  }

  .food-shadow-blob {
    display: none;
  }

  .image-food-blob {
    width: 70%;
  }

  .testimonial {
    padding-right: 15px;
    padding-left: 15px;
  }

  .accent-title {
    font-size: 57px;
  }

  .accent-center {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .grid-banner {
    margin-top: 20px;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }

  .text-banner {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .content-footer {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .footer-group {
    margin-top: 14px;
    margin-bottom: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .logo-footer {
    margin-right: 0px;
  }

  .link-footer {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .grid-social {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
  }

  .price-block {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .link-product-name {
    margin-top: 28px;
  }

  .block-product {
    padding-right: 8%;
    padding-left: 8%;
  }

  .group {
    margin-top: 50px;
  }

  .block-product {
    padding-bottom: 30px;
  }

  .orange-texture {
    margin-right: 10%;
    padding: 50px 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .hero-grid-image {
    min-height: 300px;
  }

  .hero-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .green-texture {
    padding: 80px 8%;
  }

  .block-product-single {
    padding: 30px 0%;
  }

  .button-categories {
    padding: 14px 25px;
  }

  .grid-checkout-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .work-number-a {
    width: 50px;
    height: 50px;
  }

  .number-large {
    font-size: 20px;
  }

  .grid-group.large {
    grid-row-gap: 50px;
  }

  .work-number-b {
    width: 50px;
    height: 50px;
  }

  .grid-4-columns-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .grid-story {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-values {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .block-contact {
    padding: 40px;
  }

  .form-contact {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-get-started {
    padding: 40px;
  }

  .blog-thumbnail {
    height: 300px;
  }

  .link-blog-thumbnail {
    width: 100%;
  }

  .link-post-name {
    margin-bottom: 20px;
  }

  .block-blog {
    width: 100%;
    padding: 30px 0% 15px;
  }

  .collection-item-blog {
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .collection-item-blog:nth-child(even) {
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-image-licensing {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .grid-style-colors {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .style-buttons {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .grid-buttons {
    justify-items: center;
    grid-auto-flow: row;
  }

  .fonts-licensing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .link-licensing-font {
    margin-right: 0px;
    margin-bottom: 6px;
  }

  .brand_wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .brand_grid-text {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .container-2 {
    width: 90%;
  }

  .brand_content {
    padding-top: 0px;
    padding-bottom: 0px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .full-centre {
    padding-right: 20px;
    padding-left: 20px;
  }

  .creator_block {
    display: block;
  }

  .creator_container {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .creators_wrap {
    padding-top: 80px;
  }

  .feature_grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feature_grid.flip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .feature_wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feature_image-wrap {
    height: auto;
    max-width: none;
  }
}

@media screen and (max-width: 479px) {

  .ingredients .brand_wrap {
    margin-top: -63px;
  }

  ._100.sticky {
    top: calc(100vh - 50px);
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }

  .brand {
    margin-right: 5px;
  }

  .logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-paragraph {
    font-size: 20px;
  }

  .hero-paragraph.white {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 20px;
    text-align: center;
  }

  .content {
    padding-top: 0px;
    padding-bottom: 40px;
    background-color: transparent;
  }

  .image-food-1 {
    left: -161px;
    bottom: -263px;
    width: 300px;
    height: 300px;
  }

  .food-shadow-1 {
    left: -5px;
    bottom: -196px;
    width: 150px;
    height: 150px;
  }

  .image-food-2 {
    top: -248px;
    right: -154px;
    width: 300px;
    height: 300px;
  }

  .image-food-2.single-page {
    right: -180px;
  }

  .image-food-3 {
    left: -114px;
    top: -205px;
    width: 200px;
    height: 200px;
  }

  .image-food-3.single-page {
    left: -77px;
  }

  .food-shadow-3 {
    left: -35px;
  }

  .food-shadow-3.single-page {
    left: 4px;
  }

  .food-shadow-2 {
    top: -50px;
    right: -98px;
    width: 150px;
    height: 150px;
  }

  .food-shadow-2.single-page {
    right: -108px;
  }

  .grid-3-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .image-grid {
    min-height: 300px;
  }

  .block-full {
    padding: 70px 8%;
  }

  .paragraph-white {
    margin-bottom: 26px;
  }

  .title {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 40px;
    text-align: center;
  }

  .title.white {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 48px;
  }

  .subtitle {
    padding-top: 35px;
  }

  .button.white {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .grid-2-columns {
    padding-top: 0px;
  }

  .paragraph {
    margin-bottom: 26px;
    text-align: center;
  }

  .block-right {
    padding: 25px 0%;
  }

  .blob-group {
    max-width: 320px;
  }

  .block-center {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .section-background.padding {
    padding-top: 41px;
    padding-bottom: 0px;
  }

  .grid-4-columns {
    grid-row-gap: 25px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .testimonial {
    width: 300px;
    margin-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    border-radius: 17px;
  }

  .paragraph-testimonial {
    padding-right: 10px;
    padding-left: 10px;
  }

  .image-testimonial {
    margin-top: 0px;
    border-radius: 5%;
  }

  .accent-title {
    padding-top: 0px;
    font-size: 44px;
  }

  .accent-center {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .grid-banner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    background-image: url('../themes/pinxin/assets_new/images/Green-bg-flower-wallpaper-w-light_landscape.jpg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50% 50%, 0px 0px;
    background-size: auto, auto;
  }

  .text-banner {
    margin-right: 8%;
    margin-left: 8%;
  }

  .footer {
    padding-top: 0px;
  }

  .logo-footer {
    width: 260px;
  }

  .form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .cart-button {
    margin-right: 3px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .collection-list-wrapper {
    position: relative;
  }

  .collection-list-product {
    padding-left: 0px;
    grid-column-gap: 25px;
    grid-row-gap: 50px;
  }

  .product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .plan-thumbnail {
    display: inline-block;
    width: 300px;
    height: 300px;
    max-width: none;
    padding-left: 0px;
    text-align: center;
  }

  .price-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .link-product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .block-product {
    padding-right: 0%;
  }

  .group {
    margin-top: 40px;
  }

  .product-thumbnail {
    height: 250px;
  }

  .block-product {
    padding-right: 5%;
    padding-left: 5%;
  }

  .price-block-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .text-compare-at-price {
    margin-left: 0px;
  }

  .field-label {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .quantity {
    margin-bottom: 10px;
  }

  .block-add-to-cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .image-cart-item {
    width: 53px;
  }

  .cart-item-name {
    font-size: 16px;
  }

  .block-left {
    padding: 0px 0% 25px;
  }

  .orange-texture {
    margin-right: 5%;
    margin-left: 5%;
    padding: 30px 25px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-title-small.white {
    line-height: 1.3em;
  }

  .green-texture {
    padding: 70px 7%;
  }

  .price {
    font-size: 20px;
  }

  .block-product-single {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .quantity-large {
    margin-bottom: 10px;
  }

  .collection-list-categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .button-categories {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .paragraph-single-page {
    font-size: 20px;
  }

  .grid-checkout-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .order-summary {
    padding-right: 20px;
    padding-left: 20px;
  }

  .checkout-group {
    padding-right: 20px;
    padding-left: 20px;
  }

  .checkout-price {
    font-size: 16px;
  }

  .text-quantity-order {
    font-size: 16px;
  }

  .block-center-grid {
    padding-right: 0%;
    padding-left: 0%;
  }

  .image-blob-circle {
    width: 200px;
    height: 200px;
  }

  .grid-group.large {
    grid-row-gap: 40px;
  }

  .work-number-b {
    left: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
  }

  .work-list {
    margin-bottom: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .work-number-c {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .block-image-food {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .grid-4-columns-full {
    margin-bottom: 25px;
  }

  .grid-values {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .block-contact-img {
    padding-right: 10px;
    padding-left: 10px;
  }

  .block-contact {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 30px 25px;
  }

  .form-block-contact {
    margin-top: 5px;
  }

  .section-get-started {
    padding-right: 10px;
    padding-left: 10px;
  }

  .grid-get-started {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 30px 25px;
  }

  .form-block-started {
    margin-top: 5px;
  }

  .feature-option {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .text-feature-option {
    margin-left: 0px;
  }

  .blog-thumbnail {
    height: 250px;
  }

  .image-blog-main {
    min-height: 300px;
  }

  .grid-image-licensing {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-style-colors {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    padding: 30px;
  }

  .add-to-cart-single {
    width: 100%;
  }

  .image {
    max-width: 130%;
    margin-top: -49px;
    margin-left: -105px;
    padding-left: 0px;
  }

  .image-2 {
    position: absolute;
    left: 70px;
    top: 23px;
    bottom: auto;
  }

  .columns {
    padding-right: 0px;
  }

  .column {
    display: block;
    padding-left: 10px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .text-block {
    height: auto;
    line-height: 1.2em;
  }

  .collection-item {
    display: inline;
    margin-left: 0px;
    padding-top: 0px;
    padding-left: 0px;
  }

  .image-6 {
    width: 200px;
    height: auto;
    margin-bottom: -30px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .h2 {
    font-size: 32px;
  }

  .brand_logo-wrap {
    height: 60px;
  }

  .brand_grid-text {
    margin-right: 0px;
    padding-top: 64px;
    padding-right: 14px;
    padding-bottom: 7px;
  }

  ._480.sticky {
    margin-bottom: 0px;
  }

  .brand_block {
    position: relative;
    display: block;
    padding-left: 0px;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    min-height: 190px;
  }

  .feature_text {
    color: #fff;
    text-align: center;
  }

  .brand_content {
    position: relative;
    width: auto;
    padding-right: 0px;
    padding-left: 0px;
    grid-auto-flow: row;
    grid-column-gap: 8px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .brand_image {
    position: relative;
    left: -13px;
    display: block;
    width: 100%;
    max-width: 700px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .brand_logo {
    max-height: 60px;
  }

  .creator_block {
    display: block;
    max-height: 500px;
    min-height: 0px;
    min-width: 300px;
    padding: 0px;
    border-radius: 20px;
  }

  .h3.centre {
    font-size: 24px;
    text-align: center;
  }

  .creator_container {
    padding-bottom: 64px;
  }

  .block_username {
    font-size: 22px;
  }

  .creators_wrap {
    padding-top: 0px;
  }

  .feature_grid.flip {
    padding-bottom: 0px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .feature_image-wrap {
    margin-right: auto;
    margin-left: auto;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .paragraph-3 {
    color: #d0aa7f;
    text-align: center;
  }

  .heading-6 {
    color: #d0aa7f;
    font-size: 45px;
    text-align: center;
  }

  .container-3 {
    margin-top: 25px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-2 {
    position: -webkit-sticky;
    position: sticky;
  }
}

#w-node-_6d6d61b0-a174-3f22-272c-dc9d4aa8b7f7-bded4cb0 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_8ce72770-194e-2c38-7d63-39283fceff1d-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

.hero-grid>#w-node-_8ce72770-194e-2c38-7d63-39283fceff1d-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

#w-node-c13e801a-b9c1-3866-e5ba-9c75496dd6ec-85ed4cc2 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_560c4877-f1b5-9dab-2cb2-5e2b8078b914-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

.hero-grid>#w-node-_560c4877-f1b5-9dab-2cb2-5e2b8078b914-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

#w-node-_560c4877-f1b5-9dab-2cb2-5e2b8078b915-85ed4cc2 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_16a101bf-3722-2fce-420e-c8d1d8e76378-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

.hero-grid>#w-node-_16a101bf-3722-2fce-420e-c8d1d8e76378-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

#w-node-_16a101bf-3722-2fce-420e-c8d1d8e76379-85ed4cc2 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cc3bb23c-cf81-c5a2-9477-a6d2ef4c40e0-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

.hero-grid>#w-node-cc3bb23c-cf81-c5a2-9477-a6d2ef4c40e0-85ed4cc2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

#w-node-cc3bb23c-cf81-c5a2-9477-a6d2ef4c40e1-85ed4cc2 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d9b0f47f-0d02-06d8-6854-1fc7766d7b2c-85ed4cc2 {
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-d9b0f47f-0d02-06d8-6854-1fc7766d7b2f-85ed4cc2 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-d57c9863-cba5-7313-5be4-1414438da423-85ed4cc2 {
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-d57c9863-cba5-7313-5be4-1414438da426-85ed4cc2 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_425c6d0a-6363-6119-4c94-abad8f036962-85ed4cc2 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_6f394dc0-c70a-6636-1ffd-966b84eaf81a-90ed4ccb {
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-d84c33d4-c021-2160-82b0-fe94ffbd3111-90ed4ccb {
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#Message.w-node-f65c3a8f-d81e-379c-3fce-b223aa44f6e4-cced4ccc {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-_429635ac-d607-d8ab-f3cf-984ec965f873-cced4ccc {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-efacf92e-f9e3-43dc-a8d3-c299afd0dc7c-53ed4ccd {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_429635ac-d607-d8ab-f3cf-984ec965f873-53ed4ccd {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-cc3bb23c-cf81-c5a2-9477-a6d2ef4c40e0-85ed4cc2 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: Area;
  }

  .hero-grid>#w-node-cc3bb23c-cf81-c5a2-9477-a6d2ef4c40e0-85ed4cc2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  #w-node-cc3bb23c-cf81-c5a2-9477-a6d2ef4c40e1-85ed4cc2 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-d9b0f47f-0d02-06d8-6854-1fc7766d7b2f-85ed4cc2 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: end;
    justify-self: end;
  }

  #w-node-d57c9863-cba5-7313-5be4-1414438da426-85ed4cc2 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6f394dc0-c70a-6636-1ffd-966b84eaf81a-90ed4ccb {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #w-node-d84c33d4-c021-2160-82b0-fe94ffbd3111-90ed4ccb {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b182ff71-176c-791a-66fd-af74a7686386-aded4cc1 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-df564970-075a-05f2-cfc7-7571e43a8471-aded4cc1 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-d9b0f47f-0d02-06d8-6854-1fc7766d7b2c-85ed4cc2 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 0;
    grid-row-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }

  #w-node-d9b0f47f-0d02-06d8-6854-1fc7766d7b2f-85ed4cc2 {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-d57c9863-cba5-7313-5be4-1414438da423-85ed4cc2 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 0;
    grid-row-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }

  #w-node-d57c9863-cba5-7313-5be4-1414438da426-85ed4cc2 {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-_39b23c76-fde1-bd8e-b380-7aa35c168430-70ed4cc5 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-eb523162-848a-c0fd-dc4a-b62612cdc533-70ed4cc5 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-c191597e-2302-ccd0-1c63-cefb314db07e-1aed4cc6 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-a9c45806-9a9b-e524-431c-2e2344aa7545-1aed4cc6 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_6f394dc0-c70a-6636-1ffd-966b84eaf81a-90ed4ccb {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #w-node-d84c33d4-c021-2160-82b0-fe94ffbd3111-90ed4ccb {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }

  #Message.w-node-f65c3a8f-d81e-379c-3fce-b223aa44f6e4-cced4ccc {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_429635ac-d607-d8ab-f3cf-984ec965f873-cced4ccc {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_06644e73-9612-a5ea-a5c9-c3ec7cf50999-85ed4cc2 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_06644e73-9612-a5ea-a5c9-c3ec7cf509a1-85ed4cc2 {
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
  }
}

@font-face {
    font-family: 'Aura Fang Hei Tan';
    src: url('../themes/pinxin/assets_new/fonts/AuraFangHeiTan.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Teng Xiang Qin Yuan Jian';
    src: url('../themes/pinxin/assets_new/fonts/TengXiangQinYuanJian.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../themes/pinxin/assets_new/fonts/Recoleta.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    color: #806958;
}

.navbar {
    font-size: 1.4em;
}

.ff-recoleta, .main-title._en {
    font-family: 'Recoleta';
}

.ff-archivo, ._en {
    font-family: 'Archivo';
}

.ff-txqyj {
    font-family: 'Teng Xiang Qin Yuan Jian';
}

.ff-afht, ._zh {
    font-family: 'Aura Fang Hei Tan';
}

#layout-content {
    min-height: calc(100vh - 150px);
}

.fs-0 {
    font-size: 0 !important;
}

.fs-1 {
    font-size: 0.25rem !important;
}

.fs-2 {
    font-size: 0.5rem !important;
}

.fs-2_5 {
    font-size: 0.75rem !important;
}

.fs-3 {
    font-size: 1rem !important;
}

.fs-3_5 {
    font-size: 1.2rem !important;
    line-height: 1.2em;
}

.fs-4 {
    font-size: 1.5rem !important;
    line-height: 1.2em;
}

.fs-4_5 {
    font-size: 2rem !important;
    line-height: 1.2em;
}

.fs-4_5._zh:not(.maintain-fs) {
    font-size: 3rem !important;
    line-height: 1.2em;
}

.fs-5 {
    font-size: 3rem !important;
    line-height: 1.2em;
}

.fs-6 {
    font-size: 4rem !important;
    line-height: 1.2em;
}


.fs-8 {
    font-size: 8rem !important;
    line-height: 1.2em;
}

.fs-10 {
    font-size: 10rem !important;
    line-height: 1.2em;
}

.badge {
    font-weight: 400;
}

.pagination {
    justify-content: center;
}

.pagination li {
    margin: 5px;
}

audio, canvas, progress, video {
    max-width: 100vw;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.product_info_content img {
    width: 100% !important;
}

.dropdown-toggle::after {
    display: none;
}

.green-bg {
    background: #0e2820;
}

.green-bg-2 {
    background: #002B1E;
}

.black-bg {
    background: black;
}

.homepage-product-background {
    min-height: 50vh;
    object-fit: cover;
    width: 100vw;
    max-height: calc(100vh - 85px);
}

a[href="#purchase"] img {
    max-width: 55vw;
}

.testimonial-inner {
    color: #806958;
    border: 1px solid #806958;
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    position: relative;
    top: -1px;
    background: white;
}

.price_box {
    display: flex;
    flex-direction: column;
}

.white-text {
    color: white !important;
}

.yellow-text-2 {
    color: #ffbe42;
}

.yellow-text {
    color: #ffc042;
}

.brown-text, .brown-text a, .brown-text a:hover {
    color: #bc967f;
}

.btn-default {
    border: 1px solid #806958;
}


.buynow-btn {
    max-width: 200px;
    position: absolute;
    top: calc(100% - 70px);
    z-index: 100;
    left: calc(50% - 100px);
}

.brown-card {
    background: #836856;
    border-radius: 20px;
}

.light-brown {
    color: #C2937B;
}

.light-brown-2 {
    color: #D39974;
}

.bg-light-brown {
    background: #DFD9D0;
}


.soldout-tag {
    background:  #836856;
    color: white;
    border-radius: 20px;
}

.currency {
    letter-spacing: -1px;
}

a {
    text-decoration: none;
}

.grid-4-columns {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.feature_text-2 {
    color: #806958;
}

.m0auto {
    margin: 0px auto !important;
}

.left-0 {
    left: 0px !important;
}

.creator_block {
    min-width: auto;
    max-height: inherit;
    padding: 0px !important;
    margin: 0px !important;
}

.icon-testimonial {
    width: auto !important;
}

.testimonial {
    position: relative;
    width: auto !important;
    padding: 0px !important;
}

.paragraph-testimonial {
    padding: 15px;
}

.section-2 {
    justify-content: center;
    align-items: center;
    display: flex;
}

.max-width-80vw {
    max-width: 80vw;
}

form {
    margin: 0px;
}

.locale-container select {
    padding: 10px 27px;
    height: auto !important;
    border: 0px;
}

.image-testimonial {
    margin-top: 0px;
    border-radius: 10px 10px 0px 0px;
}

.brand_block {
    overflow: inherit;
}

.padding-top {
    padding-top: 83px;
}

.productpage-title, .brown-color {
    color: #806958 !important;
}

.list-group.brown-line {
    border: 1px solid #806958;
}

.list-group-item.brown-line {
    border-bottom: unset;
    border: 1px solid #806958;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.05);
}

.underline {
    text-decoration: underline;
}

.pulse-button {
    border-radius: 30px;
    cursor: pointer;
    /*box-shadow: 0 0 0 0 rgba(128, 105, 88, 0.3);*/
    -webkit-animation: pulse 1.5s infinite;
}

.pulse-button:hover, .product.grow:hover .pulse-button {
    -webkit-animation: none;
}

.no-list {
    list-style: none;
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        /*box-shadow: 0 0 0 50px rgba(128, 105, 88, 0);*/
    }
    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        /*box-shadow: 0 0 0 0 rgba(128, 105, 88, 0);*/
    }
}


.brown-card .banner {
    width: 60%;
    margin: 0px auto;
    display: block;
    top: -100px;
    position: relative;
    margin-bottom: -100px;
}

footer {
    background-color: #0e2820;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-links-group a {
    margin-top: 1em;
}

.owl-theme .owl-nav {
    margin: 0px !important;
}

.owl-theme .owl-nav [class*='owl-'] {
    font-size: 3em !important;
    color: white !important;
}

.owl-prev, .owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border:0px solid black;
}
.owl-prev { left: 0px; }
.owl-next { right: 0px; }
.owl-prev i, .owl-next i {transform : scale(2,5); color: #ccc;}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(150%);
    }
}

.buynow-btn-2 {
    /*basic styles*/
    width: 250px;
    /*height: 50px;*/
    color: white;
    background-color: #d46d45;
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    color: black;

    /*gradient styles*/
    /* background: -webkit-gradient(linear, 19% 75%, 50% 100%, from(#E7A93D), to(#FCD581));
    background: -moz-linear-gradient(19% 75% 90deg,#E7A93D, #FCD581); */
    background: #E7A93D;

    /*border styles*/
    border-top: solid 4px #DEAE59;
    border-bottom: solid 4px #DEAE59;
    border-right: solid 4px #DEAE59;
    border-left: solid 4px #DEAE59;
    border-style: ridge;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 3px 5px #000000;
    display: inline-block;
}

.buynow-btn-2 a {
    text-decoration: none;
    color: black;
}

.buynow-btn-2:after {
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(100%);
    width: 80%;
    height: 220px;
    position: absolute;
    z-index: 1;
    animation: slide 3s infinite;

    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1); /* IE6-9 */
}

.store-widget {
    bottom: 80px;
    background: #0e2820;
    position: fixed;
    right: 18px;
    width: 50px;
    height: 50px;
    padding: 5px 3px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.store-widget.widget-0 {
    bottom: 135px;
    font-size: 1.6em;
}

.store-widget.widget-1 {
    bottom: 190px;
    font-size: 1.6em;
}

.store-widget.no-text {
    padding-top: 12px;
}


@media screen and (max-width: 991px) {
    .brown-card .banner {
        width: 100%;
        top: -80px;
        margin-top: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .buynow-btn {
        max-width: 180px;
        position: absolute;
        top: calc(100% - 60px);
        z-index: 100;
        left: calc(50% - 90px);
    }
}

@media screen and (max-width: 768px) {
    .buynow-btn {
        max-width: 300px;
        position: absolute;
        top: calc(100% - 130px);
        z-index: 100;
        left: calc(50% - 150px);
    }
}

@media screen and (max-width: 479px) {
    .brown-card .banner {
        width: 100%;
        top: -70px;
    }

    .cart-button {
        margin-right: 10px;
        padding-right: 15px;
    }

    .brand {
        justify-content: start;
    }

    .grid-4-columns {
        grid-template-columns: 1fr 1fr;
    }

    .brand_content {
        overflow: auto;
        white-space: nowrap;
        display: inline-block;
    }

    .brand_block {
        display: inline-block;
    }

    .feature-number {
        left: 0px;
    }

    .padding-top {
        padding-top: 68px;
    }

    .buynow-btn {
        max-width: 200px;
        position: absolute;
        top: calc(100% - 50px);
        z-index: 100;
        left: calc(50% - 100px);
    }
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew8.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew8.ttf) format('truetype');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v36/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFoq92mQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v36/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Coq92mQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v36/0QI6MX1D_JOuGQbT0gvTJPa787weuxJBkqg.ttf) format('truetype');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v36/0QI6MX1D_JOuGQbT0gvTJPa787z5vBJBkqg.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE3U3f4c.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE3U3f4c.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE3U3f4c.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FHU3f4c.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FHU3f4c.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYiFV0Uw.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFV0Uw.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYiFV0Uw.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-FV0Uw.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-FV0Uw.ttf) format('truetype');
}
*{box-sizing:border-box}*,*::after,*::before{box-sizing:border-box}html,body{line-height:1}body{line-height:initial;font-style:normal;font-weight:400;visibility:visible;font-family:"Lato",sans-serif;color:#806958}h1,h2,h3,h4,h5,h6{font-weight:400;margin-top:0}p:last-child{margin-bottom:0}a,button{color:inherit;line-height:inherit;text-decoration:none;cursor:pointer}a,button,img,input,span{transition:all 0.3s ease 0s}*:focus{outline:none !important}a:focus{color:inherit;outline:none;text-decoration:none}a:hover{text-decoration:none}button,input[type="submit"]{cursor:pointer}img{max-width:100%;height:auto}ul{list-style:outside none none;margin:0;padding:0}figure{padding:0;margin:0}.fix{overflow:hidden}.hidden{display:none}.clear{clear:both}.container{max-width:1200px}@media only screen and (max-width: 767px){.container{max-width:464px}}@media only screen and (max-width: 479px){.container{width:100%}}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0;margin:0}.bg-white{background-color:#fff}.bg-light-grey{background-color:#f6fafb}.bg-grey{background-color:#f8f8f8}.bluewood-bg{background:#354b65}.bluewood-bg-overlay{position:relative}.bluewood-bg-overlay::before{background:rgba(70,90,112,0.9);content:"";position:absolute;left:0;top:0;width:100%;height:100%}.overly-bg-black{position:relative}.overly-bg-black::after{background:rgba(0,0,0,0.3);content:"";position:absolute;left:0;top:0;width:100%;height:100%}input:-moz-placeholder,textarea:-moz-placeholder{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}#scrollUp{background:#806958 none repeat scroll 0 0;bottom:85px;color:#ffffff;cursor:pointer;display:none;font-size:20px;height:45px;line-height:39px;position:fixed;right:12px;text-align:center;width:45px;z-index:9999;border-radius:50%;border:2px solid #fff;-webkit-transition:.3s;transition:.3s}#scrollUp:hover i{animation-name:fadeInUp;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite}#scrollUp i{line-height:40px}.main-wrapper.header-transparent{padding:0 !important;margin:0 !important}.section-ptb{padding:100px 0}@media only screen and (min-width: 992px) and (max-width: 1199px){.section-ptb{padding:90px 0}}@media only screen and (min-width: 768px) and (max-width: 991px){.section-ptb{padding:80px 0}}@media only screen and (max-width: 767px){.section-ptb{padding:70px 0}}@media only screen and (max-width: 479px){.section-ptb{padding:60px 0}}.section-pt{padding-top:100px}@media only screen and (min-width: 992px) and (max-width: 1199px){.section-pt{padding-top:90px}}@media only screen and (min-width: 768px) and (max-width: 991px){.section-pt{padding-top:80px}}@media only screen and (max-width: 767px){.section-pt{padding-top:70px}}@media only screen and (max-width: 479px){.section-pt{padding-top:60px}}.section-pt-70{padding-top:70px}@media only screen and (min-width: 992px) and (max-width: 1199px){.section-pt-70{padding-top:60px}}@media only screen and (min-width: 768px) and (max-width: 991px){.section-pt-70{padding-top:50px}}@media only screen and (max-width: 767px){.section-pt-70{padding-top:40px}}@media only screen and (max-width: 479px){.section-pt-70{padding-top:30px}}.section-pb-70{padding-bottom:80px}@media only screen and (min-width: 992px) and (max-width: 1199px){.section-pb-70{padding-bottom:60px}}@media only screen and (min-width: 768px) and (max-width: 991px){.section-pb-70{padding-bottom:50px}}@media only screen and (max-width: 767px){.section-pb-70{padding-bottom:40px}}@media only screen and (max-width: 479px){.section-pb-70{padding-bottom:30px}}.section-pb{padding-bottom:100px}@media only screen and (min-width: 992px) and (max-width: 1199px){.section-pb{padding-bottom:90px}}@media only screen and (min-width: 768px) and (max-width: 991px){.section-pb{padding-bottom:80px}}@media only screen and (max-width: 767px){.section-pb{padding-bottom:70px}}@media only screen and (max-width: 479px){.section-pb{padding-bottom:60px}}.mt-23{margin-top:23px}.mt-30{margin-top:30px}.mt-50{margin-top:50px}.mt-55{margin-top:55px}.mt-57{margin-top:57px}.mt-60{margin-top:60px}.mt-100{margin-top:100px}.mb-15{margin-bottom:15px}.mb-30{margin-bottom:30px}.mb-40{margin-bottom:40px}.mb-55{margin-bottom:55px}.mb-58{margin-bottom:58px}.mb-46{margin-bottom:46px}.mb-47{margin-bottom:47px}.mb-60{margin-bottom:60px}.mb-62{margin-bottom:62px}.mb-65{margin-bottom:65px}.mb-66{margin-bottom:66px}.mb-68{margin-bottom:68px}.mb-70{margin-bottom:70px}.mb-90{margin-bottom:90px}.mb-92{margin-bottom:92px}.mb-95{margin-bottom:95px}.mb-100{margin-bottom:100px}.fs-0{font-size:0 !important}.fs-1{font-size:0.25rem !important}.fs-2{font-size:0.5rem !important}.fs-2_5{font-size:0.75rem !important}.fs-3{font-size:1rem !important}.fs-4{font-size:1.5rem !important}.fs-5{font-size:3rem !important}table.table-custom-responsive{border-collapse:collapse;margin:0;padding:0;width:100%;table-layout:fixed}table.table-custom-responsive caption{margin:.5em 0 .75em}table.table-custom-responsive th{padding:.625em;text-align:center;letter-spacing:.1em;text-transform:uppercase}table.table-custom-responsive td{text-align:center}table.table-custom-responsive tbody+tbody{border:0 !important}table.table-custom-responsive th,table.table-custom-responsive td{border-top:1px solid #D0AA7F;padding-left:0px;padding-right:0px}@media screen and (max-width: 600px){table.table-custom-responsive thead{clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}table.table-custom-responsive tr{display:block;margin-bottom:.625em}table.table-custom-responsive td{display:block;text-align:right}table.table-custom-responsive td::before{content:attr(data-label);float:left;font-weight:bold;text-transform:uppercase}}.form-control{color:#806958;border:1px solid #806958;border-radius:0.8rem}label{font-size:0.89em}.custom-select,select.form-control{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:transparent;background-image:url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");background-repeat:no-repeat;background-position-x:99%;background-position-y:5px}.form-control:disabled,.form-control[readonly]{background:none;color:#B39C8D}a.secondary-link{color:#D0AA7F}a.primary-link{color:#806958;text-decoration:underline}a.facebook{background:#3B5999;color:white}a.twitter{background:#1DA1F2;color:white}a.pinterest{background:#CB2028;color:white}a.google-plus{background:#fe6d4c;color:white}a.linkedin{background:#010103;color:white}.button{background:#806958;box-shadow:none;color:#fff;display:inline-block;height:45px;line-height:45px;padding:0 22px;text-transform:uppercase;font-size:13px;border-radius:3px}.btn-primary{background-color:#D9C1A6 !important;border-color:#D9C1A6 !important;color:white !important}.btn-primary:hover{background-color:#806958 !important;border-color:#806958 !important}.btn{border-radius:0.8rem}.btn-outline-info{color:#806958;background-color:transparent;background-image:none;border-color:#806958}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled):hover{color:#fff;background-color:#806958;border-color:#806958}.btn-outline-info:focus,.btn-outline-info:active{box-shadow:0 0 0 0.2rem #806958}.show>.btn-outline-info.dropdown-toggle{background:none}.jssocials-shares{display:flex}.jssocials-shares .jssocials-share{margin:5px}.swal2-styled.swal2-confirm{background-color:#806958 !important}.logo-name{font-size:3em;font-weight:600}.off_canvars_overlay{width:100%;height:100%;position:fixed;z-index:99;opacity:0;visibility:hidden;cursor:crosshair;background:#806958;top:0}.off_canvars_overlay.active{opacity:0.5;visibility:visible}.offcanvas_menu{height:0px;display:none}@media only screen and (min-width: 768px) and (max-width: 991px){.offcanvas_menu{display:block}}@media only screen and (max-width: 767px){.offcanvas_menu{display:block}}.offcanvas_menu_wrapper{width:290px;position:fixed;background:#fff;z-index:99;top:0;height:100vh;transition:.5s;left:0;margin-left:-300px;padding:50px 15px 30px;overflow-y:auto}.offcanvas_menu_wrapper.active{margin-left:0}.offcanvas_menu_wrapper .slinky-theme-default{background:inherit;min-height:300px;overflow-y:auto}.offcanvas_menu_wrapper .search_container{display:block}.offcanvas_menu_wrapper .language_currency{display:block}.offcanvas_menu_wrapper .header_account_area{display:flex}.offcanvas_menu_wrapper .call-support{display:block}.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand{transform:rotate(180deg)}.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand{transform:rotate(180deg)}.offcanvas_main_menu li{position:relative}.offcanvas_main_menu li:last-child{margin:0}.offcanvas_main_menu li span.menu-expand{position:absolute;right:0}.offcanvas_main_menu li a{font-size:14px;font-weight:400;text-transform:capitalize;display:block;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #e1e1e1}.offcanvas_main_menu li a:hover{color:#806958}.offcanvas_main_menu li ul.sub-menu{padding-left:20px}.offcanvas_footer{margin-top:50px;padding-bottom:50px;text-align:center}.offcanvas_footer span a{font-size:14px}.offcanvas_footer span a:hover{color:#806958}.offcanvas_footer ul{margin-top:20px}.offcanvas_footer ul li{display:inline-block;margin-right:4px}.offcanvas_footer ul li:last-child{margin-right:0}.offcanvas_footer ul li a{display:inline-block;width:30px;height:30px;text-align:center;line-height:30px;border-radius:50%;font-size:13px;color:#ffffff}.offcanvas_footer ul li.facebook a{background:#3c5b9b}.offcanvas_footer ul li.facebook a:hover{background:#806958}.offcanvas_footer ul li.twitter a{background:#1DA1F2}.offcanvas_footer ul li.twitter a:hover{background:#806958}.offcanvas_footer ul li.pinterest a{background:#BD081B}.offcanvas_footer ul li.pinterest a:hover{background:#806958}.offcanvas_footer ul li.google-plus a{background:#DD4D42}.offcanvas_footer ul li.google-plus a:hover{background:#806958}.offcanvas_footer ul li.linkedin a{background:#010103}.offcanvas_footer ul li.linkedin a:hover{background:#806958}.slinky-theme-default a:not(.back){padding:10px 0;text-transform:capitalize;font-size:16px;font-weight:400}.slinky-theme-default a:not(.back):hover{background:inherit;color:#806958}.canvas_close{position:absolute;top:10px;right:13px}.canvas_close a{font-size:18px;text-transform:uppercase;font-weight:500;width:32px;height:32px;display:block;text-align:center;line-height:30px !important;border:1px solid #e1e1e1;border-radius:50%}.canvas_close a:hover{background:#806958;border-color:#806958;color:#fff}.canvas_open{position:absolute;right:17px;top:25px;z-index:9}@media only screen and (max-width: 767px){.canvas_open{right:20px;top:23px}}.canvas_open a{font-size:30px;width:43px;height:40px;display:block;line-height:44px;text-align:center}@media only screen and (max-width: 767px){.canvas_open a{width:32px;height:32px;line-height:35px;font-size:25px}}.canvas_open a:hover{color:#806958;border-color:#806958}.sticky-header.sticky{position:fixed;z-index:99;width:100%;top:0;background:rgba(255,255,255,0.9);box-shadow:0 1px 3px rgba(0,0,0,0.11);-webkit-animation-name:fadeInDown;animation-name:fadeInDown;-webkit-animation-duration:900ms;animation-duration:900ms;-webkit-animation-timing-function:cubic-bezier(0.2, 1, 0.22, 1);animation-timing-function:cubic-bezier(0.2, 1, 0.22, 1);-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-play-state:running;animation-play-state:running;border-bottom:0;display:block}@media only screen and (min-width: 768px) and (max-width: 991px){.sticky-header.sticky{position:inherit;-webkit-box-shadow:inherit;box-shadow:inherit;-webkit-animation-name:inherit;animation-name:inherit;padding:0;background:inherit;opacity:inherit}}@media only screen and (max-width: 767px){.sticky-header.sticky{position:inherit;-webkit-box-shadow:inherit;box-shadow:inherit;-webkit-animation-name:inherit;animation-name:inherit;padding:0;background:inherit;opacity:inherit}}.sticky-header.sticky .search_widget{top:50px}.sticky-header.sticky .dropdown_account{top:50px}.sticky-header.sticky .mini_cart{top:55px}.main_header form{margin:0px}.main_header .form-control{padding:0px 20px;border:0px;height:inherit !important;background-position-y:0px;margin-left:5px}@media only screen and (min-width: 768px) and (max-width: 991px){.main_header{padding:28px 0}}@media only screen and (max-width: 767px){.main_header{padding:25px 0}}@media only screen and (min-width: 768px) and (max-width: 991px){.header_top{display:none}}@media only screen and (max-width: 767px){.header_top{display:none}}@media only screen and (min-width: 768px) and (max-width: 991px){.welcome-text{text-align:center;margin-bottom:10px}}@media only screen and (max-width: 767px){.welcome-text{text-align:center;margin-bottom:10px}}.welcome-text p{font-size:12px;line-height:24px}@media only screen and (min-width: 768px) and (max-width: 991px){.welcome-text p{line-height:22px}}@media only screen and (max-width: 767px){.welcome-text p{line-height:22px}}@media only screen and (min-width: 768px) and (max-width: 991px){.language_currency{display:none;margin-bottom:18px;text-align:center}}@media only screen and (max-width: 767px){.language_currency{display:none;margin-bottom:18px;text-align:center}}.language_currency>ul>li{display:inline-block;position:relative;margin-right:22px}.language_currency>ul>li:last-child{margin-right:0}@media only screen and (min-width: 768px) and (max-width: 991px){.language_currency>ul>li{margin-right:7px}}@media only screen and (max-width: 767px){.language_currency>ul>li{margin-right:7px}}.language_currency>ul>li:hover ul.dropdown_currency,.language_currency>ul>li:hover ul.dropdown_language{visibility:visible;max-height:200px}.language_currency>ul>li:hover>a{color:#806958}.language_currency>ul>li>a{text-transform:capitalize;line-height:45px;font-size:13px;display:inline-block;font-weight:400}@media only screen and (min-width: 768px) and (max-width: 991px){.language_currency>ul>li>a{line-height:22px;color:#806958}}@media only screen and (max-width: 767px){.language_currency>ul>li>a{line-height:22px;color:#806958}}.language_currency>ul>li>a i{margin-left:3px}@media only screen and (min-width: 768px) and (max-width: 991px){.language_currency>ul>li>a i{margin-left:0px}}@media only screen and (max-width: 767px){.language_currency>ul>li>a i{margin-left:0px}}.language_currency>ul>li>a img{margin-right:4px}.language_currency>ul>li:hover a:not([href]):not([tabindex]){color:#806958}.dropdown_currency,.dropdown_language{position:absolute;background:#fff;border:1px solid #e1e1e1;padding:10px 20px;text-align:left;top:100%;right:0;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;overflow:hidden;z-index:9999;border-radius:3px;visibility:hidden;max-height:0}@media only screen and (min-width: 768px) and (max-width: 991px){.dropdown_currency,.dropdown_language{left:-30px;right:auto}}@media only screen and (max-width: 767px){.dropdown_currency,.dropdown_language{left:-30px;right:auto}}.dropdown_currency li a,.dropdown_language li a{text-transform:capitalize;display:block;font-size:13px;white-space:nowrap;line-height:28px;color:#806958}.dropdown_currency li a:hover,.dropdown_language li a:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.dropdown_language{left:-10px}}@media only screen and (max-width: 767px){.dropdown_language{left:-10px}}@media only screen and (min-width: 768px) and (max-width: 991px){.header_middle{border-bottom:0}}@media only screen and (max-width: 767px){.header_middle{border-bottom:0}}.logo img{max-width:150px}@media only screen and (max-width: 767px){.logo img{max-width:120px}}.inverted{z-index:2}.inverted.main_header{background:#0F1A17;width:100%}.inverted.main_header .header_account_area{color:white}.inverted .logo img{filter:brightness(0) invert(1)}.inverted .canvas_open{filter:brightness(0) invert(1)}.header_account-list:last-child{margin-right:0}.header_account-list>a{font-size:24px;position:relative}.header_account-list>a:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.header_account-list>a{font-size:22px}}@media only screen and (max-width: 767px){.header_account-list>a{font-size:22px}}.top_links{position:relative}.top_links:hover .dropdown_links{visibility:visible;max-height:200px}.dropdown_links{position:absolute;background:#fff;border:1px solid #e1e1e1;padding:10px 20px;text-align:left;top:100%;right:-36px;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;overflow:hidden;z-index:9999;border-radius:3px;visibility:hidden;max-height:0}@media only screen and (min-width: 768px) and (max-width: 991px){.dropdown_links{padding:10px 12px}}@media only screen and (max-width: 767px){.dropdown_links{padding:10px 12px}}.dropdown_links li a{text-transform:capitalize;display:block;font-size:13px;white-space:nowrap;line-height:28px;color:#806958}.dropdown_links li a:hover{color:#806958}.hover_category{position:relative}.hover_category::before{content:"";width:1px;height:16px;background:#a1a1a1;position:absolute;top:50%;margin-top:-8px;right:0}@media only screen and (min-width: 768px) and (max-width: 991px){.hover_category::before{display:none}}@media only screen and (max-width: 767px){.hover_category::before{display:none}}.hover_category .select_option{border:0;background:inherit;height:54px;line-height:54px;padding-left:25px;padding-right:35px;font-size:14px}@media only screen and (min-width: 992px) and (max-width: 1199px){.hover_category .select_option{padding-right:28px}}@media only screen and (min-width: 768px) and (max-width: 991px){.hover_category .select_option{height:34px;line-height:35px;font-size:13px;padding-left:50px;padding-right:51px;border:1px solid #e1e1e1}}@media only screen and (max-width: 767px){.hover_category .select_option{height:34px;line-height:35px;font-size:13px;padding-left:50px;padding-right:51px;border:1px solid #e1e1e1}}.hover_category .select_option::after{top:54%;right:13px}.hover_category .select_option ul.list{max-height:300px;overflow:auto}@media only screen and (min-width: 768px) and (max-width: 991px){.hover_category .select_option ul.list{max-height:220px}}@media only screen and (max-width: 767px){.hover_category .select_option ul.list{max-height:220px}}.search_container{margin-right:138px}@media only screen and (min-width: 992px) and (max-width: 1199px){.search_container{margin-right:40px}}@media only screen and (min-width: 768px) and (max-width: 991px){.search_container{display:none;margin-right:0}}@media only screen and (max-width: 767px){.search_container{margin-right:0;display:none}}.search_container form{display:flex;border-radius:30px;border:1px solid #e1e1e1;background:#fff;width:520px}@media only screen and (min-width: 992px) and (max-width: 1199px){.search_container form{width:481px}}@media only screen and (min-width: 768px) and (max-width: 991px){.search_container form{flex-direction:column-reverse;border:0;align-items:center;width:100%}}@media only screen and (max-width: 767px){.search_container form{flex-direction:column-reverse;border:0;align-items:center;width:100%}}.search_box{position:relative;width:100%}@media only screen and (min-width: 768px) and (max-width: 991px){.search_box{border:1px solid #e1e1e1;margin-bottom:25px}}@media only screen and (max-width: 767px){.search_box{border:1px solid #e1e1e1;margin-bottom:25px}}.search_box input::-webkit-input-placeholder{color:#806958}.search_box input::-moz-placeholder{color:#806958}.search_box input:-ms-input-placeholder{color:#806958}.search_box input:-moz-placeholder{color:#806958}.search_box input{border:0;background:inherit;width:100%;height:54px;color:#806958;font-size:14px;font-weight:400;padding:0 53px 0 20px;opacity:0.7}@media only screen and (min-width: 768px) and (max-width: 991px){.search_box input{font-size:12px;padding:0 54px 0 10px;width:100%;height:34px}}@media only screen and (max-width: 767px){.search_box input{font-size:12px;padding:0 54px 0 10px;width:100%;height:34px}}.search_box button{border:0;position:absolute;top:0;height:100%;right:15px;font-weight:400;font-size:25px;border-radius:0 5px 5px 0;-webkit-transition:.3s;transition:.3s;background:inherit}.search_box button:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.search_box button{min-width:55px;padding:0 6px;top:0;bottom:0;right:0;font-size:20px}}@media only screen and (max-width: 767px){.search_box button{min-width:55px;padding:0 6px;top:0;bottom:0;right:0;font-size:20px}}.header_account_area{display:flex;justify-content:center;padding:45px 41px}@media only screen and (min-width: 992px) and (max-width: 1199px){.header_account_area{padding:45px 32px}}@media only screen and (min-width: 768px) and (max-width: 991px){.header_account_area{display:none;padding:22px 0 14px;border-right:0;border-left:0}}@media only screen and (max-width: 767px){.header_account_area{display:none;padding:22px 0 14px;border-right:0;border-left:0}}.header_right_info{display:flex;align-items:center;justify-content:flex-end}@media only screen and (min-width: 768px) and (max-width: 991px){.header_bottom{border-bottom:0}}@media only screen and (max-width: 767px){.header_bottom{border-bottom:0}}.menu_position{position:relative}@media only screen and (min-width: 768px) and (max-width: 991px){.main_menu{display:none}}@media only screen and (max-width: 767px){.main_menu{display:none}}.main_menu nav>ul{display:flex}.main_menu nav>ul>li{position:relative;margin-right:37px}.main_menu nav>ul>li:last-child{margin-right:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.main_menu nav>ul>li{margin-right:24px}}.main_menu nav>ul>li:hover ul.sub_menu{visibility:visible;max-height:360px;padding:24px 20px}.main_menu nav>ul>li:hover .mega_menu{visibility:visible;max-height:300px;padding:25px 30px 30px 30px}.main_menu nav>ul>li:hover>a{color:#806958}.main_menu nav>ul>li:hover>a::before{opacity:1;visibility:visible}.main_menu nav>ul>li>a{display:block;font-size:13px;line-height:54px;text-transform:uppercase;font-weight:500;position:relative}.main_menu nav>ul>li>a i{margin-left:3px}.main_menu nav>ul>li>a.active{color:#806958}.main_menu nav>ul>li>a.active::before{opacity:1;visibility:visible}.main_menu nav>ul>li>a::before{position:absolute;content:"";width:100%;height:3px;background:#806958;bottom:-1px;left:0;opacity:0;visibility:hidden;transition:.3s}.main_menu nav>ul>li ul.sub_menu{position:absolute;min-width:220px;padding:0 20px;background:#fff;box-shadow:0 3px 11px 0 rgba(0,0,0,0.1);max-height:0;-webkit-transform-origin:0 0 0;transform-origin:0 0 0;left:0;right:auto;visibility:hidden;overflow:hidden;-webkit-transition:.5s;transition:.5s;z-index:99;top:101%;text-align:left}.main_menu nav>ul>li ul.sub_menu li a{font-size:14px;font-weight:400;display:block;line-height:32px;text-transform:capitalize}.main_menu nav>ul>li ul.sub_menu li a:hover{color:#806958}.main_menu nav>ul>li.mega_items{position:static}.main_menu nav>ul>li .mega_menu{position:absolute;min-width:100%;padding:0 30px 0 30px;background:#fff;box-shadow:0 3px 11px 0 rgba(0,0,0,0.1);max-height:0;-webkit-transform-origin:0 0 0;transform-origin:0 0 0;left:0;right:auto;visibility:hidden;overflow:hidden;-webkit-transition:.5s;transition:.5s;z-index:99;top:101%;text-align:left}.mega_menu_inner{display:flex;justify-content:space-between}.mega_menu_inner>li>a{font-size:15px;line-height:24px;text-transform:capitalize;font-weight:500;display:block;margin-bottom:12px}.mega_menu_inner>li>a:hover{color:#806958}.mega_menu_inner>li ul li{display:block}.mega_menu_inner>li ul li a{font-size:14px;font-weight:400;display:block;line-height:30px;text-transform:capitalize}.mega_menu_inner>li ul li a:hover{color:#806958}.mini_cart_wrapper{position:relative}.mini_cart_wrapper span.item_count{position:absolute;top:-10px;right:-8px;width:20px;height:20px;line-height:20px;background:#806958;border-radius:100%;text-align:center;font-weight:400;font-size:12px;color:#fff}.mini_cart_wrapper:hover .mini_cart{max-height:500px;padding:18px 28px 33px;visibility:visible}@media only screen and (min-width: 768px) and (max-width: 991px){.mini_cart_wrapper:hover .mini_cart{padding:10px 11px 20px;visibility:inherit}}@media only screen and (max-width: 767px){.mini_cart_wrapper:hover .mini_cart{padding:10px 11px 20px;visibility:inherit}}.mini_cart{position:absolute;min-width:355px;padding:0 28px;background:#fff;z-index:999;right:0;top:142%;max-height:0;visibility:hidden;overflow:hidden;border:1px solid #e1e1e1;-webkit-transition:.5s;transition:.5s}@media only screen and (min-width: 768px) and (max-width: 991px){.mini_cart{display:none;transition:unset;max-height:500px;padding:10px 11px 20px;min-width:260px;border:1px solid #e1e1e1;right:-69px;visibility:inherit;top:130%}}@media only screen and (max-width: 767px){.mini_cart{display:none;transition:unset;max-height:500px;padding:10px 11px 20px;min-width:260px;border:1px solid #e1e1e1;right:-69px;visibility:inherit;top:130%}}.cart_img{width:90px;margin-right:10px;border:1px solid transparent}.cart_img:hover{border-color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.cart_img{width:70px}}@media only screen and (max-width: 767px){.cart_img{width:70px}}.cart_info{width:63%}.cart_info a{font-weight:400;font-size:14px;line-height:20px;display:block;margin-bottom:6px}@media only screen and (min-width: 768px) and (max-width: 991px){.cart_info a{font-size:13px}}@media only screen and (max-width: 767px){.cart_info a{font-size:13px}}.cart_info a:hover{color:#806958}.cart_info p{font-size:12px}.cart_info p span{font-weight:600}.cart_remove a{font-size:15px;display:block;line-height:20px;text-align:center}.cart_remove a:hover{color:#806958}.cart_item{overflow:hidden;padding:11px 0;border-bottom:1px solid #e1e1e1;display:flex;justify-content:space-between}.mini_cart_table{padding:23px 0}.cart_total{display:flex;justify-content:space-between}.cart_total span{font-size:14px;font-weight:400}.cart_total span.price{font-weight:700}@media only screen and (min-width: 768px) and (max-width: 991px){.cart_total span{font-size:13px}}@media only screen and (max-width: 767px){.cart_total span{font-size:13px}}.cart_button:first-child{margin-bottom:15px}.cart_button a{text-transform:uppercase;border-radius:3px;font-size:12px;font-weight:500;background:#eef0f1;display:block;text-align:center;line-height:20px;margin-bottom:0;padding:13px 0px 11px;border:1px solid #e1e1e1}.cart_button a:hover{background:#806958;border-color:#806958;color:#fff}.categories_menu{position:relative}.categories_title{position:relative;cursor:pointer;height:54px;line-height:54px;border-right:1px solid #e1e1e1}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_title{height:45px;line-height:46px;border-right:0;padding:0 30px;background:#806958}}@media only screen and (max-width: 767px){.categories_title{height:43px;line-height:43px;border-right:0;background:#806958;padding:0 25px}}.categories_title::before{content:"\e907";font-family:'plaza-icon';color:#806958;display:inline-block;position:absolute;font-size:22px;line-height:0px;left:0;top:50%;transform:translatey(-50%)}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_title::before{left:27px;color:#fff}}@media only screen and (max-width: 767px){.categories_title::before{left:23px;color:#fff}}.categories_title h2{font-size:13px;font-weight:500;line-height:26px;cursor:pointer;margin-bottom:0;display:inline-block;text-transform:uppercase;padding-left:53px}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_title h2{line-height:45px;float:right;padding-left:0;color:#fff}}@media only screen and (max-width: 767px){.categories_title h2{font-size:13px;line-height:43px;float:right;padding-left:0;color:#fff}}.categories_menu_toggle{background:#fff;position:absolute;width:100%;top:100%;z-index:9;display:none;padding:15px 0;box-shadow:0px 0px 5.76px 0.24px rgba(0,0,0,0.1)}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle{display:none;max-height:350px;overflow:auto}}@media only screen and (max-width: 767px){.categories_menu_toggle{display:none;max-height:350px;overflow:auto}}.categories_menu_toggle>ul>li{position:relative}.categories_menu_toggle>ul>li>a{font-size:14px;line-height:40px;text-transform:capitalize;font-weight:400;display:block;cursor:pointer;padding:0 20px 0 30px}@media only screen and (min-width: 992px) and (max-width: 1199px){.categories_menu_toggle>ul>li>a{line-height:38px}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li>a{line-height:38px}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li>a{line-height:38px}}.categories_menu_toggle>ul>li>a i.fa-angle-right{float:right;font-size:15px;line-height:35px;transition:.3s;-webkit-transition:.3s}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li>a i.fa-angle-right{display:none}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li>a i.fa-angle-right{display:none}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li>a:hover{color:#806958}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li>a:hover{color:#806958}}.categories_menu_toggle>ul>li:last-child>a{border-bottom:0}.categories_menu_toggle>ul>li:hover ul.categories_mega_menu{opacity:1;visibility:visible;left:100%}.categories_menu_toggle>ul>li:hover>a{color:#D8C0A6}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li:hover>a{background:inherit}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li:hover>a{background:inherit}}.categories_menu_toggle>ul>li ul.categories_mega_menu{position:absolute;left:120%;width:500px;background:#fff;padding:25px 20px 23px;overflow:hidden;top:0;-webkit-transition:.3s;transition:.3s;z-index:99;opacity:0;visibility:hidden;display:flex;justify-content:space-between}@media only screen and (min-width: 992px) and (max-width: 1199px){.categories_menu_toggle>ul>li ul.categories_mega_menu{width:480px}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li ul.categories_mega_menu{display:none;opacity:inherit !important;visibility:inherit !important;left:inherit !important;width:100%;top:100%;max-height:350px;overflow:auto;transition:unset;box-shadow:inherit;position:inherit;padding:0 20px 0px 60px}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li ul.categories_mega_menu{display:none;opacity:inherit !important;visibility:inherit !important;left:inherit !important;width:100%;top:100%;max-height:350px;overflow:auto;transition:unset;box-shadow:inherit;position:inherit;padding:0 20px 0px 60px}}.categories_menu_toggle>ul>li ul.categories_mega_menu.open{display:block;left:0}.categories_menu_toggle>ul>li ul.categories_mega_menu>li{padding:0 15px}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li ul.categories_mega_menu>li{padding:0}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li ul.categories_mega_menu>li{padding:0}}.categories_menu_toggle>ul>li ul.categories_mega_menu>li>a{line-height:30px;font-size:14px;font-weight:500;text-transform:uppercase;display:block}.categories_menu_toggle>ul>li ul.categories_mega_menu>li>a:hover{color:#D8C0A6}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li ul.categories_mega_menu>li>a{line-height:38px}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li ul.categories_mega_menu>li>a{line-height:38px}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle>ul>li ul.categories_mega_menu>li.menu_item_children>a{text-transform:capitalize;font-weight:400}}@media only screen and (max-width: 767px){.categories_menu_toggle>ul>li ul.categories_mega_menu>li.menu_item_children>a{text-transform:capitalize;font-weight:400}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle ul li.menu_item_children>a{position:relative}.categories_menu_toggle ul li.menu_item_children>a::before{position:absolute;content:"+";right:15px;top:50%;transform:translatey(-50%);font-size:20px}}@media only screen and (max-width: 767px){.categories_menu_toggle ul li.menu_item_children>a{position:relative}.categories_menu_toggle ul li.menu_item_children>a::before{position:absolute;content:"+";right:15px;top:50%;transform:translatey(-50%);font-size:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle ul li.menu_item_children.open>a::before{display:none}.categories_menu_toggle ul li.menu_item_children.open>a::after{position:absolute;content:"-";right:15px;top:50%;transform:translatey(-50%);font-size:30px}}@media only screen and (max-width: 767px){.categories_menu_toggle ul li.menu_item_children.open>a::before{display:none}.categories_menu_toggle ul li.menu_item_children.open>a::after{position:absolute;content:"-";right:15px;top:50%;transform:translatey(-50%);font-size:30px}}@media only screen and (min-width: 768px) and (max-width: 991px){.categorie_sub_menu{display:none;padding:0 0 0 30px}}@media only screen and (max-width: 767px){.categorie_sub_menu{display:none;padding:0 0 0 30px}}.categorie_sub_menu li a{text-transform:capitalize;display:block;font-size:14px;font-weight:400;line-height:30px}.categorie_sub_menu li a:hover{color:#D8C0A6}@media only screen and (min-width: 768px) and (max-width: 991px){.categorie_sub_menu li a{line-height:38px}}@media only screen and (max-width: 767px){.categorie_sub_menu li a{line-height:38px}}.categories_menu_toggle ul li ul.categories_mega_menu.column_2{width:400px}@media only screen and (max-width: 767px){.categories_menu_toggle ul li ul.categories_mega_menu.column_2{width:100%}}@media only screen and (min-width: 768px) and (max-width: 991px){.categories_menu_toggle ul li ul.categories_mega_menu.column_2{width:100%}}.categorie_sub{opacity:0;z-index:999;position:absolute;width:100%;left:0;background:#fff;-webkit-transition:.3s;transition:.3s;top:65%;visibility:hidden}.categorie_sub.open{top:95%;opacity:1;visibility:visible}.categories_menu_toggle ul li.has-sub>a::before{position:absolute;content:"\f055";font-family:FontAwesome;top:0;right:20px;font-size:18px;pointer-events:none}.categories_menu_toggle ul li.has-sub>a.open::before{content:"\f056"}.categories_menu_toggle ul li.has-sub ul.categorie_sub li a{text-transform:capitalize;font-size:14px;font-weight:400;padding-left:30px;display:block;line-height:45px}.categories_menu_toggle ul li.has-sub ul.categorie_sub li a:hover{color:#D8C0A6}.categories_menu_toggle ul li ul.categories_mega_menu>li:first-child{padding-left:0}.categories_menu_toggle ul li ul.categories_mega_menu>li:last-child{padding-right:0}.categorie_banner{position:absolute;bottom:0;right:20px;width:500px}@media only screen and (max-width: 767px){.categorie_banner{display:none}}@media only screen and (min-width: 768px) and (max-width: 991px){.categorie_banner{display:none}}.categorie_banner a img:hover{opacity:0.8}.call-support{text-align:right}@media only screen and (min-width: 768px) and (max-width: 991px){.call-support{display:none;text-align:center;margin-bottom:22px}}@media only screen and (max-width: 767px){.call-support{display:none;text-align:center;margin-bottom:22px}}.call-support p{font-size:14px;line-height:26px}.call-support p a:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.call-support p{font-size:13px}}@media only screen and (max-width: 767px){.call-support p{font-size:13px}}.header_right_two .search_container{margin-right:28px}@media only screen and (min-width: 992px) and (max-width: 1199px){.header_right_two .search_container{margin-right:21px}}.header_right_two .search_container form{width:210px;border:0;background:inherit;border-radius:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.header_right_two .search_container form{width:166px}}.header_right_two .search_box input{padding:0 38px 0 0;height:40px}.header_right_two .search_box button{right:0;padding:0;min-width:inherit}.header_right_two .header_account_area{padding:0;border-right:0;border-left:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.header_right_two .header_account-list{margin-right:21px}}.header_transparent{position:absolute;top:40px;left:0;width:100%;z-index:9;padding:0 40px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.header_transparent{padding:0}}@media only screen and (min-width: 992px) and (max-width: 1199px){.header_transparent{padding:0}}@media only screen and (min-width: 768px) and (max-width: 991px){.header_transparent{position:inherit;padding:28px 0}}@media only screen and (max-width: 767px){.header_transparent{position:inherit;padding:25px 0}}.header_transparent.sticky-header.sticky{padding:15px 0}@media only screen and (min-width: 768px) and (max-width: 991px){.header_transparent.sticky-header.sticky{padding:0}}@media only screen and (max-width: 767px){.header_transparent.sticky-header.sticky{padding:0}}.menu_two nav>ul>li>a{line-height:37px}.menu_two nav>ul>li>a::before{display:none}@media only screen and (min-width: 992px) and (max-width: 1199px){.menu_two nav>ul>li:hover .mega_menu{padding:25px 20px 30px 20px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.menu_two nav>ul>li .mega_menu{padding:0 20px 0 20px}}.menu_three nav>ul{justify-content:center}.menu_three nav>ul>li>a{line-height:37px}.menu_three nav>ul>li>a::before{display:none}@media only screen and (min-width: 992px) and (max-width: 1199px){.menu_three nav>ul>li:hover .mega_menu{padding:25px 20px 30px 20px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.menu_three nav>ul>li .mega_menu{padding:0 20px 0 20px}}.header_top_four{margin-bottom:42px}@media only screen and (min-width: 768px) and (max-width: 991px){.header_top_four{margin-bottom:0}}@media only screen and (max-width: 767px){.header_top_four{margin-bottom:0}}.search_four form{width:210px;border:0;background:inherit;border-radius:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.search_four form{width:166px}}.search_four .search_box input{padding:0 38px 0 0;height:40px}.search_four .search_box button{right:0;padding:0;min-width:inherit}.logo_four{text-align:center}@media only screen and (min-width: 768px) and (max-width: 991px){.logo_four{text-align:left}}@media only screen and (max-width: 767px){.logo_four{text-align:left}}.header_account_four{justify-content:flex-end;border-right:0;border-left:0;padding:0}.menu_four nav>ul{justify-content:center}.menu_four nav>ul>li>a{line-height:40px}.menu_four nav>ul>li>a::before{display:none}.single_slider{background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:cover;height:738px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.single_slider{height:519px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.single_slider{height:433px}}@media only screen and (min-width: 768px) and (max-width: 991px){.single_slider{height:350px}}@media only screen and (max-width: 767px){.single_slider{background-position:5%;height:280px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_section.mb-40{margin-bottom:30px}}@media only screen and (max-width: 767px){.slider_section.mb-40{margin-bottom:30px}}.slider_area:hover .owl-nav div{opacity:1;visibility:visible}.slider_area .owl-nav div{position:absolute;top:49%;transform:translatey(-50%);left:50px;font-size:50px;-webkit-transition:.3s;transition:.3s;opacity:0;visibility:hidden}.slider_area .owl-nav div:hover{color:#806958}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_area .owl-nav div{left:12px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_area .owl-nav div{left:8px}}@media only screen and (max-width: 767px){.slider_area .owl-nav div{left:5px}}.slider_area .owl-nav div.owl-next{right:50px;left:auto}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_area .owl-nav div.owl-next{right:12px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_area .owl-nav div.owl-next{right:8px}}@media only screen and (max-width: 767px){.slider_area .owl-nav div.owl-next{right:5px}}@media only screen and (max-width: 767px){.slider_area .owl-nav div{display:none}}.slider_area .owl-dots{position:absolute;bottom:10px;left:50%;transform:translatex(-50%)}.slider_area .owl-dots .owl-dot{width:16px;height:16px;border:2px solid #fff;border-radius:50%;display:inline-block;margin:0 3px;transition:.3s}.slider_area .owl-dots .owl-dot.active{background:#fff}.slider_area .owl-dots .owl-dot:hover{background:#fff}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_content{padding-left:30px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_content{padding-left:30px}}@media only screen and (max-width: 767px){.slider_content{text-align:center}}.slider_content h1{font-size:90px;line-height:90px;font-weight:500;margin-bottom:33px;text-transform:uppercase;letter-spacing:-2px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_content h1{font-size:63px;line-height:63px;margin-bottom:23px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_content h1{font-size:45px;line-height:50px;margin-bottom:12px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_content h1{font-size:35px;line-height:35px;margin-bottom:14px;letter-spacing:0}}@media only screen and (max-width: 767px){.slider_content h1{font-size:20px;line-height:26px;margin-bottom:7px;letter-spacing:1px}}.slider_content p{font-size:24px;line-height:24px;margin-bottom:0}.slider_content p span{color:#806958}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_content p{font-size:20px;line-height:20px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_content p{font-size:20px;line-height:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_content p{font-size:17px;line-height:24px;margin-bottom:0}}@media only screen and (max-width: 767px){.slider_content p{font-size:15px;line-height:25px}}.slider_content a{font-size:15px;font-weight:500;padding:0 45px;display:inline-block;text-transform:uppercase;border-radius:30px;height:65px;line-height:65px;background:inherit;margin-top:46px;color:#fff;background:#806958}.slider_content a:hover{background:#806958}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_content a{margin-top:36px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_content a{font-size:13px;padding:0 25px;height:45px;line-height:45px;margin-top:22px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_content a{padding:0 20px;height:40px;line-height:40px;font-size:13px;margin-top:18px}}@media only screen and (max-width: 767px){.slider_content a{font-size:11px;height:34px;line-height:34px;padding:0 18px;margin-top:13px}}.active .slider_content h1,.active .slider_content h2,.active .slider_content h3,.active .slider_content a,.active .slider_content p,.active .slider_content span{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft;-webkit-animation-delay:0.3s;animation-delay:0.3s}.active .slider_content h2{-webkit-animation-delay:0.5s;animation-delay:0.5s}.active .slider_content h3,.active .slider_content span{-webkit-animation-delay:0.7s;animation-delay:0.7s}.active .slider_content p{-webkit-animation-delay:0.7s;animation-delay:0.7s}.active .slider_content a{-webkit-animation-delay:0.9s;animation-delay:0.9s}.slider_s_two .single_slider{height:960px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_s_two .single_slider{height:675px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_s_two .single_slider{height:530px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_s_two .single_slider{height:390px}}@media only screen and (max-width: 767px){.slider_s_two .single_slider{height:300px}}.slider_s_two .single_slider .container{max-width:1427px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_s_two .single_slider .container{max-width:1200px}}.slider_s_two .slider_content{padding-top:70px}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_s_two .slider_content{padding-top:0}}@media only screen and (max-width: 767px){.slider_s_two .slider_content{padding-top:0}}.slider_s_two .slider_content>span{font-size:16px;line-height:16px;font-weight:500;width:120px;display:inline-block;margin-bottom:35px;border-left:2px solid #000000;padding-left:8px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_s_two .slider_content>span{margin-bottom:29px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_s_two .slider_content>span{font-size:14px;width:110px;margin-bottom:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_s_two .slider_content>span{font-size:13px;line-height:16px;width:103px;margin-bottom:21px}}@media only screen and (max-width: 767px){.slider_s_two .slider_content>span{font-size:13px;line-height:16px;width:99px;margin-bottom:15px;text-align:left}}.slider_s_two .slider_content h1{font-weight:300}.slider_s_two .slider_content h1 span{font-weight:400}.slider_s_two .slider_content a{background:#806958}.slider_s_two .slider_content a:hover{background:#806958}.slider_s_four .single_slider{height:960px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_s_four .single_slider{height:675px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_s_four .single_slider{height:560px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_s_four .single_slider{height:390px}}@media only screen and (max-width: 767px){.slider_s_four .single_slider{height:300px}}.slider_s_four .single_slider .container{max-width:1427px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_s_four .single_slider .container{max-width:1200px}}.slider_s_four .slider_content{padding-top:145px}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_s_four .slider_content{padding-top:0}}@media only screen and (max-width: 767px){.slider_s_four .slider_content{padding-top:0}}.slider_s_four .slider_content.center{text-align:center}.slider_s_four .slider_content.center>span{width:inherit;border-left:0;padding-left:0}.slider_s_four .slider_content>span{font-size:16px;line-height:16px;font-weight:500;width:120px;display:inline-block;margin-bottom:35px;border-left:2px solid #000000;padding-left:8px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.slider_s_four .slider_content>span{margin-bottom:29px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.slider_s_four .slider_content>span{font-size:14px;width:110px;margin-bottom:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.slider_s_four .slider_content>span{font-size:13px;line-height:16px;width:103px;margin-bottom:21px}}@media only screen and (max-width: 767px){.slider_s_four .slider_content>span{font-size:13px;line-height:16px;width:99px;margin-bottom:15px;text-align:left}}.slider_s_four .slider_content h1{font-weight:300}.slider_s_four .slider_content h1 span{font-weight:400}.slider_s_four .slider_content a{background:#806958}.slider_s_four .slider_content a:hover{background:#806958}.banner_area{margin-bottom:88px}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_area{margin-bottom:72px}}@media only screen and (max-width: 767px){.banner_area{margin-bottom:27px}}@media only screen and (max-width: 767px){.banner_area.mb-68{margin-bottom:29px}}@media only screen and (max-width: 767px){.single_banner{margin-bottom:30px}}.banner_thumb{position:relative}.banner_thumb:hover img{opacity:0.8}.banner_thumb img{transition:.3s}@media only screen and (max-width: 767px){.banner_thumb img{width:100%}}.banner_content{position:absolute;top:50%;transform:translatey(-50%);la:25px;left:31px}@media only screen and (max-width: 767px){.banner_content{left:25px}}.banner_content h3{font-size:18px;line-height:21px;margin-bottom:17px}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_content h3{font-size:16px;margin-bottom:13px}}@media only screen and (max-width: 767px){.banner_content h3{font-size:13px;line-height:17px;margin-bottom:8px}}.banner_content h2{font-size:30px;line-height:30px;margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_content h2{font-size:25px;line-height:27px}}@media only screen and (max-width: 767px){.banner_content h2{font-size:19px;line-height:22px;margin-bottom:0}}.banner_content a{font-size:13px;line-height:24px;font-weight:500;display:inline-block;border-bottom:2px solid #806958;text-transform:uppercase;margin-top:36px}.banner_content a:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_content a{margin-top:18px}}@media only screen and (max-width: 767px){.banner_content a{font-size:13px;line-height:21px;margin-top:9px}}@media only screen and (min-width: 430px) and (max-width: 575px){.banner_area.banner_four_top .col-lg-3{width:50%;flex:50%}}.banner_four_top{padding:10px 5px 0;margin-bottom:92px}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_four_top{margin-bottom:62px}}@media only screen and (max-width: 767px){.banner_four_top{margin-bottom:47px}}.banner_four_top .col-lg-3.col-md-6{padding-right:5px;padding-left:5px}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_four_top .banner_thumb img{width:100%}}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_four_top .single_banner{margin-bottom:10px}}@media only screen and (max-width: 767px){.banner_four_top .single_banner{margin-bottom:10px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.banner_four_top .banner_content h3{font-size:16px;line-height:17px;margin-bottom:12px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.banner_four_top .banner_content h2{font-size:23px;line-height:23px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.banner_four_top .banner_content a{margin-top:14px}}.banner_fullwidth{background:url(../themes/pinxin/assets/img/bg/banner7.jpg);background-attachment:scroll;background-repeat:no-repeat;background-position:center center;background-size:cover;padding:45px 0}@media only screen and (max-width: 767px){.banner_fullwidth{padding:35px 0}}.banner_fullwidth_content h3{font-size:14px;line-height:16px;font-weight:500;text-transform:uppercase;margin-bottom:20px}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_fullwidth_content h3{font-size:13px;line-height:15px;margin-bottom:15px}}@media only screen and (max-width: 767px){.banner_fullwidth_content h3{font-size:13px;line-height:16px;margin-bottom:13px}}.banner_fullwidth_content h2{font-size:60px;line-height:60px;font-weight:400;font-family:"Lato",sans-serif;margin-bottom:22px}@media only screen and (min-width: 992px) and (max-width: 1199px){.banner_fullwidth_content h2{font-size:50px;line-height:50px}}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_fullwidth_content h2{font-size:42px;line-height:43px;margin-bottom:16px}}@media only screen and (max-width: 767px){.banner_fullwidth_content h2{font-size:25px;line-height:28px;margin-bottom:14px}}.banner_fullwidth_content p{font-size:18px;line-height:23px;margin-bottom:0}@media only screen and (max-width: 767px){.banner_fullwidth_content p{font-size:16px;line-height:22px}}.banner_fullwidth_content a{font-size:14px;font-weight:500;padding:17px 55px;display:inline-block;background:#806958;color:#fff;border-radius:30px;margin-top:64px}.banner_fullwidth_content a:hover{background:#806958;color:#fff}@media only screen and (min-width: 768px) and (max-width: 991px){.banner_fullwidth_content a{padding:13px 40px;margin-top:42px}}@media only screen and (max-width: 767px){.banner_fullwidth_content a{font-size:13px;padding:8px 26px;border-radius:20px;margin-top:26px}}.tab-content>.tab-pane.active{display:block;height:auto;opacity:1;overflow:visible}.tab-content>.tab-pane{display:block;height:0;opacity:0;overflow:hidden}@media only screen and (min-width: 768px) and (max-width: 991px){.product_area.mb-95{margin-bottom:74px}}@media only screen and (max-width: 767px){.product_area.mb-95{margin-bottom:54px}}@media only screen and (max-width: 767px){.product_area.mb-62{margin-bottom:51px}}.product_header{margin-bottom:35px}@media only screen and (max-width: 767px){.product_header{margin-bottom:10px}}.product_header .section_title{margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.product_header{margin-bottom:27px}}.section_title{text-align:center;margin-bottom:30px}@media only screen and (min-width: 768px) and (max-width: 991px){.section_title{margin-bottom:25px}}@media only screen and (max-width: 767px){.section_title{margin-bottom:25px}}.section_title h2{font-size:40px;line-height:48px;font-weight:400;display:inline-block;margin-bottom:0;text-transform:capitalize;position:relative;font-family:"Lato",sans-serif;padding-bottom:22px}.section_title h2::before{position:absolute;content:"";width:80px;height:2px;background:#806958;bottom:0;left:50%;transform:translatex(-50%)}@media only screen and (min-width: 768px) and (max-width: 991px){.section_title h2{font-size:33px;line-height:37px;padding-bottom:17px}}@media only screen and (max-width: 767px){.section_title h2{font-size:19px;line-height:20px;padding-bottom:13px}}.product_tab_btn{margin-top:44px}@media only screen and (min-width: 768px) and (max-width: 991px){.product_tab_btn{margin-top:25px}}@media only screen and (max-width: 767px){.product_tab_btn{margin-top:19px}}.product_tab_btn ul{justify-content:center}.product_tab_btn ul li{margin-right:45px}.product_tab_btn ul li:last-child{margin-right:0}@media only screen and (max-width: 767px){.product_tab_btn ul li{margin-right:19px;margin-bottom:13px}}.product_tab_btn ul li a{font-size:14px;line-height:24px;text-transform:uppercase;display:inline-block;font-family:"Lato",sans-serif;border-bottom:2px solid transparent}.product_tab_btn ul li a:hover{color:#806958;border-color:#806958}.product_tab_btn ul li a.active{color:#806958;border-color:#806958}@media only screen and (max-width: 767px){.product_tab_btn ul li a{font-size:11px;line-height:22px}}.single_product:hover .action_links{opacity:1;visibility:visible;bottom:0}.single_product:hover .action_links ul li a{-webkit-transform:translateX(0);-moz-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.single_product:hover .product_thumb a.secondary_img{opacity:1;visibility:visible;-moz-transition:all 0.3s ease-in-out 0s;transition:all 0.3s ease-in-out}.product_thumb{position:relative;overflow:hidden}.product_thumb a.secondary_img{position:absolute;top:0;left:0;right:0;opacity:0;visibility:hidden;-moz-transition:all 0.3s ease-in-out 0s;transition:all 0.3s ease-in-out}@media only screen and (max-width: 767px){.product_thumb a img{width:100%}}.action_links{transition:all 0.3s ease;position:absolute;left:0;bottom:-10px;opacity:0;visibility:hidden;z-index:9;background:#fff}.action_links ul{display:flex}.action_links ul li a{line-height:60px;width:50px;text-align:center;font-size:18px;display:inline-block}.action_links ul li a:hover{color:#806958}.label_product span{position:absolute}.label_product span.label_sale{top:11px;left:11px;text-transform:uppercase;color:#fff;background:#DC0F0F;font-size:14px;height:24px;line-height:24px;padding:0 14px;text-align:center;display:block;border-radius:2px}.label_product span.label_new{top:20px;right:20px;width:50px;height:23px;text-align:center;line-height:23px;color:#fff;background:#806958;font-size:12px;border-radius:3px;text-transform:capitalize;z-index:3}.product_content{margin-top:22px;text-align:center}.product_content h4{font-weight:400;text-transform:capitalize;margin:0}.product_content h4 a:hover{color:#806958}.product_rating{margin-bottom:2px}.product_rating ul li{line-height:16px;display:inline-block}.product_rating ul li:last-child{margin-right:0}.product_rating ul li a{font-size:17px;color:#FEB954}.product_rating ul li a:hover{color:#806958}.price_box{margin-top:16px}.price_box span{line-height:16px}.price_box span.old_price{text-decoration:line-through;font-weight:400;font-size:0.9em;margin-left:5px}.price_box span.current_price{font-weight:500;font-size:1em;color:#806958}@media only screen and (max-width: 767px){.price_box span.current_price{font-size:13px}}.product_carousel .product_thumb a img{width:inherit;margin:0 auto}@media only screen and (max-width: 767px){.product_carousel .product_thumb a img{width:100%}}.product_carousel .col-lg-3{flex:0 0 100%;max-width:100%}.product_carousel:hover .owl-nav div{opacity:1;visibility:visible;left:0}.product_carousel:hover .owl-nav div.owl-next{right:0}.product_carousel .owl-nav.disabled{display:block}.product_carousel .owl-nav div{position:absolute;top:50%;transform:translatey(-50%);font-size:50px;left:15px;transition:.3s;opacity:0;visibility:hidden}.product_carousel .owl-nav div:hover{color:#806958}.product_carousel .owl-nav div.owl-next{right:15px;left:auto}.product_items .single_product{margin-bottom:30px}.product_items .single_product:last-child{margin-bottom:0}.product_deals{background:#f3f3f3;padding:88px 80px 93px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.product_deals{padding:88px 0 93px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_deals{padding:88px 0 93px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_deals{padding:71px 0 72px}}@media only screen and (max-width: 767px){.product_deals{padding:58px 0 53px}}.product_deals_container .single_product{transition:.3s}.product_deals_container .single_product:hover{opacity:1}.product_deals_container .single_product:hover .product_timing{opacity:1;visibility:visible;bottom:25%}.single_countdown{display:inline-block;padding:7px 11px;border:1px solid #e1e1e1;margin-right:10px;background:#fff}.single_countdown:last-child{margin-right:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.single_countdown{padding:5px 8px;margin-right:6px}}@media only screen and (min-width: 768px) and (max-width: 991px){.single_countdown{padding:5px 8px;margin-right:6px}}@media only screen and (max-width: 767px){.single_countdown{padding:5px 8px;margin-right:6px}}.countdown_number{font-size:19px;border-bottom:1px solid #e1e1e1;padding-bottom:5px;margin-bottom:4px}@media only screen and (min-width: 992px) and (max-width: 1199px){.countdown_number{font-size:17px;padding-bottom:4px;margin-bottom:3px}}@media only screen and (min-width: 768px) and (max-width: 991px){.countdown_number{font-size:18px;padding-bottom:4px;margin-bottom:3px}}@media only screen and (max-width: 767px){.countdown_number{font-size:18px;padding-bottom:4px;margin-bottom:3px}}.countdown_title{text-transform:uppercase;font-size:12px}@media only screen and (min-width: 992px) and (max-width: 1199px){.countdown_title{font-size:11px}}@media only screen and (min-width: 768px) and (max-width: 991px){.countdown_title{font-size:11px}}@media only screen and (max-width: 767px){.countdown_title{font-size:11px}}.product_timing{transition:all 0.3s ease;position:absolute;left:0;bottom:0px;z-index:9;right:0;text-align:center}.product_style2{padding:0 60px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.product_style2{padding:0}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_style2{padding:0}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_style2{padding:0}}@media only screen and (max-width: 767px){.product_style2{padding:0}}.lstore_title{background:url(../themes/pinxin/assets/img/bg/bkg_top_vogue2.png) top center no-repeat;padding:65px 0;margin-top:45px;margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.lstore_title{padding:60px 0 60px;margin-top:13px}}@media only screen and (max-width: 767px){.lstore_title{padding:42px 0 30px;margin-top:16px;background-position:center center;background-size:contain}}.lstore_title p{font-size:14px;line-height:20px;padding:0 299px;margin-top:32px}@media only screen and (min-width: 768px) and (max-width: 991px){.lstore_title p{padding:0 105px}}@media only screen and (max-width: 767px){.lstore_title p{padding:0;margin-top:20px}}.welcome_lukani_store{margin-bottom:90px}@media only screen and (min-width: 768px) and (max-width: 991px){.welcome_lukani_store{margin-bottom:72px}}@media only screen and (max-width: 767px){.welcome_lukani_store{margin-bottom:57px}}.welcome_lukani_container{border-bottom:1px solid #e1e1e1;padding:98px 0 100px}@media only screen and (min-width: 768px) and (max-width: 991px){.welcome_lukani_container{padding:78px 0 73px}}@media only screen and (max-width: 767px){.welcome_lukani_container{padding:59px 0 53px}}.welcome_lukani_thumb{text-align:center}@media only screen and (max-width: 767px){.welcome_lukani_thumb{margin-bottom:32px}}.welcome_lukani_header{margin-bottom:23px}@media only screen and (max-width: 767px){.welcome_lukani_header{margin-bottom:18px}}.welcome_lukani_header h3{color:#806958;font-size:14px;line-height:16px;font-weight:500;text-transform:uppercase;margin-bottom:7px}.welcome_lukani_header h2{font-size:40px;line-height:48px;font-weight:400;font-family:"Lato",sans-serif;margin-bottom:0}@media only screen and (max-width: 767px){.welcome_lukani_header h2{font-size:27px;line-height:30px}}.welcome_lukani_desc p{font-size:14px;line-height:24px;margin-bottom:25px}.welcome_lukani_desc p:last-child{margin-bottom:0}@media only screen and (max-width: 767px){.welcome_lukani_desc p{margin-bottom:15px}}.welcome_lukani_footer{margin-top:32px}@media only screen and (max-width: 767px){.welcome_lukani_footer{margin-top:23px}}.welcome_lukani_footer p{font-size:14px;line-height:25px;text-transform:uppercase;margin-top:16px}.welcome_lukani_footer p span{font-weight:500}@media only screen and (max-width: 767px){.welcome_lukani_footer p{margin-top:13px}}@media only screen and (max-width: 767px){.welcome_lukani_content{text-align:center}}.blog_section{background:#f2f5f1;padding:88px 0 95px}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_section{padding:71px 0 75px}}@media only screen and (max-width: 767px){.blog_section{padding:56px 0 55px}}.blog_carousel:hover .owl-nav div{opacity:1;visibility:visible;left:0}.blog_carousel:hover .owl-nav div.owl-next{right:0}.blog_carousel .owl-nav.disabled{display:block}.blog_carousel .owl-nav div{position:absolute;top:50%;transform:translatey(-50%);font-size:50px;left:15px;transition:.3s;opacity:0;visibility:hidden}.blog_carousel .owl-nav div:hover{color:#806958}.blog_carousel .owl-nav div.owl-next{right:15px;left:auto}.blog_carousel .col-lg-3{flex:0 0 100%;max-width:100%}.blog_content{padding-top:27px}@media only screen and (max-width: 767px){.blog_content{padding-top:16px}}.blog_content p.post_desc{font-size:14px;line-height:24px;margin-bottom:22px;padding-bottom:21px;border-bottom:1px solid #e1e1e1}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_content p.post_desc{font-size:14px}}@media only screen and (max-width: 767px){.blog_content p.post_desc{font-size:13px;line-height:22px;margin-bottom:16px;padding-bottom:17px}}.blog_content h4{font-size:18px;text-transform:capitalize;line-height:21px;margin-bottom:5px;font-weight:500}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_content h4{font-size:16px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_content h4{font-size:16px;line-height:23px}}@media only screen and (max-width: 767px){.blog_content h4{font-size:15px}}.blog_content h4 a:hover{color:#806958}.blog_content .btn_more{margin-top:12px}@media only screen and (max-width: 767px){.blog_content .btn_more{margin-top:11px}}.blog_content .btn_more a{font-size:15px;line-height:20px;text-transform:capitalize;display:inline-block}.blog_content .btn_more a:hover{color:#806958}.blog_content .btn_more a i{margin-left:10px}@media only screen and (max-width: 767px){.blog_content .btn_more a i{margin-left:5px}}.articles_date{margin-bottom:22px}@media only screen and (max-width: 767px){.articles_date{margin-bottom:14px}}.articles_date p{font-size:13px;line-height:15px}.articles_date p span{color:#806958}.blog_footer{display:flex;justify-content:space-between;align-items:center}.blog_footer>a{font-size:14px;line-height:14px;text-decoration:underline;display:inline-block}.blog_footer>a:hover{color:#806958}.blog_footer p{font-size:18px}.blog_footer p span{font-size:16px}.blog_s_four{background:inherit;border-bottom:1px solid #e1e1e1;margin-bottom:88px}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_s_four{margin-bottom:73px}}@media only screen and (max-width: 767px){.blog_s_four{margin-bottom:56px}}.newsletter_area_start{padding:92px 0 100px}@media only screen and (min-width: 768px) and (max-width: 991px){.newsletter_area_start{padding:74px 0 80px}}@media only screen and (max-width: 767px){.newsletter_area_start{padding:57px 0 60px}}.newsletter_area_start .section_title h2 span{color:#806958}.newsletter_container{padding-top:16px}@media only screen and (min-width: 768px) and (max-width: 991px){.newsletter_container{padding-top:8px}}@media only screen and (max-width: 767px){.newsletter_container{padding-top:0}}.subscribe_form form{position:relative;border-bottom:1px solid #373737;width:630px;margin:0 auto}@media only screen and (min-width: 768px) and (max-width: 991px){.subscribe_form form{width:590px}}@media only screen and (max-width: 767px){.subscribe_form form{width:100%}}.subscribe_form form input::-webkit-input-placeholder{color:#222}.subscribe_form form input::-moz-placeholder{color:#222}.subscribe_form form input:-ms-input-placeholder{color:#222}.subscribe_form form input:-moz-placeholder{color:#222}.subscribe_form form input{width:100%;border:0;background:none;padding:0 108px 0 45px;height:48px;font-size:15px;color:#222}@media only screen and (min-width: 768px) and (max-width: 991px){.subscribe_form form input{height:40px}}@media only screen and (max-width: 767px){.subscribe_form form input{height:40px;font-size:13px;padding:0 74px 0 33px}}.subscribe_form form button{font-size:14px;text-transform:uppercase;font-weight:500;height:100%;border:0;position:absolute;top:0;right:0;-webkit-transition:.3s;transition:.3s;padding:0;background:inherit}.subscribe_form form button:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.subscribe_form form button{line-height:36px;height:40px}}@media only screen and (max-width: 767px){.subscribe_form form button{font-size:12px}}.subscribe_form form .email_icon{position:absolute;top:56%;left:0;transform:translatey(-50%)}.subscribe_form form .email_icon i{font-size:25px}@media only screen and (max-width: 767px){.subscribe_form form .email_icon i{font-size:20px}}.mailchimp-error{text-align:center;color:green}.mailchimp-success{text-align:center;max-width:510px;color:green;margin:0 auto}.mailchimp-success.active{margin-top:20px}.shipping_area{padding:99px 0}@media only screen and (min-width: 768px) and (max-width: 991px){.shipping_area{padding:78px 0}}@media only screen and (max-width: 767px){.shipping_area{padding:59px 0 58px}}.single_shipping{display:flex;align-items:center;border-right:1px solid #ebebeb}@media only screen and (max-width: 767px){.single_shipping{margin-bottom:23px;border-right:0}}@media only screen and (min-width: 768px) and (max-width: 991px){.single_shipping.col_2{border-right:0}}.single_shipping.col_3{border-right:0}@media only screen and (min-width: 768px) and (max-width: 991px){.single_shipping.col_3{margin-top:30px}}@media only screen and (max-width: 767px){.single_shipping.col_3{margin-bottom:0}}.shipping_icone{margin-right:18px}@media only screen and (min-width: 768px) and (max-width: 991px){.shipping_icone{margin-right:10px}}@media only screen and (max-width: 767px){.shipping_icone{margin-right:15px}}@media only screen and (max-width: 767px){.shipping_icone img{max-width:42px}}.shipping_content h3{text-transform:capitalize;font-family:"Lato",sans-serif;font-weight:700;margin-bottom:7px}@media only screen and (min-width: 768px) and (max-width: 991px){.shipping_content h3{font-size:13px;line-height:16px}}@media only screen and (max-width: 767px){.shipping_content h3{font-size:13px}}.shipping_content p{font-weight:300}@media only screen and (min-width: 992px) and (max-width: 1199px){.shipping_content p{font-size:13px}}@media only screen and (max-width: 767px){.shipping_content p{font-size:13px}}.shipping_two{padding:31px 0 90px}@media only screen and (min-width: 768px) and (max-width: 991px){.shipping_two{padding:13px 0 71px}}@media only screen and (max-width: 767px){.shipping_two{padding:22px 0 55px}}.testimonial_area{padding:90px 0 96px}@media only screen and (min-width: 768px) and (max-width: 991px){.testimonial_area{padding:73px 0 76px}}@media only screen and (max-width: 767px){.testimonial_area{padding:57px 0 57px}}.testimonial_container{margin-top:30px}@media only screen and (min-width: 768px) and (max-width: 991px){.testimonial_container{margin-top:20px}}@media only screen and (max-width: 767px){.testimonial_container{margin-top:7px}}.testimonial_carousel:hover .owl-nav div{left:0;opacity:1;visibility:visible}.testimonial_carousel:hover .owl-nav div.owl-next{right:0}.testimonial_carousel .owl-nav div{position:absolute;top:50%;transform:translatey(-50%);font-size:50px;left:15px;transition:.3s;opacity:0;visibility:hidden}.testimonial_carousel .owl-nav div:hover{color:#806958}.testimonial_carousel .owl-nav div.owl-next{right:15px;left:auto}.testimonial_carousel .testimonial-icon-img img{width:inherit}.testimonial_carousel .testimonial_text_img img{width:inherit}.single_testimonial{text-align:center}.testimonial_content{text-align:center}.testimonial_content>p{font-size:17px;font-style:italic;margin-bottom:0;padding:0 147px;line-height:30px}@media only screen and (min-width: 768px) and (max-width: 991px){.testimonial_content>p{font-size:16px;padding:0 115px}}@media only screen and (max-width: 767px){.testimonial_content>p{font-size:14px;line-height:22px;padding:0 15px}}.testimonial-icon-img{margin-bottom:45px}@media only screen and (min-width: 768px) and (max-width: 991px){.testimonial-icon-img{margin-bottom:34px}}@media only screen and (max-width: 767px){.testimonial-icon-img{margin-bottom:25px}}.testimonial-icon-img img{margin:0 auto}.testimonial_text_img{margin-top:22px}.testimonial_text_img img{margin:0 auto}.testimonial_author{margin-top:17px}.testimonial_author p{font-size:14px;line-height:16px;text-transform:uppercase;font-weight:500}@media only screen and (max-width: 767px){.testimonial_author p{font-size:12px}}.testimonial_author p a:hover{color:#806958}.testimonial_two{padding:84px 0 86px}@media only screen and (min-width: 768px) and (max-width: 991px){.testimonial_two{padding:64px 0 66px}}@media only screen and (max-width: 767px){.testimonial_two{padding:50px 0 36px}}.brand_area{margin-bottom:87px}@media only screen and (min-width: 768px) and (max-width: 991px){.brand_area{margin-bottom:67px}}@media only screen and (max-width: 767px){.brand_area{margin-bottom:40px}}.brand_container .single_brand img{width:inherit;margin:0 auto}.brand_container:hover .owl-nav div{opacity:1;visibility:visible;left:0}.brand_container:hover .owl-nav div.owl-next{right:0}.brand_container .owl-nav.disabled{display:block}.brand_container .owl-nav div{position:absolute;top:50%;transform:translatey(-50%);font-size:50px;left:15px;transition:.3s;opacity:0;visibility:hidden}.brand_container .owl-nav div:hover{color:#806958}.brand_container .owl-nav div.owl-next{right:15px;left:auto}.instragam_thumb{position:relative}.instragam_thumb:hover::before{opacity:0.7}.instragam_thumb:hover .instragam_icone{opacity:1;visibility:visible}@media only screen and (max-width: 575px){.instragam_thumb img{width:100%}}.instragam_thumb::before{position:absolute;content:"";width:100%;height:100%;top:0;left:0;background:#806958;opacity:0;transition:.3s;pointer-events:none}.instragam_icone{position:absolute;top:50%;transform:translatey(-50%);left:0;right:0;text-align:center;opacity:0;visibility:hidden;transition:.3s}.instragam_icone a{font-size:30px;color:#fff;display:inline-block}.instragam_button{text-align:center;margin-top:30px}.instragam_button a{padding:7px 14px;font-size:13px;border-radius:4px;background:#408bd1;color:#fff;display:inline-block}.instragam_button a:hover{box-shadow:inset 0 0 10px 20px #359dff}.instragam_four .section_title{margin-bottom:40px}@media only screen and (max-width: 767px){.instragam_four .section_title{margin-bottom:25px}}@media only screen and (max-width: 767px){.instragam_four .instragam_thumb{margin-bottom:30px}}@media only screen and (max-width: 767px){.instragam_four .instragam_button{margin-top:0}}.footer_top{padding:99px 0 89px;border-top:1px solid #e1e1e1;border-bottom:1px solid #e1e1e1}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_top{padding:79px 0 31px}}@media only screen and (max-width: 767px){.footer_top{padding:55px 0 4px}}@media only screen and (min-width: 768px) and (max-width: 991px){.widgets_container{margin-bottom:42px}}@media only screen and (max-width: 767px){.widgets_container{margin-bottom:43px}}@media only screen and (max-width: 575px){.widgets_container{text-align:center}}@media only screen and (max-width: 767px){.widgets_container.widget_menu{margin-bottom:48px}}@media only screen and (max-width: 767px){.widgets_container.widget_app{margin-bottom:55px}}.widgets_container h3{font-size:14px;line-height:16px;margin-bottom:31px;padding-bottom:10px;text-transform:uppercase;font-weight:500;position:relative}.widgets_container h3::before{content:"";width:35px;height:2px;background:#806958;position:absolute;bottom:0;left:0}@media only screen and (max-width: 575px){.widgets_container h3::before{left:50%;transform:translatex(-50%)}}@media only screen and (min-width: 768px) and (max-width: 991px){.widgets_container h3{margin-bottom:18px}}@media only screen and (max-width: 767px){.widgets_container h3{margin-bottom:12px;font-size:14px;display:inline-block}}.footer_logo{margin-bottom:30px;text-align:center}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_logo{margin-bottom:22px}}@media only screen and (max-width: 767px){.footer_logo{margin-bottom:20px}}.footer_logo a img{width:150px}.contact_us>p{font-size:14px;line-height:30px;margin-bottom:0}.contact_us>p b{font-weight:500}.contact_us>p:last-child{margin-top:50px;margin-bottom:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.contact_us>p:last-child{margin-top:22px}}@media only screen and (min-width: 768px) and (max-width: 991px){.contact_us>p:last-child{margin-top:20px}}@media only screen and (max-width: 767px){.contact_us>p:last-child{margin-top:0}}@media only screen and (max-width: 767px){.contact_us>p{font-size:13px}}.footer_menu ul li{padding-bottom:2px}.footer_menu ul li:last-child{padding-bottom:0}.footer_menu ul li a{display:block;font-weight:400;font-size:15px;line-height:30px}.footer_menu ul li a:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_menu ul li a{font-size:14px;line-height:26px}}@media only screen and (max-width: 767px){.footer_menu ul li a{line-height:22px;font-size:13px}}.footer_social{margin-top:23px;text-align:center}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_social{margin-top:17px}}@media only screen and (max-width: 767px){.footer_social{margin-top:15px}}.footer_social ul li{display:inline-block;margin-right:8px}.footer_social ul li:last-child{margin-right:0}@media only screen and (max-width: 767px){.footer_social ul li{margin-right:6px}}.footer_social ul li a{width:42px;height:42px;line-height:44px;display:block;text-align:center;font-size:14px;background:#f2f2f2;border-radius:50%}.footer_social ul li a:hover{color:#fff;background:#806958}@media only screen and (max-width: 767px){.footer_social ul li a{width:35px;height:35px;line-height:35px}}@media only screen and (max-width: 767px){.copyright_area{text-align:center;margin-bottom:17px}}.copyright_area p{text-transform:capitalize;line-height:25px;font-size:14px}@media only screen and (max-width: 767px){.copyright_area p{letter-spacing:0;font-size:13px;line-height:20px}}.copyright_area p a{color:#806958}.copyright_area p a:hover{text-decoration:underline}.footer_widgetnav_menu{text-align:center}.footer_widgetnav_menu ul li{display:inline-block;margin-right:20px}.footer_widgetnav_menu ul li:last-child{margin-right:0}@media only screen and (max-width: 767px){.footer_widgetnav_menu ul li{margin-right:14px}}.footer_widgetnav_menu ul li a{font-size:14px;line-height:30px}.footer_widgetnav_menu ul li a:hover{color:#806958}.footer_app{text-align:center;margin-top:32px}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_app{margin-top:25px}}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_app{margin-top:22px}}.footer_app ul li{display:inline-block;margin-right:10px}.footer_app ul li:last-child{margin-right:0}@media only screen and (min-width: 992px) and (max-width: 1199px){.footer_app ul li{margin-right:6px}}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_app ul li{margin-right:6px}}@media only screen and (max-width: 767px){.footer_app ul li{margin-right:4px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.footer_app ul li a img{max-width:140px}}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_app ul li a img{max-width:135px}}@media only screen and (max-width: 767px){.footer_app ul li a img{max-width:128px}}.footer_payment{text-align:right}.footer_bottom{padding:29px 0}@media only screen and (max-width: 767px){.footer_bottom{padding:25px 0}}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_area{margin-top:80px;margin-bottom:80px}}@media only screen and (max-width: 767px){.shop_area{margin-top:60px;margin-bottom:55px}}.canvas_padding{margin-bottom:0}.breadcrumbs_area{background:#f0f0f0;border-bottom:1px solid #e1e1e1;padding:50px 0}@media only screen and (max-width: 767px){.breadcrumbs_area{padding:20px 0}}.breadcrumb_content{text-align:center}.breadcrumb_content h3{font-size:42px;line-height:50px;font-family:"Lato",sans-serif;margin-bottom:9px}@media only screen and (max-width: 767px){.breadcrumb_content h3{font-size:30px;line-height:40px}}.breadcrumb_content ul li{display:inline-block;text-transform:capitalize;margin-right:3px;padding-right:13px;position:relative}.breadcrumb_content ul li::before{position:absolute;content:"/";right:0;top:50%;transform:translatey(-50%)}.breadcrumb_content ul li:last-child{margin-right:0}.breadcrumb_content ul li:last-child::before{display:none}.breadcrumb_content ul li a:hover{color:#806958}.sidebar_widget .single_banner{border:0}@media only screen and (max-width: 767px){.sidebar_widget .single_banner{margin-bottom:0}}@media only screen and (max-width: 767px){.sidebar_widget .single_banner a{width:100%}}@media only screen and (max-width: 767px){.sidebar_widget .single_banner a img{width:100%}}.widget_list{margin-bottom:33px}.widget_list.widget_categories>ul>li>a{font-size:13px;display:block;line-height:30px;padding:0 20px}.widget_list.widget_categories>ul>li>a:hover{color:#806958}.widget_list.widget_categories>ul>li:last-child>a{border-bottom:0}.widget_list.widget_categories>ul>li.widget_sub_categories>a{position:relative}.widget_list.widget_categories>ul>li.widget_sub_categories>a::before{content:'+';cursor:pointer;font-size:12px;position:absolute;right:21px;top:50%;transform:translatey(-50%)}.widget_list.widget_categories>ul>li.widget_sub_categories>a.active::before{content:'-';cursor:pointer;font-size:12px;position:absolute;right:21px;top:50%;transform:translatey(-50%)}.widget_list.widget_categories>ul>li ul{padding-left:30px;display:none}.widget_list.widget_categories>ul>li ul li a{font-size:13px;line-height:30px;display:block;border-bottom:1px solid rgba(255,255,255,0.1)}.widget_list.widget_categories>ul>li ul li a:hover{color:#806958}.widget_list:last-child{margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.widget_list{margin-bottom:68px}}@media only screen and (max-width: 767px){.widget_list{margin-bottom:49px}}.widget_list h3{font-size:15px;margin-bottom:20px;padding-bottom:10px;text-transform:uppercase;font-weight:500;line-height:20px;border-bottom:1px solid #e1e1e1}@media only screen and (min-width: 992px) and (max-width: 1199px){.widget_list h3{font-size:18px}}.widget_list>ul>li>a:hover{color:#806958}.widget_list>ul>li>a span{float:right}.widget_list.widget_color{margin-bottom:27px}@media only screen and (min-width: 768px) and (max-width: 991px){.widget_list.widget_color{margin-bottom:66px}}@media only screen and (max-width: 767px){.widget_list.widget_color{margin-bottom:46px}}.widget_list.widget_manu{margin-bottom:27px}@media only screen and (min-width: 768px) and (max-width: 991px){.widget_list.widget_manu{margin-bottom:66px}}@media only screen and (max-width: 767px){.widget_list.widget_manu{margin-bottom:46px}}@media only screen and (min-width: 768px) and (max-width: 991px){.widget_list.tags_widget{margin-bottom:63px}}@media only screen and (max-width: 767px){.widget_list.tags_widget{margin-bottom:43px}}.ui-slider-horizontal .ui-slider-range{background:#806958;height:2px}.ui-slider-horizontal{height:2px;background:#dbdbdb;border:none;width:92%;margin:0 auto;margin-bottom:22px}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{background:#fff;width:15px;height:15px;top:-7px;cursor:pointer;border-radius:50%;border:2px solid #806958}.widget_list.widget_filter{overflow:hidden;margin-bottom:30px}@media only screen and (min-width: 768px) and (max-width: 991px){.widget_list.widget_filter{margin-bottom:73px}}@media only screen and (max-width: 767px){.widget_list.widget_filter{margin-bottom:53px}}.widget_list.widget_filter form{padding-top:10px}.widget_list.widget_filter form input{background:none;border:none;font-size:12px;float:right;text-align:right;line-height:31px;width:60px}@media only screen and (min-width: 992px) and (max-width: 1199px){.widget_list.widget_filter form input{width:65px}}.widget_list.widget_filter form button{height:30px;line-height:30px;padding:0 20px;text-transform:capitalize;color:#fff;background:#806958;border:0;border-radius:30px;float:left;-webkit-transition:.3s;transition:.3s}.widget_list.widget_filter form button:hover{background:#806958}.tag_cloud a{margin:0 5px 12px 0;padding:5px 15px;text-transform:capitalize;display:inline-block;border:1px solid #e1e1e1;background:#fff;border-radius:3px;font-size:13px}@media only screen and (min-width: 992px) and (max-width: 1199px){.tag_cloud a{padding:5px 10px}}.tag_cloud a:hover{background:#806958;border-color:#806958;color:#fff}.shop_sidebar_product .single_product{margin-bottom:20px;overflow:hidden}.shop_sidebar_product .single_product:last-child{margin-bottom:0}.shop_sidebar_product .product_content{width:64%;padding-left:15px;margin-top:0;float:left;text-align:left}@media only screen and (min-width: 992px) and (max-width: 1199px){.shop_sidebar_product .product_content{width:70%}}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_sidebar_product .product_content{width:67%}}@media only screen and (max-width: 767px){.shop_sidebar_product .product_content{width:73%;padding-left:12px}}.shop_sidebar_product .product_content h4{margin-bottom:10px}.shop_sidebar_product .product_content h4 a:hover{color:#806958}.shop_sidebar_product .product_thumb{width:90px;float:left}@media only screen and (min-width: 992px) and (max-width: 1199px){.shop_sidebar_product .product_thumb{width:64px}}@media only screen and (max-width: 767px){.shop_sidebar_product .product_thumb{width:70px}}.shop_sidebar_product .product_rating{margin-bottom:4px}.shop_sidebar_product .price_box{margin-top:0}.shop_toolbar{display:flex;align-items:center;justify-content:space-between;border:1px solid #e5e5e5;padding:8px 10px;margin:0 0 40px}@media only screen and (max-width: 767px){.shop_toolbar{flex-direction:column-reverse;padding:10px 10px 18px}}.select_option{display:flex;align-items:center}@media only screen and (max-width: 767px){.select_option{flex-direction:column}}.select_option .nice-select{border:0;height:30px;line-height:29px}.select_option .nice-select ul.list{top:114%;right:0;width:200px;max-height:200px;overflow:auto}@media only screen and (max-width: 767px){.niceselect_option{margin-bottom:16px}}@media only screen and (max-width: 767px){.page_amount{margin-bottom:12px}}@media only screen and (max-width: 767px){.page_amount p{padding-left:0;margin-left:0;border-left:0}}.list_button ul li{margin-right:12px}.list_button ul li:last-child{margin-right:0}.list_button ul li a:hover{color:#806958}.list_button ul li a i{margin-right:5px;border-radius:100%;height:30px;width:30px;line-height:30px;text-align:center}.list_button ul li a.active{color:#806958}.list_button ul li a.active i{background:#806958;color:#fff}.product_ratting ul li{display:inline-block}.product_ratting ul li a{color:#806958}@media only screen and (max-width: 767px){.product_list_item .product_thumb{margin-bottom:18px}}.product_list_item .product_content h3{margin-bottom:10px}.product_list_item .product_ratting{margin-bottom:10px}@media only screen and (max-width: 767px){.pagination{margin-top:19px}}.pagination ul li{display:inline-block;width:30px;height:30px;line-height:30px;text-align:center;background:#f1f1f1;border-radius:3px;margin-left:3px}.pagination ul li:first-child{margin-left:0}.pagination ul li a{display:block;border-radius:3px}.pagination ul li a:hover{background:#806958;color:#fff}.pagination ul li.current{background:#806958;color:#fff}.pagination ul li.next{width:40px}.shop_toolbar.t_bottom{justify-content:center;margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_toolbar.t_bottom{margin-bottom:77px}}@media only screen and (max-width: 767px){.shop_toolbar.t_bottom{padding:15px 10px 15px;margin-bottom:58px}}@media only screen and (max-width: 767px){.shop_toolbar.t_bottom .pagination{margin-top:0}}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_reverse .tab-content .row{flex-direction:row}}@media only screen and (max-width: 767px){.shop_reverse .tab-content .row{flex-direction:row}}@media only screen and (min-width: 992px) and (max-width: 1199px){.grid_view .quick_button{bottom:5px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.grid_view .quick_button a{line-height:37px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.grid_view .action_button ul li a{width:43px;height:40px;line-height:38px}}.grid_view .hover_action a{width:43px;height:40px;line-height:38px}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_reverse .row{flex-direction:column-reverse}}@media only screen and (max-width: 767px){.shop_reverse .row{flex-direction:column-reverse}}.row.shop_wrapper{flex-direction:row}.shop_toolbar_btn>button{margin-right:10px;border:0;background:inherit}.shop_toolbar_btn>button.btn-grid-3{background:url(../themes/pinxin/assets/img/icon/bkg_grid.png) no-repeat scroll center center;width:20px;height:20px}.shop_toolbar_btn>button.btn-grid-3.active{background:url(../themes/pinxin/assets/img/icon/bkg_grid_hover.png) no-repeat scroll center center !important}.shop_toolbar_btn>button.btn-grid-4{background:url(../themes/pinxin/assets/img/icon/bkg_grid4.png) no-repeat scroll center center;width:26px;height:22px}@media only screen and (min-width: 992px) and (max-width: 1199px){.shop_toolbar_btn>button.btn-grid-4{display:none}}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_toolbar_btn>button.btn-grid-4{display:none}}.shop_toolbar_btn>button.btn-grid-4.active{background:url(../themes/pinxin/assets/img/icon/bkg_grid4_hover.png) no-repeat scroll center center !important}.shop_toolbar_btn>button.btn-list{background:url(../themes/pinxin/assets/img/icon/bkg_list.png) no-repeat scroll center center;width:20px;height:20px}.shop_toolbar_btn>button.btn-list.active{background:url(../themes/pinxin/assets/img/icon/bkg_list_hover.png) no-repeat scroll center center !important}.grid_content .product_ratings{margin-bottom:11px}.grid_content .product_ratings ul{justify-content:center}.list_action{display:none}.grid_list .grid_name{display:none}.grid_list .action_links{display:none}.grid_list .action_links.list_action{display:block}.grid_list .list_action_right{display:block}.list_action_right ul li{margin-right:22px}.list_action_right ul li:last-child{margin-right:0}@media only screen and (max-width: 767px){.list_action_right ul li{margin-right:18px}}.list_action_right ul li.add_to_cart a{padding:20px 55px;background:#222;color:#fff;border-radius:30px;width:inherit;font-weight:500;text-transform:capitalize}.list_action_right ul li.add_to_cart a:hover{background:#806958}@media only screen and (min-width: 992px) and (max-width: 1199px){.list_action_right ul li.add_to_cart a{padding:16px 45px}}@media only screen and (min-width: 768px) and (max-width: 991px){.list_action_right ul li.add_to_cart a{padding:16px 45px}}@media only screen and (max-width: 767px){.list_action_right ul li.add_to_cart a{padding:14px 30px}}.list_action_right ul li a{width:inherit}@media only screen and (max-width: 767px){.list_action_right ul li a{line-height:45px}}.grid_list .product_content.grid_content{display:none}.grid_list .product_content.list_content{flex:0 0 66.666667%;max-width:66.666667%;float:left;padding-left:25px;text-align:left;margin-top:0;display:block}@media only screen and (min-width: 768px) and (max-width: 991px){.grid_list .product_content.list_content{min-width:60%}}@media only screen and (max-width: 767px){.grid_list .product_content.list_content{flex-direction:column;flex:0 0 100%;min-width:100%;padding-left:0}}.grid_list .product_content.list_content h4.product_name{margin-bottom:16px}@media only screen and (min-width: 992px) and (max-width: 1199px){.grid_list .product_content.list_content h4.product_name{margin-bottom:12px}}@media only screen and (min-width: 768px) and (max-width: 991px){.grid_list .product_content.list_content h4.product_name{margin-bottom:12px}}@media only screen and (max-width: 767px){.grid_list .product_content.list_content h4.product_name{margin-bottom:12px}}.grid_list .product_content.list_content .action_links{opacity:inherit;visibility:visible;text-align:left;transform:inherit;position:inherit}.grid_list .product_content.list_content .action_links ul li a{transform:inherit}.grid_list .product_content.list_content .price_box{margin-top:0;margin-bottom:13px}@media only screen and (min-width: 992px) and (max-width: 1199px){.grid_list .product_content.list_content .price_box{margin-bottom:9px}}@media only screen and (min-width: 768px) and (max-width: 991px){.grid_list .product_content.list_content .price_box{margin-bottom:9px}}@media only screen and (max-width: 767px){.grid_list .product_content.list_content .price_box{margin-bottom:9px}}.grid_list .product_content.list_content .product_desc{display:inline-block;margin-bottom:34px}@media only screen and (min-width: 992px) and (max-width: 1199px){.grid_list .product_content.list_content .product_desc{margin-bottom:19px}}@media only screen and (min-width: 768px) and (max-width: 991px){.grid_list .product_content.list_content .product_desc{margin-bottom:19px}}@media only screen and (max-width: 767px){.grid_list .product_content.list_content .product_desc{margin-bottom:19px}}.grid_list .single_product{display:-webkit-box;display:-ms-flexbox;display:flex}@media only screen and (max-width: 767px){.grid_list .single_product{flex-direction:column}}.grid_list .product_thumb{margin-bottom:0;flex:0 0 33.333333%;max-width:33.333333%;float:left}@media only screen and (min-width: 768px) and (max-width: 991px){.grid_list .product_thumb{min-width:30%}}@media only screen and (max-width: 767px){.grid_list .product_thumb{flex:0 0 100%;min-width:100%;margin-right:0;margin-bottom:20px}}.col-cust-5{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:max-width;padding-right:15px;padding-left:15px}@media only screen and (min-width: 768px) and (max-width: 991px){.col-cust-5{-ms-flex:0 0 33%;flex:0 0 33%}}@media only screen and (max-width: 767px){.col-cust-5{flex:0 0 50%;max-width:50%}}@media only screen and (max-width: 479px){.col-cust-5{flex:0 0 100%;max-width:100%}}.shop_wrapper>div{-webkit-transition:all 1s ease;transition:all 1s ease}.shop_toolbar_wrapper{display:flex;justify-content:space-between;align-items:center;border:1px solid #ddd;padding:8px 10px;margin:0 0 30px}@media only screen and (max-width: 767px){.shop_toolbar_wrapper{flex-direction:column;padding:15px 10px 5px}}@media only screen and (max-width: 767px){.shop_toolbar_btn{margin-bottom:20px}}.shop_wrapper{margin-bottom:18px;min-height:50vh}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_wrapper{margin-bottom:49px}}@media only screen and (max-width: 767px){.shop_wrapper{margin-bottom:30px}}@media only screen and (max-width: 767px){.shop_wrapper .product_thumb a img{width:100%}}.shop_wrapper .single_product{position:relative;margin-bottom:24px}.shop_wrapper.grid_list .single_product{margin-bottom:30px}.shop_wrapper .label_product{bottom:40px}.shop_wrapper.grid_4 .action_links ul li a{line-height:50px;width:42px}.shop_fullwidth .shop_wrapper.grid_3 .product_thumb a img{width:100%}@media only screen and (min-width: 768px) and (max-width: 991px){.shop_fullwidth{margin-bottom:0}}@media only screen and (max-width: 767px){.shop_fullwidth{margin-bottom:0}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_details{margin-top:80px;margin-bottom:80px}}@media only screen and (max-width: 767px){.product_details{margin-top:60px;margin-bottom:60px}}#img-1{border:1px solid #e1e1e1}.header_product{border-bottom:1px solid #e1e1e1}.product_d_right h1{text-transform:capitalize;line-height:20px;font-size:22px;font-weight:400;margin-bottom:22px}@media only screen and (min-width: 768px) and (max-width: 991px){.product_d_right h1{font-size:20px}}@media only screen and (max-width: 767px){.product_d_right h1{margin-bottom:17px;font-size:18px}}.product_d_right h1 a{color:#252525}.product_d_right h1 a:hover{color:#806958}.product_d_right .product_ratting{margin-bottom:17px}@media only screen and (max-width: 767px){.product_d_right .product_ratting{margin-bottom:12px}}.product_d_right .product_ratting ul li a{color:#FEB954}.product_d_right .product_ratting ul li a:hover{color:#806958}.product_d_right .product_ratting ul li.review a{color:#5a5a5a;margin-left:10px}.product_d_right .product_ratting ul li.review a:hover{color:#806958}.product_d_right .price_box{margin-bottom:14px}@media only screen and (max-width: 767px){.product_d_right .price_box{margin-bottom:9px}}.product_d_right .price_box span.current_price{font-size:23px}@media only screen and (max-width: 767px){.product_d_right .price_box span.current_price{font-size:18px}}.product_d_right .price_box span.old_price{font-size:20px}@media only screen and (max-width: 767px){.product_d_right .price_box span.old_price{font-size:17px}}.product_d_right .product_desc{margin-bottom:19px;padding-bottom:24px;border-bottom:1px solid #e1e1e1}@media only screen and (max-width: 767px){.product_d_right .product_desc{margin-bottom:15px;padding-bottom:18px}}.product_d_right .product_desc::before{display:none}.product_d_right .product_desc p{font-size:14px;line-height:26px}.product_d_right .priduct_social ul li{display:inline-block;margin-right:7px}@media only screen and (min-width: 768px) and (max-width: 991px){.product_d_right .priduct_social ul li{margin-right:2px}}@media only screen and (max-width: 767px){.product_d_right .priduct_social ul li{margin-right:2px}}.product_d_right .priduct_social ul li:last-child{margin-right:0}@media only screen and (max-width: 767px){.product_d_right .priduct_social ul li{margin-right:0}}.product_d_right .priduct_social ul li a{color:#fff;font-size:12px;line-height:24px;padding:0 8px;border-radius:3px;text-transform:capitalize;display:block}@media only screen and (max-width: 767px){.product_d_right .priduct_social ul li a{padding:0 4px;font-size:10px}}.product_d_right .priduct_social ul li a:hover{opacity:0.8}.product_d_right .priduct_social ul li a.facebook{background:#3B5999}.product_d_right .priduct_social ul li a.twitter{background:#1DA1F2}.product_d_right .priduct_social ul li a.pinterest{background:#CB2028}.product_d_right .priduct_social ul li a.google-plus{background:#fe6d4c}.product_d_right .priduct_social ul li a.linkedin{background:#010103}.product_d_right .product_timing{position:inherit;margin-bottom:22px;margin-top:30px}@media only screen and (max-width: 767px){.product_d_right .product_timing{margin-bottom:16px;margin-top:25px}}.product_d_right .countdown_area{max-width:220px}@media only screen and (max-width: 767px){.product_d_right .countdown_area{max-width:190px}}.product_nav{float:right;position:relative;top:-46px}@media only screen and (max-width: 767px){.product_nav{display:none}}.product_nav ul li{display:inline-block;margin-left:3px}.product_nav ul li:first-child{margin-left:0}.product_nav ul li a{background:#806958;border-radius:3px;color:#fff;display:block;font-size:15px;height:30px;width:30px;line-height:30px;text-align:center}.product_nav ul li a:hover{background:#806958}.product_variant.quantity{display:-webkit-box;display:-ms-flexbox;display:flex;align-items:center;margin-bottom:20px}@media only screen and (max-width: 767px){.product_variant.quantity{margin-bottom:16px}}.product_variant.quantity label{font-weight:500;text-transform:capitalize;font-size:14px;margin-bottom:0}.product_variant.quantity input{width:130px;border:1px solid #ebebeb;background:none;height:42px;padding:0 12px;border-radius:5px;margin-left:15px}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_variant.quantity input{width:110px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_variant.quantity input{width:80px}}@media only screen and (max-width: 767px){.product_variant.quantity input{width:65px;margin-left:10px}}.product_variant.quantity button{border:0;font-size:16px;margin-left:20px;background:#806958;height:42px;line-height:42px;text-transform:capitalize;min-width:270px}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_variant.quantity button{min-width:240px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_variant.quantity button{min-width:170px}}@media only screen and (max-width: 767px){.product_variant.quantity button{min-width:inherit;margin-left:10px}}.product_variant.quantity button:hover{background:#3E444A}.product_variant.color{margin-bottom:26px}@media only screen and (max-width: 767px){.product_variant.color{margin-bottom:18px}}.product_variant.color h3{font-weight:500;text-transform:capitalize;font-size:18px;margin-bottom:0;margin-right:40px}.product_variant.color label{font-size:15px;font-weight:500;text-transform:capitalize}.product_variant.color ul li{display:inline-block;padding:2px;border:1px solid #ccc;margin-right:5px}.product_variant.color ul li:hover{border-color:#E88888}.product_variant.color ul li:last-child{margin-right:0}.product_variant.color ul li a{width:30px;height:30px;display:block}.product_variant.color ul li.color1 a{background:#000000}.product_variant.color ul li.color2 a{background:#BEBEBE}.product_variant.color ul li.color3 a{background:#FE0000}.product_variant.color ul li.color4 a{background:#FFFF01}.product_variant.size{margin-bottom:30px;display:flex;align-items:center}.product_variant.size label{font-size:15px;font-weight:500;text-transform:capitalize;margin-right:15px}.product_variant.size .niceselect_option{float:inherit;max-width:200px}@media only screen and (min-width: 768px) and (max-width: 991px){.product_d_info{margin-bottom:73px}}@media only screen and (max-width: 767px){.product_d_info{margin-bottom:57px}}.product_d_action{margin-bottom:14px}.product_d_action ul li a{font-size:14px;line-height:28px}.product_d_action ul li a:hover{color:#806958}.product_meta{margin-bottom:24px}@media only screen and (max-width: 767px){.product_meta{margin-bottom:20px}}.product_meta span{font-weight:500}.product_meta span a{margin-left:10px;font-weight:400}.product_meta span a:hover{color:#806958}.product_info_button{border-bottom:1px solid #e1e1e1;padding-bottom:15px;margin-bottom:29px}@media only screen and (max-width: 767px){.product_info_button ul li{margin-bottom:5PX}.product_info_button ul li:last-child{margin-bottom:0}}.product_info_button ul li a{display:block;float:left;text-transform:capitalize;font-size:20px;color:#555;font-weight:500;margin-right:35px;line-height:26px;position:relative}@media only screen and (max-width: 767px){.product_info_button ul li a{margin-right:25px;font-size:17px}}.product_info_button ul li a.active{color:#333333}.product_info_button ul li a:hover{color:#333333}.product_info_button ul li:last-child a{margin-right:0}.product_review_form button{border:none;background:#806958;color:#fff;text-transform:uppercase;font-weight:500;padding:5px 15px 3px;display:block;-webkit-transition:.3s;transition:.3s;cursor:pointer;margin-top:20px;border-radius:5px;font-size:13px}.product_review_form button:hover{background:#806958;color:#fff}.product_info_content p{line-height:28px}.product_d_table{padding:10px 0 22px}.product_d_table table{border-top:1px solid #ddd;width:100%}.product_d_table table tbody tr{border-bottom:1px solid #ddd}.product_d_table table tbody tr td{padding:7px 17px}.product_d_table table tbody tr td:first-child{border-right:1px solid #ddd;width:30%;font-weight:700}.product_d_inner{padding:20px 30px 27px;border:1px solid #e1e1e1}@media only screen and (max-width: 767px){.product_d_inner{padding:20px 20px 27px}}.product_info_inner{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:15px}.product_info_inner .product_ratting{margin-bottom:10px}.product_info_inner .product_ratting p{margin-bottom:5px}.product_info_inner .product_ratting strong{margin-top:10px;display:block;margin-bottom:8px}.reviews_wrapper h2{font-size:18px;font-weight:500;text-transform:capitalize}@media only screen and (max-width: 767px){.reviews_wrapper h2{font-size:15px}}.reviews_wrapper .product_ratting{margin-bottom:20px}.reviews_wrapper .product_ratting ul li a{color:#806958}.reviews_wrapper .product_ratting h3{font-size:14px;font-weight:700;text-transform:capitalize}.comment_title{margin-bottom:20px}.product_review_form input{border:1px solid #ddd;background:none;width:100%;height:40px;padding:0 20px}.product_review_form textarea{border:1px solid #ddd;background:none;height:120px;resize:none;width:100%;margin-bottom:14px;padding:0 20px}.product_review_form p{margin-bottom:7px}.star_rating ul li{display:inline-block}.star_rating ul li a{color:#806958}.reviews_comment_box{display:flex;margin-bottom:22px}.reviews_comment_box .comment_text{width:100%;border:1px solid #e1e1e1;position:relative;margin-left:21px;padding:12px;border-radius:3px}.reviews_comment_box .comment_text::before{background:#fff;border-bottom:1px solid #e1e1e1;border-left:1px solid #e1e1e1;content:'';display:block;height:10px;left:-6px;position:absolute;top:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:10px}.reviews_meta p{font-size:15px;margin-bottom:15px}.reviews_meta p strong{text-transform:uppercase;font-weight:500;color:#806958}.s-tab-zoom.owl-carousel .owl-nav{display:block}.s-tab-zoom.owl-carousel .owl-nav div{position:absolute;background:#f2f2f2;border-radius:3px;height:32px;top:50%;transform:translatey(-50%);width:32px;text-align:center;line-height:32px;left:-7px;font-size:18px;-webkit-transition:.3s;transition:.3s;opacity:0;visibility:hidden}.s-tab-zoom.owl-carousel .owl-nav div:hover{background:#806958;color:#fff}.s-tab-zoom.owl-carousel .owl-nav div.owl-next{right:-7px;left:auto}@media only screen and (max-width: 767px){.product-details-tab{margin-bottom:58px}}.product-details-tab:hover .s-tab-zoom.owl-carousel .owl-nav div{opacity:1;visibility:visible}.single-zoom-thumb{margin-top:20px !important;width:80%;margin:0 auto}@media only screen and (min-width: 768px) and (max-width: 991px){.single-zoom-thumb{width:85%}}@media only screen and (max-width: 767px){.single-zoom-thumb{width:101%}}.single-zoom-thumb ul li{border:1px solid #ddd}.single-zoom-thumb ul li a{width:100%}.related_products{margin-bottom:84px}@media only screen and (min-width: 768px) and (max-width: 991px){.related_products{margin-bottom:66px}}@media only screen and (max-width: 767px){.related_products{margin-bottom:50px}}.related_products .section_title::before{display:none}.upsell_products{margin-bottom:81px}@media only screen and (min-width: 768px) and (max-width: 991px){.upsell_products{margin-bottom:61px}}@media only screen and (max-width: 767px){.upsell_products{margin-bottom:31px}}.upsell_products .section_title::before{display:none}.grouped_form{border:1px solid #e1e1e1;margin-bottom:25px}@media only screen and (min-width: 768px) and (max-width: 991px){.grouped_form{margin-bottom:20px}}@media only screen and (max-width: 767px){.grouped_form{margin-bottom:17px}}.grouped_form table{width:100%}.grouped_form table tbody tr{border-bottom:1px solid #e1e1e1}.grouped_form table tbody tr td{border-right:1px solid #ddd;padding:11px 5px;text-align:center}.grouped_form table tbody tr td input[type="checkbox"]{width:20px;height:21px}.grouped_form table tbody tr td input[type="number"]{width:50px;background:inherit;border:1px solid #e1e1e1;padding:0 5px;height:40px}.grouped_form table tbody tr td.grouped-product-list.quantity{min-width:80px;text-align:center;line-height:12px}.grouped_form table tbody tr td.grouped-product-list.label{min-width:188px;font-weight:500;font-size:14px}.grouped_form table tbody tr td.grouped-product-list.label a:hover{color:#806958}.grouped_form table tbody tr td.grouped-product-list.price{font-size:14px;font-weight:500;min-width:190px}.grouped_form table tbody tr td.grouped-product-list.price p{font-size:12px;font-weight:500;position:relative}.grouped_form table tbody tr td.grouped-product-list.price p::before{color:#D0AA7F;content:'\f058';display:inline-block;font-family:FontAwesome;font-size:1em;position:absolute;top:0;left:40px}.grouped_form table tbody tr td:last-child{border-right:0}.grouped_form table tbody tr:last-child{border-bottom:0}.box_quantity.group button{margin-left:0}.p_section1.related_product .slick-list{padding-bottom:144px !important;margin-bottom:-135px}.variable_product .niceselect_option .list{width:100%}.product_d_meta{margin-bottom:20px}.product_d_meta span{display:block;line-height:18px;margin-bottom:17px;font-size:14px;font-weight:400}.product_d_meta span:last-child{margin-bottom:0}.product_d_meta span a:hover{color:#806958}.product_sidebar{margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.product_sidebar{margin-bottom:69px}}@media only screen and (max-width: 767px){.product_sidebar{margin-bottom:31px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_sidebar .row{flex-direction:column-reverse}}@media only screen and (max-width: 767px){.product_sidebar .row{flex-direction:column-reverse}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_sidebar .product_section .row{flex-direction:row}}@media only screen and (max-width: 767px){.product_sidebar .product_section .row{flex-direction:row}}.product_sidebar .product_desc p{width:100%}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_sidebar .action_button ul li a{width:40px;height:35px;line-height:35px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_sidebar .quick_button{bottom:12px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_sidebar .quick_button a{line-height:35px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_sidebar .hover_action a{width:40px;height:35px;line-height:35px}}.product_sidebar .product_variant.quantity input{width:90px}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_sidebar .product_variant.quantity input{width:60px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_sidebar .product_variant.quantity input{width:60px}}@media only screen and (max-width: 767px){.product_sidebar .product_variant.quantity input{width:60px}}.product_sidebar .product_variant.quantity button{min-width:200px}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_sidebar .product_variant.quantity button{min-width:140px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_sidebar .product_variant.quantity button{min-width:inherit}}@media only screen and (max-width: 767px){.product_sidebar .product_variant.quantity button{min-width:inherit}}@media only screen and (max-width: 767px){.product_sidebar .product-details-tab{margin-bottom:0}}.product_sidebar .price_box span.current_price{font-size:16px}.product_sidebar .price_box span.old_price{font-size:15px}.product_sidebar .price_box span.regular_price{font-size:16px}@media only screen and (min-width: 768px) and (max-width: 991px){.product_sidebar .upsell_products{margin-bottom:69px}}@media only screen and (max-width: 767px){.product_sidebar .upsell_products{margin-bottom:49px}}.footer_widgets.sidebar_widgets .footer_top{padding-bottom:0;border-bottom:0}.footer_widgets.sidebar_widgets .footer_top_inner{padding:56px 0 52px;border-top:1px solid #e1e1e1;border-bottom:1px solid #e1e1e1}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_widgets.sidebar_widgets .footer_top_inner{padding:56px 0 40px}}@media only screen and (max-width: 767px){.footer_widgets.sidebar_widgets .footer_top_inner{padding:56px 0 35px}}.product_right_sidebar{margin-bottom:100px}@media only screen and (min-width: 768px) and (max-width: 991px){.product_right_sidebar{margin-bottom:80px}}@media only screen and (max-width: 767px){.product_right_sidebar{margin-bottom:60px}}@media only screen and (max-width: 767px){.product_right_sidebar .product-details-tab{margin-bottom:58px}}@media only screen and (min-width: 768px) and (max-width: 991px){.product_right_sidebar .row{flex-direction:row}}@media only screen and (max-width: 767px){.product_right_sidebar .row{flex-direction:row}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_right_sidebar .priduct_social ul li{margin-right:2px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.product_right_sidebar .product_d_right h1{font-size:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.shopping_cart_area{margin-top:80px}}@media only screen and (max-width: 767px){.shopping_cart_area{margin-top:60px}}.header_cart_page{border-bottom:1px solid #e1e1e1}.other_bread{padding-top:41px;padding-bottom:41px}.table_desc{border:1px solid #e1e1e1;margin-bottom:100px;margin-top:2px}@media only screen and (min-width: 768px) and (max-width: 991px){.table_desc{margin-bottom:80px}}@media only screen and (max-width: 767px){.table_desc{margin-bottom:60px}}.table_desc .cart_page table{width:100%}.table_desc .cart_page table thead tr th{border-bottom:3px solid #806958;border-right:1px solid #e1e1e1;font-size:16px;font-weight:500;text-transform:capitalize;padding:10px;text-align:center}.table_desc .cart_page table tbody tr td{border-bottom:1px solid #e1e1e1;border-right:1px solid #e1e1e1;text-align:center;padding:10px}.table_desc .cart_page table tbody tr td.product_remove{min-width:100px}.table_desc .cart_page table tbody tr td.product_remove a{font-size:20px;color:#806958}.table_desc .cart_page table tbody tr td.product_remove a:hover{color:#806958}.table_desc .cart_page table tbody tr td.product_thumb{max-width:180px}.table_desc .cart_page table tbody tr td.product_thumb a img{width:100px}.table_desc .cart_page table tbody tr td.product_name{min-width:180px}.table_desc .cart_page table tbody tr td.product_name a{color:#806958;text-transform:capitalize;font-size:14px;font-weight:400}.table_desc .cart_page table tbody tr td.product_name a:hover{color:#806958}.table_desc .cart_page table tbody tr td.product-price{min-width:130px;color:#806958;font-size:16px;font-weight:500}.table_desc .cart_page table tbody tr td.product_quantity{min-width:180px}.table_desc .cart_page table tbody tr td.product_quantity label{font-weight:500;margin-right:5px}.table_desc .cart_page table tbody tr td.product_quantity input{width:60px;height:40px;padding:0 5px 0 10px;background:none;border:1px solid #e1e1e1}.table_desc .cart_page table tbody tr td .product_total{min-width:120px}.cart_page table thead tr:last-child th,.table_desc table tbody tr td:last-child{border-right:0}.cart_submit{text-align:right;padding:12px}@media only screen and (max-width: 767px){.cart_submit{text-align:center}}.cart_submit button{background:#806958;border:0;color:#fff;display:inline-block;font-size:12px;font-weight:500;height:38px;line-height:18px;padding:10px 15px;text-transform:uppercase;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:3px}.cart_submit button:hover{background:#806958}.coupon_inner{padding:10px 20px 25px}.coupon_inner p{font-size:14px;margin-bottom:20px}.coupon_inner button{background:#806958;border:0;color:#fff;display:inline-block;font-size:12px;font-weight:500;height:38px;line-height:20px;padding:10px 15px;text-transform:uppercase;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:3px}.coupon_inner button:hover{background:#806958}.coupon_inner input{border:1px solid #e1e1e1;height:42px;background:none;padding:0 20px;margin-right:20px;font-size:12px;color:#806958}@media only screen and (max-width: 767px){.coupon_inner input{margin-bottom:24px;width:100%}}@media only screen and (min-width: 768px) and (max-width: 991px){.coupon_inner input{margin-bottom:24px;width:100%}}.coupon_inner a{display:block;text-align:right;font-size:14px;font-weight:500;margin-bottom:20px;border-bottom:1px solid #e1e1e1;padding-bottom:10px;border-radius:3px}.coupon_inner a:hover{color:#806958}.coupon_code{border:1px solid #e1e1e1}@media only screen and (max-width: 767px){.coupon_code.left{margin-bottom:59px}}.coupon_code h3{color:#fff;line-height:36px;padding:5px 15px;background:#806958;text-transform:uppercase;font-size:16px;font-weight:500}@media only screen and (max-width: 767px){.coupon_code h3{line-height:28px;padding:5px 15px;font-size:15px}}.cart_subtotal{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.cart_subtotal p{font-weight:600;font-size:14px}.cart_subtotal p.cart_amount{font-size:18px;font-weight:500}@media only screen and (max-width: 767px){.cart_subtotal p.cart_amount{font-size:14px}}.cart_subtotal p span{margin-right:30px}.checkout_btn{text-align:right}.checkout_btn a{background:#806958;color:#fff;font-size:15px;padding:3px 14px;line-height:30px;font-weight:500;display:inline-block;text-transform:capitalize;margin-bottom:0}.checkout_btn a:hover{background:#806958;color:#fff}.coupon_area{margin-bottom:87px}@media only screen and (min-width: 768px) and (max-width: 991px){.coupon_area{margin-bottom:68px}}@media only screen and (max-width: 767px){.coupon_area{margin-bottom:37px}}.footer_widgets.other_widgets .footer_top{padding-bottom:0;border-bottom:0}.footer_widgets.other_widgets .footer_top_inner{padding:55px 0 53px;border-top:1px solid #e1e1e1;border-bottom:1px solid #e1e1e1}@media only screen and (min-width: 992px) and (max-width: 1199px){.footer_widgets.other_widgets .footer_top_inner{padding:55px 0 59px}}@media only screen and (min-width: 768px) and (max-width: 991px){.footer_widgets.other_widgets .footer_top_inner{padding:55px 0 40px}}@media only screen and (max-width: 767px){.footer_widgets.other_widgets .footer_top_inner{padding:55px 0 35px}}.user-actions{margin-bottom:20px}.user-actions h3{font-size:13px;font-weight:400;background-color:#f7f6f7;padding:15px 10px;border-top:3px solid #806958;margin-bottom:0}.user-actions h3 a{color:#806958}.checkout_info{border:1px solid #e1e1e1;margin-top:25px;padding:20px 30px}.checkout_info p{margin-bottom:15px}.checkout_info a{color:#806958;margin-top:15px;display:block}.checkout_info.coupon_info form{display:flex}@media only screen and (max-width: 767px){.checkout_info.coupon_info form{flex-direction:column}}.form_group{margin-bottom:20px}.form_group label{font-size:14px;display:block;line-height:18px}.form_group input{border:1px solid #e1e1e1;background:none;height:45px;width:350px;padding:0 20px}@media only screen and (max-width: 767px){.form_group input{width:100%}}.form_group button{display:inline-block;width:80px;background:#806958;border:0;color:#fff;font-weight:500;text-transform:uppercase;font-size:13px;-webkit-transition:.3s;transition:.3s;margin-right:20px;cursor:pointer;height:40px;line-height:40px;border-radius:3px}.form_group button:hover{background:#806958}.form_group input[type="checkbox"]{width:15px;height:15px;margin-right:10px;position:relative;top:3px}@media only screen and (max-width: 767px){.form_group input[type="checkbox"]{margin-right:3px}}.form_group.group_3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form_group.group_3 label{margin-bottom:0;line-height:34px;cursor:pointer}.form_group.group_3 label:hover{color:#806958}#checkout_coupon input{background:none;border:1px solid #e1e1e1;width:200px;height:45px;font-size:12px;padding:0 20px;color:#806958}#checkout_coupon button{width:130px;background:#806958;color:#fff;font-weight:500;text-transform:uppercase;font-size:13px;cursor:pointer;-webkit-transition:.3s;transition:.3s;border:0;height:45px;line-height:45px;border-radius:3px;margin-left:5px}@media only screen and (max-width: 767px){#checkout_coupon button{margin-top:20px}}#checkout_coupon button:hover{background:#806958}.mb-20{margin-bottom:20px}.checkout_form h3{font-size:16px;line-height:30px;padding:5px 10px;text-transform:uppercase;color:#fff;background:#806958;font-weight:500}.checkout_form input{border:1px solid #e1e1e1;background:none;height:40px;width:100%;padding:0 20px;color:#806958}.checkout_form .nice-select{width:100%}.checkout_form .nice-select ul.list{width:100%;height:180px;overflow:auto}.checkout_form .nice-select::after{top:56%}.checkout_form label{font-weight:500}.checkout_form label span{color:#806958}.checkout_form label.righ_0{cursor:pointer;font-size:15px;line-height:27px;padding:5px 10px;text-transform:capitalize;color:#fff;background:#806958;font-weight:500;-webkit-transition:.3s;transition:.3s;margin-bottom:0;border-radius:5px}@media only screen and (max-width: 767px){.checkout_form label.righ_0{font-size:13px;line-height:25px;padding:3px 10px}}.checkout_form label.righ_0:hover{background:#806958}.checkout_form input[type="checkbox"]{width:15px;height:15px;position:relative;top:2px;margin-right:10px}.order_button button{cursor:pointer;font-size:16px;line-height:30px;padding:5px 10px;text-transform:capitalize;color:#fff;background:#806958;font-weight:500;-webkit-transition:.3s;transition:.3s;margin-bottom:0;border-radius:5px}@media only screen and (max-width: 767px){.order_button button{font-size:14px}}.order_button button:hover{background:#806958}@media only screen and (max-width: 767px){.order-notes{margin-bottom:58px}}.order-notes textarea{border:1px solid #e5e5e5;border-radius:0;height:45px;max-width:100%;padding:0 30px 0 20px;background:none;font-size:13px;resize:none;line-height:45px;width:100%;color:#806958}.order-notes label{line-height:13px}.Checkout_section{margin-bottom:85px}@media only screen and (min-width: 768px) and (max-width: 991px){.Checkout_section{margin-bottom:65px;margin-top:80px}}@media only screen and (max-width: 767px){.Checkout_section{margin-bottom:38px;margin-top:60px}}.order_table{margin-bottom:35px}.order_table table{width:100%}.order_table table thead tr th{min-width:50%;text-align:center;padding:15px 0;border-bottom:1px solid #ddd}.order_table table tbody tr td{min-width:50%;text-align:center;padding:15px 0;border-bottom:1px solid #ddd}.order_table table tfoot tr th{min-width:50%;text-align:center;padding:15px 0;border-bottom:1px solid #ddd}.order_table table tfoot tr td{min-width:50%;text-align:center;padding:15px 0;border-bottom:1px solid #ddd}.panel-default input[type="radio"]{width:15px;height:15px;position:relative;top:2px;margin-right:10px}.panel-default img{width:160px}.order_button button{border:0}.card-body1{margin-bottom:15px}.table_desc.wishlist table tbody tr:last-child td{border-bottom:0}.table_desc.wishlist table tbody tr td.product_total a{background:#806958;font-size:12px;font-weight:500;height:38px;line-height:18px;padding:10px 20px;color:#fff;text-transform:uppercase;border-radius:3px}.table_desc.wishlist table tbody tr td.product_total a:hover{background:#806958}@media only screen and (max-width: 767px){.table_desc.wishlist table tbody tr td.product_total a{padding:10px 10px}}.wishlist_share{text-align:center;padding:20px 0;border:1px solid #e1e1e1}.wishlist_share h4{font-size:18px;font-weight:500;text-transform:capitalize}.wishlist_share ul li{display:inline-block}.wishlist_share ul li a{padding:0 10px;display:block}.wishlist_share ul li a:hover{color:#806958}.wishlist_area{padding-bottom:87px}@media only screen and (min-width: 768px) and (max-width: 991px){.wishlist_area{padding-bottom:67px;margin-top:80px}}@media only screen and (max-width: 767px){.wishlist_area{padding-bottom:39px;margin-top:60px}}.contact_area{margin-bottom:87px}@media only screen and (min-width: 768px) and (max-width: 991px){.contact_area{margin-bottom:67px}}@media only screen and (max-width: 767px){.contact_area{margin-bottom:39px}}.contact_message h3{font-size:21px;text-transform:capitalize;font-weight:500;line-height:20px;margin-bottom:25px}@media only screen and (min-width: 768px) and (max-width: 991px){.contact_message h3{margin-bottom:20px}}@media only screen and (max-width: 767px){.contact_message h3{font-size:20px;margin-bottom:20px}}.contact_message p{font-size:14px;line-height:24px;margin-bottom:20px}.contact_message ul li{padding:13px 0;border-top:1px solid #e1e1e1}.contact_message ul li:last-child{padding-bottom:0}.contact_message ul li i{margin-right:10px}.contact_message ul li a:hover{color:#806958}.contact_message label{line-height:18px;font-weight:500;margin-bottom:10px}.contact_message input{border:1px solid #e1e1e1;height:45px;background:#fff;width:100%;padding:0 20px;color:#757575}.contact_message textarea{height:170px;border:1px solid #e1e1e1;background:#fff;resize:none;margin-bottom:20px;width:100%;padding:10px 20px;color:#806958}.contact_message button{font-weight:400;height:42px;line-height:42px;padding:0 30px;text-transform:capitalize;border:none;background:#806958;color:#fff;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:4px}.contact_message button:hover{background:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.contact_message.content{margin-bottom:70px}}@media only screen and (max-width: 767px){.contact_message.content{margin-bottom:52px}}.contact_message.form p.form-messege{margin-bottom:0}.contact_map{margin-bottom:97px}@media only screen and (min-width: 768px) and (max-width: 991px){.contact_map{margin-bottom:76px;margin-top:80px}}@media only screen and (max-width: 767px){.contact_map{margin-bottom:57px;margin-top:60px}}.map-area #googleMap{height:460px;width:100%}.account_form h2{font-size:28px;text-transform:capitalize;font-weight:500;line-height:22px;margin-bottom:30px}@media only screen and (max-width: 767px){.account_form h2{font-size:24px;margin-bottom:20px}}.account_form form{border:1px solid #e1e1e1;padding:23px 20px 29px;border-radius:5px}.account_form label{font-size:16px;font-weight:400;cursor:pointer;line-height:12px;margin-bottom:12px}.account_form label:hover{color:#806958}.account_form input{border:1px solid #e1e1e1;height:40px;max-width:100%;padding:0 20px;background:none;width:100%}.account_form button{background:#806958;border:0;color:#fff;display:inline-block;font-size:12px;font-weight:700;height:34px;line-height:26px;padding:5px 20px;text-transform:uppercase;cursor:pointer;-webkit-transition:.3s;transition:.3s;margin-left:20px;border-radius:20px}.account_form button:hover{background:#806958}.login_submit label input[type="checkbox"]{width:15px;height:13px;margin-right:3px}.login_submit{text-align:right}.login_submit a{font-size:15px;float:left;line-height:39px}.login_submit a:hover{color:#806958}@media only screen and (min-width: 768px) and (max-width: 991px){.login_submit a{float:none;line-height:18px;display:block;margin-bottom:20px}}@media only screen and (max-width: 767px){.login_submit a{float:none;line-height:18px;display:block;margin-bottom:20px}}.customer_login{padding-bottom:88px;margin-top:98px}@media only screen and (min-width: 768px) and (max-width: 991px){.customer_login{padding-bottom:67px;margin-top:80px}}@media only screen and (max-width: 767px){.customer_login{margin-top:58px;padding-bottom:38px}}.account_form p{margin-bottom:20px}@media only screen and (max-width: 767px){.account_form.register{margin-top:58px}}.faq_content_area{margin-top:98px;padding-bottom:95px}@media only screen and (min-width: 768px) and (max-width: 991px){.faq_content_area{margin-top:78px;padding-bottom:73px}}@media only screen and (max-width: 767px){.faq_content_area{margin-top:57px;padding-bottom:51px}}.accordion_area{padding-bottom:88px}@media only screen and (min-width: 768px) and (max-width: 991px){.accordion_area{padding-bottom:68px}}@media only screen and (max-width: 767px){.accordion_area{padding-bottom:36px}}.accordion_area .card-header{background:#806958}.accordion_area .card-header:first-child{border-radius:inherit}.card.card_dipult{border:none;margin-bottom:10px}.card.card_dipult:last-child{margin-bottom:0}.card-header.card_accor{padding:0;border:none}.card-header.card_accor button{height:45px;text-decoration:none;cursor:pointer;position:relative;white-space:initial}@media only screen and (max-width: 767px){.card-header.card_accor button{height:60px}}.card-header.card_accor button i{position:absolute;top:50%;-webkit-transform:translatey(-50%);transform:translatey(-50%);right:20px}@media only screen and (max-width: 767px){.card-header.card_accor button i{right:10px}}.card-header.card_accor button.btn-link{border:1px solid #806958;width:100%;text-align:left;font-size:14px;font-weight:500;color:#fff}.card-header.card_accor button.btn-link.collapsed{background:#e1e1e1;border:1px solid #e1e1e1;width:100%;text-align:left;color:#806958}.card-header.card_accor button.btn-link i.fa-plus{display:none}.card-header.card_accor button.btn-link.collapsed i.fa-plus{display:block}.card-header.card_accor button.btn-link.collapsed i.fa-minus{display:none}.faq_content_wrapper h4{font-size:18px;font-weight:600;margin-bottom:15px;line-height:18px}@media only screen and (max-width: 767px){.faq_content_wrapper h4{font-size:14px;line-height:24px}}@media only screen and (max-width: 767px){.dashboard_tab_button{margin-bottom:20px}}.dashboard_tab_button ul li{margin-bottom:5px}.dashboard_tab_button ul li a{color:#fff;font-weight:500;text-transform:capitalize;background:#D8C0A6;border-radius:3px}.dashboard_tab_button ul li a:hover{background:#D0AA7F;color:#fff}.dashboard_tab_button ul li a.active{background:#D0AA7F}.main_content_area{padding:20px 0 82px}@media only screen and (max-width: 767px){.main_content_area{padding:0px 0 30px}}.dashboard_content h3{font-size:22px;text-transform:capitalize;font-weight:500;margin-bottom:15px}.dashboard_content h4{font-size:20px;text-transform:capitalize;font-weight:500;margin-bottom:10px;margin-top:10px}.dashboard_content button{color:#806958;font-weight:500;border:0}.dashboard_content p a{color:#806958;font-weight:500}.table-responsive table thead{background:#e1e1e1}.table-responsive table thead tr th{text-align:center}.table-responsive table tbody tr td{border-right:1px solid #e1e1e1;font-weight:500;text-transform:capitalize;text-align:center;min-width:150px}.table-responsive table tbody tr td:last-child a{color:#806958}.table-responsive .table{border-left:1px solid #e1e1e1;border-bottom:1px solid #e1e1e1;border-right:1px solid #e1e1e1}.dashboard_content address{font-weight:500}.input-radio span input[type="radio"],.account_login_form form span input[type="checkbox"]{width:15px;height:15px;margin-right:2px;position:relative;top:2px}.input-radio span{font-weight:500;padding-right:10px}.account_login_form form input{border:1px solid #ddd;background:none;height:40px;margin-bottom:20px;width:100%;padding:0 20px;color:#806958}.single_instagram{position:relative}.single_instagram:hover::before{opacity:1}.single_instagram::before{content:'';background:rgba(0,0,0,0.2);position:absolute;left:0;top:0;height:100%;width:100%;opacity:0;-webkit-transition:ease-in-out .3s all;-moz-transition:ease-in-out .3s all;transition:ease-in-out .3s all;pointer-events:none}.instagramsix-container{display:flex}.instagram-thumb{width:14.33%}.home_about_container{padding:110px 0}@media only screen and (min-width: 992px) and (max-width: 1199px){.home_about_container{padding:80px 0}}@media only screen and (min-width: 768px) and (max-width: 991px){.home_about_container{padding:80px 0}}@media only screen and (max-width: 767px){.home_about_container{padding:60px 0}}.about_desc{text-align:center}.about_desc p{font-size:16px;margin-bottom:30px;line-height:27px}@media only screen and (max-width: 767px){.about_desc p{font-size:15px;margin-bottom:18px}}.about_desc h3{font-size:42px;line-height:42px;margin-bottom:0}@media only screen and (max-width: 767px){.about_desc h3{font-size:35px;line-height:34px}}.testimonial_about{padding:0}@media only screen and (max-width: 767px){.testimonial_about{margin-top:43px}}.testimonial_about .testimonial_content p{padding:0}.testimonial_about .section_title h2{font-size:28px;line-height:33px;padding-bottom:0}.testimonial_about .section_title h2::before{display:none}@media only screen and (min-width: 768px) and (max-width: 991px){.testimonial_about .section_title h2{font-size:22px;line-height:24px}}@media only screen and (max-width: 767px){.testimonial_about .section_title h2{font-size:19px;line-height:22px}}.testimonial_about .testimonial_container{margin-top:6px}.about_section{padding:100px 0}@media only screen and (min-width: 768px) and (max-width: 991px){.about_section{padding:80px 0}}@media only screen and (max-width: 767px){.about_section{padding:60px 0}}.about_content{padding-top:26px;text-align:center}@media only screen and (max-width: 767px){.about_content{padding-top:20px}}.about_content h1{display:inline-block;font-size:24px;line-height:24px;text-transform:capitalize;font-weight:400;margin-bottom:21px;font-family:"Lato",sans-serif}@media only screen and (min-width: 992px) and (max-width: 1199px){.about_content h1{font-size:22px}}@media only screen and (min-width: 768px) and (max-width: 991px){.about_content h1{font-size:20px;margin-bottom:20px}}@media only screen and (max-width: 767px){.about_content h1{font-size:16px;line-height:25px;margin-bottom:13px}}.about_content p{max-width:890px;margin:0 auto}.chose_content h3{font-size:22px;text-transform:capitalize;font-weight:400;line-height:26px;margin-bottom:19px;font-family:"Lato",sans-serif}@media only screen and (min-width: 768px) and (max-width: 991px){.chose_content h3{font-size:16px;argin-bottom:13px}}@media only screen and (max-width: 767px){.chose_content h3{font-size:18px;line-height:20px;margin-bottom:13px}}.about_signature{margin-top:25px}@media only screen and (min-width: 768px) and (max-width: 991px){.about_signature{margin-top:20px}}@media only screen and (max-width: 767px){.about_signature{margin-top:22px}}.choseus_area{margin-bottom:100px;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:cover;padding:100px 0 93px}@media only screen and (min-width: 768px) and (max-width: 991px){.choseus_area{padding:80px 0 74px;margin-bottom:80px}}@media only screen and (max-width: 767px){.choseus_area{padding:60px 0 28px;margin-bottom:60px}}.single_chose{text-align:center}@media only screen and (max-width: 767px){.single_chose{margin-bottom:25px}}.single_chose:hover .chose_icone{transform:rotatey(180deg)}.chose_icone{margin-bottom:23px;-webkit-transition:.5s;transition:.5s}@media only screen and (min-width: 768px) and (max-width: 991px){.chose_icone{margin-bottom:20px}}@media only screen and (max-width: 767px){.chose_icone{margin-bottom:14px}}.single_gallery_section{background:#fff}@media only screen and (max-width: 767px){.single_gallery_section{margin-bottom:25px}}.about_gallery_container{border-bottom:1px solid #e1e1e1;padding-bottom:93px}@media only screen and (min-width: 768px) and (max-width: 991px){.about_gallery_container{padding-bottom:72px}}@media only screen and (max-width: 767px){.about_gallery_container{padding-bottom:28px}}.about_gallery_section{margin-bottom:94px}@media only screen and (min-width: 768px) and (max-width: 991px){.about_gallery_section{margin-bottom:75px}}@media only screen and (max-width: 767px){.about_gallery_section{margin-bottom:57px}}@media only screen and (max-width: 767px){.gallery_thumb img{width:100%}}.about_gallery_content{padding-top:21px;text-align:center}.about_gallery_content h3{font-size:28px;text-transform:capitalize;font-weight:400;line-height:33px;margin-bottom:12px;font-family:"Lato",sans-serif}@media only screen and (min-width: 992px) and (max-width: 1199px){.about_gallery_content h3{font-size:22px;line-height:25px}}@media only screen and (min-width: 768px) and (max-width: 991px){.about_gallery_content h3{font-size:20px;line-height:22px}}@media only screen and (max-width: 767px){.about_gallery_content h3{font-size:18px;margin-bottom:11px;line-height:22px}}.about_gallery_content p{line-height:26px}.team_container{padding-bottom:45px;border-bottom:1px solid #e1e1e1}@media only screen and (min-width: 768px) and (max-width: 991px){.team_container{padding-bottom:15px}}@media only screen and (max-width: 767px){.team_container{padding-bottom:15px}}.team_member{text-align:center}@media only screen and (min-width: 768px) and (max-width: 991px){.team_member{margin-bottom:28px}}@media only screen and (max-width: 767px){.team_member{margin-bottom:28px}}.team_thumb{margin-bottom:24px}@media only screen and (min-width: 768px) and (max-width: 991px){.team_thumb{margin-bottom:18px}}@media only screen and (max-width: 767px){.team_thumb{margin-bottom:18px}}.team_content h3{font-size:18px;line-height:24px;font-weight:500;margin-bottom:5px}@media only screen and (min-width: 768px) and (max-width: 991px){.team_content h3{line-height:18px;margin-bottom:4px}}@media only screen and (max-width: 767px){.team_content h3{line-height:18px;margin-bottom:4px;font-size:17px}}.team_content h5{font-size:13px;line-height:17px;margin-bottom:12px;padding-bottom:14px;position:relative;display:inline-block}@media only screen and (min-width: 768px) and (max-width: 991px){.team_content h5{margin-bottom:11px;padding-bottom:11px}}@media only screen and (max-width: 767px){.team_content h5{margin-bottom:11px;padding-bottom:11px}}.team_content h5::before{position:absolute;content:"";width:37px;height:2px;background:#806958;bottom:0;left:50%;transform:translatex(-50%)}.team_content p a:hover{color:#806958}.faq-client_title{margin-bottom:28px;text-align:center}@media only screen and (max-width: 767px){.faq-client_title{margin-bottom:23px}}.faq-client_title h2{font-size:28px;line-height:33px;font-weight:400;display:inline-block;margin-bottom:0;text-transform:capitalize;position:relative;font-family:"Lato",sans-serif}@media only screen and (min-width: 768px) and (max-width: 991px){.faq-client_title h2{font-size:22px;line-height:24px}}@media only screen and (max-width: 767px){.faq-client_title h2{font-size:19px;line-height:20px}}.faq-client-say-area{margin-bottom:70px}@media only screen and (min-width: 768px) and (max-width: 991px){.faq-client-say-area{margin-bottom:50px}}@media only screen and (max-width: 767px){.faq-client-say-area{margin-bottom:33px}}@media only screen and (max-width: 767px){.faq-client-say-area .section_title{margin-bottom:22px}}.panel-heading .panel-title{margin-bottom:0}.panel-heading .panel-title a{background:#fff;display:block;padding:14px 20px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none;color:inherit;position:relative;-webkit-transition:color .2s ease-in-out;-o-transition:color .2s ease-in-out;transition:color .2s ease-in-out;border:none;-webkit-box-shadow:none;box-shadow:none;font-weight:500}@media only screen and (max-width: 767px){.panel-heading .panel-title a{padding:10px 38px 10px 15px;font-size:13px}}.panel-heading .panel-title a::before{position:absolute;content:"\f0d7";font-family:'FontAwesome';color:#333;font-size:20px;width:22px;height:22px;text-align:center;line-height:25px;right:15px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:0.4s ease-in-out;-o-transition:0.4s ease-in-out;transition:0.4s ease-in-out;border-radius:100%;z-index:4;margin-top:0px}.panel-heading .panel-title a[aria-expanded="true"]::before{background:#fff;color:#806958}.faq-style-wrap .panel-title a[aria-expanded="true"]{border-radius:3px 3px 0 0;color:#ffffff;background:#806958}.panel.panel-default{margin-bottom:21px}.panel.panel-default:last-child{margin-bottom:0}@media only screen and (max-width: 767px){.panel.panel-default{margin-bottom:13px}}.panel-body{padding:15px;border:1px solid #ddd;background:#fff}.services_gallery{padding-bottom:68px}@media only screen and (min-width: 768px) and (max-width: 991px){.services_gallery{padding-bottom:48px;margin-top:80px}}@media only screen and (max-width: 767px){.services_gallery{padding-bottom:26px;margin-top:60px}}.services_content h3{text-transform:capitalize;font-weight:400;margin-bottom:11px;font-family:"Lato",sans-serif}.services_content p{font-weight:400;margin-bottom:0}.services_thumb{margin-bottom:20px}@media only screen and (min-width: 768px) and (max-width: 991px){.services_thumb img{width:100%}}@media only screen and (max-width: 767px){.services_thumb img{width:100%}}.single_services{margin-bottom:25px}.our_services{padding:90px 0 64px;background:#ECECEC}@media only screen and (min-width: 768px) and (max-width: 991px){.our_services{margin-bottom:80px;padding:70px 0 47px}}@media only screen and (max-width: 767px){.our_services{padding:54px 0 26px;margin-bottom:60px}}.services_item{margin-bottom:27px;display:-webkit-box;display:-ms-flexbox;display:flex}.services_title{text-align:center;margin-bottom:35px}.services_title h2{font-size:25px;text-transform:uppercase;font-weight:400;margin-bottom:11px;font-family:"Lato",sans-serif}@media only screen and (max-width: 767px){.services_title h2{font-size:20px;line-height:22px}}.services_title p{max-width:790px;margin:0 auto}.services_icone{margin-right:15px}.services_icone i{font-size:35px;line-height:46px;color:#806958}.services_desc h3{font-size:13px;font-weight:400;font-family:"Lato",sans-serif}@media only screen and (max-width: 767px){.services_desc h3{line-height:22px}}.services_desc p{font-size:13px;font-weight:400;line-height:24px;margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.services_section_thumb{margin-bottom:28px}}@media only screen and (max-width: 767px){.services_section_thumb{margin-bottom:28px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.unlimited_services{margin:100px 0}}@media only screen and (min-width: 768px) and (max-width: 991px){.unlimited_services{margin-bottom:80px}}@media only screen and (max-width: 767px){.unlimited_services{margin-bottom:60px}}.unlimited_services_content h1{font-weight:400;line-height:40px;text-transform:uppercase;font-size:25px;margin-bottom:20px;font-family:"Lato",sans-serif}@media only screen and (min-width: 992px) and (max-width: 1199px){.unlimited_services_content h1{line-height:25px;font-size:20px;margin-bottom:12px}}@media only screen and (min-width: 768px) and (max-width: 991px){.unlimited_services_content h1{line-height:21px;font-size:20px;margin-bottom:6px}}@media only screen and (max-width: 767px){.unlimited_services_content h1{line-height:20px;font-size:18px;margin-bottom:6px}}.unlimited_services_content p{font-size:14px;line-height:28px;margin-bottom:25px}@media only screen and (min-width: 768px) and (max-width: 991px){.unlimited_services_content p{font-size:14px;margin-bottom:15px}}@media only screen and (max-width: 767px){.unlimited_services_content p{font-size:13px;margin-bottom:15px}}.unlimited_services_content .view__work a{font-size:14px;padding:8px 20px 7px;display:inline-block;border-radius:20px;border:1px solid #e1e1e1}.unlimited_services_content .view__work a:hover{background:#806958;color:#fff;border-color:#806958}.priceing_table{background:#ECECEC;padding:100px 0 70px}@media only screen and (min-width: 768px) and (max-width: 991px){.priceing_table{padding:80px 0 50px}}@media only screen and (max-width: 767px){.priceing_table{padding:60px 0 30px}}.single_priceing{background:#fff;border-radius:3px;-webkit-box-shadow:0 1px #fff inset,0 1px 3px rgba(34,25,25,0.4);box-shadow:0 1px #fff inset,0 1px 3px rgba(34,25,25,0.4);text-align:center;margin-bottom:30px}.priceing_title{padding:20px;background:#806958}.priceing_title h1{color:#fff;font-size:14px;font-weight:600;text-transform:uppercase;margin-bottom:0;font-family:"Lato",sans-serif}.priceing_list{padding:0 20px 30px}.priceing_list h1{font-size:12px;font-weight:500;text-transform:uppercase;padding:36px 0 24px;margin:0;line-height:20px}.priceing_list h1 span{font-size:40px}.priceing_list ul li{padding:15px 0;border-bottom:1px solid #e1e1e1;line-height:24px}.priceing_list ul li:first-child{border-top:1px solid #e1e1e1}.priceing_list a{margin:30px 0 0;line-height:38px;padding:0 20px;border:1px solid #806958;color:#806958;display:inline-block;font-size:12px;font-weight:600;border-radius:30px;text-transform:uppercase}.priceing_list a.list_button,.priceing_list a:hover{background:#806958;border-color:#806958;color:#fff}.advantages_ecommerce{padding:92px 0}@media only screen and (min-width: 768px) and (max-width: 991px){.advantages_ecommerce{padding:77px 0 75px}}@media only screen and (max-width: 767px){.advantages_ecommerce{padding:56px 0 60px}}@media only screen and (max-width: 767px){.advantages_content{text-align:center}}.advantages_content h3{font-size:25px;font-weight:500;text-transform:capitalize}@media only screen and (min-width: 768px) and (max-width: 991px){.advantages_content h3{font-size:20px;line-height:20px}}@media only screen and (max-width: 767px){.advantages_content h3{font-size:16px;line-height:20px}}.advantages_content p{font-size:14px;font-style:italic;font-weight:400}@media only screen and (min-width: 768px) and (max-width: 991px){.advantages_content p{font-size:13px}}@media only screen and (max-width: 767px){.advantages_content p{font-size:13px}}.advantages_button{text-align:center}.advantages_button a{font-size:14px;padding:8px 20px 7px;display:inline-block;border-radius:20px;border:1px solid #e1e1e1}.advantages_button a:hover{background:#806958;color:#fff;border-color:#806958}@media only screen and (max-width: 767px){.advantages_button a{padding:5px 11px;font-size:13px;margin-top:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_page_section{margin-bottom:60px}}@media only screen and (max-width: 767px){.blog_page_section{margin-bottom:60px;margin-top:60px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper{margin-bottom:75px}}@media only screen and (max-width: 767px){.blog_wrapper{margin-bottom:55px}}.blog_wrapper .single_blog{margin-bottom:35px;padding-bottom:35px;border-bottom:1px solid #e1e1e1;overflow:hidden}@media only screen and (max-width: 767px){.blog_wrapper .single_blog{margin-bottom:30px;padding-bottom:30px}}.blog_wrapper .single_blog:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0}.blog_wrapper .blog_thumb{width:40%;float:left}@media only screen and (max-width: 767px){.blog_wrapper .blog_thumb{width:100%;float:inherit}}@media only screen and (max-width: 767px){.blog_wrapper .blog_thumb a{width:100%}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper .blog_thumb a img{width:100%}}@media only screen and (max-width: 767px){.blog_wrapper .blog_thumb a img{width:100%}}.blog_wrapper .blog_thumb iframe{height:248px;width:100%}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_wrapper .blog_thumb iframe{height:200px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper .blog_thumb iframe{height:200px}}.blog_wrapper .blog_content{width:60%;float:left;padding-left:30px;padding-top:0}@media only screen and (max-width: 767px){.blog_wrapper .blog_content{width:100%;float:inherit;padding-left:0;padding-top:24px}}.blog_wrapper .blog_content h4{font-size:28px;line-height:33px;font-weight:500;margin-bottom:10px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_wrapper .blog_content h4{font-size:24px;line-height:24px;margin-bottom:8px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper .blog_content h4{font-size:24px;line-height:24px;margin-bottom:8px}}@media only screen and (max-width: 767px){.blog_wrapper .blog_content h4{font-size:19px;line-height:21px;margin-bottom:7px}}.blog_wrapper .blog_content h4 a i{color:#806958;margin-right:5px}.blog_wrapper .blog_content p.post_desc{margin-bottom:0;padding-bottom:0;border-bottom:0;line-height:28px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_wrapper .blog_content p.post_desc{line-height:23px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper .blog_content p.post_desc{line-height:23px}}@media only screen and (max-width: 767px){.blog_wrapper .blog_content p.post_desc{line-height:21px}}.blog_wrapper .blog_content .btn_more{margin-top:27px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_wrapper .blog_content .btn_more{margin-top:19px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper .blog_content .btn_more{margin-top:19px}}@media only screen and (max-width: 767px){.blog_wrapper .blog_content .btn_more{margin-top:18px}}.blog_wrapper .blog_content .btn_more a{color:#fff;font-size:13px;height:36px;line-height:36px;padding:0 25px;display:inline-block;text-transform:capitalize;background:#333;font-weight:500;border-radius:20px}.blog_wrapper .blog_content .btn_more a:hover{background:#806958}.blog_wrapper .blog_meta{margin-bottom:21px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_wrapper .blog_meta{margin-bottom:14px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper .blog_meta{margin-bottom:14px}}@media only screen and (max-width: 767px){.blog_wrapper .blog_meta{margin-bottom:13px}}.blog_wrapper .blog_meta p{font-size:14px;line-height:24px}@media only screen and (max-width: 767px){.blog_wrapper .blog_meta p{font-size:13px;line-height:20px}}.blog_wrapper .blog_meta p a{color:#806958}.blog_wrapper .blog_meta p a:hover{text-decoration:underline}.blog_wrapper .blog_meta p.author{margin-right:8px}.blog_wrapper .blog_meta p.author a{margin-right:5px}.blog_wrapper .blog_desc{margin-bottom:25px}@media only screen and (max-width: 767px){.blog_wrapper .blog_desc{margin-bottom:20px}}.blog_wrapper .blog_desc p{font-size:14px;line-height:28px;margin-bottom:0}.blog_bidio .blog_content{padding-top:16px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_bidio .blog_content{padding-top:19px}}@media only screen and (max-width: 767px){.blog_bidio .blog_content{padding-top:13px}}.readmore_button a{height:38px;line-height:40px;background:#806958;border:0;color:#fff;display:block;text-align:center;padding:0 20px;font-size:12px;text-transform:uppercase;font-weight:600;font-style:normal;border-radius:3px;max-width:170px}.readmore_button a:hover{background:#806958}@media only screen and (max-width: 767px){.readmore_button a{max-width:130px}}.blog_sidebar_widget .widget_title{position:relative;margin-bottom:20px}.blog_sidebar_widget .widget_title h3{margin-bottom:0}.blog_sidebar_widget .widget_list{margin-bottom:28px}.blog_sidebar_widget .widget_list:last-child{margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_sidebar_widget .widget_list{margin-bottom:75px}}@media only screen and (max-width: 767px){.blog_sidebar_widget .widget_list{margin-bottom:56px}}.blog_sidebar_widget .widget_list.comments .post_thumb a img{border-radius:50%}.blog_sidebar_widget .widget_list.comments .post_info span a{color:#806958}.blog_sidebar_widget .widget_list.comments .post_info a:hover{color:#806958}.blog_sidebar_widget .widget_categories{background:inherit;margin-bottom:18px}.blog_sidebar_widget .widget_categories .widget_title{margin-bottom:15px}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_sidebar_widget .widget_categories{margin-bottom:62px}}@media only screen and (max-width: 767px){.blog_sidebar_widget .widget_categories{margin-bottom:43px}}.blog_sidebar_widget .widget_categories ul li a{color:#806958;padding:0;border:0;line-height:35px}.widget_search input{height:35px;border:1px solid #e1e1e1;background:#fff;color:#806958;width:100%;margin-bottom:20px;padding:0 15px}.widget_search button{color:#fff;display:inline-block;background:#242424;border:none;padding:0 20px;height:34px;line-height:35px;text-transform:uppercase;font-size:12px;font-weight:600;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:3px}.widget_search button:hover{background:#806958}.tag_widget ul li{display:inline-block}.tag_widget ul li a{margin:0 6px 0 0;display:block;font-size:12px;font-weight:400;border:1px solid #e1e1e1;background:#fff;padding:0 15px;line-height:29px;border-radius:3px}.tag_widget ul li a:hover{background:#806958;border-color:#806958;color:#fff}.post_thumb{width:60px;float:left;margin-right:10px}.post_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:15px}.post_wrapper:last-child{margin-bottom:0}.post_info h4{font-size:13px;font-weight:500;text-transform:capitalize;line-height:14px;margin-bottom:5px}.post_info h4 a:hover{color:#806958}.post_info span{font-size:12px}.blog_categories ul li{border-top:1px solid #ddd}.blog_categories ul li a{padding:10px 0;text-transform:capitalize;display:inline-block;margin-left:0}.blog_categories ul li a:hover{color:#806958}.blog_categories ul li:last-child a{padding-bottom:0}.shipping_area.shipping_contact.blog_shipping{margin-top:94px}.blog_pagination{margin-top:40px;margin-bottom:87px}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_pagination{margin-top:80px;margin-bottom:67px}}@media only screen and (max-width: 767px){.blog_pagination{margin-bottom:40px}}.blog_pagination .pagination{border:1px solid #e1e1e1;justify-content:center;padding:10px 0}@media only screen and (max-width: 767px){.blog_pagination .pagination{margin-top:0}}.blog_fullwidth{margin-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_fullwidth{margin-bottom:60px;margin-top:80px}}@media only screen and (max-width: 767px){.blog_fullwidth{margin-bottom:60px;margin-top:60px}}.blog_fullwidth .blog_thumb{width:100%;float:inherit}.blog_fullwidth .blog_thumb iframe{height:550px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_fullwidth .blog_thumb iframe{height:440px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_fullwidth .blog_thumb iframe{height:440px}}@media only screen and (max-width: 767px){.blog_fullwidth .blog_thumb iframe{height:200px}}.blog_fullwidth .blog_content{width:100%;float:inherit;padding-left:0;padding-top:27px}@media only screen and (max-width: 767px){.blog_fullwidth .blog_content{padding-top:24px}}.blog_thumb_active:hover .owl-nav>div{left:20px;opacity:1;visibility:visible}.blog_thumb_active:hover .owl-nav>div.owl-next{right:20px}.blog_thumb_active .owl-nav>div{position:absolute;top:50%;transform:translatey(-50%);background:rgba(236,54,66,0.6);width:30px;height:30px;line-height:30px;font-size:20px;color:#fff;text-align:center;border-radius:50%;left:40px;-webkit-transition:.5s;transition:.5s;opacity:0;visibility:hidden}.blog_thumb_active .owl-nav>div.owl-next{right:40px;left:auto}.blog_aduio_icone{margin-bottom:14px;margin-top:23px}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_aduio_icone{margin-bottom:8px;margin-top:15px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_aduio_icone{margin-bottom:8px;margin-top:15px}}@media only screen and (max-width: 767px){.blog_aduio_icone{margin-bottom:11px;margin-top:16px}}.blog_aduio_icone audio{width:100%}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_page_section.blog_reverse{margin-top:80px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_reverse .row{flex-direction:column-reverse}}@media only screen and (max-width: 767px){.blog_reverse .row{flex-direction:column-reverse}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_wrapper_sidebar .row{flex-direction:row}}@media only screen and (max-width: 767px){.blog_wrapper_sidebar .row{flex-direction:row}}@media only screen and (min-width: 992px) and (max-width: 1199px){.blog_nosidebar{margin-bottom:0}}.blog_nosidebar .single_blog{overflow:hidden}.blog_nosidebar .single_blog_gallery{overflow:hidden}.blog_nosidebar .blog_thumb{float:left;width:30%}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_nosidebar .blog_thumb{width:35%}}@media only screen and (max-width: 767px){.blog_nosidebar .blog_thumb{width:100%}}.blog_nosidebar .blog_thumb_active{float:left;width:30%}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_nosidebar .blog_thumb_active{width:35%}}@media only screen and (max-width: 767px){.blog_nosidebar .blog_thumb_active{width:100%}}.blog_nosidebar .blog_content{float:left;width:70%;padding-top:0;padding-left:25px}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_nosidebar .blog_content{width:65%}}@media only screen and (max-width: 767px){.blog_nosidebar .blog_content{width:100%;padding-left:0;padding-top:20px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_nosidebar .blog_content h3{line-height:20px;margin-bottom:9px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_nosidebar .blog_meta{margin-bottom:9px}}.post_header{margin-bottom:28px}@media only screen and (min-width: 768px) and (max-width: 991px){.post_header{margin-bottom:25px}}@media only screen and (max-width: 767px){.post_header{margin-bottom:22px}}.post_header h3{font-size:30px;line-height:35px;font-weight:500;margin-bottom:4px}@media only screen and (min-width: 992px) and (max-width: 1199px){.post_header h3{font-size:26px;line-height:30px}}@media only screen and (min-width: 768px) and (max-width: 991px){.post_header h3{font-size:25px;line-height:25px}}@media only screen and (max-width: 767px){.post_header h3{font-size:17px;line-height:24px}}.blog_details{margin-bottom:87px;margin-top:93px}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_details{margin-bottom:67px;margin-top:74px}}@media only screen and (max-width: 767px){.blog_details{margin-top:54px;margin-bottom:41px}}.blog_details .single_blog{margin-bottom:91px;padding-bottom:0;border-bottom:0}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_details .single_blog{margin-bottom:74px}}@media only screen and (max-width: 767px){.blog_details .single_blog{margin-bottom:59px}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_details .blog_sidebar{margin-bottom:0}}@media only screen and (max-width: 767px){.blog_details .blog_sidebar{margin-bottom:0}}@media only screen and (min-width: 768px) and (max-width: 991px){.blog_details .blog_wrapper{margin-bottom:77px}}@media only screen and (max-width: 767px){.blog_details .blog_wrapper{margin-bottom:56px}}.blog_details .blog_meta{margin-bottom:0}.blog_details .blog_thumb{width:100%;float:inherit}.blog_details .blog_content{width:100%;float:inherit;padding-left:0;padding-top:30px}.blog_details .post_content>p{line-height:24px;margin-bottom:10px;font-size:15px}@media only screen and (max-width: 767px){.blog_details .post_content>p{font-size:14px}}.blog_details .post_content blockquote{margin:31px 0 31px 40px;font-style:italic;padding:30px 45px;background:#f6f6f6;border:1px solid #ebebeb;border-left:4px solid #806958}.blog_details .post_content blockquote p{font-size:16px}@media only screen and (max-width: 767px){.blog_details .post_content blockquote p{font-size:15px}}@media only screen and (max-width: 767px){.blog_details .post_content blockquote{margin:23px 0 23px 0;padding:20px 12px 15px}}.blog_details .social_sharing{display:flex;align-items:center}.blog_details .social_sharing p{font-size:13px;text-transform:capitalize;margin-right:20px;margin-bottom:0;line-height:13px;font-weight:500}@media only screen and (max-width: 767px){.blog_details .social_sharing p{font-size:13px;margin-right:10px}}.blog_details .social_sharing ul li{display:inline-block}.blog_details .social_sharing ul li a{background:#e6e6e6;border-radius:100%;display:inline-block;font-size:12px;height:26px;line-height:28px;margin-right:5px;text-align:center;width:26px}.blog_details .social_sharing ul li a:hover{color:#fff;background:#806958}@media only screen and (max-width: 767px){.blog_details .social_sharing ul li a{margin-right:2px}}.blog_details .social_sharing ul li:first-child a{padding-left:0;border-left:0}.entry_content{display:flex;justify-content:space-between;align-items:center}@media only screen and (max-width: 767px){.entry_content{flex-direction:column;text-align:left;align-items:inherit}}.entry_content .post_meta{margin-bottom:0}@media only screen and (max-width: 767px){.entry_content .post_meta{margin-bottom:10px}}.entry_content .post_meta span{font-weight:500;font-size:13px}.entry_content .post_meta span a:hover{color:#806958}.comments_box{margin-bottom:95px}@media only screen and (min-width: 768px) and (max-width: 991px){.comments_box{margin-bottom:75px}}@media only screen and (max-width: 767px){.comments_box{margin-bottom:55px}}.comments_box h3{font-size:15px;margin:0 0 20px;font-weight:500;line-height:20px;text-transform:uppercase}.comment_list{overflow:hidden;margin-bottom:30px}.comment_list:last-child{margin-bottom:0}.comment_list .comment_thumb{display:inline-block;float:left}@media only screen and (max-width: 767px){.comment_list .comment_thumb{width:40px}}.comment_list .comment_content{margin-left:70px;position:relative;border:1px solid #ebebeb;border-radius:3px;padding:15px}@media only screen and (max-width: 767px){.comment_list .comment_content{margin-left:55px}}.comment_list .comment_content h5{font-size:12px;font-weight:500;text-transform:uppercase;margin-bottom:5px}.comment_list .comment_content h5 a:hover{color:#806958}.comment_list .comment_content span{line-height:18px;margin-bottom:8px;font-size:13px;font-style:italic;display:inline-block}.comment_list .comment_content p{margin-bottom:0;font-size:14px}.comment_reply{position:absolute;top:20px;right:12px}@media only screen and (max-width: 767px){.comment_reply{top:15px}}.comment_reply a{padding:2px 10px;border-radius:3px;color:#fff;background:#806958;display:block}@media only screen and (max-width: 767px){.comment_reply a{line-height:20px;font-size:13px}}.comment_reply a:hover{background:#806958}.comments_form h3{font-size:15px;margin:0 0 20px;font-weight:500;line-height:20px;text-transform:uppercase}.comments_form p{font-size:13px;line-height:17px;margin-bottom:12px}@media only screen and (min-width: 768px) and (max-width: 991px){.comments_form form .row{flex-direction:row}}.comments_form form label{font-size:13px;line-height:20px;font-weight:500;margin-bottom:10px}.comments_form form textarea{width:100%;height:200px;background:#fff;border:1px solid #e1e1e1;margin-bottom:10px;resize:none;padding:10px}.comments_form form input{width:100%;height:40px;border:1px solid #e1e1e1;margin-bottom:15px;padding:0 20px}.comments_form form button{border:0;line-height:36px;background:#806958;font-weight:500}.comments_form form button:hover{background:#806958}@media only screen and (max-width: 767px){.comments_form form button{line-height:38px;height:38px;padding:0 10px}}.comment_list.list_two{padding-left:50px}@media only screen and (max-width: 767px){.comment_list.list_two{padding-left:0}}.related_posts{border-top:1px solid #e1e1e1;padding:96px 0 89px}@media only screen and (min-width: 768px) and (max-width: 991px){.related_posts{padding:76px 0 41px}}@media only screen and (max-width: 767px){.related_posts{padding:56px 0 25px}}@media only screen and (min-width: 768px) and (max-width: 991px){.related_posts .row{flex-direction:row !important}}.related_posts h3{font-size:15px;margin:0 0 20px;font-weight:500;line-height:20px;text-transform:uppercase}.related_thumb{margin-bottom:15px}@media only screen and (min-width: 768px) and (max-width: 991px){.related_thumb img{width:100%}}@media only screen and (max-width: 767px){.related_thumb img{width:100%}}.related_content h4{font-size:13px;font-weight:500;line-height:13px;margin-bottom:0;text-transform:uppercase}.related_content h4 a{color:#806958}.related_content h4 a:hover{color:#806958}.related_content span{font-size:13px;line-height:17px}.related_content span i{margin-right:3px}.related_content .blog_meta span{font-size:12px;line-height:22px}@media only screen and (min-width: 768px) and (max-width: 991px){.single_related{margin-bottom:28px}}@media only screen and (max-width: 767px){.single_related{margin-bottom:25px}}.modal-dialog.modal-dialog-centered{min-width:1100px}@media only screen and (min-width: 1200px) and (max-width: 1600px){.modal-dialog.modal-dialog-centered{min-width:1000px}}@media only screen and (min-width: 992px) and (max-width: 1199px){.modal-dialog.modal-dialog-centered{min-width:950px}}@media only screen and (min-width: 768px) and (max-width: 991px){.modal-dialog.modal-dialog-centered{min-width:730px}}@media only screen and (max-width: 767px){.modal-dialog.modal-dialog-centered{min-width:90%}}.modal_tab_img{text-align:center;margin-bottom:10px}.modal_tab_img img{margin:0 auto}.modal_tab_button ul li a{padding:0;border:1px solid #e1e1e1;margin:0 2px}.modal_tab_button ul li a img{width:100%}.modal_title h2{font-size:16px;text-transform:uppercase;font-weight:600;margin-bottom:14px;line-height:26px}.modal_social h2{font-size:16px;text-transform:uppercase;font-weight:600;margin-bottom:15px;line-height:20px}.modal_social ul li{display:inline-block;margin-right:3px}.modal_social ul li a{text-transform:uppercase;display:inline-block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:50%;font-size:15px;color:#fff;font-weight:400}.modal_social ul li.facebook a{background:#3c5b9b}.modal_social ul li.facebook a:hover{background:#806958}.modal_social ul li.twitter a{background:#1DA1F2}.modal_social ul li.twitter a:hover{background:#806958}.modal_social ul li.pinterest a{background:#BD081B}.modal_social ul li.pinterest a:hover{background:#806958}.modal_social ul li.google-plus a{background:#DC5043}.modal_social ul li.google-plus a:hover{background:#806958}.modal_social ul li.linkedin a{background:#010103}.modal_social ul li.linkedin a:hover{background:#806958}.modal_price{margin-bottom:12px}.modal_price span{font-weight:600;color:#806958;font-size:16px}.modal_price span.old_price{color:#806958;font-size:14px;font-weight:400;text-decoration:line-through;margin-left:5px}.modal_description p{line-height:24px;font-size:15px;margin:0}.variants_size h2,.variants_color h2{font-size:13px;font-weight:600;text-transform:uppercase;margin-bottom:7px;line-height:20px}.variants_size.mb-15,.mb-15.variants_color{margin-bottom:24px}.variants_size .select_option,.variants_color .select_option{width:100%;border-radius:0;margin-bottom:25px}.variants_size .select_option .list,.variants_color .select_option .list{width:100%;border-radius:0}.modal_add_to_cart{margin-bottom:25px}.modal_add_to_cart form input{width:95px;border:1px solid #e1e1e1;background:none;padding:0 10px;height:45px}@media only screen and (max-width: 767px){.modal_add_to_cart form input{width:75px}}.modal_add_to_cart form button{background:none;border:1px solid #806958;margin-left:10px;font-size:12px;font-weight:700;height:45px;width:230px;line-height:18px;padding:10px 15px;text-transform:uppercase;background:#806958;color:#fff;-webkit-transition:.3s;transition:.3s;cursor:pointer}@media only screen and (max-width: 767px){.modal_add_to_cart form button{width:130px}}.modal_add_to_cart form button:hover{background:#806958;color:#fff;border-color:#806958}.modal_body{padding:29px 6px 38px}@media only screen and (max-width: 767px){.modal_body{padding:42px 6px 38px}}@media only screen and (max-width: 767px){.modal_body .modal_tab{margin-bottom:30px}}.modal-content{border-radius:0}.modal-content button.close{position:absolute;left:94%;width:35px;height:35px;line-height:37px;display:block;border:1px solid #e1e1e1;top:10px;border-radius:50%;cursor:pointer;font-size:18px;z-index:9}@media only screen and (max-width: 767px){.modal-content button.close{left:83%;width:32px;height:32px;line-height:35px;top:4px;margin-bottom:14px}}.modal-content button.close:hover{color:#806958}.modal_add_to_cart.mb-15{margin-bottom:23px}.modal_description.mb-15{margin-bottom:20px}.product_navactive.owl-carousel:hover .owl-nav div{opacity:1;visibility:visible}.product_navactive.owl-carousel .owl-nav{display:block}.product_navactive.owl-carousel .owl-nav div{position:absolute;background:#f2f2f2;border-radius:3px;color:#333;height:32px;top:50%;transform:translatey(-50%);width:32px;text-align:center;line-height:32px;left:-7px;font-size:18px;-webkit-transition:0.3s;transition:0.3s;opacity:0;visibility:hidden}.product_navactive.owl-carousel .owl-nav div:hover{background:#806958;color:#ffffff}.product_navactive.owl-carousel .owl-nav div.owl-next{right:-7px;left:auto}.newletter-popup{background:#fff;top:50% !important;margin-top:-179px;position:fixed !important;padding:50px;text-align:center;display:none}@media only screen and (max-width: 767px){.newletter-popup{padding:30px 20px;width:95%}}#boxes .newletter-title h2{font-size:30px;text-transform:uppercase;margin:0 0 30px}@media only screen and (max-width: 767px){#boxes .newletter-title h2{font-size:22px;margin:0 0 10px}}#boxes .box-content label{font-weight:400;font-size:14px}#boxes .box-content .newletter-label{width:70%;margin-bottom:36px}@media only screen and (max-width: 767px){#boxes .box-content .newletter-label{width:100%}}#frm_subscribe form{width:340px;margin:0 auto;position:relative}@media only screen and (max-width: 767px){#frm_subscribe form{width:100%}}#frm_subscribe form input::-webkit-input-placeholder{color:#747474}#frm_subscribe form input::-moz-placeholder{color:#747474}#frm_subscribe form input:-ms-input-placeholder{color:#747474}#frm_subscribe form input:-moz-placeholder{color:#747474}#frm_subscribe form input{background:#EBEBEB;padding:0 127px 0 20px;height:45px;border:0;width:100%;color:#747474;margin-bottom:0}@media only screen and (max-width: 767px){#frm_subscribe form input{padding:0 104px 0 20px}}#frm_subscribe form a.theme-btn-outlined{position:absolute;top:0;right:0;height:100%;width:110px;background:#806958;cursor:pointer;color:#ffffff;text-transform:uppercase;font-size:12px;font-weight:600;-webkit-transition:0.3s;transition:0.3s;line-height:45px}#frm_subscribe form a.theme-btn-outlined:hover{background:#806958}@media only screen and (max-width: 767px){#frm_subscribe form a.theme-btn-outlined{width:90px}}#boxes .box-content .subscribe-bottom{margin-top:20px}#boxes .box-content .subscribe-bottom label{margin:0;font-size:13px}#boxes .box-content .subscribe-bottom #newsletter_popup_dont_show_again{display:inline-block;margin:0;vertical-align:middle}#boxes #frm_subscribe #notification{color:#f00}#boxes #frm_subscribe #notification .success{color:#67D7BB}#popup2{position:absolute;right:1px;top:1px;text-align:center;cursor:pointer;font-size:13px;text-transform:capitalize;padding:6px 12px;background:#806958;font-weight:600;line-height:17px;color:#fff;display:block;transition:0.3s}#popup2:hover{background:#806958}.header_error{border-bottom:1px solid #e1e1e1}.error_form{text-align:center}.error_form h1{font-size:200px;font-weight:700;color:#806958;letter-spacing:10px;line-height:160px;margin:0 0 83px}@media only screen and (min-width: 768px) and (max-width: 991px){.error_form h1{margin:0 0 64px}}@media only screen and (max-width: 767px){.error_form h1{font-size:130px;line-height:120px;letter-spacing:4px;margin:0 0 40px}}.error_form h2{font-size:24px;text-transform:uppercase;font-weight:500;line-height:30px;margin-bottom:20px}@media only screen and (max-width: 767px){.error_form h2{font-size:18px;line-height:22px;margin-bottom:14px}}.error_form p{font-size:17px;font-weight:400;line-height:26px;margin-bottom:30px}@media only screen and (max-width: 767px){.error_form p{font-size:15px;margin-bottom:22px;line-height:21px}}.error_form form{width:450px;margin:0 auto;position:relative}@media only screen and (max-width: 767px){.error_form form{width:100%}}.error_form form input{padding:0 60px 0 30px;background:#f8f8f8;border:1px solid #ddd;color:#806958;height:40px;width:100%;border-radius:3px}.error_form form button{position:absolute;right:0;height:100%;border:none;background:no-repeat;font-size:20px;cursor:pointer;-webkit-transition:.3s;transition:.3s;top:0;text-transform:uppercase;padding:0 15px;font-weight:600}.error_form form button:hover{color:#806958}.error_form a{color:#fff;display:inline-block;background:#806958;font-size:12px;font-weight:bold;height:40px;line-height:44px;padding:0 30px;text-transform:uppercase;margin-top:35px;border-radius:3px}@media only screen and (max-width: 767px){.error_form a{padding:0 20px;margin-top:25px}}.error_form a:hover{background:#806958}.error_section{padding-bottom:86px;padding-top:91px}@media only screen and (min-width: 768px) and (max-width: 991px){.error_section{padding-top:42px;padding-bottom:67px}}@media only screen and (max-width: 767px){.error_section{padding-bottom:37px;padding-top:20px}}.privacy_policy_main_area{padding:53px 0 10px}@media only screen and (max-width: 767px){.privacy_policy_main_area{padding:57px 0 6px}}.privacy_policy_header{text-align:center;margin-bottom:50px}@media only screen and (max-width: 767px){.privacy_policy_header{margin-bottom:53px}}.privacy_policy_header h1{font-size:42px;line-height:45px;font-weight:500;margin-bottom:0}@media only screen and (max-width: 767px){.privacy_policy_header h1{font-size:25px;line-height:25px}}.privacy_content{margin-bottom:44px}@media only screen and (max-width: 767px){.privacy_content{margin-bottom:46px}}.privacy_content h2{font-size:25px;line-height:33px;font-weight:500}@media only screen and (max-width: 767px){.privacy_content h2{font-size:18px;line-height:26px}}.privacy_content h3{font-size:21px;line-height:28px;font-weight:500;margin-bottom:10px}@media only screen and (max-width: 767px){.privacy_content h3{font-size:18px;line-height:24px}}.privacy_content p{font-size:16px;line-height:29px;margin-bottom:15px}@media only screen and (max-width: 767px){.privacy_content p{font-size:15px;line-height:28px}}.privacy_content p a{color:#a43d21}.privacy_content p a:hover{color:#806958}.privacy_content.section_1 h2{margin-bottom:14px}@media only screen and (max-width: 767px){.privacy_content.section_1 h2{margin-bottom:9px}}.privacy_content.section_2 h2{margin-bottom:20px}@media only screen and (max-width: 767px){.privacy_content.section_2 h2{margin-bottom:16px}}.privacy_content.section_3 h2{margin-bottom:18px}@media only screen and (max-width: 767px){.privacy_content.section_3 h2{margin-bottom:12px}}.color-highlight{color:#806958}.rating-stars ul{list-style-type:none;padding:0;-moz-user-select:none;-webkit-user-select:none}.rating-stars ul>li.star{display:inline-block}.rating-stars ul>li.star>i.fa{font-size:2.5em;color:#ccc}.rating-stars ul>li.star.hover>i.fa{color:#FFCC36}.rating-stars ul>li.star.selected>i.fa{color:#FF912C}.point-indicator-big{font-size:4.5em;font-weight:bold;line-height:1.2em}.owl-theme .owl-dots .owl-dot span{width:20px;height:20px;margin:5px 12px}@media print{.main_header,footer,#scrollUp,table .header,.action-wrapper{display:none !important}.content-cell,section.main_content_area{padding:0px}}
