@charset "UTF-8";
/*!
Project Name: Gialdi Vini SA
Author: Tinext
Author URI: http://www.tinext.com
*/
/* -----------------------------------------------------------*/
/* -- General grid -- */
/* Wordpress Variables */
/* Grid variables */
/* Prefixes */
/* Aspect ratio */
/* Media breakpoint */
/* ULISSE GRID */
body {
  padding: 0;
  margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Grid */
.container, .container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.container .row, .container-fluid .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
  box-sizing: border-box;
}
.container .row > .col, .container .row > [class*=col-], .container-fluid .row > .col, .container-fluid .row > [class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}
.container .no-gutters, .container-fluid .no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.container .no-gutters > .col, .container .no-gutters > [class*=col-], .container-fluid .no-gutters > .col, .container-fluid .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

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

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

/* Text */
.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !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-lowercase {
  text-transform: lowercase !important;
}

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

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

/* Form */
form {
  display: block;
  float: left;
  width: 100%;
  padding: 0;
  border: 0;
}
form fieldset {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding: 0;
  border: 0;
}

/* Breakpoint classes */
@media (min-width: 0) {
  /* Columns classes */
  .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-1 {
    order: 1;
  }
  .col-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-2 {
    order: 2;
  }
  .col-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-3 {
    order: 3;
  }
  .col-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-4 {
    order: 4;
  }
  .col-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-5 {
    order: 5;
  }
  .col-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-6 {
    order: 6;
  }
  .col-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-7 {
    order: 7;
  }
  .col-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-8 {
    order: 8;
  }
  .col-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-9 {
    order: 9;
  }
  .col-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-10 {
    order: 10;
  }
  .col-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-11 {
    order: 11;
  }
  .col-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-12 {
    order: 12;
  }
  .order-first {
    order: -1;
  }
  .order-last {
    order: 13;
  }
  /* Display classes */
  .d-none {
    display: none !important;
  }
  .d-inline {
    display: inline !important;
  }
  .d-inline-block {
    display: inline-block !important;
  }
  .d-block {
    display: block !important;
  }
  .d-table {
    display: table !important;
  }
  .d-table-row {
    display: table-row !important;
  }
  .d-table-cell {
    display: table-cell !important;
  }
  .d-flex {
    display: flex !important;
  }
  .d-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-row {
    flex-direction: row !important;
  }
  .flex-column {
    flex-direction: column !important;
  }
  .flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-fill {
    flex: 1 1 auto !important;
  }
  .flex-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-start {
    justify-content: flex-start !important;
  }
  .justify-content-end {
    justify-content: flex-end !important;
  }
  .justify-content-center {
    justify-content: center !important;
  }
  .justify-content-between {
    justify-content: space-between !important;
  }
  .justify-content-around {
    justify-content: space-around !important;
  }
  .align-items-start {
    align-items: flex-start !important;
  }
  .align-items-end {
    align-items: flex-end !important;
  }
  .align-items-center {
    align-items: center !important;
  }
  .align-items-baseline {
    align-items: baseline !important;
  }
  .align-items-stretch {
    align-items: stretch !important;
  }
  .align-content-start {
    align-content: flex-start !important;
  }
  .align-content-end {
    align-content: flex-end !important;
  }
  .align-content-center {
    align-content: center !important;
  }
  .align-content-between {
    align-content: space-between !important;
  }
  .align-content-around {
    align-content: space-around !important;
  }
  .align-content-stretch {
    align-content: stretch !important;
  }
  .align-self-auto {
    align-self: auto !important;
  }
  .align-self-start {
    align-self: flex-start !important;
  }
  .align-self-end {
    align-self: flex-end !important;
  }
  .align-self-center {
    align-self: center !important;
  }
  .align-self-baseline {
    align-self: baseline !important;
  }
  .align-self-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .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-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;
  }
  /* Padding classes */
  .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;
  }
  /* Text */
  .text-left {
    text-align: left !important;
  }
  .text-right {
    text-align: right !important;
  }
  .text-center {
    text-align: center !important;
  }
}
@media (min-width: 360px) {
  /* Columns classes */
  .col-sm-360 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-360-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-360-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-sm-360-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-sm-360-1 {
    order: 1;
  }
  .col-sm-360-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-sm-360-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-sm-360-2 {
    order: 2;
  }
  .col-sm-360-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-sm-360-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-sm-360-3 {
    order: 3;
  }
  .col-sm-360-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-sm-360-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-sm-360-4 {
    order: 4;
  }
  .col-sm-360-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-sm-360-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-sm-360-5 {
    order: 5;
  }
  .col-sm-360-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-sm-360-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-sm-360-6 {
    order: 6;
  }
  .col-sm-360-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-sm-360-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-sm-360-7 {
    order: 7;
  }
  .col-sm-360-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-sm-360-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-sm-360-8 {
    order: 8;
  }
  .col-sm-360-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-sm-360-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-sm-360-9 {
    order: 9;
  }
  .col-sm-360-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-sm-360-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-sm-360-10 {
    order: 10;
  }
  .col-sm-360-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-sm-360-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-sm-360-11 {
    order: 11;
  }
  .col-sm-360-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-sm-360-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-sm-360-12 {
    order: 12;
  }
  .order-sm-360-first {
    order: -1;
  }
  .order-sm-360-last {
    order: 13;
  }
  /* Display classes */
  .d-sm-360-none {
    display: none !important;
  }
  .d-sm-360-inline {
    display: inline !important;
  }
  .d-sm-360-inline-block {
    display: inline-block !important;
  }
  .d-sm-360-block {
    display: block !important;
  }
  .d-sm-360-table {
    display: table !important;
  }
  .d-sm-360-table-row {
    display: table-row !important;
  }
  .d-sm-360-table-cell {
    display: table-cell !important;
  }
  .d-sm-360-flex {
    display: flex !important;
  }
  .d-sm-360-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-sm-360-row {
    flex-direction: row !important;
  }
  .flex-sm-360-column {
    flex-direction: column !important;
  }
  .flex-sm-360-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-360-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-360-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-360-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-360-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-360-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-360-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-360-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-360-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-360-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-360-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-360-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-360-center {
    justify-content: center !important;
  }
  .justify-content-sm-360-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-360-around {
    justify-content: space-around !important;
  }
  .align-items-sm-360-start {
    align-items: flex-start !important;
  }
  .align-items-sm-360-end {
    align-items: flex-end !important;
  }
  .align-items-sm-360-center {
    align-items: center !important;
  }
  .align-items-sm-360-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-360-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-360-start {
    align-content: flex-start !important;
  }
  .align-content-sm-360-end {
    align-content: flex-end !important;
  }
  .align-content-sm-360-center {
    align-content: center !important;
  }
  .align-content-sm-360-between {
    align-content: space-between !important;
  }
  .align-content-sm-360-around {
    align-content: space-around !important;
  }
  .align-content-sm-360-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-360-auto {
    align-self: auto !important;
  }
  .align-self-sm-360-start {
    align-self: flex-start !important;
  }
  .align-self-sm-360-end {
    align-self: flex-end !important;
  }
  .align-self-sm-360-center {
    align-self: center !important;
  }
  .align-self-sm-360-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-360-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .m-sm-360-0 {
    margin: 0 !important;
  }
  .mt-sm-360-0, .my-sm-360-0 {
    margin-top: 0 !important;
  }
  .mr-sm-360-0, .mx-sm-360-0 {
    margin-right: 0 !important;
  }
  .mb-sm-360-0, .my-sm-360-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-360-0, .mx-sm-360-0 {
    margin-left: 0 !important;
  }
  .m-sm-360-auto {
    margin: auto !important;
  }
  .mt-sm-360-auto, .my-sm-360-auto {
    margin-top: auto !important;
  }
  .mr-sm-360-auto, .mx-sm-360-auto {
    margin-right: auto !important;
  }
  .mb-sm-360-auto, .my-sm-360-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-360-auto, .mx-sm-360-auto {
    margin-left: auto !important;
  }
  /* Padding classes */
  .p-sm-360-0 {
    padding: 0 !important;
  }
  .pt-sm-360-0, .py-sm-360-0 {
    padding-top: 0 !important;
  }
  .pr-sm-360-0, .px-sm-360-0 {
    padding-right: 0 !important;
  }
  .pb-sm-360-0, .py-sm-360-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-360-0, .px-sm-360-0 {
    padding-left: 0 !important;
  }
  /* Text */
  .text-sm-360-left {
    text-align: left !important;
  }
  .text-sm-360-right {
    text-align: right !important;
  }
  .text-sm-360-center {
    text-align: center !important;
  }
}
@media (min-width: 480px) {
  /* Columns classes */
  .col-sm-480 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-480-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-480-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-sm-480-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-sm-480-1 {
    order: 1;
  }
  .col-sm-480-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-sm-480-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-sm-480-2 {
    order: 2;
  }
  .col-sm-480-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-sm-480-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-sm-480-3 {
    order: 3;
  }
  .col-sm-480-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-sm-480-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-sm-480-4 {
    order: 4;
  }
  .col-sm-480-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-sm-480-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-sm-480-5 {
    order: 5;
  }
  .col-sm-480-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-sm-480-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-sm-480-6 {
    order: 6;
  }
  .col-sm-480-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-sm-480-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-sm-480-7 {
    order: 7;
  }
  .col-sm-480-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-sm-480-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-sm-480-8 {
    order: 8;
  }
  .col-sm-480-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-sm-480-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-sm-480-9 {
    order: 9;
  }
  .col-sm-480-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-sm-480-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-sm-480-10 {
    order: 10;
  }
  .col-sm-480-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-sm-480-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-sm-480-11 {
    order: 11;
  }
  .col-sm-480-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-sm-480-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-sm-480-12 {
    order: 12;
  }
  .order-sm-480-first {
    order: -1;
  }
  .order-sm-480-last {
    order: 13;
  }
  /* Display classes */
  .d-sm-480-none {
    display: none !important;
  }
  .d-sm-480-inline {
    display: inline !important;
  }
  .d-sm-480-inline-block {
    display: inline-block !important;
  }
  .d-sm-480-block {
    display: block !important;
  }
  .d-sm-480-table {
    display: table !important;
  }
  .d-sm-480-table-row {
    display: table-row !important;
  }
  .d-sm-480-table-cell {
    display: table-cell !important;
  }
  .d-sm-480-flex {
    display: flex !important;
  }
  .d-sm-480-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-sm-480-row {
    flex-direction: row !important;
  }
  .flex-sm-480-column {
    flex-direction: column !important;
  }
  .flex-sm-480-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-480-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-480-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-480-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-480-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-480-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-480-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-480-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-480-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-480-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-480-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-480-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-480-center {
    justify-content: center !important;
  }
  .justify-content-sm-480-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-480-around {
    justify-content: space-around !important;
  }
  .align-items-sm-480-start {
    align-items: flex-start !important;
  }
  .align-items-sm-480-end {
    align-items: flex-end !important;
  }
  .align-items-sm-480-center {
    align-items: center !important;
  }
  .align-items-sm-480-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-480-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-480-start {
    align-content: flex-start !important;
  }
  .align-content-sm-480-end {
    align-content: flex-end !important;
  }
  .align-content-sm-480-center {
    align-content: center !important;
  }
  .align-content-sm-480-between {
    align-content: space-between !important;
  }
  .align-content-sm-480-around {
    align-content: space-around !important;
  }
  .align-content-sm-480-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-480-auto {
    align-self: auto !important;
  }
  .align-self-sm-480-start {
    align-self: flex-start !important;
  }
  .align-self-sm-480-end {
    align-self: flex-end !important;
  }
  .align-self-sm-480-center {
    align-self: center !important;
  }
  .align-self-sm-480-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-480-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .m-sm-480-0 {
    margin: 0 !important;
  }
  .mt-sm-480-0, .my-sm-480-0 {
    margin-top: 0 !important;
  }
  .mr-sm-480-0, .mx-sm-480-0 {
    margin-right: 0 !important;
  }
  .mb-sm-480-0, .my-sm-480-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-480-0, .mx-sm-480-0 {
    margin-left: 0 !important;
  }
  .m-sm-480-auto {
    margin: auto !important;
  }
  .mt-sm-480-auto, .my-sm-480-auto {
    margin-top: auto !important;
  }
  .mr-sm-480-auto, .mx-sm-480-auto {
    margin-right: auto !important;
  }
  .mb-sm-480-auto, .my-sm-480-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-480-auto, .mx-sm-480-auto {
    margin-left: auto !important;
  }
  /* Padding classes */
  .p-sm-480-0 {
    padding: 0 !important;
  }
  .pt-sm-480-0, .py-sm-480-0 {
    padding-top: 0 !important;
  }
  .pr-sm-480-0, .px-sm-480-0 {
    padding-right: 0 !important;
  }
  .pb-sm-480-0, .py-sm-480-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-480-0, .px-sm-480-0 {
    padding-left: 0 !important;
  }
  /* Text */
  .text-sm-480-left {
    text-align: left !important;
  }
  .text-sm-480-right {
    text-align: right !important;
  }
  .text-sm-480-center {
    text-align: center !important;
  }
}
@media (min-width: 576px) {
  /* Columns classes */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-sm-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-sm-1 {
    order: 1;
  }
  .col-sm-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-sm-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-sm-2 {
    order: 2;
  }
  .col-sm-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-sm-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-sm-3 {
    order: 3;
  }
  .col-sm-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-sm-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-sm-4 {
    order: 4;
  }
  .col-sm-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-sm-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-sm-5 {
    order: 5;
  }
  .col-sm-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-sm-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-sm-6 {
    order: 6;
  }
  .col-sm-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-sm-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-sm-7 {
    order: 7;
  }
  .col-sm-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-sm-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-sm-8 {
    order: 8;
  }
  .col-sm-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-sm-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-sm-9 {
    order: 9;
  }
  .col-sm-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-sm-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-sm-10 {
    order: 10;
  }
  .col-sm-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-sm-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-sm-11 {
    order: 11;
  }
  .col-sm-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-sm-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-sm-12 {
    order: 12;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  /* Display classes */
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .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-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;
  }
  /* Padding classes */
  .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;
  }
  /* Text */
  .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) {
  /* Columns classes */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-md-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-md-1 {
    order: 1;
  }
  .col-md-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-md-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-md-2 {
    order: 2;
  }
  .col-md-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-md-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-md-3 {
    order: 3;
  }
  .col-md-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-md-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-md-4 {
    order: 4;
  }
  .col-md-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-md-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-md-5 {
    order: 5;
  }
  .col-md-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-md-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-md-6 {
    order: 6;
  }
  .col-md-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-md-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-md-7 {
    order: 7;
  }
  .col-md-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-md-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-md-8 {
    order: 8;
  }
  .col-md-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-md-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-md-9 {
    order: 9;
  }
  .col-md-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-md-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-md-10 {
    order: 10;
  }
  .col-md-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-md-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-md-11 {
    order: 11;
  }
  .col-md-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-md-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-md-12 {
    order: 12;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  /* Display classes */
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .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-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;
  }
  /* Padding classes */
  .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;
  }
  /* Text */
  .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) {
  /* Columns classes */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-lg-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-lg-1 {
    order: 1;
  }
  .col-lg-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-lg-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-lg-2 {
    order: 2;
  }
  .col-lg-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-lg-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-lg-3 {
    order: 3;
  }
  .col-lg-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-lg-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-lg-4 {
    order: 4;
  }
  .col-lg-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-lg-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-lg-5 {
    order: 5;
  }
  .col-lg-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-lg-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-lg-6 {
    order: 6;
  }
  .col-lg-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-lg-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-lg-7 {
    order: 7;
  }
  .col-lg-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-lg-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-lg-8 {
    order: 8;
  }
  .col-lg-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-lg-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-lg-9 {
    order: 9;
  }
  .col-lg-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-lg-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-lg-10 {
    order: 10;
  }
  .col-lg-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-lg-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-lg-11 {
    order: 11;
  }
  .col-lg-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-lg-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-lg-12 {
    order: 12;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  /* Display classes */
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .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-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;
  }
  /* Padding classes */
  .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;
  }
  /* Text */
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  /* Columns classes */
  .col-lg-1024 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-1024-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1024-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-lg-1024-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-lg-1024-1 {
    order: 1;
  }
  .col-lg-1024-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-lg-1024-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-lg-1024-2 {
    order: 2;
  }
  .col-lg-1024-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-lg-1024-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-lg-1024-3 {
    order: 3;
  }
  .col-lg-1024-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-lg-1024-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-lg-1024-4 {
    order: 4;
  }
  .col-lg-1024-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-lg-1024-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-lg-1024-5 {
    order: 5;
  }
  .col-lg-1024-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-lg-1024-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-lg-1024-6 {
    order: 6;
  }
  .col-lg-1024-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-lg-1024-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-lg-1024-7 {
    order: 7;
  }
  .col-lg-1024-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-lg-1024-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-lg-1024-8 {
    order: 8;
  }
  .col-lg-1024-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-lg-1024-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-lg-1024-9 {
    order: 9;
  }
  .col-lg-1024-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-lg-1024-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-lg-1024-10 {
    order: 10;
  }
  .col-lg-1024-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-lg-1024-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-lg-1024-11 {
    order: 11;
  }
  .col-lg-1024-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-lg-1024-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-lg-1024-12 {
    order: 12;
  }
  .order-lg-1024-first {
    order: -1;
  }
  .order-lg-1024-last {
    order: 13;
  }
  /* Display classes */
  .d-lg-1024-none {
    display: none !important;
  }
  .d-lg-1024-inline {
    display: inline !important;
  }
  .d-lg-1024-inline-block {
    display: inline-block !important;
  }
  .d-lg-1024-block {
    display: block !important;
  }
  .d-lg-1024-table {
    display: table !important;
  }
  .d-lg-1024-table-row {
    display: table-row !important;
  }
  .d-lg-1024-table-cell {
    display: table-cell !important;
  }
  .d-lg-1024-flex {
    display: flex !important;
  }
  .d-lg-1024-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-lg-1024-row {
    flex-direction: row !important;
  }
  .flex-lg-1024-column {
    flex-direction: column !important;
  }
  .flex-lg-1024-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-1024-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-1024-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-1024-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-1024-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-1024-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-1024-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-1024-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-1024-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-1024-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-1024-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-1024-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-1024-center {
    justify-content: center !important;
  }
  .justify-content-lg-1024-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-1024-around {
    justify-content: space-around !important;
  }
  .align-items-lg-1024-start {
    align-items: flex-start !important;
  }
  .align-items-lg-1024-end {
    align-items: flex-end !important;
  }
  .align-items-lg-1024-center {
    align-items: center !important;
  }
  .align-items-lg-1024-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-1024-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-1024-start {
    align-content: flex-start !important;
  }
  .align-content-lg-1024-end {
    align-content: flex-end !important;
  }
  .align-content-lg-1024-center {
    align-content: center !important;
  }
  .align-content-lg-1024-between {
    align-content: space-between !important;
  }
  .align-content-lg-1024-around {
    align-content: space-around !important;
  }
  .align-content-lg-1024-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-1024-auto {
    align-self: auto !important;
  }
  .align-self-lg-1024-start {
    align-self: flex-start !important;
  }
  .align-self-lg-1024-end {
    align-self: flex-end !important;
  }
  .align-self-lg-1024-center {
    align-self: center !important;
  }
  .align-self-lg-1024-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-1024-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .m-lg-1024-0 {
    margin: 0 !important;
  }
  .mt-lg-1024-0, .my-lg-1024-0 {
    margin-top: 0 !important;
  }
  .mr-lg-1024-0, .mx-lg-1024-0 {
    margin-right: 0 !important;
  }
  .mb-lg-1024-0, .my-lg-1024-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-1024-0, .mx-lg-1024-0 {
    margin-left: 0 !important;
  }
  .m-lg-1024-auto {
    margin: auto !important;
  }
  .mt-lg-1024-auto, .my-lg-1024-auto {
    margin-top: auto !important;
  }
  .mr-lg-1024-auto, .mx-lg-1024-auto {
    margin-right: auto !important;
  }
  .mb-lg-1024-auto, .my-lg-1024-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-1024-auto, .mx-lg-1024-auto {
    margin-left: auto !important;
  }
  /* Padding classes */
  .p-lg-1024-0 {
    padding: 0 !important;
  }
  .pt-lg-1024-0, .py-lg-1024-0 {
    padding-top: 0 !important;
  }
  .pr-lg-1024-0, .px-lg-1024-0 {
    padding-right: 0 !important;
  }
  .pb-lg-1024-0, .py-lg-1024-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-1024-0, .px-lg-1024-0 {
    padding-left: 0 !important;
  }
  /* Text */
  .text-lg-1024-left {
    text-align: left !important;
  }
  .text-lg-1024-right {
    text-align: right !important;
  }
  .text-lg-1024-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  /* Columns classes */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-xl-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-xl-1 {
    order: 1;
  }
  .col-xl-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-xl-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-xl-2 {
    order: 2;
  }
  .col-xl-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-xl-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-xl-3 {
    order: 3;
  }
  .col-xl-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-xl-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-xl-4 {
    order: 4;
  }
  .col-xl-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-xl-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-xl-5 {
    order: 5;
  }
  .col-xl-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-xl-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-xl-6 {
    order: 6;
  }
  .col-xl-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-xl-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-xl-7 {
    order: 7;
  }
  .col-xl-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-xl-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-xl-8 {
    order: 8;
  }
  .col-xl-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-xl-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-xl-9 {
    order: 9;
  }
  .col-xl-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-xl-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-xl-10 {
    order: 10;
  }
  .col-xl-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-xl-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-xl-11 {
    order: 11;
  }
  .col-xl-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-xl-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-xl-12 {
    order: 12;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  /* Display classes */
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .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-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;
  }
  /* Padding classes */
  .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;
  }
  /* Text */
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1600px) {
  /* Columns classes */
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-xxl-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-xxl-1 {
    order: 1;
  }
  .col-xxl-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-xxl-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-xxl-2 {
    order: 2;
  }
  .col-xxl-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-xxl-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-xxl-3 {
    order: 3;
  }
  .col-xxl-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-xxl-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-xxl-4 {
    order: 4;
  }
  .col-xxl-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-xxl-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-xxl-5 {
    order: 5;
  }
  .col-xxl-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-xxl-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-xxl-6 {
    order: 6;
  }
  .col-xxl-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-xxl-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-xxl-7 {
    order: 7;
  }
  .col-xxl-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-xxl-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-xxl-8 {
    order: 8;
  }
  .col-xxl-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-xxl-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-xxl-9 {
    order: 9;
  }
  .col-xxl-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-xxl-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-xxl-10 {
    order: 10;
  }
  .col-xxl-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-xxl-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-xxl-11 {
    order: 11;
  }
  .col-xxl-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-xxl-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-xxl-12 {
    order: 12;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  /* Display classes */
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0, .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0, .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0, .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0, .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto, .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto, .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto, .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto, .mx-xxl-auto {
    margin-left: auto !important;
  }
  /* Padding classes */
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0, .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0, .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0, .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0, .px-xxl-0 {
    padding-left: 0 !important;
  }
  /* Text */
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1920px) {
  /* Columns classes */
  .col-xxl-1920 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-1920-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1920-1 {
    flex: 0 0 calc((100% / 12) * 1);
    max-width: calc((100% / 12) * 1);
  }
  .offset-xxl-1920-1 {
    margin-left: calc((100% / 12) * 1);
  }
  .order-xxl-1920-1 {
    order: 1;
  }
  .col-xxl-1920-2 {
    flex: 0 0 calc((100% / 12) * 2);
    max-width: calc((100% / 12) * 2);
  }
  .offset-xxl-1920-2 {
    margin-left: calc((100% / 12) * 2);
  }
  .order-xxl-1920-2 {
    order: 2;
  }
  .col-xxl-1920-3 {
    flex: 0 0 calc((100% / 12) * 3);
    max-width: calc((100% / 12) * 3);
  }
  .offset-xxl-1920-3 {
    margin-left: calc((100% / 12) * 3);
  }
  .order-xxl-1920-3 {
    order: 3;
  }
  .col-xxl-1920-4 {
    flex: 0 0 calc((100% / 12) * 4);
    max-width: calc((100% / 12) * 4);
  }
  .offset-xxl-1920-4 {
    margin-left: calc((100% / 12) * 4);
  }
  .order-xxl-1920-4 {
    order: 4;
  }
  .col-xxl-1920-5 {
    flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
  }
  .offset-xxl-1920-5 {
    margin-left: calc((100% / 12) * 5);
  }
  .order-xxl-1920-5 {
    order: 5;
  }
  .col-xxl-1920-6 {
    flex: 0 0 calc((100% / 12) * 6);
    max-width: calc((100% / 12) * 6);
  }
  .offset-xxl-1920-6 {
    margin-left: calc((100% / 12) * 6);
  }
  .order-xxl-1920-6 {
    order: 6;
  }
  .col-xxl-1920-7 {
    flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
  }
  .offset-xxl-1920-7 {
    margin-left: calc((100% / 12) * 7);
  }
  .order-xxl-1920-7 {
    order: 7;
  }
  .col-xxl-1920-8 {
    flex: 0 0 calc((100% / 12) * 8);
    max-width: calc((100% / 12) * 8);
  }
  .offset-xxl-1920-8 {
    margin-left: calc((100% / 12) * 8);
  }
  .order-xxl-1920-8 {
    order: 8;
  }
  .col-xxl-1920-9 {
    flex: 0 0 calc((100% / 12) * 9);
    max-width: calc((100% / 12) * 9);
  }
  .offset-xxl-1920-9 {
    margin-left: calc((100% / 12) * 9);
  }
  .order-xxl-1920-9 {
    order: 9;
  }
  .col-xxl-1920-10 {
    flex: 0 0 calc((100% / 12) * 10);
    max-width: calc((100% / 12) * 10);
  }
  .offset-xxl-1920-10 {
    margin-left: calc((100% / 12) * 10);
  }
  .order-xxl-1920-10 {
    order: 10;
  }
  .col-xxl-1920-11 {
    flex: 0 0 calc((100% / 12) * 11);
    max-width: calc((100% / 12) * 11);
  }
  .offset-xxl-1920-11 {
    margin-left: calc((100% / 12) * 11);
  }
  .order-xxl-1920-11 {
    order: 11;
  }
  .col-xxl-1920-12 {
    flex: 0 0 calc((100% / 12) * 12);
    max-width: calc((100% / 12) * 12);
  }
  .offset-xxl-1920-12 {
    margin-left: calc((100% / 12) * 12);
  }
  .order-xxl-1920-12 {
    order: 12;
  }
  .order-xxl-1920-first {
    order: -1;
  }
  .order-xxl-1920-last {
    order: 13;
  }
  /* Display classes */
  .d-xxl-1920-none {
    display: none !important;
  }
  .d-xxl-1920-inline {
    display: inline !important;
  }
  .d-xxl-1920-inline-block {
    display: inline-block !important;
  }
  .d-xxl-1920-block {
    display: block !important;
  }
  .d-xxl-1920-table {
    display: table !important;
  }
  .d-xxl-1920-table-row {
    display: table-row !important;
  }
  .d-xxl-1920-table-cell {
    display: table-cell !important;
  }
  .d-xxl-1920-flex {
    display: flex !important;
  }
  .d-xxl-1920-inline-flex {
    display: inline-flex !important;
  }
  /* Align classes */
  .flex-xxl-1920-row {
    flex-direction: row !important;
  }
  .flex-xxl-1920-column {
    flex-direction: column !important;
  }
  .flex-xxl-1920-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-1920-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-1920-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-1920-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-1920-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-1920-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-1920-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-1920-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-1920-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-1920-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-1920-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-1920-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-1920-center {
    justify-content: center !important;
  }
  .justify-content-xxl-1920-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-1920-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-1920-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-1920-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-1920-center {
    align-items: center !important;
  }
  .align-items-xxl-1920-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-1920-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-1920-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-1920-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-1920-center {
    align-content: center !important;
  }
  .align-content-xxl-1920-between {
    align-content: space-between !important;
  }
  .align-content-xxl-1920-around {
    align-content: space-around !important;
  }
  .align-content-xxl-1920-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-1920-auto {
    align-self: auto !important;
  }
  .align-self-xxl-1920-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-1920-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-1920-center {
    align-self: center !important;
  }
  .align-self-xxl-1920-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-1920-stretch {
    align-self: stretch !important;
  }
  /* Margin classes */
  .m-xxl-1920-0 {
    margin: 0 !important;
  }
  .mt-xxl-1920-0, .my-xxl-1920-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-1920-0, .mx-xxl-1920-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-1920-0, .my-xxl-1920-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-1920-0, .mx-xxl-1920-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1920-auto {
    margin: auto !important;
  }
  .mt-xxl-1920-auto, .my-xxl-1920-auto {
    margin-top: auto !important;
  }
  .mr-xxl-1920-auto, .mx-xxl-1920-auto {
    margin-right: auto !important;
  }
  .mb-xxl-1920-auto, .my-xxl-1920-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-1920-auto, .mx-xxl-1920-auto {
    margin-left: auto !important;
  }
  /* Padding classes */
  .p-xxl-1920-0 {
    padding: 0 !important;
  }
  .pt-xxl-1920-0, .py-xxl-1920-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-1920-0, .px-xxl-1920-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-1920-0, .py-xxl-1920-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-1920-0, .px-xxl-1920-0 {
    padding-left: 0 !important;
  }
  /* Text */
  .text-xxl-1920-left {
    text-align: left !important;
  }
  .text-xxl-1920-right {
    text-align: right !important;
  }
  .text-xxl-1920-center {
    text-align: center !important;
  }
}
/* -- Fonticons -- */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?77ijv8");
  src: url("../fonts/icomoon.eot?77ijv8#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?77ijv8") format("truetype"), url("../fonts/icomoon.woff?77ijv8") format("woff"), url("../fonts/icomoon.svg?77ijv8#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-gialdi-], [class*=" icon-gialdi-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !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;
}

.icon-gialdi-social-whatsapp:before {
  content: "\e923";
}

.icon-gialdi-trash:before {
  content: "\e90f";
}

.icon-gialdi-user:before {
  content: "\e910";
}

.icon-gialdi-user-full:before {
  content: "\e911";
}

.icon-gialdi-triangle-down:before {
  content: "\e912";
}

.icon-gialdi-triangle-up:before {
  content: "\e913";
}

.icon-gialdi-arrow-up-strong:before {
  content: "\e914";
}

.icon-gialdi-arrow-left-strong:before {
  content: "\e915";
}

.icon-gialdi-arrow-down-strong:before {
  content: "\e916";
}

.icon-gialdi-plus:before {
  content: "\e917";
}

.icon-gialdi-minus:before {
  content: "\e918";
}

.icon-gialdi-arrow-right-strong:before {
  content: "\e919";
}

.icon-gialdi-mail-strong:before {
  content: "\e91a";
}

.icon-gialdi-info:before {
  content: "\e91b";
}

.icon-gialdi-grid:before {
  content: "\e91c";
}

.icon-gialdi-external-link:before {
  content: "\e91d";
}

.icon-gialdi-shop-full:before {
  content: "\e91e";
}

.icon-gialdi-coupon:before {
  content: "\e91f";
}

.icon-gialdi-address:before {
  content: "\e920";
}

.icon-gialdi-logout:before {
  content: "\e921";
}

.icon-gialdi-list:before {
  content: "\e922";
}

.icon-gialdi-check:before {
  content: "\e90d";
}

.icon-gialdi-mobile-menu:before {
  content: "\e90e";
}

.icon-gialdi-arrow-left:before {
  content: "\e900";
}

.icon-gialdi-arrow-line-left:before {
  content: "\e901";
}

.icon-gialdi-arrow-line-right:before {
  content: "\e902";
}

.icon-gialdi-arrow-right:before {
  content: "\e903";
}

.icon-gialdi-close:before {
  content: "\e904";
}

.icon-gialdi-glass:before {
  content: "\e905";
}

.icon-gialdi-grape:before {
  content: "\e906";
}

.icon-gialdi-mail:before {
  content: "\e907";
}

.icon-gialdi-shop:before {
  content: "\e908";
}

.icon-gialdi-social-facebook:before {
  content: "\e909";
}

.icon-gialdi-social-instagram:before {
  content: "\e90a";
}

.icon-gialdi-temperature:before {
  content: "\e90b";
}

.icon-gialdi-world:before {
  content: "\e90c";
}

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

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

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

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

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

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

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
:root {
  --mm-line-height:20px;
  --mm-listitem-size:44px;
  --mm-navbar-size:44px;
  --mm-offset-top:0;
  --mm-offset-right:0;
  --mm-offset-bottom:0;
  --mm-offset-left:0;
  --mm-color-border:rgba(0, 0, 0, 0.1);
  --mm-color-button:rgba(0, 0, 0, 0.3);
  --mm-color-text:rgba(0, 0, 0, 0.75);
  --mm-color-text-dimmed:rgba(0, 0, 0, 0.3);
  --mm-color-background:#f3f3f3;
  --mm-color-background-highlight:rgba(0, 0, 0, 0.05);
  --mm-color-background-emphasis:rgba(255, 255, 255, 0.4);
  --mm-shadow:0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: var(--mm-offset-top);
  right: var(--mm-offset-right);
  bottom: var(--mm-offset-bottom);
  left: var(--mm-offset-left);
  z-index: 0;
  -ms-scroll-chaining: chained;
  overscroll-behavior: auto;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: var(--mm-line-height);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  text-decoration: none;
  color: inherit;
}

[dir=rtl] .mm-menu {
  direction: rtl;
}

.mm-panel {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-panel:after {
  height: 44px;
}

.mm-panel:not(.mm-hidden) {
  display: block;
}

.mm-panel:after {
  content: "";
  display: block;
  height: var(--mm-listitem-size);
}

.mm-panel_opened {
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-panel_opened-parent {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-panel_highest {
  z-index: 2;
}

.mm-panel_noanimation {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.mm-panel_noanimation.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.mm-panel__content {
  padding: 20px 20px 0;
}

.mm-panels {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

.mm-listitem_vertical > .mm-panel {
  display: none;
  width: 100%;
  padding: 10px 0 10px 10px;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none;
}

.mm-listitem_opened > .mm-panel {
  display: block;
}

.mm-listitem_vertical > .mm-listitem__btn {
  height: 44px;
  height: var(--mm-listitem-size);
  bottom: auto;
}

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent;
}

.mm-listitem_opened > .mm-listitem__btn:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px;
}

.mm-btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50px;
  padding: 0;
}

.mm-btn:after, .mm-btn:before {
  border: 2px solid rgba(0, 0, 0, 0.3);
  border: 2px solid var(--mm-color-button);
}

.mm-btn_next:after, .mm-btn_prev:before {
  content: "";
  border-bottom: none;
  border-right: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}

.mm-btn_prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

.mm-btn_next:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

.mm-btn_close:after, .mm-btn_close:before {
  content: "";
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px;
}

.mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px;
}

[dir=rtl] .mm-btn_next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

[dir=rtl] .mm-btn_prev:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
  right: auto;
}

[dir=rtl] .mm-btn_close:before {
  left: 25px;
}

[dir=rtl] .mm-btn_close:after {
  left: 18px;
}

.mm-navbar {
  min-height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: var(--mm-navbar-size);
  border-bottom: 1px solid var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-navbar > * {
  min-height: 44px;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .mm-navbar_sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
  }
}
.mm-navbar > * {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-navbar__btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.mm-navbar__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.mm-navbar__title:not(:last-child) {
  padding-right: 0;
}

.mm-navbar__title > span {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title {
  padding-left: 0;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title:last-child {
  padding-right: 50px;
}

[dir=rtl] .mm-navbar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listitem {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mm-listitem:after {
  content: "";
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0;
}

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none;
}

.mm-listitem__btn, .mm-listitem__text {
  padding: 12px;
  display: block;
  padding: calc((var(--mm-listitem-size) - var(--mm-line-height)) / 2);
  padding-left: 0;
  padding-right: 0;
  color: inherit;
}

.mm-listitem__text {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
}

.mm-listitem__btn {
  background: rgba(3, 2, 1, 0);
  border-color: inherit;
  width: auto;
  padding-right: 50px;
  position: relative;
}

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-listitem_selected > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
}

[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 20px;
}

[dir=rtl] .mm-listitem__text {
  padding-left: 10px;
  padding-right: 20px;
}

[dir=rtl] .mm-listitem__btn {
  padding-left: 50px;
  border-left-width: 0;
  border-left-style: none;
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
  padding-right: 0;
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-page {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
}

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative;
}

.mm-wrapper_opened .mm-page {
  min-height: 100vh;
}

.mm-wrapper_background .mm-page {
  background: inherit;
}

.mm-menu_offcanvas {
  position: fixed;
  right: auto;
  z-index: 0;
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
  display: none;
}

.mm-menu_offcanvas {
  width: 80%;
  min-width: 240px;
  max-width: 440px;
}

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0);
  }
}
.mm-wrapper__blocker {
  background: rgba(3, 2, 1, 0);
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.mm-wrapper_blocking {
  overflow: hidden;
}

.mm-wrapper_blocking body {
  overflow: hidden;
}

.mm-wrapper_blocking .mm-wrapper__blocker {
  display: block;
}

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

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative;
}

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%;
}

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important;
}

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important;
}

[class*=mm-menu_columns-] {
  -webkit-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important;
}

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit;
}

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0;
}

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu_columns-0 {
  width: 80%;
  min-width: 240px;
  max-width: 0;
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%;
}

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
}

.mm-menu_columns-1 {
  width: 80%;
  min-width: 240px;
  max-width: 440px;
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
}

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%;
}

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
}

.mm-menu_columns-2 {
  width: 80%;
  min-width: 240px;
  max-width: 880px;
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(880px, 0, 0);
    transform: translate3d(880px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-880px, 0, 0);
    transform: translate3d(-880px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
}

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%;
}

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0);
}

.mm-menu_columns-3 {
  width: 80%;
  min-width: 240px;
  max-width: 1320px;
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(1320px, 0, 0);
    transform: translate3d(1320px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-1320px, 0, 0);
    transform: translate3d(-1320px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0);
}

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%;
}

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0);
}

.mm-menu_columns-4 {
  width: 80%;
  min-width: 240px;
  max-width: 1760px;
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(1760px, 0, 0);
    transform: translate3d(1760px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-1760px, 0, 0);
    transform: translate3d(-1760px, 0, 0);
  }
}
[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  -webkit-transition-property: width, min-width, max-width, -webkit-transform;
  transition-property: width, min-width, max-width, -webkit-transform;
  -o-transition-property: width, min-width, max-width, transform;
  transition-property: width, min-width, max-width, transform;
  transition-property: width, min-width, max-width, transform, -webkit-transform;
}

.mm-counter {
  color: rgba(0, 0, 0, 0.3);
  display: block;
  padding-left: 20px;
  float: right;
  text-align: right;
  color: var(--mm-color-text-dimmed);
}

.mm-listitem_nosubitems > .mm-counter {
  display: none;
}

[dir=rtl] .mm-counter {
  text-align: left;
  float: left;
  padding-left: 0;
  padding-right: 20px;
}

.mm-divider {
  position: relative;
  min-height: 20px;
  padding: 4.3px;
  background: #f3f3f3;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-height: var(--mm-line-height);
  padding: calc((var(--mm-listitem-size) * 0.65 - var(--mm-line-height)) * 0.5);
  padding-right: 10px;
  padding-left: 20px;
  font-size: 75%;
  text-transform: uppercase;
  background: var(--mm-color-background);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-divider:before {
  background: rgba(0, 0, 0, 0.05);
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .mm-divider {
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    top: 0;
  }
  .mm-navbar_sticky:not(.mm-hidden) ~ .mm-listview .mm-divider {
    top: var(--mm-navbar-size);
  }
}
.mm-divider:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--mm-color-background-highlight);
}

.mm-wrapper_dragging .mm-menu, .mm-wrapper_dragging .mm-slideout {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.mm-wrapper_dragging .mm-menu {
  pointer-events: none !important;
}

.mm-wrapper_dragging .mm-wrapper__blocker {
  display: none !important;
}

.mm-menu_dropdown {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
}

.mm-wrapper_dropdown .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0;
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
  z-index: 1;
}

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2;
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none;
}

.mm-menu_tip-bottom:before, .mm-menu_tip-left:before, .mm-menu_tip-right:before, .mm-menu_tip-top:before {
  content: "";
  background: inherit;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-menu_tip-left:before {
  left: 22px;
}

.mm-menu_tip-right:before {
  right: 22px;
}

.mm-menu_tip-top:before {
  top: -8px;
}

.mm-menu_tip-bottom:before {
  bottom: -8px;
}

:root {
  --mm-iconbar-size:50px;
}

.mm-menu_iconbar-left .mm-navbars_bottom, .mm-menu_iconbar-left .mm-navbars_top, .mm-menu_iconbar-left .mm-panels {
  margin-left: 50px;
  margin-left: var(--mm-iconbar-size);
}

.mm-menu_iconbar-right .mm-navbars_bottom, .mm-menu_iconbar-right .mm-navbars_top, .mm-menu_iconbar-right .mm-panels {
  margin-right: 50px;
  margin-right: var(--mm-iconbar-size);
}

.mm-iconbar {
  width: 50px;
  border-color: rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.3);
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-iconbar-size);
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 solid;
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
}

.mm-menu_iconbar-left .mm-iconbar, .mm-menu_iconbar-right .mm-iconbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mm-menu_iconbar-left .mm-iconbar {
  border-right-width: 1px;
  left: 0;
}

.mm-menu_iconbar-right .mm-iconbar {
  border-left-width: 1px;
  right: 0;
}

.mm-iconbar__bottom, .mm-iconbar__top {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 12.5px 0;
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none;
}

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-iconpanel-size:50px;
}

.mm-panel_iconpanel-1 {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size) * 1);
}

.mm-panel_iconpanel-2 {
  width: calc(100% - 100px);
  width: calc(100% - var(--mm-iconpanel-size) * 2);
}

.mm-panel_iconpanel-3 {
  width: calc(100% - 150px);
  width: calc(100% - var(--mm-iconpanel-size) * 3);
}

.mm-panel_iconpanel-first ~ .mm-panel {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size));
}

.mm-menu_iconpanel .mm-panels > .mm-panel {
  left: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  display: block !important;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}

.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0;
}

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: 0.6;
  bottom: -100000px;
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: 0;
  right: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit;
}

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
  outline: 0;
}

.mm-wrapper__blocker .mm-tabstart {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%;
}

.mm-wrapper__blocker .mm-tabend {
  opacity: 0;
  position: absolute;
  bottom: 0;
}

.mm-navbars_top {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mm-navbars_top .mm-navbar:not(:last-child) {
  border-bottom: none;
}

.mm-navbars_bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mm-navbars_bottom .mm-navbar {
  border-bottom: none;
}

.mm-navbars_bottom .mm-navbar:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--mm-color-border);
}

.mm-btn:not(.mm-hidden) + .mm-navbar__searchfield .mm-searchfield__input {
  padding-left: 0;
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
  padding-right: 0;
}

.mm-navbar__breadcrumbs {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mm-navbar__breadcrumbs > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 6px;
}

.mm-navbar__breadcrumbs > a {
  text-decoration: underline;
}

.mm-navbar__breadcrumbs:not(:last-child) {
  padding-right: 0;
}

.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  padding-left: 0;
}

.mm-navbar_tabs > * {
  padding: 0 10px;
  border: 1px solid transparent;
}

.mm-navbar__tab_selected {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  color: var(--mm-color-text);
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: rgba(0, 0, 0, 0.1);
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: rgba(0, 0, 0, 0.1);
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: var(--mm-color-border);
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: var(--mm-color-border);
}

.mm-navbars_top .mm-navbar_tabs {
  border-bottom: none;
}

.mm-navbars_top .mm-navbar_tabs > * {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--mm-color-border);
}

.mm-navbars_top .mm-navbar__tab_selected {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--mm-color-border);
  border-bottom-color: transparent;
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: #f3f3f3;
  background: var(--mm-color-background);
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
  border-top: none;
}

.mm-navbars_bottom .mm-navbar_tabs > * {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--mm-color-border);
}

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--mm-color-border);
  border-top-color: transparent;
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
  background: #f3f3f3;
  background: var(--mm-color-background);
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-searchfield {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden;
}

.mm-searchfield input {
  height: 30.8px;
  line-height: 30.8px;
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.75);
}

.mm-searchfield input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(var(--mm-navbar-size) * 0.7);
  min-height: unset;
  max-height: unset;
  margin: 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none !important;
  border-radius: 4px;
  line-height: calc(var(--mm-navbar-size) * 0.7);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  font: inherit;
  font-size: inherit;
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
  background: var(--mm-color-background-highlight);
  color: var(--mm-color-text);
}

.mm-searchfield input::-ms-clear {
  display: none;
}

.mm-searchfield__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
  padding: 50px 0;
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
}

.mm-searchfield__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.mm-panel_search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-left: none !important;
}

.mm-searchfield__cancel {
  line-height: 44px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  -webkit-transition: margin 0.4s ease;
  -o-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}

.mm-searchfield__cancel-active {
  margin-right: 0;
}

.mm-listitem_nosubitems > .mm-listitem__btn {
  display: none;
}

.mm-listitem_nosubitems > .mm-listitem__text {
  padding-right: 10px;
}

.mm-listitem_onlysubitems > .mm-listitem__text:not(.mm-listitem__btn) {
  z-index: -1;
  pointer-events: none;
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 5;
  -webkit-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block;
}

.mm-sectionindexer ~ .mm-panel {
  padding-right: 0;
}

.mm-sectionindexer_active {
  right: 0;
}

.mm-sectionindexer_active ~ .mm-panel {
  padding-right: 20px;
}

.mm-menu_selected-hover .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem__text, .mm-menu_selected-parent .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem__text {
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected:not(:hover) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-sidebar-collapsed-size:50px;
  --mm-sidebar-expanded-size:440px;
}

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
  position: relative;
}

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
  background: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100vh;
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
  width: calc(100% - 50px);
  -webkit-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0;
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  width: 440px;
  width: var(--mm-sidebar-expanded-size);
  min-width: 0 !important;
  max-width: 100000px !important;
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none;
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
  overflow: visible;
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
  display: none !important;
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  width: calc(100% - 440px);
  -webkit-transform: translate3d(440px, 0, 0);
  transform: translate3d(440px, 0, 0);
  width: calc(100% - var(--mm-sidebar-expanded-size));
  -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
}

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.mm-menu_opened .mm-menu__blocker {
  display: none;
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

input.mm-toggle {
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  min-width: 58px;
  width: 58px;
  height: 34px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 34px) / 2);
  border: none !important;
  background: var(--mm-color-border);
  border-radius: 34px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

input.mm-toggle:before {
  background: #f3f3f3;
}

input.mm-toggle:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 34px;
  background: var(--mm-color-background);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

input.mm-toggle:checked {
  background: #4bd963;
}

input.mm-toggle:checked:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

input.mm-check {
  margin-top: 2px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: none !important;
  background: 0 0 !important;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 40px) / 2);
}

input.mm-check:before {
  content: "";
  display: block;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  border-left: 3px solid;
  border-bottom: 3px solid;
  border-color: var(--mm-color-text);
  opacity: 0.3;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

input.mm-check:checked:before {
  opacity: 1;
}

[dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
  float: left;
}

.mm-menu_border-none .mm-listitem:after {
  content: none;
}

.mm-menu_border-full .mm-listitem:after {
  left: 0 !important;
}

.mm-menu_fx-menu-slide {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(100vw, 0, 0);
  transform: translate3d(100vw, 0, 0);
}

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0);
  }
}
@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(10000px, 0, 0);
    transform: translate3d(10000px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0);
}

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0);
  }
}
@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-10000px, 0, 0);
    transform: translate3d(-10000px, 0, 0);
  }
}
.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px;
}

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px;
}

.mm-menu_listview-justify .mm-panels > .mm-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mm-menu_listview-justify .mm-panels > .mm-panel:after {
  content: none;
  display: none;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 50px;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mm-listview_inset {
  list-style: inside disc;
  width: 100%;
  padding: 0 30px 15px 30px;
  margin: 0;
}

.mm-listview_inset .mm-listitem {
  padding: 5px 0;
}

.mm-menu_multiline .mm-listitem__text {
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: normal;
}

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0;
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0.3;
  -webkit-transition: opacity 0.4s ease 0.4s;
  -o-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}

.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
  background: inherit;
}

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
  background: #000;
}

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
  background: #fff;
}

.mm-menu_popup {
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0;
}

.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
  z-index: 1;
}

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1;
}

.mm-menu_position-right {
  left: auto;
  right: 0;
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0);
  }
}
.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2;
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0;
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
  z-index: 1;
}

.mm-menu_position-front {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu_position-front.mm-menu_position-right {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu_position-top {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px;
}

.mm-menu_position-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  top: auto;
}

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px;
}

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
}

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
}

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none;
}

.mm-menu_shadow-menu {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
}

.mm-menu_shadow-panels .mm-panels > .mm-panel {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
}

.mm-menu_theme-white {
  --mm-color-border:rgba( 0,0,0, 0.1 );
  --mm-color-button:rgba( 0,0,0, 0.3 );
  --mm-color-text:rgba( 0,0,0, 0.7 );
  --mm-color-text-dimmed:rgba( 0,0,0, 0.3 );
  --mm-color-background:#fff;
  --mm-color-background-highlight:rgba( 0,0,0, 0.06 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.03 );
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.2 );
}

.mm-menu_theme-dark {
  --mm-color-border:rgba( 0,0,0, 0.3 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.85 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#333;
  --mm-color-background-highlight:rgba( 255,255,255, 0.08 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.1 );
  --mm-shadow:0 0 20px rgba( 0,0,0, 0.5 );
}

.mm-menu_theme-black {
  --mm-color-border:rgba( 255,255,255, 0.25 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.75 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#000;
  --mm-color-background-highlight:rgba( 255,255,255, 0.2 );
  --mm-color-background-emphasis:rgba( 255,255,255, 0.15 );
  --mm-shadow:none;
}

body.modal-open .mm-slideout {
  z-index: unset;
}

/* -- Layout -- */
/* Text class */
.txt-black {
  color: #000000 !important;
}

.txt-white {
  color: #FFFFFF !important;
}

.txt-light-grey {
  color: #C5C5C5 !important;
}

.txt-medium-grey {
  color: #707070 !important;
}

.txt-grey {
  color: #2D2D2D !important;
}

.txt-dark-grey {
  color: #1A171B !important;
}

.txt-light-gold {
  color: #F8F4ED !important;
}

.txt-gold {
  color: #BD9E55 !important;
}

/* Background class */
.bkg-black {
  background-color: #000000 !important;
}

.bkg-white {
  background-color: #FFFFFF !important;
}

.bkg-medium-grey {
  background-color: #707070 !important;
}

.bkg-grey {
  background-color: #2D2D2D !important;
}

.bkg-dark-grey {
  background-color: #1A171B !important;
}

.bkg-light-gold {
  background-color: #F8F4ED !important;
}

.bkg-gold {
  background-color: #BD9E55 !important;
}

html, body {
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 0 !important;
  font-family: "Crimson Text", serif;
  font-weight: 400;
}

h1, .h1 {
  font-size: 48px;
  line-height: 54px;
  text-align: center;
  color: #BD9E55;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  h1, .h1 {
    font-size: calc(48px + 20 * (100vw - 360px) / 1240);
    line-height: calc(54px + 24 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h1, .h1 {
    font-size: 68px;
    line-height: 78px;
  }
}

h2, .h2 {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #707070;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 360px) {
  h2, .h2 {
    font-size: calc(20px + 8 * (100vw - 360px) / 1240);
    line-height: calc(30px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h2, .h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
h2.claim, .h2.claim {
  font-size: 28px;
  line-height: 40px;
  text-align: left;
  font-style: italic;
}
@media (min-width: 360px) {
  h2.claim, .h2.claim {
    font-size: calc(28px + 8 * (100vw - 360px) / 1240);
    line-height: calc(40px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h2.claim, .h2.claim {
    font-size: 36px;
    line-height: 48px;
  }
}

h3, .h3 {
  font-size: 34px;
  line-height: 40px;
  text-align: left;
  color: #BD9E55;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  h3, .h3 {
    font-size: calc(34px + 20 * (100vw - 360px) / 1240);
    line-height: calc(40px + 24 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h3, .h3 {
    font-size: 54px;
    line-height: 64px;
  }
}

h4, .h4 {
  font-size: 30px;
  line-height: 36px;
  text-align: left;
  color: #BD9E55;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  h4, .h4 {
    font-size: calc(30px + 18 * (100vw - 360px) / 1240);
    line-height: calc(36px + 22 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h4, .h4 {
    font-size: 48px;
    line-height: 58px;
  }
}

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #707070;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  h5, .h5 {
    font-size: calc(16px + 8 * (100vw - 360px) / 1240);
    line-height: calc(24px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h5, .h5 {
    font-size: 24px;
    line-height: 32px;
  }
}

h6, .h6 {
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #C5C5C5;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (min-width: 360px) {
  h6, .h6 {
    font-size: calc(16px + 2 * (100vw - 360px) / 1240);
    line-height: calc(26px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  h6, .h6 {
    font-size: 18px;
    line-height: 28px;
  }
}

p {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}
@media (min-width: 360px) {
  p {
    font-size: calc(16px + 4 * (100vw - 360px) / 1240);
    line-height: calc(26px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  p {
    font-size: 20px;
    line-height: 30px;
  }
}
p a {
  color: #BD9E55;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  p a:hover {
    color: #DEC68D;
  }
}

a.phone {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 1200px) {
  a.phone {
    cursor: default;
    pointer-events: none;
  }
}

/*.text-center {
    h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
        text-align:center;
    }
}*/
.container {
  width: 100%;
  max-width: 1308px;
  padding-right: 14px;
  padding-left: 14px;
}
.container .row {
  position: relative;
  z-index: 1;
  margin-right: -14px;
  margin-left: -14px;
}
.container .row > [class*=col-] {
  padding-right: 14px;
  padding-left: 14px;
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.container-fluid .row {
  margin-right: 0;
  margin-left: 0;
}
.container-fluid .row > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.main-container {
  position: relative;
  float: left;
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
}

* {
  outline: 0 !important;
}

input, textarea {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  appearance: none !important;
}

img {
  display: block;
  float: left;
  width: 100%;
  max-width: 100%;
  height: auto;
}

*:focus {
  outline: none;
  outline: 0;
}

ul, ol {
  display: block;
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li, ol li {
  display: block;
  float: left;
  width: 100%;
}

ol {
  counter-reset: list-counter;
}
ol li {
  counter-increment: list-counter;
}
ol li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0px;
  width: 30px;
  height: 30px;
  color: #BD9E55;
  font-size: 20px;
  line-height: 30px;
}

body {
  background-color: #1A171B;
}

section {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin-top: 50px;
}
@media (min-width: 360px) {
  section {
    margin-top: calc(50px + 50 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section {
    margin-top: 100px;
  }
}
section[class^=bkg-], section[class*=" bkg-"] {
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (min-width: 360px) {
  section[class^=bkg-], section[class*=" bkg-"] {
    padding-top: calc(45px + 35 * (100vw - 360px) / 1240);
    padding-bottom: calc(45px + 35 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section[class^=bkg-], section[class*=" bkg-"] {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
section.section-title {
  margin-top: 30px;
}
@media (min-width: 360px) {
  section.section-title {
    margin-top: calc(30px + 20 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section.section-title {
    margin-top: 50px;
  }
}
section.wine-detail {
  margin-top: 25px;
}
@media (min-width: 360px) {
  section.wine-detail {
    margin-top: calc(25px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section.wine-detail {
    margin-top: 35px;
  }
}
section.beside-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
section.m-small {
  margin-top: 40px !important;
}
@media (min-width: 360px) {
  section.m-small {
    margin-top: calc(40px + 40 * (100vw - 360px) / 1240) !important;
  }
}
@media (min-width: 1600px) {
  section.m-small {
    margin-top: 80px !important;
  }
}
section.pt-big {
  padding-top: 70px;
}
@media (min-width: 360px) {
  section.pt-big {
    padding-top: calc(70px + 60 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section.pt-big {
    padding-top: 130px;
  }
}
section.pb-big {
  padding-bottom: 80px;
}
@media (min-width: 360px) {
  section.pb-big {
    padding-bottom: calc(80px + 80 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section.pb-big {
    padding-bottom: 160px;
  }
}
section.p-big {
  padding-top: 70px;
  padding-bottom: 80px;
}
@media (min-width: 360px) {
  section.p-big {
    padding-top: calc(70px + 60 * (100vw - 360px) / 1240);
    padding-bottom: calc(80px + 80 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  section.p-big {
    padding-top: 130px;
    padding-bottom: 160px;
  }
}

#home section {
  margin-top: 60px;
}
@media (min-width: 360px) {
  #home section {
    margin-top: calc(60px + 50 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  #home section {
    margin-top: 110px;
  }
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.error404 .header {
  background-color: #1A171B;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header .header-logo {
  float: left;
  width: 100%;
  text-align: center;
}
.header .header-logo img {
  display: inline-block;
  float: none;
  height: 40px;
  width: auto;
}
@media (min-width: 360px) {
  .header .header-logo img {
    height: calc(40px + 36 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .header .header-logo img {
    float: left;
  }
}
@media (min-width: 1600px) {
  .header .header-logo img {
    height: 76px;
  }
}
.header .header-menu {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 14px;
  text-align: center;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 992px) {
  .header .header-menu {
    margin-top: calc(14px + 4 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .header .header-menu {
    margin-top: 18px;
  }
}
.header .header-menu > ul {
  width: auto;
}
.header .header-menu > ul > li {
  width: auto;
  margin: 6px 15px;
}
@media (min-width: 992px) {
  .header .header-menu > ul > li {
    margin: calc(6px + 2 * (100vw - 992px) / 608) 15x;
  }
}
@media (min-width: 1600px) {
  .header .header-menu > ul > li {
    margin: 8px 15px;
  }
}
.header .header-menu > ul > li:first-child {
  margin-left: 0 !important;
}
.header .header-menu > ul > li:last-child {
  margin-right: 0 !important;
}
.header .header-menu > ul > li > a {
  position: relative;
  display: block;
  float: left;
  padding: 5px 5px 1px 5px;
  font-size: 15px;
  line-height: 22px;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header .header-menu > ul > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #BD9E55;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .header .header-menu > ul > li > a {
    padding: calc(5px + 2 * (100vw - 992px) / 608) calc(5px + 5 * (100vw - 992px) / 608) calc(1px + 2 * (100vw - 992px) / 608) calc(5px + 5 * (100vw - 992px) / 608);
    font-size: calc(15px + 3 * (100vw - 992px) / 608);
  }
}
@media (min-width: 992px) {
  .header .header-menu > ul > li > a:hover {
    color: #BD9E55;
  }
  .header .header-menu > ul > li > a:hover:after {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .header .header-menu > ul > li > a {
    padding: 7px 10px 3px 10px;
    font-size: 18px;
  }
}
.header .header-menu > ul > li.active > a {
  color: #BD9E55;
}
.header .header-menu > ul > li.active > a:after {
  width: 100%;
}
.header .header-menu > ul > li.shop {
  margin: 0 5px;
}
.header .header-menu > ul > li.shop > a {
  padding: 12px 15px 8px 15px;
  color: #FFFFFF;
  background-color: #BD9E55;
}
.header .header-menu > ul > li.shop > a:after {
  content: none;
}
@media (min-width: 992px) {
  .header .header-menu > ul > li.shop > a {
    padding: calc(12px + 3 * (100vw - 992px) / 608) calc(15px + 5 * (100vw - 992px) / 608) calc(8px + 3 * (100vw - 992px) / 608) calc(15px + 5 * (100vw - 992px) / 608);
  }
}
@media (min-width: 992px) {
  .header .header-menu > ul > li.shop > a:hover {
    color: #FFFFFF;
    background-color: #DEC68D;
  }
}
@media (min-width: 1600px) {
  .header .header-menu > ul > li.shop > a {
    padding: 15px 20px 11px 20px;
  }
}
.header .header-menu > ul > li.shop > a i {
  position: relative;
  display: block;
  float: left;
  width: 20px;
  height: 22px;
  margin-right: 8px;
}
@media (min-width: 992px) {
  .header .header-menu > ul > li.shop > a i {
    width: calc(20px + 4 * (100vw - 992px) / 608);
    height: calc(22px + 0 * (100vw - 992px) / 608);
    margin-right: calc(8px + 2 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .header .header-menu > ul > li.shop > a i {
    width: 24px;
    height: 22px;
    margin-right: 10px;
  }
}
.header .header-menu > ul > li.shop > a i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -2px;
  font-size: 26px;
  line-height: 26px;
  color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .header .header-menu > ul > li.shop > a i:before {
    margin-top: calc(-2px - 1 * (100vw - 992px) / 608);
    font-size: calc(26px + 4 * (100vw - 992px) / 608);
    line-height: calc(26px + 4 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .header .header-menu > ul > li.shop > a i:before {
    margin-top: -3px;
    font-size: 30px;
    line-height: 30px;
  }
}

.alert {
  display: flex;
  float: left;
  width: 100%;
  padding: 20px 14px;
  background-color: #BD9E55;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
@media (min-width: 360px) {
  .alert {
    padding: calc(20px + 10 * (100vw - 360px) / 1240) 14px;
  }
}
@media (min-width: 768px) {
  .alert {
    flex-direction: row;
  }
}
@media (min-width: 1600px) {
  .alert {
    padding: 30px 14px;
  }
}
.alert.close {
  margin-top: -150%;
}
@media (min-width: 360px) {
  .alert.close {
    padding: calc(-150% - 50 * (100vw - 360px) / 1240) calc(14px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .alert.close {
    margin-top: -100%;
  }
}
.alert time {
  display: block;
  float: left;
  margin-top: 2px;
  font-size: 10px;
  line-height: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.alert time strong {
  font-weight: 700;
}
@media (min-width: 360px) {
  .alert time {
    margin-top: calc(2px + 2 * (100vw - 360px) / 1240);
    font-size: calc(10px + 4 * (100vw - 360px) / 1240);
    line-height: calc(16px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .alert time {
    margin-top: 4px;
    font-size: 14px;
    line-height: 18px;
  }
}
.alert > div {
  position: relative;
  float: left;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  margin-top: 10px;
}
@media (min-width: 360px) {
  .alert > div {
    padding-right: calc(0px + 75 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .alert > div {
    max-width: 56%;
    margin-left: calc(18px + 10 * (100vw - 768px) / 832);
    padding-left: calc(18px + 10 * (100vw - 768px) / 832);
    margin-top: 0;
  }
  .alert > div:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(248, 244, 237, 0.5);
  }
}
@media (min-width: 1600px) {
  .alert > div {
    margin-left: 28px;
    padding-left: 28px;
    padding-right: 75px;
  }
}
.alert > div p {
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  font-family: "Crimson Text", serif;
  font-weight: 700;
}
@media (min-width: 360px) {
  .alert > div p {
    font-size: calc(20px + 12 * (100vw - 360px) / 1240);
    line-height: calc(30px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .alert > div p {
    font-size: 32px;
    line-height: 40px;
  }
}
.alert > div .btn {
  margin-top: 10px;
}
@media (min-width: 360px) {
  .alert > div .btn {
    margin-top: calc(10px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .alert > div .btn {
    margin-top: 12px;
  }
}
.alert > .close-alert {
  position: absolute;
  right: 14px;
  top: 10px;
  display: block;
  float: left;
  width: 18px;
  height: 18px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .alert > .close-alert {
    font-size: calc(16px + 2 * (100vw - 360px) / 1240);
    line-height: calc(16px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .alert > .close-alert {
    position: relative;
    right: inherit;
    top: inherit;
  }
}
@media (min-width: 992px) {
  .alert > .close-alert:hover {
    opacity: 1;
  }
}
@media (min-width: 1600px) {
  .alert > .close-alert {
    font-size: 18px;
    line-height: 18px;
  }
}

.header-lang {
  position: relative;
  float: right;
  width: auto;
  margin-top: 11px;
}
.header-lang span {
  position: relative;
  display: block;
  float: left;
  width: auto;
  padding: 15px 40px 15px 52px;
  font-size: 12px;
  line-height: 18px;
  color: #F8F4ED;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-lang span i {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  font-size: 22px;
  line-height: 22px;
  color: #C5C5C5;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-lang span:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #707070 transparent transparent transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-lang ul {
  position: absolute;
  left: 0;
  top: -9999px;
  width: 100%;
  padding-bottom: 6px;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.header-lang ul li {
  position: relative;
  padding: 7px 18px;
}
.header-lang ul li:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 36px);
  height: 1px;
  background-color: rgba(112, 112, 112, 0.45);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header-lang ul li a {
  display: block;
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #BD9E55;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .header-lang ul li a:hover {
    color: #FFFFFF;
  }
}
@media (min-width: 992px) {
  .header-lang {
    margin-top: calc(11px + 7 * (100vw - 992px) / 608);
  }
  .header-lang span {
    font-size: calc(12px + 2 * (100vw - 992px) / 608);
  }
  .header-lang span i {
    left: calc(20px - 2 * (100vw - 992px) / 608);
    width: calc(22px + 2 * (100vw - 992px) / 608);
    height: calc(22px + 2 * (100vw - 992px) / 608);
    font-size: calc(22px + 2 * (100vw - 992px) / 608);
    line-height: calc(22px + 2 * (100vw - 992px) / 608);
  }
  .header-lang ul {
    padding-bottom: 6px;
  }
  .header-lang ul li {
    padding: calc(7px + 0 * (100vw - 992px) / 608) calc(18px + 0 * (100vw - 992px) / 608);
  }
  .header-lang ul li:before {
    width: calc(100% - (36px + 0 * (100vw - 992px) / 608));
  }
  .header-lang ul li a {
    font-size: calc(14px + 0 * (100vw - 992px) / 608);
    line-height: calc(18px + 0 * (100vw - 992px) / 608);
  }
  .header-lang:hover span {
    background-color: #000000;
  }
  .header-lang:hover span:after {
    border-style: solid;
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #BD9E55 transparent;
  }
  .header-lang:hover ul {
    top: 100%;
    opacity: 1;
  }
}
@media (min-width: 1600px) {
  .header-lang {
    margin-top: 18px;
  }
  .header-lang span {
    font-size: 14px;
  }
  .header-lang span i {
    left: 18px;
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 24px;
  }
  .header-lang ul {
    padding-bottom: 6px;
  }
  .header-lang ul li {
    padding: 7px 18px;
  }
  .header-lang ul li:before {
    width: calc(100% - 36px);
  }
  .header-lang ul li a {
    font-size: 14px;
    line-height: 18px;
  }
}

body.header-scroll .header {
  position: fixed;
  background-color: #1A171B;
}

a.shop-mobile, li.shop-mobile a {
  position: relative;
  display: block;
  float: right;
  margin-top: 20px;
  padding: 2px 0 2px 24px;
  font-size: 12px;
  line-height: 16px;
  color: #BD9E55;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Crimson Text", serif;
}
a.shop-mobile i, li.shop-mobile a i {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  line-height: 20px;
  font-size: 20px;
  height: 20px;
  color: #BD9E55;
}

.mobile-btn {
  display: block;
  float: left;
  width: 36px;
  height: 36px;
  margin-top: 10px;
  font-size: 36px;
  line-height: 36px;
  color: #FFFFFF;
  text-decoration: none;
}

.mm-wrapper_opening .mm-wrapper__blocker {
  background-color: rgba(0, 0, 0, 0.8);
}
.mm-wrapper_opening .mm-navbars_top {
  opacity: 1;
}

.mm-wrapper__blocker {
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mm-navbars_top {
  position: absolute;
  right: -50px;
  top: 8px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mm-navbars_top .mm-navbar {
  border: 0 none;
  background-color: transparent;
}
.mm-navbars_top .mm-navbar a {
  position: relative;
}
.mm-navbars_top .mm-navbar a:before {
  content: none;
}
.mm-navbars_top .mm-navbar a:after {
  content: "\e904";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 0 none;
  padding: 0;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  font-family: "icomoon" !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mm-menu {
  background-color: #2D2D2D;
}
.mm-menu .mm-panels {
  background-color: #2D2D2D;
}
.mm-menu .mm-panels .mm-navbar {
  display: none;
}
.mm-menu .mm-panels .mm-panel {
  background-color: #2D2D2D;
}
.mm-menu .mm-panels .mm-listview {
  padding-top: 20px;
}
.mm-menu .mm-panels .mm-listview .mm-listitem a {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  background-color: transparent !important;
}
.mm-menu .mm-panels .mm-listview .mm-listitem a.active {
  color: #DEC68D;
}
.mm-menu .mm-panels .mm-listview .mm-listitem:after {
  border-color: rgba(189, 158, 85, 0.1);
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop {
  display: block;
  padding: 10px 20px;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop:after {
  bottom: 100%;
  border-color: #2D2D2D;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop a {
  width: auto;
  padding: 12px 25px 8px 20px;
  background-color: #BD9E55 !important;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop a i {
  position: relative;
  display: block;
  float: left;
  width: 20px;
  height: 22px;
  margin-right: 10px;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop a i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -2px;
  font-size: 26px;
  line-height: 26px;
  color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mm-menu .mm-panels .mm-listview .mm-listitem.lang {
  display: block;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.lang:after {
  content: none;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.lang a {
  position: relative;
  width: auto;
  font-size: 14px;
  font-weight: 400;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.lang a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 60%;
  background-color: rgba(189, 158, 85, 0.1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mm-menu .mm-panels .mm-listview .mm-listitem.lang a:last-child:after {
  background-color: transparent;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop-nav {
  margin-top: 16px;
  padding: 0 10px;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop-nav a {
  position: relative;
  padding: 12px 10px;
  text-align: center;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop-nav a i {
  display: inline-block;
  float: none;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  color: #BD9E55;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop-nav a p {
  width: 100%;
  text-align: center;
  text-transform: initial;
  font-weight: 400;
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop-nav a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 60%;
  background-color: rgba(189, 158, 85, 0.1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mm-menu .mm-panels .mm-listview .mm-listitem.shop-nav a:last-child:after {
  background-color: transparent;
}

:root {
  --mm-color-background-emphasis:transparent;
}

.footer {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding: 35px 0 30px 0;
  background-color: #1A171B;
}
@media (min-width: 360px) {
  .footer {
    padding: calc(35px + 25 * (100vw - 360px) / 1240) 0 calc(30px + 15 * (100vw - 360px) / 1240) 0;
  }
}
@media (min-width: 1600px) {
  .footer {
    padding: 60px 0 45px 0;
  }
}
.footer .footer-logo {
  text-align: center;
  font-size: 0;
}
@media (min-width: 768px) {
  .footer .footer-logo {
    text-align: left;
    padding-bottom: 26px;
  }
}
@media (min-width: 1600px) {
  .footer .footer-logo {
    padding-bottom: 0;
  }
}
.footer .footer-logo li {
  display: inline-block;
  float: none;
  width: auto;
  margin: 20px 15px 0 15px;
}
@media (min-width: 360px) {
  .footer .footer-logo li {
    margin: calc(20px + 16 * (100vw - 360px) / 1240) 15px 0 15px;
  }
}
@media (min-width: 768px) {
  .footer .footer-logo li {
    display: flex;
  }
  .footer .footer-logo li:first-child {
    margin-top: 0;
  }
}
@media (min-width: 1600px) {
  .footer .footer-logo li {
    display: inline-block;
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 36px;
  }
  .footer .footer-logo li:first-child {
    margin-top: 0;
  }
}
.footer .footer-logo li > div, .footer .footer-logo li > a {
  display: block;
  float: left;
  width: 98px;
}
.footer .footer-contact {
  float: left;
  width: 100%;
  margin-top: 26px;
  padding-bottom: 26px;
}
@media (max-width: 767.98px) {
  .footer .footer-contact:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc(100% - 28px);
    height: 1px;
    background-color: rgba(112, 112, 112, 0.7);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .footer .footer-contact {
    margin-top: 0;
    margin-left: -15px;
  }
}
@media (min-width: 1600px) {
  .footer .footer-contact {
    margin-left: 0;
  }
}
.footer .footer-contact h6, .footer .footer-contact .h6, .footer .footer-contact p {
  text-align: center !important;
}
@media (min-width: 992px) {
  .footer .footer-contact h6, .footer .footer-contact .h6, .footer .footer-contact p {
    text-align: left !important;
  }
}
.footer .footer-contact p {
  margin-top: 6px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (min-width: 360px) {
  .footer .footer-contact p {
    margin-top: calc(6px + 3 * (100vw - 360px) / 1240);
    font-size: calc(16px + 3 * (100vw - 360px) / 1240);
    line-height: calc(26px + 3 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .footer .footer-contact p {
    margin-top: 8px;
    font-size: 18px;
    line-height: 28px;
  }
}
.footer .footer-contact ul {
  margin-top: 18px;
  text-align: center;
  font-size: 0;
}
@media (min-width: 360px) {
  .footer .footer-contact ul {
    margin-top: calc(18px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .footer .footer-contact ul {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer .footer-contact ul {
    text-align: left;
    margin-top: 20px;
  }
}
.footer .footer-contact ul li {
  display: inline-block;
  float: none;
  width: auto;
  margin-left: 32px;
}
@media (min-width: 1600px) {
  .footer .footer-contact ul li {
    float: left;
    margin-left: 32px;
  }
}
@media (min-width: 768px) {
  .footer .footer-contact ul li {
    float: none;
  }
}
@media (min-width: 360px) {
  .footer .footer-contact ul li {
    margin-left: calc(32px + 0 * (100vw - 360px) / 1240);
  }
}
.footer .footer-contact ul li:first-child {
  margin-left: 0;
}
.footer .footer-contact ul li a {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  color: #BD9E55;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .footer .footer-contact ul li a {
    width: calc(24px + 0 * (100vw - 360px) / 1240);
    height: calc(24px + 0 * (100vw - 360px) / 1240);
    font-size: calc(24px + 0 * (100vw - 360px) / 1240);
    line-height: calc(24px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .footer .footer-contact ul li a:hover {
    color: #DEC68D;
  }
}
@media (min-width: 1600px) {
  .footer .footer-contact ul li a {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 24px;
  }
}
.footer .footer-menu {
  display: flex;
  float: left;
  width: 100%;
}
.footer .footer-menu ul {
  margin: 10px auto 0;
}
@media (max-width: 767.98px) {
  .footer .footer-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer .footer-menu ul li {
    display: flex;
    justify-content: space-between;
    width: auto;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .footer .footer-menu ul {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: auto;
    height: 100%;
  }
  .footer .footer-menu ul li {
    width: auto;
  }
  .footer .footer-menu ul li a {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .footer .footer-menu ul {
    margin-top: -13px;
  }
}
.footer .footer-menu ul li {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 360px) {
  .footer .footer-menu ul li {
    font-size: calc(16px + 2 * (100vw - 360px) / 1240);
    line-height: calc(20px + 2 * (100vw - 360px) / 1240);
  }
}
@media (max-width: 991.98px) {
  .footer .footer-menu ul li {
    padding: 0 12px;
    margin-top: 30px;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .footer .footer-menu ul li {
    margin-top: 15px;
  }
}
@media (min-width: 768px) {
  .footer .footer-menu ul li {
    width: 50%;
  }
}
@media (min-width: 1600px) {
  .footer .footer-menu ul li {
    font-size: 18px;
    line-height: 22px;
  }
}
.footer .footer-menu ul li a {
  position: relative;
  display: inline-block;
  float: none;
  width: auto;
  font-size: 16px;
  line-height: 20px;
  color: #C5C5C5;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .footer .footer-menu ul li a {
    font-size: calc(16px + 2 * (100vw - 360px) / 1240);
    line-height: calc(20px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .footer .footer-menu ul li a {
    float: left;
  }
}
@media (min-width: 992px) {
  .footer .footer-menu ul li a:hover {
    color: #FFFFFF;
  }
}
@media (min-width: 1600px) {
  .footer .footer-menu ul li a {
    font-size: 18px;
    line-height: 22px;
  }
}
.footer .footer-menu ul li.shop a {
  color: #BD9E55;
  font-weight: 700;
}
.footer .footer-menu ul li.shop a i {
  position: relative;
  display: block;
  float: left;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .footer .footer-menu ul li.shop a i {
    width: calc(18px + 2 * (100vw - 360px) / 1240);
    height: calc(18px + 2 * (100vw - 360px) / 1240);
    margin-right: calc(8px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .footer .footer-menu ul li.shop a i {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
}
.footer .footer-menu ul li.shop a i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 20px;
  line-height: 20px;
  color: #BD9E55;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .footer .footer-menu ul li.shop a i:before {
    font-size: calc(20px + 4 * (100vw - 360px) / 1240);
    line-height: calc(20px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .footer .footer-menu ul li.shop a i:before {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .footer .footer-menu ul li.shop a:hover {
    color: #DEC68D;
  }
  .footer .footer-menu ul li.shop a:hover i:before {
    color: #DEC68D;
  }
}
.footer .footer-certifications {
  float: right;
  width: 100%;
  margin-top: 26px;
  text-align: center;
  font-size: 0;
}
@media (min-width: 768px) {
  .footer .footer-certifications {
    width: auto;
    margin-top: 0;
    text-align: left;
  }
}
.footer .footer-certifications li {
  display: inline-block;
  float: none;
  width: auto;
  margin-left: 28px;
}
@media (min-width: 360px) {
  .footer .footer-certifications li {
    margin-left: calc(28px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .footer .footer-certifications li {
    float: right;
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
    margin-bottom: 25px;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .footer .footer-certifications li {
    float: none;
    display: inline-block;
    margin-left: 28px;
    width: auto;
  }
}
.footer .footer-certifications li:first-child {
  margin-left: 0;
}
.footer .footer-certifications li img {
  width: 60px;
}
.footer .footer-copyright {
  position: relative;
  padding-top: 30px;
  margin-top: 30px;
}
@media (min-width: 360px) {
  .footer .footer-copyright {
    padding-top: calc(30px + 0 * (100vw - 360px) / 1240);
    margin-top: calc(30px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .footer .footer-copyright {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.footer .footer-copyright:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 28px);
  height: 1px;
  background-color: rgba(112, 112, 112, 0.7);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer .footer-copyright p {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 360px) {
  .footer .footer-copyright p {
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .footer .footer-copyright p {
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .footer .footer-copyright p {
    font-size: 16px;
  }
}
.footer .footer-copyright ul {
  float: right;
  width: 100%;
  margin-top: 6px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .footer-copyright ul {
    width: auto;
    margin-top: 0;
    text-align: left;
  }
}
.footer .footer-copyright ul li {
  width: 100%;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .footer .footer-copyright ul li {
    width: auto;
    margin-left: calc(36px + 20 * (100vw - 768px) / 832);
    margin-top: 0;
  }
}
@media (min-width: 1600px) {
  .footer .footer-copyright ul li {
    margin-left: 56px;
  }
}
.footer .footer-copyright ul li:first-child {
  margin-left: 0;
}
.footer .footer-copyright ul li a {
  display: block;
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #C5C5C5;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .footer .footer-copyright ul li a {
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .footer .footer-copyright ul li a {
    width: auto;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .footer .footer-copyright ul li a:hover {
    color: #FFFFFF;
  }
}
@media (min-width: 1600px) {
  .footer .footer-copyright ul li a {
    font-size: 16px;
  }
}

.newsletter-prefooter {
  padding-top: 30px;
  padding-bottom: 35px;
  background-color: #444444;
}
@media (min-width: 360px) {
  .newsletter-prefooter {
    padding-top: calc(30px + 20 * (100vw - 360px) / 1240);
    padding-bottom: calc(35px + 25 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.newsletter-prefooter .newsletter {
  float: left;
  width: 100%;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .newsletter-prefooter .newsletter {
    padding-bottom: 0;
  }
}
.newsletter-prefooter .newsletter h3, .newsletter-prefooter .newsletter .h3 {
  color: #BD9E55;
  text-transform: inherit;
}
.newsletter-prefooter .newsletter p {
  margin-top: 0px;
  color: #BD9E55;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter p {
    margin-top: calc(0px - 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter p {
    margin-top: -2px;
  }
}
.newsletter-prefooter .newsletter fieldset {
  position: relative;
  margin-top: 14px;
  border-bottom: 1px solid #FFFFFF;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter fieldset {
    margin-top: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter fieldset {
    margin-top: 16px;
  }
}
.newsletter-prefooter .newsletter fieldset input {
  padding: 10px 0;
  border: 0 none;
  color: #FFFFFF;
  background-color: transparent;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter fieldset input {
    padding: calc(10px + 2 * (100vw - 360px) / 1240) 0;
  }
}
@media (min-width: 768px) {
  .newsletter-prefooter .newsletter fieldset input {
    padding-right: 140px;
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter fieldset input {
    padding: 12px 140px 12px 0;
  }
}
.newsletter-prefooter .newsletter fieldset button {
  position: absolute;
  right: 0;
  bottom: -50px;
  padding: 10px 24px 10px 0;
  margin-top: 2px;
  border: 0 none;
  font-size: 14px;
  line-height: 24px;
  color: #BD9E55;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.newsletter-prefooter .newsletter fieldset button i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  color: #BD9E55;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter fieldset button {
    padding: 10px calc(24px + 4 * (100vw - 360px) / 1240) 10px 0;
    margin-top: calc(2px + 4 * (100vw - 360px) / 1240);
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
  }
  .newsletter-prefooter .newsletter fieldset button i {
    width: calc(14px + 2 * (100vw - 360px) / 1240);
    height: calc(14px + 2 * (100vw - 360px) / 1240);
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
    line-height: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .newsletter-prefooter .newsletter fieldset button {
    top: 50%;
    bottom: inherit;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  .newsletter-prefooter .newsletter fieldset button:hover {
    color: #DEC68D;
  }
  .newsletter-prefooter .newsletter fieldset button:hover i {
    color: #DEC68D;
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter fieldset button {
    padding: 10px 28px 10px 0;
    margin-top: 6px;
    font-size: 16px;
  }
  .newsletter-prefooter .newsletter fieldset button i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
  }
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form {
  float: left;
  width: 100%;
  margin-top: 14px;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form {
    margin-top: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form {
    margin-top: 16px;
  }
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form {
  position: relative;
  padding: 0;
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph {
  float: left;
  width: 100%;
  margin: 0;
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input {
  padding: 10px 0 !important;
  border: 0 none;
  border-radius: 0 !important;
  color: #FFFFFF;
  background-color: transparent;
  border-bottom: 1px solid #FFFFFF;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input {
    padding: calc(10px + 2 * (100vw - 360px) / 1240) 0 !important;
  }
}
@media (min-width: 768px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input {
    padding-right: 140px !important;
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input {
    padding: 12px 140px 12px 0 !important;
  }
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit {
  position: relative;
  padding: 10px 24px 10px 0 !important;
  border: 0 none;
  font-size: 14px;
  line-height: 24px;
  color: #BD9E55;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit {
    padding: 10px calc(24px + 4 * (100vw - 360px) / 1240) 10px 0 !important;
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph input.mailpoet_submit {
    padding: 10px 28px 10px 0 !important;
    font-size: 16px;
  }
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: auto;
  margin-top: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last:before {
  content: "\e902";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  color: #BD9E55;
  font-family: "icomoon" !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last {
    margin-top: calc(2px + 4 * (100vw - 360px) / 1240);
  }
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last:before {
    width: calc(14px + 2 * (100vw - 360px) / 1240);
    height: calc(14px + 2 * (100vw - 360px) / 1240);
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
    line-height: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last {
    top: 6px;
    bottom: inherit;
  }
}
@media (min-width: 992px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover input, .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last:hover input, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover input, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last:hover input, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover input, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last:hover input, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover input, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last:hover input {
    color: #DEC68D;
  }
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover:before, .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last:hover:before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover:before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last:hover:before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover:before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last:hover:before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):hover:before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last:hover:before {
    color: #DEC68D;
  }
}
@media (min-width: 1600px) {
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2), .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last {
    margin-top: 6px;
  }
  .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph.last:before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph:nth-last-child(2):before, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph.last:before {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
  }
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph .parsley-errors-list, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph .parsley-errors-list, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph .parsley-errors-list, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph .parsley-errors-list {
  float: left;
  width: 100%;
  margin-top: 16px;
}
.newsletter-prefooter .newsletter #mailpoet_form_1.mailpoet_form form .mailpoet_paragraph .parsley-errors-list li, .newsletter-prefooter .newsletter #mailpoet_form_2.mailpoet_form form .mailpoet_paragraph .parsley-errors-list li, .newsletter-prefooter .newsletter #mailpoet_form_3.mailpoet_form form .mailpoet_paragraph .parsley-errors-list li, .newsletter-prefooter .newsletter #mailpoet_form_4.mailpoet_form form .mailpoet_paragraph .parsley-errors-list li {
  font-style: italic;
  color: #DAC9A1;
  font-size: 14px;
}

.newsletter > iframe {
  height: 160px;
}

/* -- Components -- */
.hero-home {
  position: relative;
  margin-top: 0 !important;
  padding-bottom: 576px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .hero-home {
    padding-bottom: 360;
  }
}
@media (min-width: 1600px) {
  .hero-home {
    padding-bottom: 682px;
  }
}
.hero-home:before, .hero-home:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.hero-home:before {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
@media (min-width: 576px) {
  .hero-home:before {
    background-color: rgba(0, 0, 0, 0.35);
  }
}
.hero-home:after {
  height: 44%;
  background: rgb(26, 23, 27);
  background: -moz-linear-gradient(180deg, rgb(26, 23, 27) 0%, rgba(26, 23, 27, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgb(26, 23, 27) 0%, rgba(26, 23, 27, 0) 100%);
  background: linear-gradient(180deg, rgb(26, 23, 27) 0%, rgba(26, 23, 27, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a171b",endColorstr="#1a171b",GradientType=1);
  z-index: 2;
}
.hero-home .hero-home-content {
  position: absolute;
  left: 0;
  bottom: 140px;
  width: 100%;
  text-align: center;
  z-index: 3;
}
@media (min-width: 360px) {
  .hero-home .hero-home-content {
    bottom: calc(140px - 15 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-home .hero-home-content {
    bottom: 125px;
  }
}
.hero-home .hero-home-content h1, .hero-home .hero-home-content .h1 {
  font-size: 38px;
  line-height: 42px;
  color: #FFFFFF;
}
@media (min-width: 360px) {
  .hero-home .hero-home-content h1, .hero-home .hero-home-content .h1 {
    font-size: calc(38px + 42 * (100vw - 360px) / 1240);
    line-height: calc(42px + 48 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-home .hero-home-content h1, .hero-home .hero-home-content .h1 {
    font-size: 80px;
    line-height: 90px;
  }
}
.hero-home .hero-home-content h2, .hero-home .hero-home-content .h2 {
  margin-top: 34px;
  font-size: 24px;
  line-height: 36px;
  color: #C5C5C5;
}
@media (min-width: 360px) {
  .hero-home .hero-home-content h2, .hero-home .hero-home-content .h2 {
    margin-top: calc(34px - 10 * (100vw - 360px) / 1240);
    font-size: calc(24px + 6 * (100vw - 360px) / 1240);
    line-height: calc(36px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-home .hero-home-content h2, .hero-home .hero-home-content .h2 {
    margin-top: 24px;
    font-size: 30px;
    line-height: 46px;
  }
}

.hero-header {
  position: relative;
  margin-top: 0;
  padding-bottom: 280px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 576px) {
  .hero-header {
    padding-bottom: 400px;
  }
}
@media (min-width: 1200px) {
  .hero-header {
    padding-bottom: 600px;
  }
}
.hero-header:before, .hero-header:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.hero-header:before {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.hero-header:after {
  height: 50%;
  background: rgb(26, 23, 27);
  background: -moz-linear-gradient(180deg, rgb(26, 23, 27) 0%, rgba(26, 23, 27, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgb(26, 23, 27) 0%, rgba(26, 23, 27, 0) 100%);
  background: linear-gradient(180deg, rgb(26, 23, 27) 0%, rgba(26, 23, 27, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a171b",endColorstr="#1a171b",GradientType=1);
  z-index: 2;
}
.hero-header > div {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.hero-header > div:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  z-index: 1;
}
.hero-header > div > .container {
  position: relative;
  z-index: 2;
}
.hero-header.small {
  padding-bottom: 298px;
}
@media (min-width: 360px) {
  .hero-header.small {
    padding-bottom: calc(298px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-header.small {
    padding-bottom: 298px;
  }
}

.breadcrumb {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  padding: 0;
  margin: 0 0 30px 0;
  background-color: transparent;
}
@media (min-width: 768px) {
  .breadcrumb {
    display: block;
    margin: 0 0 calc(30px + 10 * (100vw - 768px) / 832) 0;
  }
}
@media (min-width: 1600px) {
  .breadcrumb {
    margin: 0 0 40px 0;
  }
}
.breadcrumb span span {
  position: relative;
  float: none;
  display: inline-block;
  width: auto;
  color: #BD9E55;
  /*
          &:after {
              content:'/';
              position:absolute; right:-4px; top:1px;
              font-size:16px; line-height:20px; text-transform:uppercase; font-family:$font-crimson; color:$col-gold;
          }*/
}
.breadcrumb span span:last-child {
  margin-right: 0;
  padding-right: 0;
  /*&:after {
      content:none;
  }*/
}
.breadcrumb span span a, .breadcrumb span span span {
  float: none;
  display: inline-block;
  width: auto;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
}
.breadcrumb span span a {
  padding-right: 3px;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .breadcrumb span span a:hover {
    color: #BD9E55;
  }
}
.breadcrumb span span span {
  color: #DAC9A1;
}

.btn {
  position: relative;
  display: inline-block;
  float: none;
  width: auto;
  padding: 15px 24px 13px 24px;
  border: 0 none !important;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #BD9E55;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
}
@media (min-width: 360px) {
  .btn {
    padding: calc(15px + 2 * (100vw - 360px) / 1240) calc(24px + 10 * (100vw - 360px) / 1240) calc(13px + 2 * (100vw - 360px) / 1240) calc(24px + 10 * (100vw - 360px) / 1240);
    font-size: calc(14px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .btn:hover {
    background-color: #DEC68D;
  }
}
@media (min-width: 1600px) {
  .btn {
    padding: 17px 34px 15px 34px;
    font-size: 16px;
  }
}
.btn.btn-white {
  color: #BD9E55;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .btn.btn-white:hover {
    background-color: #F8F4ED;
  }
}
.btn.btn-border {
  color: #BD9E55;
  background-color: transparent;
}
.btn.btn-border:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #BD9E55;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .btn.btn-border:hover {
    color: #FFFFFF;
    background-color: #DEC68D;
  }
  .btn.btn-border:hover:before {
    border: 1px solid #DEC68D;
  }
}
.btn.btn-border-white {
  padding: 10px 24px 8px 24px;
  font-size: 12px;
  color: #FFFFFF;
  background-color: transparent;
}
.btn.btn-border-white:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
}
@media (min-width: 360px) {
  .btn.btn-border-white {
    padding: calc(10px + 2 * (100vw - 360px) / 1240) calc(24px + 10 * (100vw - 360px) / 1240) calc(8px + 2 * (100vw - 360px) / 1240) calc(24px + 10 * (100vw - 360px) / 1240);
    font-size: calc(12px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .btn.btn-border-white:hover {
    color: #BD9E55;
    background-color: #FFFFFF;
  }
  .btn.btn-border-white:hover:before {
    border: 1px solid #FFFFFF;
  }
}
@media (min-width: 1600px) {
  .btn.btn-border-white {
    padding: 12px 34px 10px 34px;
    font-size: 14px;
  }
}
.btn.btn-small {
  padding: 8px 22px 6px 22px;
}
@media (min-width: 360px) {
  .btn.btn-small {
    padding: calc(8px + 1 * (100vw - 360px) / 1240) calc(22px + 8 * (100vw - 360px) / 1240) calc(6px + 1 * (100vw - 360px) / 1240) calc(22px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .btn.btn-small {
    padding: 9px 30px 7px 30px;
  }
}
.btn.btn-big {
  padding: 15px 30px 13px 30px;
  font-size: 16px;
}
@media (min-width: 360px) {
  .btn.btn-big {
    padding: calc(15px + 2 * (100vw - 360px) / 1240) calc(30px + 16 * (100vw - 360px) / 1240) calc(13px + 2 * (100vw - 360px) / 1240) calc(30px + 16 * (100vw - 360px) / 1240);
    font-size: calc(16px + 3 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .btn.btn-big {
    padding: 17px 46px 15px 46px;
    font-size: 18px;
  }
}
.btn.btn-cart {
  padding: 20px 42px 20px 42px;
  font-size: 20px;
}
@media (min-width: 360px) {
  .btn.btn-cart {
    padding: calc(20px + 0 * (100vw - 360px) / 1240) calc(42px + 0 * (100vw - 360px) / 1240) calc(20px + 0 * (100vw - 360px) / 1240) calc(42px + 0 * (100vw - 360px) / 1240);
    font-size: calc(20px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .btn.btn-cart {
    padding: 20px 42px 20px 42px;
    font-size: 24px;
  }
}

a:hover .btn {
  background-color: #DEC68D;
}

.main-teaser-wrapper {
  display: none;
  float: left;
  width: 92%;
  margin-top: -40px;
  margin-left: 4%;
  margin-right: 4%;
}
@media (min-width: 360px) {
  .main-teaser-wrapper {
    margin-top: calc(-40px - 20 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .main-teaser-wrapper {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 992px) {
  .main-teaser-wrapper {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }
}
@media (min-width: 1600px) {
  .main-teaser-wrapper {
    margin-top: -60px;
  }
}
.main-teaser-wrapper.slick-initialized {
  display: block;
}
.main-teaser-wrapper .slick-list {
  overflow: visible;
}
.main-teaser-wrapper .slick-slide {
  padding: 0 5px;
}
@media (min-width: 768px) {
  .main-teaser-wrapper .slick-slide {
    padding: 0 8px;
  }
}
@media (min-width: 992px) {
  .main-teaser-wrapper .slick-slide {
    padding: 0 14px;
  }
}
.main-teaser-wrapper .main-teaser {
  display: block;
  float: left;
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-teaser-wrapper .main-teaser a {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  padding-bottom: 135%;
}
.main-teaser-wrapper .main-teaser a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.main-teaser-wrapper .main-teaser a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(189, 158, 85, 0.9);
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.main-teaser-wrapper .main-teaser a > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
}
.main-teaser-wrapper .main-teaser a > div .main-teaser-title {
  float: left;
  width: 100%;
  padding: 25px 20px 20px 20px;
  text-align: center;
  -webkit-text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
  -moz-text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
  -o-text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
  -ms-text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 360px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-title {
    padding: calc(25px + 20 * (100vw - 360px) / 1240) calc(20px + 10 * (100vw - 360px) / 1240) calc(20px + 12 * (100vw - 360px) / 1240) calc(20px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-title {
    padding: 45px 30px 32px 30px;
  }
}
.main-teaser-wrapper .main-teaser a > div .main-teaser-title p {
  font-size: 8px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #BD9E55;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 360px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-title p {
    font-size: calc(8px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-title p {
    font-size: 16px;
  }
}
.main-teaser-wrapper .main-teaser a > div .main-teaser-title h4, .main-teaser-wrapper .main-teaser a > div .main-teaser-title .h4 {
  margin-top: 3px;
  font-size: 22px;
  line-height: 26px;
  color: #FFFFFF;
  text-align: center;
}
@media (min-width: 360px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-title h4, .main-teaser-wrapper .main-teaser a > div .main-teaser-title .h4 {
    margin-top: calc(3px + 5 * (100vw - 360px) / 1240);
    font-size: calc(22px + 14 * (100vw - 360px) / 1240);
    line-height: calc(26px + 16 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-title h4, .main-teaser-wrapper .main-teaser a > div .main-teaser-title .h4 {
    margin-top: 8px;
    font-size: 36px;
    line-height: 42px;
  }
}
.main-teaser-wrapper .main-teaser a > div .main-teaser-content {
  display: none;
  float: left;
  width: 100%;
  padding: 0px 30px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -o-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .main-teaser-wrapper .main-teaser a > div .main-teaser-content {
    display: block;
  }
}
.main-teaser-wrapper .main-teaser a > div .main-teaser-content p {
  font-size: 19px;
  color: #FFFFFF;
}
.main-teaser-wrapper .main-teaser a > div .main-teaser-content .btn {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .main-teaser-wrapper .main-teaser a:hover:after {
    opacity: 1;
  }
  .main-teaser-wrapper .main-teaser a:hover > div .main-teaser-content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.main-teaser-wrapper .slick-dots {
  margin-top: 20px;
  text-align: center;
  font-size: 0;
}
.main-teaser-wrapper .slick-dots li {
  display: inline-block;
  float: none;
  width: auto;
}
.main-teaser-wrapper .slick-dots li button {
  position: relative;
  width: 26px;
  height: 26px;
  border: 0 none;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  background-color: transparent;
}
.main-teaser-wrapper .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: transparent;
  z-index: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.main-teaser-wrapper .slick-dots li button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid #BD9E55;
  background-color: transparent;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.main-teaser-wrapper .slick-dots li.slick-active button:before {
  background-color: #BD9E55;
}

.beside-section > div {
  display: flex;
  float: left;
  width: 100%;
  flex-direction: column;
  align-content: center;
}
@media (min-width: 768px) {
  .beside-section > div {
    flex-direction: row;
  }
}
.beside-section > div .beside-content {
  width: 100%;
  padding: 30px 14px;
  align-self: center;
}
@media (min-width: 768px) {
  .beside-section > div .beside-content {
    width: calc(50% - 10 * (100vw - 768px) / 832);
    padding: calc(40px + 130 * (100vw - 768px) / 832) calc(20px + 80 * (100vw - 768px) / 832) calc(40px + 130 * (100vw - 768px) / 832) calc(30px + 110 * (100vw - 768px) / 832);
  }
}
@media (min-width: 1600px) {
  .beside-section > div .beside-content {
    width: 40%;
    padding: 170px 100px 170px 140px;
  }
}
@media (min-width: 768px) {
  .beside-section > div .beside-content.order-lg-2 {
    padding-left: calc(20px + 80 * (100vw - 768px) / 832);
    padding-right: calc(30px + 110 * (100vw - 768px) / 832);
  }
}
@media (min-width: 1600px) {
  .beside-section > div .beside-content.order-lg-2 {
    padding-left: 100px;
    padding-right: 140px;
  }
}
.beside-section > div .beside-content p {
  margin-top: 10px;
}
@media (min-width: 360px) {
  .beside-section > div .beside-content p {
    margin-top: calc(10px + 14 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .beside-section > div .beside-content p {
    margin-top: 24px;
  }
}
.beside-section > div .beside-content .btn {
  margin-top: 25px;
}
@media (min-width: 360px) {
  .beside-section > div .beside-content .btn {
    margin-top: calc(25px + 20 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .beside-section > div .beside-content .btn {
    margin-top: 45px;
  }
}
.beside-section > div .beside-image {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .beside-section > div .beside-image {
    width: calc(50% + 10 * (100vw - 768px) / 832);
    padding-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .beside-section > div .beside-image {
    width: 60%;
  }
}
.beside-section.map > div .beside-content {
  padding: 30px 14px;
}
@media (min-width: 768px) {
  .beside-section.map > div .beside-content {
    padding: calc(120px + 130 * (100vw - 768px) / 832) calc(30px + 70 * (100vw - 768px) / 832) calc(120px + 130 * (100vw - 768px) / 832) calc(30px + 110 * (100vw - 768px) / 832);
  }
}
@media (min-width: 1600px) {
  .beside-section.map > div .beside-content {
    padding: 250px 100px 250px 140px;
  }
}
.beside-section.map > div .beside-image .map-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-title {
  text-align: center;
}
.section-title h2, .section-title .h2 {
  margin-top: 0px;
}
.section-title hr {
  display: inline-block;
  float: none;
  width: 100px;
  height: 2px;
  margin: 0;
  border: 0 none;
  background-color: #BD9E55;
}
@media (min-width: 360px) {
  .section-title hr {
    width: calc(100px + 200 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-title hr {
    width: 300px;
  }
}
.section-title p {
  text-align: left;
}

.twocols img {
  width: auto;
}
.twocols img.logo {
  max-height: 100px;
}

blockquote {
  position: relative;
  float: left;
  margin: 50px auto;
  margin-bottom: 0;
  font-style: italic;
  padding: 1.2em 30px 0 75px;
}
blockquote:before {
  position: absolute;
  left: 10px;
  top: -10px;
  content: "“";
  font-family: Arial;
  color: #BD9E55;
  font-size: 7em;
}
blockquote:after {
  content: "";
}
blockquote span {
  display: block;
  color: #707070;
  font-style: normal;
  font-weight: bold;
  margin-top: 1em;
}

.section-article {
  display: block;
  float: left;
  width: 100%;
}
.section-article .container .row > div > * {
  margin-top: 30px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > * {
    margin-top: calc(30px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > * {
    margin-top: 40px;
  }
}
.section-article .container .row > div > *.image-gallery-pagination {
  margin-top: 20px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > *.image-gallery-pagination {
    margin-top: calc(20px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > *.image-gallery-pagination {
    margin-top: 24px;
  }
}
.section-article .container .row > div > *.form-field {
  float: left;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > *.form-field {
    margin-top: calc(24px + 6 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > *.form-field {
    margin-top: 30px;
  }
}
.section-article .container .row > div > *.form-field input, .section-article .container .row > div > *.form-field textarea {
  margin-top: 8px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > *.form-field input, .section-article .container .row > div > *.form-field textarea {
    margin-top: calc(8px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > *.form-field input, .section-article .container .row > div > *.form-field textarea {
    margin-top: 10px;
  }
}
.section-article .container .row > div > *.form-button {
  margin-top: 40px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > *.form-button {
    margin-top: calc(40px + 25 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > *.form-button {
    margin-top: 65px;
  }
}
.section-article .container .row > div > *.form-button .btn {
  min-width: 180px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > *.form-button .btn {
    min-width: calc(180px + 40 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > *.form-button .btn {
    min-width: 220px;
  }
}
.section-article .container .row > div > *.form-button .btn:disabled, .section-article .container .row > div > *.form-button .btn[disabled] {
  background-color: #C5C5C5;
}
@media (min-width: 992px) {
  .section-article .container .row > div > *.form-button .btn:disabled:hover, .section-article .container .row > div > *.form-button .btn[disabled]:hover {
    background-color: #C5C5C5;
  }
}
.section-article .container .row > div > *.btn-cart {
  margin-top: 40px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > *.btn-cart {
    margin-top: calc(40px + 25 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > *.btn-cart {
    margin-top: 65px;
  }
}
.section-article .container .row > div > h3, .section-article .container .row > div > .h3 {
  margin-bottom: -18px !important;
}
@media (min-width: 360px) {
  .section-article .container .row > div > h3, .section-article .container .row > div > .h3 {
    margin-bottom: calc(-18px + 3 * (100vw - 360px) / 1240) !important;
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > h3, .section-article .container .row > div > .h3 {
    margin-bottom: -15px !important;
  }
}
.section-article .container .row > div > h2, .section-article .container .row > div > .h2 {
  margin-top: 10px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > h2, .section-article .container .row > div > .h2 {
    margin-top: calc(10px + 5 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > h2, .section-article .container .row > div > .h2 {
    margin-top: 15px;
  }
}
.section-article .container .row > div > hr {
  margin-top: 35px;
  margin-bottom: 5px;
}
@media (min-width: 360px) {
  .section-article .container .row > div > hr {
    margin-top: calc(35px + 35 * (100vw - 360px) / 1240);
    margin-bottom: calc(5px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div > hr {
    margin-top: 70px;
    margin-bottom: 15px;
  }
}
.section-article .container .row > div ul {
  margin-top: 16px;
}
@media (min-width: 360px) {
  .section-article .container .row > div ul {
    margin-top: calc(16px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div ul {
    margin-top: 20px;
  }
}
.section-article .container .row > div ul li {
  position: relative;
  margin-top: 12px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}
@media (min-width: 360px) {
  .section-article .container .row > div ul li {
    margin-top: calc(12px + 3 * (100vw - 360px) / 1240);
    padding-left: calc(28px + 4 * (100vw - 360px) / 1240);
    font-size: calc(16px + 4 * (100vw - 360px) / 1240);
    line-height: calc(26px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div ul li {
    margin-top: 15px;
    padding-left: 32px;
    font-size: 20px;
    line-height: 30px;
  }
}
.section-article .container .row > div ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #BD9E55;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 360px) {
  .section-article .container .row > div ul li:before {
    top: calc(10px + 2 * (100vw - 360px) / 1240);
    width: calc(6px + 2 * (100vw - 360px) / 1240);
    height: calc(6px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div ul li:before {
    top: 12px;
    width: 8px;
    height: 8px;
  }
}
.section-article .container .row > div ul li:first-child {
  margin-top: 0;
}
.section-article .container .row > div ol {
  margin-top: 16px;
}
@media (min-width: 360px) {
  .section-article .container .row > div ol {
    margin-top: calc(16px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div ol {
    margin-top: 20px;
  }
}
.section-article .container .row > div ol li {
  position: relative;
  margin-top: 12px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}
@media (min-width: 360px) {
  .section-article .container .row > div ol li {
    margin-top: calc(12px + 3 * (100vw - 360px) / 1240);
    padding-left: calc(28px + 4 * (100vw - 360px) / 1240);
    font-size: calc(16px + 4 * (100vw - 360px) / 1240);
    line-height: calc(26px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .section-article .container .row > div ol li {
    margin-top: 15px;
    padding-left: 32px;
    font-size: 20px;
    line-height: 30px;
  }
}
.section-article .container .row > div ol li:first-child {
  margin-top: 0;
}
.section-article .container .row:first-child > div:first-child > *:first-child {
  margin-top: 0;
}
.section-article form {
  margin-top: 36px !important;
}
@media (min-width: 360px) {
  .section-article form {
    margin-top: calc(36px + 16 * (100vw - 360px) / 1240) !important;
  }
}
@media (min-width: 1600px) {
  .section-article form {
    margin-top: 52px !important;
  }
}

.wine-type-wrapper {
  margin-top: -65px;
}
@media (min-width: 360px) {
  .wine-type-wrapper {
    margin-top: calc(-65px - 50 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-type-wrapper {
    margin-top: -115px;
  }
}
.wine-type-wrapper .wine-type {
  display: block;
  float: left;
  width: 100%;
  margin-top: 75px;
}
@media (min-width: 360px) {
  .wine-type-wrapper .wine-type {
    margin-top: calc(75px + 60 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-type-wrapper .wine-type {
    margin-top: 135px;
  }
}
.wine-type-wrapper .wine-type h4, .wine-type-wrapper .wine-type .h4 {
  margin-top: 25px;
}
@media (min-width: 360px) {
  .wine-type-wrapper .wine-type h4, .wine-type-wrapper .wine-type .h4 {
    margin-top: calc(25px + 15 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-type-wrapper .wine-type h4, .wine-type-wrapper .wine-type .h4 {
    margin-top: 40px;
  }
}
.wine-type-wrapper .wine-type p {
  width: 100%;
  margin-top: 8px;
  color: #C5C5C5;
}
@media (min-width: 768px) {
  .wine-type-wrapper .wine-type p {
    width: calc(78% + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-type-wrapper .wine-type p {
    width: 78%;
  }
}
.wine-type-wrapper .wine-type .btn {
  width: 100%;
  text-align: center;
  margin-top: 25px;
}
@media (min-width: 360px) {
  .wine-type-wrapper .wine-type .btn {
    margin-top: calc(25px + 5 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .wine-type-wrapper .wine-type .btn {
    width: auto;
  }
}
@media (min-width: 1600px) {
  .wine-type-wrapper .wine-type .btn {
    margin-top: 30px;
  }
}

.wine-list-wrapper {
  margin-top: 42px;
}
@media (min-width: 360px) {
  .wine-list-wrapper {
    margin-top: calc(42px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper {
    margin-top: 42px;
  }
}
.wine-list-wrapper.mt-small {
  margin-top: -18px;
}
@media (min-width: 360px) {
  .wine-list-wrapper.mt-small {
    margin-top: calc(-18px - 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper.mt-small {
    margin-top: -18px;
  }
}
.wine-list-wrapper .wine-list {
  display: block;
  float: left;
  width: 100%;
  margin-top: 68px;
  text-align: center;
}
@media (min-width: 360px) {
  .wine-list-wrapper .wine-list {
    margin-top: calc(68px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper .wine-list {
    margin-top: 68px;
  }
}
.wine-list-wrapper .wine-list img {
  display: inline-block;
  float: none;
  width: auto;
}
.wine-list-wrapper .wine-list .wine-list-content {
  float: left;
  width: 100%;
  margin-top: 12px;
  text-align: center;
}
@media (min-width: 360px) {
  .wine-list-wrapper .wine-list .wine-list-content {
    margin-top: calc(12px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper .wine-list .wine-list-content {
    margin-top: 12px;
  }
}
.wine-list-wrapper .wine-list .wine-list-content h4, .wine-list-wrapper .wine-list .wine-list-content .h4 {
  margin-top: 0px;
  font-size: 28px;
  line-height: 38px;
  color: #BD9E55;
  font-family: "Crimson Text", serif;
  text-align: center;
}
@media (min-width: 360px) {
  .wine-list-wrapper .wine-list .wine-list-content h4, .wine-list-wrapper .wine-list .wine-list-content .h4 {
    margin-top: calc(0px + 0 * (100vw - 360px) / 1240);
    font-size: calc(28px + 0 * (100vw - 360px) / 1240);
    line-height: calc(38px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper .wine-list .wine-list-content h4, .wine-list-wrapper .wine-list .wine-list-content .h4 {
    margin-top: 0px;
    font-size: 28px;
    line-height: 38px;
  }
}
.wine-list-wrapper .wine-list .wine-list-content p {
  margin-top: 0px;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
  font-family: "Crimson Text", serif;
  text-align: center;
}
@media (min-width: 360px) {
  .wine-list-wrapper .wine-list .wine-list-content p {
    margin-top: calc(0px + 0 * (100vw - 360px) / 1240);
    font-size: calc(14px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper .wine-list .wine-list-content p {
    margin-top: 0px;
    font-size: 14px;
  }
}
.wine-list-wrapper .wine-list .wine-list-content p.brand {
  color: #BD9E55;
}
.wine-list-wrapper .wine-list .wine-list-button {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 10px;
  flex-direction: column;
}
@media (min-width: 360px) {
  .wine-list-wrapper .wine-list .wine-list-button {
    margin-top: calc(10px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper .wine-list .wine-list-button {
    margin-top: 10px;
  }
}
.wine-list-wrapper .wine-list .wine-list-button .btn {
  margin-top: 10px;
  align-self: center;
}
@media (min-width: 360px) {
  .wine-list-wrapper .wine-list .wine-list-button .btn {
    margin-top: calc(10px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-wrapper .wine-list .wine-list-button .btn {
    margin-top: 10px;
  }
}

.wine-list-filter {
  float: left;
  width: 100%;
  margin-top: -15px;
  text-align: center;
}
@media (min-width: 360px) {
  .wine-list-filter {
    margin-top: calc(-15px - 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-list-filter {
    margin-top: -15px;
  }
}
.wine-list-filter ul {
  display: inline-block;
  float: none;
  width: auto;
  font-size: 0px;
  border-bottom: 1px solid rgba(189, 158, 85, 0.25);
}
.wine-list-filter ul li {
  width: auto;
  margin: 0 30px;
}
.wine-list-filter ul li:first-child {
  margin-left: 0;
}
.wine-list-filter ul li:last-child {
  margin-right: 0;
}
.wine-list-filter ul li a {
  position: relative;
  display: block;
  float: left;
  width: auto;
  padding: 10px 14px;
  font-size: 20px;
  line-height: 24px;
  color: #707070;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.wine-list-filter ul li a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #BD9E55;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .wine-list-filter ul li a:hover {
    color: #BD9E55;
  }
}
.wine-list-filter ul li.active a {
  color: #BD9E55;
}
.wine-list-filter ul li.active a:after {
  width: 100%;
}

.wine-tabs-component {
  float: left;
  width: 100%;
  margin-top: 45px;
}
@media (min-width: 360px) {
  .wine-tabs-component {
    margin-top: calc(45px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-tabs-component {
    margin-top: 45px;
  }
}
.wine-tabs-component .wine-tabs {
  float: left;
  width: 100%;
  border-bottom: 1px solid rgba(189, 158, 85, 0.25);
}
.wine-tabs-component .wine-tabs a {
  position: relative;
  display: block;
  float: left;
  width: auto;
  padding: 10px 0;
  margin-left: 92px;
  font-size: 20px;
  line-height: 26px;
  color: #707070;
  font-family: "Crimson Text", serif;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .wine-tabs-component .wine-tabs a {
    padding: calc(10px + 0 * (100vw - 360px) / 1240) 0;
    margin-left: calc(92px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .wine-tabs-component .wine-tabs a:hover {
    color: #BD9E55;
  }
}
@media (min-width: 1600px) {
  .wine-tabs-component .wine-tabs a {
    padding: 10px 0;
    margin-left: 92px;
  }
}
.wine-tabs-component .wine-tabs a:first-child {
  margin-left: 0;
}
.wine-tabs-component .wine-tabs a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background-color: #BD9E55;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.wine-tabs-component .wine-tabs a.active {
  color: #BD9E55;
}
.wine-tabs-component .wine-tabs a.active:after {
  width: 100%;
}
.wine-tabs-component .wine-content {
  float: left;
  width: 100%;
  margin-top: 0px;
}
@media (min-width: 360px) {
  .wine-tabs-component .wine-content {
    margin-top: calc(0px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-tabs-component .wine-content {
    margin-top: 0px;
  }
}
.wine-tabs-component .wine-content > div {
  display: none;
  margin-top: 16px;
}
.wine-tabs-component .wine-content > div.active {
  display: block;
}
.wine-tabs-component .wine-content > div p {
  margin-top: 26px;
  font-size: 20px;
  line-height: 26px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 360px) {
  .wine-tabs-component .wine-content > div p {
    margin-top: calc(26px + 0 * (100vw - 360px) / 1240);
    font-size: calc(20px + 0 * (100vw - 360px) / 1240);
    line-height: calc(26px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-tabs-component .wine-content > div p {
    margin-top: 26px;
    font-size: 20px;
    line-height: 26px;
  }
}
.wine-tabs-component .wine-content > div p strong {
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  .wine-tabs-component .wine-content > div p strong {
    font-size: calc(14px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-tabs-component .wine-content > div p strong {
    font-size: 14px;
  }
}
.wine-tabs-component .wine-content > div p:first-child {
  margin-top: 0;
}

.video-container {
  position: relative;
  float: left;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0 none;
}

.wine-slider {
  position: relative;
  padding: 0 40px;
}
@media (min-width: 360px) {
  .wine-slider {
    padding: 0 calc(40px + 110 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-slider {
    padding: 0 150px;
  }
}
.wine-slider .slick-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .wine-slider .slick-slide {
    flex-direction: row;
  }
}
.wine-slider .slick-slide .wine-slide-image {
  width: auto;
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-image {
    width: 24%;
  }
}
.wine-slider .slick-slide .wine-slide-image a {
  display: block;
  float: left;
  width: auto;
  height: 260px;
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-image a {
    width: 100%;
    height: auto;
  }
}
.wine-slider .slick-slide .wine-slide-image a > img {
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-image a > img {
    height: auto;
    width: 100%;
  }
}
.wine-slider .slick-slide .wine-slide-content {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-content {
    width: 76%;
    padding-left: calc(0px + 50 * (100vw - 768px) / 832);
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-slide .wine-slide-content {
    padding-left: 50px;
  }
}
.wine-slider .slick-slide .wine-slide-content h4, .wine-slider .slick-slide .wine-slide-content .h4, .wine-slider .slick-slide .wine-slide-content h5, .wine-slider .slick-slide .wine-slide-content .h5, .wine-slider .slick-slide .wine-slide-content p {
  text-align: center;
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-content h4, .wine-slider .slick-slide .wine-slide-content .h4, .wine-slider .slick-slide .wine-slide-content h5, .wine-slider .slick-slide .wine-slide-content .h5, .wine-slider .slick-slide .wine-slide-content p {
    text-align: left;
  }
}
.wine-slider .slick-slide .wine-slide-content > div {
  float: left;
  width: 100%;
}
.wine-slider .slick-slide .wine-slide-content > div .year {
  display: block;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #BD9E55;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  .wine-slider .slick-slide .wine-slide-content > div .year {
    font-size: calc(20px + 8 * (100vw - 360px) / 1240);
    line-height: calc(30px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-content > div .year {
    text-align: left;
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-slide .wine-slide-content > div .year {
    font-size: 28px;
    line-height: 38px;
  }
}
.wine-slider .slick-slide .wine-slide-content > div h5, .wine-slider .slick-slide .wine-slide-content > div .h5 {
  margin-top: 8px;
}
@media (min-width: 360px) {
  .wine-slider .slick-slide .wine-slide-content > div h5, .wine-slider .slick-slide .wine-slide-content > div .h5 {
    margin-top: calc(8px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-slide .wine-slide-content > div h5, .wine-slider .slick-slide .wine-slide-content > div .h5 {
    margin-top: 12px;
  }
}
.wine-slider .slick-slide .wine-slide-content p {
  display: none;
  margin-top: 18px;
}
@media (min-width: 360px) {
  .wine-slider .slick-slide .wine-slide-content p {
    margin-top: calc(18px + 6 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 768px) {
  .wine-slider .slick-slide .wine-slide-content p {
    display: block;
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-slide .wine-slide-content p {
    margin-top: 24px;
  }
}
.wine-slider .slick-slide .wine-slide-content .btn {
  margin-top: 26px;
}
@media (min-width: 360px) {
  .wine-slider .slick-slide .wine-slide-content .btn {
    margin-top: calc(26px + 12 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-slide .wine-slide-content .btn {
    margin-top: 38px;
  }
}
.wine-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0 none;
  text-indent: -9999px;
  background-color: transparent;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .wine-slider .slick-arrow:hover i {
    color: #DEC68D;
  }
}
.wine-slider .slick-arrow i {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  font-size: 28px;
  line-height: 28px;
  color: #BD9E55;
  font-family: "icomoon" !important;
  text-indent: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .wine-slider .slick-arrow i {
    font-size: calc(28px + 10 * (100vw - 360px) / 1240);
    line-height: calc(28px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-arrow i {
    font-size: 38px;
    line-height: 38px;
  }
}
.wine-slider .slick-arrow.slick-prev {
  left: -12px;
}
@media (min-width: 360px) {
  .wine-slider .slick-arrow.slick-prev {
    left: calc(-12px + 12 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-arrow.slick-prev {
    left: 0;
  }
}
.wine-slider .slick-arrow.slick-next {
  right: -12px;
}
@media (min-width: 360px) {
  .wine-slider .slick-arrow.slick-next {
    right: calc(-12px + 12 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-slider .slick-arrow.slick-next {
    right: 0;
  }
}

.image-gallery-pagination {
  float: left;
  width: 100%;
  text-align: center;
}
.image-gallery-pagination > div {
  position: relative;
  display: inline-block;
  float: none;
  width: auto;
  padding: 0 48px;
}
@media (min-width: 360px) {
  .image-gallery-pagination > div {
    padding: 0 calc(48px + 20 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .image-gallery-pagination > div {
    padding: 0 68px;
  }
}
.image-gallery-pagination > div span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.image-gallery-pagination > div span .slick-arrow {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0 none;
  text-indent: -9999px;
  background-color: transparent;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 360px) {
  .image-gallery-pagination > div span .slick-arrow {
    width: calc(24px + 0 * (100vw - 360px) / 1240);
    height: calc(24px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .image-gallery-pagination > div span .slick-arrow {
    width: 24px;
    height: 24px;
  }
}
.image-gallery-pagination > div span .slick-arrow i {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 24px;
  color: #BD9E55;
  font-family: "icomoon" !important;
  text-indent: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .image-gallery-pagination > div span .slick-arrow i {
    font-size: calc(20px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .image-gallery-pagination > div span .slick-arrow i {
    font-size: 24px;
  }
}
.image-gallery-pagination > div span .slick-arrow.slick-prev {
  left: 0;
}
.image-gallery-pagination > div span .slick-arrow.slick-next {
  right: 0;
}
.image-gallery-pagination > div p {
  display: block;
  float: left;
  min-width: 42px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
@media (min-width: 360px) {
  .image-gallery-pagination > div p {
    min-width: calc(42px + 12 * (100vw - 360px) / 1240);
    font-size: calc(16px + 4 * (100vw - 360px) / 1240);
    line-height: calc(26px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .image-gallery-pagination > div p {
    min-width: 54px;
    font-size: 20px;
    line-height: 30px;
  }
}
.image-gallery-pagination > div p strong {
  font-size: 22px;
  font-weight: normal;
}
@media (min-width: 360px) {
  .image-gallery-pagination > div p strong {
    font-size: calc(22px + 8 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .image-gallery-pagination > div p strong {
    font-size: 30px;
  }
}
.image-gallery-pagination > div p em {
  color: #C5C5C5;
  font-style: normal;
}

form {
  display: block;
  float: left;
  width: 100%;
  margin: 0;
}
form fieldset {
  display: block;
  float: left;
  width: 100%;
  margin: 0;
}
form input, form textarea {
  display: block;
  float: left;
  width: 100%;
  border: 1px solid #BD9E55;
  padding: 12px;
  font-size: 20px;
  line-height: 24px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  background-color: #FFFFFF;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -o-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form input:-moz-placeholder, form textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form input:focus, form textarea:focus {
  border: 1px solid #2D2D2D;
}
@media (min-width: 360px) {
  form input, form textarea {
    padding: calc(12px + 4 * (100vw - 360px) / 1240);
    font-size: calc(20px + 10 * (100vw - 360px) / 1240);
    line-height: calc(24px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  form input, form textarea {
    padding: 16px;
    font-size: 30px;
    line-height: 34px;
  }
}
form input.wpcf7-not-valid, form textarea.wpcf7-not-valid {
  border: 1px solid #DC3232;
}
form textarea {
  height: 148px;
  resize: none;
}
@media (min-width: 360px) {
  form textarea {
    height: calc(148px + 40 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  form textarea {
    height: 188px;
  }
}
form label {
  display: block;
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  color: #BD9E55;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}
@media (min-width: 360px) {
  form label {
    font-size: calc(16px + 2 * (100vw - 360px) / 1240);
    line-height: calc(20px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  form label {
    font-size: 18px;
    line-height: 22px;
  }
}
form .checkbox [type=checkbox]:checked, form .checkbox [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
form .checkbox [type=checkbox]:checked + label, form .checkbox [type=checkbox]:not(:checked) + label {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 5px 0 5px 46px;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  color: #707070;
  text-transform: inherit;
}
@media (min-width: 360px) {
  form .checkbox [type=checkbox]:checked + label, form .checkbox [type=checkbox]:not(:checked) + label {
    padding: 5px 0 5px calc(46px + 6 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  form .checkbox [type=checkbox]:checked + label, form .checkbox [type=checkbox]:not(:checked) + label {
    padding: 5px 0 5px 52px;
  }
}
form .checkbox [type=checkbox]:checked + label a, form .checkbox [type=checkbox]:not(:checked) + label a {
  color: #BD9E55;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  form .checkbox [type=checkbox]:checked + label a:hover, form .checkbox [type=checkbox]:not(:checked) + label a:hover {
    color: #DEC68D;
  }
}
form .checkbox [type=checkbox]:checked + label:before, form .checkbox [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #BD9E55;
  background-color: #FFFFFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
form .checkbox [type=checkbox]:checked + label:after, form .checkbox [type=checkbox]:not(:checked) + label:after {
  content: "\e90d";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  font-family: "icomoon" !important;
  color: #FFFFFF;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
form .checkbox [type=checkbox]:checked + label:before {
  border: 1px solid #BD9E55;
  background-color: #BD9E55;
}
form .checkbox [type=checkbox]:checked + label:after {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  float: left;
  width: 100%;
  margin-top: 6px;
}
@media (min-width: 360px) {
  .wpcf7-not-valid-tip {
    margin-top: calc(6px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wpcf7-not-valid-tip {
    margin-top: 10px;
  }
}

.wpcf7 form .wpcf7-response-output {
  float: left;
  width: 100%;
  padding: 16px;
  margin: 0;
  margin-top: 24px;
}
@media (min-width: 360px) {
  .wpcf7 form .wpcf7-response-output {
    padding: calc(16px + 4 * (100vw - 360px) / 1240);
    margin-top: calc(24px + 6 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wpcf7 form .wpcf7-response-output {
    padding: 20px;
    margin-top: 30px;
  }
}

p.google-recaptcha-terms {
  font-size: 13px;
}

div.wpcf7 .ajax-loader {
  width: 42px;
  height: 34px;
  margin: 0 0 0 14px;
  background-size: cover;
  background-image: url(/wp-content/uploads/2021/02/gialdi-loading.gif);
}

.delay10 {
  animation-delay: 0.1s;
}

.delay20 {
  animation-delay: 0.2s;
}

.delay30 {
  animation-delay: 0.3s;
}

.delay40 {
  animation-delay: 0.4s;
}

.delay50 {
  animation-delay: 0.5s;
}

.delay60 {
  animation-delay: 0.6s;
}

.delay70 {
  animation-delay: 0.7s;
}

.delay80 {
  animation-delay: 0.8s;
}

.delay90 {
  animation-delay: 0.9s;
}

.delay100 {
  animation-delay: 1s;
}

.delay110 {
  animation-delay: 1.1s;
}

.delay120 {
  animation-delay: 1.2s;
}

.delay130 {
  animation-delay: 1.3s;
}

.delay140 {
  animation-delay: 1.4s;
}

.delay150 {
  animation-delay: 1.5s;
}

.delay160 {
  animation-delay: 1.6s;
}

.delay170 {
  animation-delay: 1.7s;
}

.delay180 {
  animation-delay: 1.8s;
}

.delay190 {
  animation-delay: 1.9s;
}

.delay200 {
  animation-delay: 2s;
}

.x10 {
  animation-duration: 0.1s !important;
}

.x20 {
  animation-duration: 0.2s !important;
}

.x30 {
  animation-duration: 0.3s !important;
}

.x40 {
  animation-duration: 0.4s !important;
}

.x50 {
  animation-duration: 0.5s !important;
}

.x60 {
  animation-duration: 0.6s !important;
}

.x70 {
  animation-duration: 0.7s !important;
}

.x80 {
  animation-duration: 0.8s !important;
}

.x90 {
  animation-duration: 0.9s !important;
}

.x100 {
  animation-duration: 1s !important;
}

/* Reset opacity */
.animate-scroll {
  opacity: 0;
}

.cc-cookies {
  position: fixed;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 20px 15px;
  text-align: left;
  font-size: calc(12px + 2 * (100vw - 320px) / 1280);
  line-height: calc(20px + 4 * (100vw - 320px) / 1280);
  color: #707070;
  background: #2D2D2D;
  z-index: 9999;
  -webkit-box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
  -ms-box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
  padding: calc(20px + 25 * (100vw - 1300px) / 300) calc(15px + 295 * (100vw - 1300px) / 300);
}
@media (min-width: 992px) {
  .cc-cookies {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .cc-cookies {
    padding: 45px 310px;
    font-size: 14px;
    line-height: 24px;
  }
}
.cc-cookies .content {
  width: 100%;
  display: block;
  float: left;
}
.cc-cookies p {
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: calc(12px + 2 * (100vw - 320px) / 1280);
  line-height: calc(20px + 4 * (100vw - 320px) / 1280);
  color: #F8F4ED;
  /*span, a {
      display:inline-block; float:none;
      font-size:calc(14px + 2 * ((100vw - 320px) / 1280)); line-height:calc(20px + 2 * ((100vw - 320px) / 1280));

      @include media-breakpoint-up(xxl) {
          font-size:16px; line-height:22px;
      }
  }*/
}
@media (min-width: 1600px) {
  .cc-cookies p {
    font-size: 14px;
    line-height: 24px;
  }
}
.cc-cookies p a {
  color: #BD9E55;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .cc-cookies p a:hover {
    color: #DEC68D;
  }
}
.cc-cookies > a {
  position: relative;
  display: inline-block;
  float: none;
  margin: 16px 16px 0 0;
  padding: 10px 20px;
  text-decoration: none !important;
  color: #BD9E55;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .cc-cookies > a {
    margin: 0 0 0 60px;
  }
}
.cc-cookies > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #BD9E55;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.cc-cookies > a.cc-cookie-accept {
  color: #FFFFFF;
  background-color: #BD9E55;
}
.cc-cookies > a.cc-cookie-accept:before {
  content: none;
}
@media (min-width: 992px) {
  .cc-cookies > a:hover {
    color: #FFFFFF;
    background-color: #DEC68D;
  }
  .cc-cookies > a:hover:after {
    border: 1px solid #DEC68D;
  }
  .cc-cookies > a:hover.cc-cookie-accept {
    color: #FFFFFF;
    background-color: #DEC68D;
  }
  .cc-cookies > a:hover.cc-cookie-accept:after {
    border: none;
  }
}
@media (min-width: 992px) {
  .cc-cookies > a:last-child {
    margin: 0 0 0 16px;
  }
}
.cc-cookies a.closeCookie {
  width: 30px;
  height: 30px;
  margin: 10px 20px 0 20px;
  padding: 0;
  /*border:1px solid $col-white;*/
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.cc-cookies a.closeCookie i {
  width: 28px;
  height: 28px;
  /*color:$col-white;*/
  font-size: 10px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .cc-cookies a.closeCookie {
    margin: 0 20px;
  }
  .cc-cookies a.closeCookie:hover {
    /*border-color:$col-light-purple;*/
    text-decoration: none !important;
  }
  .cc-cookies a.closeCookie:hover i {
    /*color:$col-light-purple;*/
  }
}

.shop .header {
  padding-bottom: 15px;
  background-color: #1A171B;
}
.shop .header .header-logo {
  display: flex;
  width: 100%;
  margin-bottom: -5px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .shop .header .header-logo {
    width: auto;
  }
}
.shop .header .header-logo img {
  height: 40px;
}
@media (min-width: 360px) {
  .shop .header .header-logo img {
    height: calc(40px + 21 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-logo img {
    height: 61px;
  }
}
.shop .header .header-logo p {
  width: auto;
  margin-top: 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #BD9E55;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  .shop .header .header-logo p {
    margin-top: calc(8px + 0 * (100vw - 360px) / 1240);
    font-size: calc(16px + 0 * (100vw - 360px) / 1240);
    line-height: calc(20px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-logo p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 20px;
  }
}
.shop .header .meta-menu {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: 1px solid #707070;
  z-index: 2;
}
.shop .header .meta-menu a {
  position: relative;
  display: block;
  float: left;
  width: auto;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop .header .meta-menu a {
    font-size: calc(14px + 0 * (100vw - 992px) / 608);
    line-height: calc(18px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .meta-menu a {
    font-size: 14px;
    line-height: 18px;
  }
}
.shop .header .meta-menu a i {
  display: block;
  float: left;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  font-size: 18px;
  line-height: 18px;
  color: #BD9E55;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop .header .meta-menu a i {
    width: calc(18px + 0 * (100vw - 992px) / 608);
    height: calc(18px + 0 * (100vw - 992px) / 608);
    margin-right: calc(10px + 0 * (100vw - 992px) / 608);
    font-size: calc(18px + 0 * (100vw - 992px) / 608);
    line-height: calc(18px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .meta-menu a i {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    font-size: 18px;
    line-height: 18px;
  }
}
.shop .header .meta-menu a i.icon-gialdi-mail, .shop .header .meta-menu a i.icon-gialdi-user {
  display: block;
}
.shop .header .meta-menu a i.icon-gialdi-mail-strong, .shop .header .meta-menu a i.icon-gialdi-user-full {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media (min-width: 992px) {
  .shop .header .meta-menu a:hover {
    color: #BD9E55;
  }
  .shop .header .meta-menu a:hover i {
    /*&.icon-gialdi-mail, &.icon-gialdi-user {
        display:none;
    }*/
  }
  .shop .header .meta-menu a:hover i.icon-gialdi-mail-strong, .shop .header .meta-menu a:hover i.icon-gialdi-user-full {
    opacity: 1;
  }
}
.shop .header .meta-menu a.active {
  color: #BD9E55;
  font-weight: 700;
}
.shop .header .meta-menu a.active i {
  /*&.icon-gialdi-mail, &.icon-gialdi-user {
      display:none;
  }*/
}
.shop .header .meta-menu a.active i.icon-gialdi-mail-strong, .shop .header .meta-menu a.active i.icon-gialdi-user-full {
  opacity: 1;
}
.shop .header .meta-menu a.active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: calc(100% + 24px);
  height: 3px;
  background-color: #BD9E55;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.shop .header .meta-menu > a {
  margin-top: 6px;
}
@media (min-width: 992px) {
  .shop .header .meta-menu > a {
    margin-top: calc(6px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .meta-menu > a {
    margin-top: 6px;
  }
}
.shop .header .meta-menu > div {
  float: right;
  width: auto;
}
.shop .header .meta-menu > div > a {
  margin-right: 40px;
  margin-top: 6px;
}
@media (min-width: 992px) {
  .shop .header .meta-menu > div > a {
    margin-right: calc(40px + 0 * (100vw - 992px) / 608);
    margin-top: calc(6px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .meta-menu > div > a {
    margin-right: 40px;
    margin-top: 6px;
  }
}
.shop .header .meta-menu > div .header-lang {
  margin-top: -9px;
  margin-right: -18px;
}
@media (min-width: 992px) {
  .shop .header .meta-menu > div .header-lang {
    margin-top: calc(-9px + 0 * (100vw - 992px) / 608);
    margin-right: calc(-18px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .meta-menu > div .header-lang {
    margin-top: -9px;
    margin-right: -18px;
  }
}
.shop .header .meta-menu > div .header-lang ul li a {
  color: #BD9E55;
}
@media (min-width: 992px) {
  .shop .header .meta-menu > div .header-lang ul li a:hover {
    color: #FFFFFF;
  }
}
.shop .header .header-menu {
  position: relative;
  margin-top: 17px;
  justify-content: flex-start;
  z-index: 1;
}
@media (min-width: 992px) {
  .shop .header .header-menu {
    margin-top: calc(17px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu {
    margin-top: 17px;
  }
}
.shop .header .header-menu > ul {
  width: 100%;
}
.shop .header .header-menu > ul > li {
  width: auto;
  margin: 0 15px;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li {
    margin: 0 calc(15px + 9 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li {
    margin: 0 24px;
  }
}
.shop .header .header-menu > ul > li:first-child {
  margin-left: 0 !important;
}
.shop .header .header-menu > ul > li:last-child {
  margin-right: 0 !important;
}
.shop .header .header-menu > ul > li > a {
  padding: 5px 0;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
}
.shop .header .header-menu > ul > li > a:after {
  content: none;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li > a {
    padding: calc(5px + 0 * (100vw - 992px) / 608) 0;
    font-size: calc(14px + 0 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li > a {
    padding: 5px 0;
    font-size: 14px;
  }
}
.shop .header .header-menu > ul > li.shop {
  position: relative;
  float: right;
}
.shop .header .header-menu > ul > li.shop > a {
  position: relative;
  padding: 5px 0;
  color: #BD9E55;
  background-color: transparent;
  z-index: 1;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop > a {
    padding: calc(5px + 0 * (100vw - 992px) / 608) 0;
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li.shop > a {
    padding: 5px 0;
  }
}
.shop .header .header-menu > ul > li.shop > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 15px;
  background-color: #1A171B;
  z-index: 1;
}
.shop .header .header-menu > ul > li.shop > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: #DAC9A1;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  z-index: 2;
}
.shop .header .header-menu > ul > li.shop > a > span {
  position: absolute;
  left: 12px;
  top: -8px;
  width: 26px;
  height: 26px;
  font-size: 11px;
  line-height: 25px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  background-color: #FF0000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}
@media (min-width: 360px) {
  .shop .header .header-menu > ul > li.shop > a > span {
    left: calc(12px + 0 * (100vw - 360px) / 1240);
    top: calc(-8px + 0 * (100vw - 360px) / 1240);
    width: calc(26px + 0 * (100vw - 360px) / 1240);
    height: calc(26px + 0 * (100vw - 360px) / 1240);
    font-size: calc(11px + 0 * (100vw - 360px) / 1240);
    line-height: calc(25px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li.shop > a > span {
    left: 12px;
    top: -8px;
    width: 26px;
    height: 26px;
    font-size: 11px;
    line-height: 25px;
  }
}
.shop .header .header-menu > ul > li.shop > a i {
  margin-right: 10px;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop > a i {
    margin-right: calc(10px + 2 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li.shop > a i {
    margin-right: 12px;
  }
}
.shop .header .header-menu > ul > li.shop > a i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -2px;
  font-size: 26px;
  line-height: 26px;
  color: #BD9E55;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop > a i:before {
    margin-top: calc(-2px - 1 * (100vw - 992px) / 608);
    font-size: calc(26px + 4 * (100vw - 992px) / 608);
    line-height: calc(26px + 4 * (100vw - 992px) / 608);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li.shop > a i:before {
    margin-top: -3px;
    font-size: 30px;
    line-height: 30px;
  }
}
.shop .header .header-menu > ul > li.shop > a i.icon-gialdi-shop {
  display: block;
}
.shop .header .header-menu > ul > li.shop > a i.icon-gialdi-shop-full {
  position: absolute;
  left: 0;
  top: 4px;
  opacity: 0;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop > a:hover {
    background-color: transparent;
  }
  .shop .header .header-menu > ul > li.shop > a:hover i {
    /*&.icon-gialdi-shop {
        display:none;
    }*/
  }
  .shop .header .header-menu > ul > li.shop > a:hover i.icon-gialdi-shop-full {
    opacity: 1;
  }
  .shop .header .header-menu > ul > li.shop > a:hover i:before {
    color: #DAC9A1;
  }
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart {
  position: absolute;
  right: -9999px;
  top: calc(100% + 8px);
  width: 430px;
  padding: 32px 24px 26px 24px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  z-index: 2;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content {
  float: left;
  width: 100%;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content h5, .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .h5 {
  font-size: 16px;
  line-height: 20px;
  color: #BD9E55;
  text-transform: inherit;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (min-width: 360px) {
  .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content h5, .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .h5 {
    font-size: calc(16px + 2 * (100vw - 360px) / 1240);
    line-height: calc(20px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content h5, .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .h5 {
    font-size: 18px;
    line-height: 22px;
  }
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list {
  position: relative;
  float: left;
  width: 100%;
  max-height: 332px;
  margin-top: 18px;
  border-top: 1px solid #C5C5C5;
  overflow: auto;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li {
  position: relative;
  padding: 18px 0 25px 0;
  margin: 0;
  border-bottom: 1px solid #C5C5C5;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  z-index: 1;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > img {
  width: 44px;
  height: auto;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div {
  float: left;
  width: calc(100% - 44px);
  padding: 0 52px 0 36px;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .brand {
  font-size: 12px;
  line-height: 16px;
  color: #BD9E55;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
  font-weight: 400;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div h6, .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .h6 {
  font-size: 20px;
  line-height: 26px;
  color: #BD9E55;
  text-transform: inherit;
  font-family: "Crimson Text", serif;
  font-weight: 700;
}
@media (min-width: 360px) {
  .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div h6, .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .h6 {
    font-size: calc(20px + 2 * (100vw - 360px) / 1240);
    line-height: calc(26px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div h6, .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .h6 {
    font-size: 22px;
    line-height: 28px;
  }
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .detail {
  font-size: 13px;
  line-height: 16px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .quantity {
  display: block;
  float: left;
  width: 100%;
  margin-top: 12px;
  font-size: 13px;
  line-height: 16px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: left;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .amount {
  display: block;
  float: left;
  width: 100%;
  margin-top: 6px;
  font-size: 16px;
  line-height: 20px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: left;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a > div .amount > span {
  font-weight: 400;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 20px;
  height: 20px;
  padding: 0;
  z-index: 2;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove i {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  color: #C5C5C5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove:hover i {
    color: #2D2D2D;
  }
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .total {
  display: flex;
  width: 100%;
  margin-top: 20px;
  font-size: 18px;
  line-height: 22px;
  color: #BD9E55;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: left;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .total span {
  text-align: right;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .total span > span {
  font-weight: 400;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .buttons {
  float: left;
  width: 100%;
  margin-top: 6px;
}
.shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .buttons .btn {
  width: 100%;
  margin-top: 14px;
  text-align: center;
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop .widget_shopping_cart .widget_shopping_cart_content .buttons .btn:hover {
    color: #FFFFFF;
  }
}
@media (min-width: 992px) {
  .shop .header .header-menu > ul > li.shop:hover > a:after {
    opacity: 1;
  }
  .shop .header .header-menu > ul > li.shop:hover > a i {
    /*&.icon-gialdi-shop {
        display:none;
    }*/
  }
  .shop .header .header-menu > ul > li.shop:hover > a i.icon-gialdi-shop-full {
    opacity: 1;
  }
  .shop .header .header-menu > ul > li.shop:hover > a i:before {
    color: #DAC9A1;
  }
  .shop .header .header-menu > ul > li.shop:hover .widget_shopping_cart {
    right: 0;
    opacity: 1;
  }
}
.shop .header .header-menu > ul > li.active > a {
  color: #BD9E55;
}
.shop .header .header-menu > ul > li.active.shop > a i.icon-gialdi-shop {
  display: none;
}
.shop .header .header-menu > ul > li.active.shop > a i.icon-gialdi-shop-full {
  display: block;
}
.shop .footer .footer-menu ul li {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .shop .footer .footer-menu ul li {
    margin-top: 28px;
  }
}
.shop .footer .footer-menu ul li a {
  text-transform: inherit;
}
.shop .footer .footer-menu ul li a i {
  color: #BD9E55;
  margin-right: 10px;
}
@media (min-width: 360px) {
  .shop .footer .footer-menu ul li a i {
    margin-right: calc(10px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop .footer .footer-menu ul li a i {
    margin-right: 12px;
  }
}
.shop .section-title {
  margin-top: 26px !important;
}
@media (min-width: 360px) {
  .shop .section-title {
    margin-top: calc(26px + 10 * (100vw - 360px) / 1240) !important;
  }
}
@media (min-width: 1600px) {
  .shop .section-title {
    margin-top: 26px !important;
  }
}
.shop .section-title .breadcrumb {
  margin-bottom: 12px !important;
}
@media (min-width: 360px) {
  .shop .section-title .breadcrumb {
    margin-bottom: calc(12px + 4 * (100vw - 360px) / 1240) !important;
  }
}
@media (min-width: 1600px) {
  .shop .section-title .breadcrumb {
    margin-bottom: 16px !important;
  }
}
.shop .section-title .breadcrumb ul li {
  margin-right: 10px;
  padding-right: 10px;
}
.shop .section-title .breadcrumb ul li:after {
  right: -2px;
  font-size: 14px;
  line-height: 18px;
  text-transform: inherit;
  font-family: "Montserrat", sans-serif;
  color: #BD9E55;
}
.shop .section-title .breadcrumb ul li a, .shop .section-title .breadcrumb ul li span {
  font-size: 14px;
  line-height: 18px;
  text-transform: inherit;
  font-family: "Montserrat", sans-serif;
}
.shop .section-title .breadcrumb ul li a {
  color: #BD9E55;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop .section-title .breadcrumb ul li a:hover {
    color: #707070;
  }
}
.shop .section-title .breadcrumb ul li span {
  color: #707070;
}

.hero-shop {
  margin-top: 0 !important;
  background: rgb(218, 201, 161);
  background: -moz-linear-gradient(72deg, rgb(218, 201, 161) 0%, rgb(189, 158, 85) 100%);
  background: -webkit-linear-gradient(72deg, rgb(218, 201, 161) 0%, rgb(189, 158, 85) 100%);
  background: linear-gradient(72deg, rgb(218, 201, 161) 0%, rgb(189, 158, 85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dac9a1",endColorstr="#bd9e55",GradientType=1);
}
.hero-shop .hero-shop-slider {
  position: relative;
  float: left;
  width: 100%;
}
.hero-shop .hero-shop-slider .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hero-shop .hero-shop-slider .hero-shop-content > *:first-child {
  margin-top: 0 !important;
}
.hero-shop .hero-shop-slider .hero-shop-content p {
  margin-top: 28px;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .hero-shop-content p {
    margin-top: calc(28px + 0 * (100vw - 360px) / 1240);
    font-size: calc(24px + 0 * (100vw - 360px) / 1240);
    line-height: calc(28px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .hero-shop-content p {
    margin-top: 28px;
    font-size: 24px;
    line-height: 28px;
  }
}
.hero-shop .hero-shop-slider .hero-shop-content p em {
  text-transform: inherit;
  font-style: normal;
}
.hero-shop .hero-shop-slider .hero-shop-content p.note {
  margin-top: 90px;
  font-size: 16px;
  line-height: 20px;
  text-transform: inherit;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .hero-shop-content p.note {
    margin-top: calc(90px + 0 * (100vw - 360px) / 1240);
    font-size: calc(16px + 0 * (100vw - 360px) / 1240);
    line-height: calc(20px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .hero-shop-content p.note {
    margin-top: 90px;
    font-size: 16px;
    line-height: 20px;
  }
}
.hero-shop .hero-shop-slider .hero-shop-content h1, .hero-shop .hero-shop-slider .hero-shop-content .h1, .hero-shop .hero-shop-slider .hero-shop-content h2, .hero-shop .hero-shop-slider .hero-shop-content .h2 {
  margin-top: 28px;
  font-size: 58px;
  line-height: 70px;
  color: #FFFFFF;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  text-transform: inherit;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .hero-shop-content h1, .hero-shop .hero-shop-slider .hero-shop-content .h1, .hero-shop .hero-shop-slider .hero-shop-content h2, .hero-shop .hero-shop-slider .hero-shop-content .h2 {
    margin-top: calc(28px + 0 * (100vw - 360px) / 1240);
    font-size: calc(58px + 0 * (100vw - 360px) / 1240);
    line-height: calc(70px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .hero-shop-content h1, .hero-shop .hero-shop-slider .hero-shop-content .h1, .hero-shop .hero-shop-slider .hero-shop-content h2, .hero-shop .hero-shop-slider .hero-shop-content .h2 {
    margin-top: 28px;
    font-size: 58px;
    line-height: 70px;
  }
}
.hero-shop .hero-shop-slider .hero-shop-content .btn {
  margin-top: 42px;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .hero-shop-content .btn {
    margin-top: calc(42px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .hero-shop-content .btn {
    margin-top: 42px;
  }
}
.hero-shop .hero-shop-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: 0 none;
  font-size: 38px;
  line-height: 38px;
  color: #FFFFFF;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.hero-shop .hero-shop-slider .slick-arrow.slick-prev {
  left: 260px;
}
.hero-shop .hero-shop-slider .slick-arrow.slick-next {
  right: 260px;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .slick-arrow {
    width: calc(38px + 0 * (100vw - 360px) / 1240);
    height: calc(38px + 0 * (100vw - 360px) / 1240);
    font-size: calc(38px + 0 * (100vw - 360px) / 1240);
    line-height: calc(38px + 0 * (100vw - 360px) / 1240);
  }
  .hero-shop .hero-shop-slider .slick-arrow.slick-prev {
    left: calc(260px + 0 * (100vw - 360px) / 1240);
  }
  .hero-shop .hero-shop-slider .slick-arrow.slick-next {
    right: calc(260px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .slick-arrow {
    width: 38px;
    height: 38px;
    font-size: 38px;
    line-height: 38px;
  }
  .hero-shop .hero-shop-slider .slick-arrow.slick-prev {
    left: 260px;
  }
  .hero-shop .hero-shop-slider .slick-arrow.slick-next {
    right: 260px;
  }
}
.hero-shop .hero-shop-slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 33px;
  width: auto;
  height: 24px;
  font-size: 0px;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .slick-dots {
    bottom: calc(33px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .slick-dots {
    bottom: 33px;
  }
}
.hero-shop .hero-shop-slider .slick-dots li {
  display: inline-block;
  float: none;
  width: auto;
  margin: 0 3px;
}
@media (min-width: 360px) {
  .hero-shop .hero-shop-slider .slick-dots li {
    margin: 0 calc(3px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .hero-shop .hero-shop-slider .slick-dots li {
    margin: 0 13px;
  }
}
.hero-shop .hero-shop-slider .slick-dots li button {
  position: relative;
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0 none;
  text-indent: -9999px;
  background-color: transparent;
  cursor: pointer;
}
.hero-shop .hero-shop-slider .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  opacity: 0;
  z-index: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.hero-shop .hero-shop-slider .slick-dots li button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .hero-shop .hero-shop-slider .slick-dots li button:hover:after {
    background-color: #FFFFFF;
  }
}
.hero-shop .hero-shop-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.hero-shop .hero-shop-slider .slick-dots li.slick-active button:after {
  background-color: #FFFFFF;
}

.brand-selection {
  display: block;
  float: right;
  width: 100%;
  text-align: center;
  font-size: 0;
}
.brand-selection img {
  display: inline-block;
  float: none;
  height: 96px;
  width: auto;
}
.brand-selection span {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding: 17px 70px 13px 20px;
  margin-top: 36px;
  font-size: 16px;
  line-height: 26px;
  color: #BD9E55;
  text-align: left;
  background-color: #F8F4ED;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .brand-selection span {
    padding: calc(17px + 0 * (100vw - 360px) / 1240) calc(70px + 0 * (100vw - 360px) / 1240) calc(13px + 0 * (100vw - 360px) / 1240) calc(20px + 0 * (100vw - 360px) / 1240);
    margin-top: calc(36px + 0 * (100vw - 360px) / 1240);
    font-size: calc(16px + 0 * (100vw - 360px) / 1240);
    line-height: calc(26px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .brand-selection span {
    padding: 17px 70px 13px 20px;
    margin-top: 36px;
    font-size: 16px;
    line-height: 26px;
  }
}
.brand-selection span:after {
  content: "\e902";
  position: absolute;
  right: 32px;
  top: 50%;
  width: 22px;
  height: 22px;
  font-size: 22px;
  line-height: 22px;
  color: #BD9E55;
  font-family: "icomoon" !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .brand-selection span:after {
    width: calc(22px + 0 * (100vw - 360px) / 1240);
    height: calc(22px + 0 * (100vw - 360px) / 1240);
    font-size: calc(22px + 0 * (100vw - 360px) / 1240);
    line-height: calc(22px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .brand-selection span:after {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .brand-selection {
    max-width: 300px;
  }
  .brand-selection:hover span {
    color: #FFFFFF;
    background-color: #DEC68D;
  }
  .brand-selection:hover span:after {
    color: #FFFFFF;
  }
}

.shop-slider {
  display: none;
  float: left;
  width: calc(100% + 28px);
  margin-left: -14px;
  margin-right: -14px;
  margin-top: 45px;
}
@media (min-width: 360px) {
  .shop-slider {
    margin-top: calc(45px + 45 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-slider {
    margin-top: 90px;
  }
}
.shop-slider.mt-small {
  margin-top: 18px;
}
@media (min-width: 360px) {
  .shop-slider.mt-small {
    margin-top: calc(18px + 2 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-slider.mt-small {
    margin-top: 20px;
  }
}
.shop-slider.slick-initialized {
  display: block;
}
.shop-slider .slick-slide {
  padding: 0 14px;
}
.shop-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: 0 none;
  font-size: 38px;
  line-height: 38px;
  color: #BD9E55;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.shop-slider .slick-arrow.slick-prev {
  left: -60px;
}
.shop-slider .slick-arrow.slick-next {
  right: -60px;
}
@media (min-width: 360px) {
  .shop-slider .slick-arrow {
    width: calc(38px + 0 * (100vw - 360px) / 1240);
    height: calc(38px + 0 * (100vw - 360px) / 1240);
    font-size: calc(38px + 0 * (100vw - 360px) / 1240);
    line-height: calc(38px + 0 * (100vw - 360px) / 1240);
  }
  .shop-slider .slick-arrow.slick-prev {
    left: calc(-60px + 0 * (100vw - 360px) / 1240);
  }
  .shop-slider .slick-arrow.slick-next {
    right: calc(-60px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-slider .slick-arrow {
    width: 38px;
    height: 38px;
    font-size: 38px;
    line-height: 38px;
  }
  .shop-slider .slick-arrow.slick-prev {
    left: -60px;
  }
  .shop-slider .slick-arrow.slick-next {
    right: -60px;
  }
}
.shop-slider .slick-dots {
  display: block;
  float: left;
  width: 100%;
  height: 24px;
  margin-top: 32px;
  font-size: 0px;
  text-align: center;
  z-index: 2;
}
@media (min-width: 360px) {
  .shop-slider .slick-dots {
    margin-top: calc(32px + 30 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-slider .slick-dots {
    margin-top: 62px;
  }
}
.shop-slider .slick-dots li {
  display: inline-block;
  float: none;
  width: auto;
  margin: 0 3px;
}
@media (min-width: 360px) {
  .shop-slider .slick-dots li {
    margin: 0 calc(3px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-slider .slick-dots li {
    margin: 0 13px;
  }
}
.shop-slider .slick-dots li button {
  position: relative;
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0 none;
  text-indent: -9999px;
  background-color: transparent;
  cursor: pointer;
}
.shop-slider .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #BD9E55;
  opacity: 0;
  z-index: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.shop-slider .slick-dots li button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: rgba(218, 201, 161, 0.8);
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .shop-slider .slick-dots li button:hover:after {
    background-color: #BD9E55;
  }
}
.shop-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.shop-slider .slick-dots li.slick-active button:after {
  background-color: #BD9E55;
}

.shop-product {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding: 0 26px;
  text-align: center;
}
@media (min-width: 360px) {
  .shop-product {
    padding: 0 calc(26px + 10 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product {
    padding: 0 36px;
  }
}
.shop-product:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 100%;
  height: calc(100% - 178px);
  background-color: #FFFFFF;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  z-index: 1;
}
@media (min-width: 360px) {
  .shop-product:before {
    bottom: calc(28px + 0 * (100vw - 360px) / 1240);
    height: calc(100% - (178px + 0 * (100vw - 360px) / 1240));
  }
}
@media (min-width: 1600px) {
  .shop-product:before {
    bottom: 28px;
    height: calc(100% - 178px);
  }
}
.shop-product > .promo {
  position: absolute;
  right: 55px;
  top: 150px;
  width: 92px;
  height: 92px;
  font-size: 20px;
  line-height: 92px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  background-color: #FF0000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}
.shop-product > .promo:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 360px) {
  .shop-product > .promo {
    right: calc(55px + 0 * (100vw - 360px) / 1240);
    top: calc(150px + 0 * (100vw - 360px) / 1240);
    width: calc(92px + 0 * (100vw - 360px) / 1240);
    height: calc(92px + 0 * (100vw - 360px) / 1240);
    font-size: calc(20px + 0 * (100vw - 360px) / 1240);
    line-height: calc(92px + 0 * (100vw - 360px) / 1240);
  }
  .shop-product > .promo:before {
    width: calc(80px + 0 * (100vw - 360px) / 1240);
    height: calc(80px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > .promo {
    right: 55px;
    top: 150px;
    width: 92px;
    height: 92px;
    font-size: 20px;
    line-height: 92px;
  }
  .shop-product > .promo:before {
    width: 80px;
    height: 80px;
  }
}
.shop-product > img {
  position: relative;
  display: inline-block;
  float: none;
  height: 320px;
  width: auto;
  z-index: 2;
}
@media (min-width: 360px) {
  .shop-product > img {
    height: calc(320px + 180 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > img {
    height: 500px;
  }
}
.shop-product > div {
  position: relative;
  float: left;
  width: 100%;
  margin-top: 14px;
  z-index: 2;
}
@media (min-width: 360px) {
  .shop-product > div {
    margin-top: calc(14px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div {
    margin-top: 14px;
  }
}
.shop-product > div p {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #707070;
}
@media (min-width: 360px) {
  .shop-product > div p {
    font-size: calc(14px + 0 * (100vw - 360px) / 1240);
    line-height: calc(18px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div p {
    font-size: 14px;
    line-height: 18px;
  }
}
.shop-product > div p.brand {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  text-transform: uppercase;
}
.shop-product > div p.capacity {
  margin-top: 14px;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 360px) {
  .shop-product > div p.capacity {
    margin-top: calc(14px + 0 * (100vw - 360px) / 1240);
    font-size: calc(18px + 0 * (100vw - 360px) / 1240);
    line-height: calc(22px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div p.capacity {
    margin-top: 14px;
    font-size: 18px;
    line-height: 22px;
  }
}
.shop-product > div h4, .shop-product > div .h4 {
  margin-top: 14px;
  font-size: 32px;
  line-height: 34px;
  text-transform: inherit;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 360px) {
  .shop-product > div h4, .shop-product > div .h4 {
    margin-top: calc(14px + 0 * (100vw - 360px) / 1240);
    font-size: calc(32px + 0 * (100vw - 360px) / 1240);
    line-height: calc(34px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div h4, .shop-product > div .h4 {
    margin-top: 14px;
    font-size: 32px;
    line-height: 34px;
  }
}
.shop-product > div .price {
  float: left;
  width: calc(100% + 6px);
  text-align: center;
  font-size: 0;
  margin-left: -3px;
  margin-right: -3px;
  margin-top: 14px;
}
@media (min-width: 360px) {
  .shop-product > div .price {
    margin-top: calc(14px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div .price {
    margin-top: 14px;
  }
}
.shop-product > div .price p {
  display: inline-block;
  float: none;
  width: auto;
  margin: 0 12px;
  font-size: 14px;
  line-height: 34px;
  color: #BD9E55;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 360px) {
  .shop-product > div .price p {
    margin: 0 calc(12px + 0 * (100vw - 360px) / 1240);
    font-size: calc(14px + 0 * (100vw - 360px) / 1240);
    line-height: calc(34px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div .price p {
    margin: 0 12px;
    font-size: 14px;
    line-height: 34px;
  }
}
.shop-product > div .price p strong {
  font-size: 28px;
  font-weight: 700;
}
@media (min-width: 360px) {
  .shop-product > div .price p strong {
    font-size: calc(28px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div .price p strong {
    font-size: 28px;
  }
}
.shop-product > div .price p.full {
  text-decoration-line: line-through;
}
.shop-product > div .btn {
  width: 100%;
  margin-top: 26px;
}
@media (min-width: 360px) {
  .shop-product > div .btn {
    margin-top: calc(26px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-product > div .btn {
    margin-top: 26px;
  }
}

.shop-list {
  margin-top: -30px;
}
@media (min-width: 360px) {
  .shop-list {
    margin-top: calc(-30px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-list {
    margin-top: -34px;
  }
}
.shop-list .shop-product {
  margin-top: 30px;
}
@media (min-width: 360px) {
  .shop-list .shop-product {
    margin-top: calc(30px + 4 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .shop-list .shop-product {
    margin-top: 34px;
  }
}

.side-filter {
  float: left;
  width: 100%;
  margin-top: 150px;
  padding: 38px 30px 46px 30px;
  background-color: #FFFFFF;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
}
@media (min-width: 360px) {
  .side-filter {
    margin-top: calc(150px + 0 * (100vw - 360px) / 1240);
    padding: calc(38px + 0 * (100vw - 360px) / 1240) calc(30px + 0 * (100vw - 360px) / 1240) calc(46px + 0 * (100vw - 360px) / 1240) calc(30px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .side-filter {
    margin-top: 150px;
    padding: 38px 30px 46px 30px;
  }
}
.side-filter > div {
  float: left;
  width: 100%;
  margin: 50px 0 0 0;
}
@media (min-width: 360px) {
  .side-filter > div {
    margin: calc(50px + 0 * (100vw - 360px) / 1240) 0 0 0;
  }
}
@media (min-width: 1600px) {
  .side-filter > div {
    margin: 50px 0 0 0;
  }
}
.side-filter > div:first-child {
  margin-top: 0 !important;
}
.side-filter > div.promo {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #C5C5C5;
}
@media (min-width: 360px) {
  .side-filter > div.promo {
    margin-top: calc(35px + 0 * (100vw - 360px) / 1240);
    padding-top: calc(20px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .side-filter > div.promo {
    margin-top: 35px;
    padding-top: 20px;
  }
}
.side-filter > div span {
  font-size: 22px;
  line-height: 28px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  .side-filter > div span {
    font-size: calc(22px + 0 * (100vw - 360px) / 1240);
    line-height: calc(28px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .side-filter > div span {
    font-size: 22px;
    line-height: 28px;
  }
}
.side-filter > div ul {
  margin-top: -5px;
}
@media (min-width: 360px) {
  .side-filter > div ul {
    margin-top: calc(-5px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .side-filter > div ul {
    margin-top: -5px;
  }
}
.side-filter > div ul li {
  margin-top: 20px;
}
@media (min-width: 360px) {
  .side-filter > div ul li {
    margin-top: calc(20px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .side-filter > div ul li {
    margin-top: 20px;
  }
}
.side-filter > div ul li a {
  position: relative;
  display: block;
  float: left;
  width: auto;
  padding: 2px 0 2px 44px;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  color: #707070;
  text-transform: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.side-filter > div ul li a span {
  color: #BD9E55;
  font-size: 22px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .side-filter > div ul li a:hover {
    color: #DEC68D;
  }
  .side-filter > div ul li a:hover span {
    color: #DEC68D;
  }
}
.side-filter > div ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.side-filter > div ul li a:after {
  content: "\e90d";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12x;
  font-size: 12px;
  line-height: 12px;
  font-family: "icomoon" !important;
  color: #FFFFFF;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.side-filter > div ul li a.active:before {
  border: 1px solid #BD9E55;
  background-color: #BD9E55;
}
.side-filter > div ul li a.active:after {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.wine-detail .wine-article {
  display: block;
  float: left;
  width: 100%;
  text-align: left;
}
.wine-detail .wine-article p.brand {
  font-size: 18px;
  line-height: 24px;
  font-family: "Crimson Text", serif;
  color: #BD9E55;
  text-transform: uppercase;
}
@media (min-width: 360px) {
  .wine-detail .wine-article p.brand {
    font-size: calc(18px + 0 * (100vw - 360px) / 1240);
    line-height: calc(24px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article p.brand {
    font-size: 18px;
    line-height: 24px;
  }
}
.wine-detail .wine-article p.detail {
  margin-top: 6px;
  font-size: 24px;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  color: #707070;
  font-weight: 400;
}
@media (min-width: 360px) {
  .wine-detail .wine-article p.detail {
    margin-top: calc(6px + 0 * (100vw - 360px) / 1240);
    font-size: calc(24px + 0 * (100vw - 360px) / 1240);
    line-height: calc(30px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article p.detail {
    margin-top: 6px;
    font-size: 24px;
    line-height: 30px;
  }
}
.wine-detail .wine-article p.capacity {
  margin-top: 30px;
  font-size: 32px;
  line-height: 38px;
  font-family: "Montserrat", sans-serif;
  color: #707070;
  font-weight: 400;
}
@media (min-width: 360px) {
  .wine-detail .wine-article p.capacity {
    margin-top: calc(30px + 0 * (100vw - 360px) / 1240);
    font-size: calc(32px + 0 * (100vw - 360px) / 1240);
    line-height: calc(38px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article p.capacity {
    margin-top: 30px;
    font-size: 32px;
    line-height: 38px;
  }
}
.wine-detail .wine-article p.capacity strong {
  font-weight: 700;
}
.wine-detail .wine-article h1, .wine-detail .wine-article .h1 {
  margin-top: 24px;
  line-height: 48px;
  text-align: left;
  text-transform: inherit;
  font-weight: 700;
}
@media (min-width: 360px) {
  .wine-detail .wine-article h1, .wine-detail .wine-article .h1 {
    margin-top: calc(24px + 0 * (100vw - 360px) / 1240);
    line-height: calc(48px + 20 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article h1, .wine-detail .wine-article .h1 {
    margin-top: 24px;
    line-height: 68px;
  }
}
.wine-detail .wine-article h2, .wine-detail .wine-article .h2 {
  margin-top: 36px;
  font-size: 22px;
  line-height: 32px;
  text-align: left;
}
@media (min-width: 360px) {
  .wine-detail .wine-article h2, .wine-detail .wine-article .h2 {
    margin-top: calc(36px + 0 * (100vw - 360px) / 1240);
    font-size: calc(22px + 0 * (100vw - 360px) / 1240);
    line-height: calc(32px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article h2, .wine-detail .wine-article .h2 {
    margin-top: 36px;
    font-size: 22px;
    line-height: 32px;
  }
}
.wine-detail .wine-article .info {
  float: left;
  width: 100%;
  padding: 26px;
  margin-top: 32px;
  background-color: #F8F4ED;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .info {
    padding: calc(26px + 0 * (100vw - 360px) / 1240);
    margin-top: calc(32px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .info {
    padding: 26px;
    margin-top: 32px;
    -webkit-border-radius: calc(20px + 0 * (100vw - 360px) / 1240);
    -moz-border-radius: calc(20px + 0 * (100vw - 360px) / 1240);
    -o-border-radius: calc(20px + 0 * (100vw - 360px) / 1240);
    -ms-border-radius: calc(20px + 0 * (100vw - 360px) / 1240);
    border-radius: calc(20px + 0 * (100vw - 360px) / 1240);
  }
}
.wine-detail .wine-article .info > div {
  position: relative;
  float: left;
  width: auto;
  margin-left: 65px;
  margin-top: 10px;
  padding-left: 45px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .info > div {
    margin-left: calc(65px + 0 * (100vw - 360px) / 1240);
    margin-top: calc(10px + 0 * (100vw - 360px) / 1240);
    padding-left: calc(45px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .info > div {
    margin-left: 65px;
    margin-top: 10px;
    padding-left: 45px;
  }
}
.wine-detail .wine-article .info > div:first-child {
  margin-left: 0;
}
.wine-detail .wine-article .info > div i {
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 30px;
  color: #BD9E55;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .info > div i {
    top: calc(2px + 0 * (100vw - 360px) / 1240);
    width: calc(30px + 0 * (100vw - 360px) / 1240);
    height: calc(30px + 0 * (100vw - 360px) / 1240);
    font-size: calc(30px + 0 * (100vw - 360px) / 1240);
    line-height: calc(30px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .info > div i {
    top: 2px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
  }
}
.wine-detail .wine-article .info > div p {
  font-size: 16px;
  line-height: 18px;
}
.wine-detail .wine-article .info > div p strong {
  font-size: 14px;
  text-transform: uppercase;
}
.wine-detail .wine-article .price {
  float: left;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .price {
    margin-top: calc(24px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .price {
    margin-top: 24px;
  }
}
.wine-detail .wine-article .price p {
  width: auto;
  font-size: 18px;
  line-height: 72px;
  color: #BD9E55;
  font-weight: 400;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .price p {
    font-size: calc(18px + 0 * (100vw - 360px) / 1240);
    line-height: calc(72px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .price p {
    font-size: 18px;
    line-height: 72px;
  }
}
.wine-detail .wine-article .price p strong {
  font-size: 60px;
  font-weight: 700;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .price p strong {
    font-size: calc(60px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .price p strong {
    font-size: 60px;
  }
}
.wine-detail .wine-article .product {
  float: left;
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .product {
    margin-top: calc(40px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .product {
    margin-top: 40px;
  }
}
.wine-detail .wine-article .product fieldset > div {
  margin-top: 45px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .product fieldset > div {
    margin-top: calc(45px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .product fieldset > div {
    margin-top: 45px;
  }
}
.wine-detail .wine-article .product fieldset > div:first-child {
  margin-top: 0;
}
.wine-detail .wine-article .product .quantity {
  float: left;
  width: auto;
  margin-right: 52px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .product .quantity {
    margin-right: calc(52px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .product .quantity {
    margin-right: 52px;
  }
}
.wine-detail .wine-article .product .other-capacity {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wine-detail .wine-article .product .other-capacity p {
  width: auto;
  margin-right: 32px;
  font-size: 15px;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .product .other-capacity p {
    margin-right: calc(32px + 0 * (100vw - 360px) / 1240);
    font-size: calc(15px + 3 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .product .other-capacity p {
    margin-right: 32px;
    font-size: 18px;
  }
}
.wine-detail .wine-article .product .other-capacity ul {
  width: auto;
  border: 1px solid #E8E3D7;
}
.wine-detail .wine-article .product .other-capacity ul li {
  width: 120px;
  border-right: 1px solid #E8E3D7;
}
.wine-detail .wine-article .product .other-capacity ul li:last-child {
  border-right: 0 none;
}
@media (min-width: 360px) {
  .wine-detail .wine-article .product .other-capacity ul li {
    width: calc(120px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-article .product .other-capacity ul li {
    width: 120px;
  }
}
.wine-detail .wine-article .product .other-capacity ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 13px 12px 11px 12px;
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: #707070;
  text-transform: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .wine-detail .wine-article .product .other-capacity ul li a:hover {
    background-color: rgba(218, 201, 161, 0.8);
  }
}
.wine-detail .wine-detail-image {
  float: left;
  width: 100%;
}
@media (min-width: 768px) {
  .wine-detail .wine-detail-image {
    padding-top: calc(30px + 30 * (100vw - 768px) / 832);
    padding-left: calc(10px + 60 * (100vw - 768px) / 832);
    padding-right: calc(10px + 40 * (100vw - 768px) / 832);
  }
}
@media (min-width: 1600px) {
  .wine-detail .wine-detail-image {
    padding-top: 60px;
    padding-left: 70px;
    padding-right: 50px;
  }
}

.input-quantity input {
  display: block;
  float: left;
  width: 90px;
  height: 64px;
  padding: 15px;
  margin: 0;
  border: 1px solid transparent !important;
  background-color: transparent;
  font-size: 32px;
  line-height: 34px;
  color: #BD9E55;
  text-align: center;
  outline: none;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  -o-appearance: textfield;
  -ms-appearance: textfield;
  appearance: textfield;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -o-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  border-radius: 0px !important;
}
.input-quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.input-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.input-quantity input:focus {
  border: 1px solid #DAC9A1 !important;
}
@media (min-width: 360px) {
  .input-quantity input {
    width: calc(90px + 0 * (100vw - 360px) / 1240);
    height: calc(64px + 0 * (100vw - 360px) / 1240);
    font-size: calc(32px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .input-quantity input {
    width: 90px;
    height: 64px;
    font-size: 32px;
  }
}
.input-quantity > .sub, .input-quantity > .add {
  position: relative;
  display: block;
  float: left;
  width: 50px;
  height: 64px;
  background-color: #F8F4ED;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.input-quantity > .sub i, .input-quantity > .add i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  color: #BD9E55;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .input-quantity > .sub, .input-quantity > .add {
    width: calc(50px + 0 * (100vw - 360px) / 1240);
    height: calc(64px + 0 * (100vw - 360px) / 1240);
  }
  .input-quantity > .sub i, .input-quantity > .add i {
    width: calc(14px + 0 * (100vw - 360px) / 1240);
    height: calc(14px + 0 * (100vw - 360px) / 1240);
    font-size: calc(14px + 0 * (100vw - 360px) / 1240);
    line-height: calc(14px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .input-quantity > .sub:hover, .input-quantity > .add:hover {
    background-color: #DAC9A1;
  }
  .input-quantity > .sub:hover i, .input-quantity > .add:hover i {
    color: #FFFFFF;
  }
}
@media (min-width: 1600px) {
  .input-quantity > .sub, .input-quantity > .add {
    width: 50px;
    height: 64px;
  }
  .input-quantity > .sub i, .input-quantity > .add i {
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 14px;
  }
}
.input-quantity > .sub {
  -webkit-border-top-left-radius: 10px;
  -moz-border-top-left-radius: 10px;
  -o-border-top-left-radius: 10px;
  -ms-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-bottom-left-radius: 10px;
  -o-border-bottom-left-radius: 10px;
  -ms-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.input-quantity > .add {
  -webkit-border-top-right-radius: 10px;
  -moz-border-top-right-radius: 10px;
  -o-border-top-right-radius: 10px;
  -ms-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-bottom-right-radius: 10px;
  -o-border-bottom-right-radius: 10px;
  -ms-border-bottom-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.accordion-component {
  position: relative;
  float: left;
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 360px) {
  .accordion-component {
    margin-top: calc(48px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .accordion-component {
    margin-top: 48px;
  }
}
.accordion-component:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #C5C5C5;
}
.accordion-component > div {
  position: relative;
  float: left;
  width: 100%;
  padding: 26px 0;
  border-bottom: 1px solid #C5C5C5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .accordion-component > div {
    padding: calc(26px + 0 * (100vw - 360px) / 1240) 0;
  }
}
@media (min-width: 1600px) {
  .accordion-component > div {
    padding: 26px 0;
  }
}
.accordion-component > div .accordion-title {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding-right: 30px;
  font-size: 22px;
  line-height: 28px;
  color: #707070;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .accordion-component > div .accordion-title {
    padding-right: calc(30px + 0 * (100vw - 360px) / 1240);
    font-size: calc(22px + 0 * (100vw - 360px) / 1240);
    line-height: calc(28px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 992px) {
  .accordion-component > div .accordion-title:hover {
    color: #2D2D2D;
  }
}
@media (min-width: 1600px) {
  .accordion-component > div .accordion-title {
    padding-right: 30px;
    font-size: 22px;
    line-height: 28px;
  }
}
.accordion-component > div .accordion-title:after {
  content: "\e903";
  position: absolute;
  right: 8px;
  top: 7px;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  color: #BD9E55;
  font-family: "icomoon" !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 360px) {
  .accordion-component > div .accordion-title:after {
    right: calc(8px + 0 * (100vw - 360px) / 1240);
    top: calc(7px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .accordion-component > div .accordion-title:after {
    right: 8px;
    top: 7px;
  }
}
.accordion-component > div .accordion-content {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  padding: 34px 0 8px 0;
}
@media (min-width: 360px) {
  .accordion-component > div .accordion-content {
    padding: calc(34px + 0 * (100vw - 360px) / 1240) 0 calc(8px + 0 * (100vw - 360px) / 1240) 0;
  }
}
@media (min-width: 1600px) {
  .accordion-component > div .accordion-content {
    padding: 34px 0 8px 0;
  }
}
.accordion-component > div .accordion-content > * {
  margin-top: 30px;
}
@media (min-width: 360px) {
  .accordion-component > div .accordion-content > * {
    margin-top: calc(30px + 0 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .accordion-component > div .accordion-content > * {
    margin-top: 30px;
  }
}
.accordion-component > div .accordion-content > *:first-child {
  margin-top: 0 !important;
}
.accordion-component > div.open .accordion-title {
  color: #BD9E55;
}
.accordion-component > div.open .accordion-title:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.full-image {
  float: left;
  width: 100%;
  margin-top: 50px;
}
@media (min-width: 360px) {
  .full-image {
    margin-top: calc(50px + 50 * (100vw - 360px) / 1240);
  }
}
@media (min-width: 1600px) {
  .full-image {
    margin-top: 100px;
  }
}
/*# sourceMappingURL=style.min.480d764a.css.map */
