.lf-form-page {
    --lf-accent: #d95e5e;
    --lf-accent-soft: #f7dede;
    --lf-dark: #1e1e1e;
    --lf-text: #555555;
    --lf-bg: #f8f8f8;
    --lf-white: #ffffff;
    --lf-border: #ececec;
    --lf-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    font-family: Arial, Helvetica, sans-serif;
    color: var(--lf-dark);
    background: var(--lf-bg);
    line-height: 1.75;
   width: 100%;
  }

  .lf-form-page * {
    box-sizing: border-box;
	
  }
.lf-form-page {
  width: 100%;
}

.lf-section {
  width: 100%;
}
  .lf-form-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 50px 30px 70px;
}

  .lf-section {
    margin-bottom: 28px;
  }

  .lf-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f9f3f3 100%);
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: var(--lf-shadow);
    position: relative;
    overflow: hidden;
  }

  .lf-hero:before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(217,94,94,0.18) 0%, rgba(217,94,94,0) 70%);
    border-radius: 50%;
  }

  .lf-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lf-accent);
    margin-bottom: 14px;
  }

  .lf-hero h1 {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.15;
    color: var(--lf-dark);
  }

  .lf-hero p {
    margin: 0;
    max-width: 900px;
    font-size: 18px;
    color: var(--lf-text);
  }

  .lf-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .lf-btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
  }

  .lf-btn-primary {
    background: var(--lf-accent);
    color: #fff;
  }

  .lf-btn-primary:hover {
    background: #c94a4a;
    color: #fff;
  }

  .lf-btn-secondary {
    background: #fff;
    color: var(--lf-accent);
    border: 1px solid #efc5c5;
  }

  .lf-btn-secondary:hover {
    background: #fff5f5;
    color: var(--lf-accent);
  }

  .lf-intro {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: var(--lf-shadow);
  }

  .lf-section-title {
    text-align: center;
    margin-bottom: 34px;
  }

  .lf-section-title h2 {
    margin: 0 0 12px;
    font-size: 34px;
    color: var(--lf-dark);
  }

  .lf-section-title p {
    margin: 0 auto;
    max-width: 850px;
    color: var(--lf-text);
    font-size: 17px;
  }

  .lf-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .lf-card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .lf-card.card.shadow-md.element {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--lf-shadow);
    border: 1px solid var(--lf-border);
    height: 100%;
  }

  .lf-card .stamp.element {
    width: 54px;
    height: 54px;
    background: var(--lf-accent-soft);
    color: var(--lf-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
  }

  .lf-card h3,
  .lf-card h4 {
    margin: 0 0 14px;
    color: var(--lf-dark);
    font-size: 22px;
  }

  .lf-card p {
    color: var(--lf-text);
    margin: 0 0 14px;
  }

  .lf-card a {
    color: #f18181;
    font-weight: 700;
    text-decoration: none;
  }

  .lf-card a:hover {
    text-decoration: underline;
  }

  .lf-list {
    margin: 0;
    padding-left: 18px;
    color: var(--lf-text);
  }

  .lf-list li {
    margin-bottom: 8px;
  }

  .lf-feature-band {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: var(--lf-shadow);
    border: 1px solid var(--lf-border);
  }

  .lf-workflow {
    counter-reset: step;
    display: grid;
    gap: 16px;
  }

  .lf-step {
    background: #fff7f7;
    border: 1px solid #f1d5d5;
    border-radius: 12px;
    padding: 18px 18px 18px 64px;
    position: relative;
    color: var(--lf-text);
  }

  .lf-step:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    background: var(--lf-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
  }

  .lf-highlight {
    margin-top: 22px;
    background: #fff7f7;
    border-left: 5px solid var(--lf-accent);
    padding: 18px 18px;
    border-radius: 10px;
    color: var(--lf-text);
  }

  .lf-table-wrap {
    overflow-x: auto;
  }

  .lf-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--lf-border);
    min-width: 760px;
  }

  .lf-table th,
  .lf-table td {
    padding: 14px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--lf-border);
  }

  .lf-table th {
    background: #faf1f1;
    color: var(--lf-dark);
    font-size: 14px;
    font-weight: 700;
  }

  .lf-table td {
    color: var(--lf-text);
  }

  .lf-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .lf-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f1d5d5;
    color: var(--lf-accent);
    font-size: 14px;
    font-weight: 700;
  }

  .lf-pricing-note {
    margin-top: 12px;
    font-size: 14px;
    color: #777;
  }

  .lf-cta {
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    color: #fff;
    border-radius: 18px;
    padding: 42px 28px;
    text-align: center;
    box-shadow: var(--lf-shadow);
  }

  .lf-cta h2 {
    margin: 0 0 12px;
    font-size: 34px;
    color: #fff;
  }

  .lf-cta p {
    max-width: 820px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,0.88);
  }

  @media (max-width: 991px) {
    .lf-card-grid,
    .lf-card-grid-2 {
      grid-template-columns: 1fr;
    }

    .lf-hero h1 {
      font-size: 34px;
    }

    .lf-section-title h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 640px) {
    .lf-form-container {
      padding: 24px 14px 50px;
    }

    .lf-hero,
    .lf-intro,
    .lf-feature-band,
    .lf-cta,
    .lf-card.card.shadow-md.element {
      padding: 24px 18px;
      border-radius: 14px;
    }

    .lf-hero h1 {
      font-size: 28px;
    }

    .lf-hero p {
      font-size: 16px;
    }

    .lf-hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }
  }

@charset "UTF-8";

/*Flex mixin*/
.inline-flex,
.flex-inline,
.mixin-inline-flex {
    display: inline-flex;
}

.flex,
.flex-row,
.mixin-flex-row {
    display: flex;
    flex-wrap: wrap;
}

.flex-row-nowrap,
.mixin-flex-row-nowrap {
    display: flex;
    flex-wrap: nowrap;
}

.row-reverse,
.flex-row-reverse,
.mixin-flex-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column,
.mixin-flex-column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-wrap: wrap;
    flex-direction: column;
}

.flex-column-reverse,
.mixin-flex-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-center,
.mixin-flex-center {
    align-items: center;
    justify-content: center;
}

.overlay-opacity-0:after {
    opacity: 0;
}

.overlay-opacity-1:after {
    opacity: 0.1;
}

.overlay-opacity-2:after {
    opacity: 0.2;
}

.overlay-opacity-3:after {
    opacity: 0.3;
}

.overlay-opacity-4:after {
    opacity: 0.4;
}

.overlay-opacity-5:after {
    opacity: 0.5;
}

.overlay-opacity-6:after {
    opacity: 0.6;
}

.overlay-opacity-7:after {
    opacity: 0.7;
}

.overlay-opacity-8:after {
    opacity: 0.8;
}

.overlay-opacity-9:after {
    opacity: 0.9;
}

.overlay-opacity-10:after {
    opacity: 1;
}

.overlay * {
    position: relative;
    z-index: 1;
}

/****************************
          GENERAL
*****************************/
/* Font Size and Family */
/* Colors */
/* Basic Meida Queries */
/* Elements */
/* Background */
/* Radiuses */
/*Colors for color mixer*/
/****************************
           HEADER
*****************************/
/*When to open Main Menu Burger*/
/*When to open Second Menu Burger*/
/*Header Menu Navigation*/
/*Header Dropdown menu*/
/*Mobile Main Menu Navigation*/
/*Mobile Main Menu Navigation*/
/*Sidebar nav*/
/*Header member nav*/
/*Header burger*/
/*Header social*/
/*Logo on Header*/
/*Social icons General*/
/*!
 * Bootstrap Grid v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto;
}

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

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

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

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

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

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

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-sm-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-md-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-lg-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xxl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.d-table {
    display: table;
}

.d-table-row {
    display: table-row;
}

.d-table-cell {
    display: table-cell;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.d-none {
    display: none;
}

.flex-fill {
    flex: 1 1 auto;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

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

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.order-first {
    order: -1;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-last {
    order: 6;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

.m-auto {
    margin: auto;
}

.mx-0 {
    margin-right: 0;
    margin-left: 0;
}

.mx-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.mx-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.mx-3 {
    margin-right: 1rem;
    margin-left: 1rem;
}

.mx-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}

.mx-5 {
    margin-right: 3rem;
    margin-left: 3rem;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.me-0 {
    margin-right: 0;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.me-5 {
    margin-right: 3rem;
}

.me-auto {
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-auto {
    margin-bottom: auto;
}

.ms-0 {
    margin-left: 0;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.ms-5 {
    margin-left: 3rem;
}

.ms-auto {
    margin-left: auto;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.px-0 {
    padding-right: 0;
    padding-left: 0;
}

.px-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.px-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.px-3 {
    padding-right: 1rem;
    padding-left: 1rem;
}

.px-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.px-5 {
    padding-right: 3rem;
    padding-left: 3rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pe-0 {
    padding-right: 0;
}

.pe-1 {
    padding-right: 0.25rem;
}

.pe-2 {
    padding-right: 0.5rem;
}

.pe-3 {
    padding-right: 1rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.pe-5 {
    padding-right: 3rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.ps-0 {
    padding-left: 0;
}

.ps-1 {
    padding-left: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.ps-3 {
    padding-left: 1rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.ps-5 {
    padding-left: 3rem;
}

@media (min-width: 576px) {
    .d-sm-inline {
        display: inline;
    }

    .d-sm-inline-block {
        display: inline-block;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-grid {
        display: grid;
    }

    .d-sm-table {
        display: table;
    }

    .d-sm-table-row {
        display: table-row;
    }

    .d-sm-table-cell {
        display: table-cell;
    }

    .d-sm-flex {
        display: flex;
    }

    .d-sm-inline-flex {
        display: inline-flex;
    }

    .d-sm-none {
        display: none;
    }

    .flex-sm-fill {
        flex: 1 1 auto;
    }

    .flex-sm-row {
        flex-direction: row;
    }

    .flex-sm-column {
        flex-direction: column;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-sm-grow-0 {
        flex-grow: 0;
    }

    .flex-sm-grow-1 {
        flex-grow: 1;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1;
    }

    .flex-sm-wrap {
        flex-wrap: wrap;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .justify-content-sm-start {
        justify-content: flex-start;
    }

    .justify-content-sm-end {
        justify-content: flex-end;
    }

    .justify-content-sm-center {
        justify-content: center;
    }

    .justify-content-sm-between {
        justify-content: space-between;
    }

    .justify-content-sm-around {
        justify-content: space-around;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly;
    }

    .align-items-sm-start {
        align-items: flex-start;
    }

    .align-items-sm-end {
        align-items: flex-end;
    }

    .align-items-sm-center {
        align-items: center;
    }

    .align-items-sm-baseline {
        align-items: baseline;
    }

    .align-items-sm-stretch {
        align-items: stretch;
    }

    .align-content-sm-start {
        align-content: flex-start;
    }

    .align-content-sm-end {
        align-content: flex-end;
    }

    .align-content-sm-center {
        align-content: center;
    }

    .align-content-sm-between {
        align-content: space-between;
    }

    .align-content-sm-around {
        align-content: space-around;
    }

    .align-content-sm-stretch {
        align-content: stretch;
    }

    .align-self-sm-auto {
        align-self: auto;
    }

    .align-self-sm-start {
        align-self: flex-start;
    }

    .align-self-sm-end {
        align-self: flex-end;
    }

    .align-self-sm-center {
        align-self: center;
    }

    .align-self-sm-baseline {
        align-self: baseline;
    }

    .align-self-sm-stretch {
        align-self: stretch;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-last {
        order: 6;
    }

    .m-sm-0 {
        margin: 0;
    }

    .m-sm-1 {
        margin: 0.25rem;
    }

    .m-sm-2 {
        margin: 0.5rem;
    }

    .m-sm-3 {
        margin: 1rem;
    }

    .m-sm-4 {
        margin: 1.5rem;
    }

    .m-sm-5 {
        margin: 3rem;
    }

    .m-sm-auto {
        margin: auto;
    }

    .mx-sm-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-sm-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-sm-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-sm-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-sm-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-sm-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-sm-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-sm-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-sm-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-sm-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-sm-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-sm-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-sm-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-sm-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-sm-0 {
        margin-top: 0;
    }

    .mt-sm-1 {
        margin-top: 0.25rem;
    }

    .mt-sm-2 {
        margin-top: 0.5rem;
    }

    .mt-sm-3 {
        margin-top: 1rem;
    }

    .mt-sm-4 {
        margin-top: 1.5rem;
    }

    .mt-sm-5 {
        margin-top: 3rem;
    }

    .mt-sm-auto {
        margin-top: auto;
    }

    .me-sm-0 {
        margin-right: 0;
    }

    .me-sm-1 {
        margin-right: 0.25rem;
    }

    .me-sm-2 {
        margin-right: 0.5rem;
    }

    .me-sm-3 {
        margin-right: 1rem;
    }

    .me-sm-4 {
        margin-right: 1.5rem;
    }

    .me-sm-5 {
        margin-right: 3rem;
    }

    .me-sm-auto {
        margin-right: auto;
    }

    .mb-sm-0 {
        margin-bottom: 0;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem;
    }

    .mb-sm-3 {
        margin-bottom: 1rem;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem;
    }

    .mb-sm-5 {
        margin-bottom: 3rem;
    }

    .mb-sm-auto {
        margin-bottom: auto;
    }

    .ms-sm-0 {
        margin-left: 0;
    }

    .ms-sm-1 {
        margin-left: 0.25rem;
    }

    .ms-sm-2 {
        margin-left: 0.5rem;
    }

    .ms-sm-3 {
        margin-left: 1rem;
    }

    .ms-sm-4 {
        margin-left: 1.5rem;
    }

    .ms-sm-5 {
        margin-left: 3rem;
    }

    .ms-sm-auto {
        margin-left: auto;
    }

    .p-sm-0 {
        padding: 0;
    }

    .p-sm-1 {
        padding: 0.25rem;
    }

    .p-sm-2 {
        padding: 0.5rem;
    }

    .p-sm-3 {
        padding: 1rem;
    }

    .p-sm-4 {
        padding: 1.5rem;
    }

    .p-sm-5 {
        padding: 3rem;
    }

    .px-sm-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-sm-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-sm-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-sm-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-sm-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-sm-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-sm-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-sm-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-sm-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-sm-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-sm-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-sm-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-sm-0 {
        padding-top: 0;
    }

    .pt-sm-1 {
        padding-top: 0.25rem;
    }

    .pt-sm-2 {
        padding-top: 0.5rem;
    }

    .pt-sm-3 {
        padding-top: 1rem;
    }

    .pt-sm-4 {
        padding-top: 1.5rem;
    }

    .pt-sm-5 {
        padding-top: 3rem;
    }

    .pe-sm-0 {
        padding-right: 0;
    }

    .pe-sm-1 {
        padding-right: 0.25rem;
    }

    .pe-sm-2 {
        padding-right: 0.5rem;
    }

    .pe-sm-3 {
        padding-right: 1rem;
    }

    .pe-sm-4 {
        padding-right: 1.5rem;
    }

    .pe-sm-5 {
        padding-right: 3rem;
    }

    .pb-sm-0 {
        padding-bottom: 0;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem;
    }

    .pb-sm-3 {
        padding-bottom: 1rem;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem;
    }

    .pb-sm-5 {
        padding-bottom: 3rem;
    }

    .ps-sm-0 {
        padding-left: 0;
    }

    .ps-sm-1 {
        padding-left: 0.25rem;
    }

    .ps-sm-2 {
        padding-left: 0.5rem;
    }

    .ps-sm-3 {
        padding-left: 1rem;
    }

    .ps-sm-4 {
        padding-left: 1.5rem;
    }

    .ps-sm-5 {
        padding-left: 3rem;
    }
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline;
    }

    .d-md-inline-block {
        display: inline-block;
    }

    .d-md-block {
        display: block;
    }

    .d-md-grid {
        display: grid;
    }

    .d-md-table {
        display: table;
    }

    .d-md-table-row {
        display: table-row;
    }

    .d-md-table-cell {
        display: table-cell;
    }

    .d-md-flex {
        display: flex;
    }

    .d-md-inline-flex {
        display: inline-flex;
    }

    .d-md-none {
        display: none;
    }

    .flex-md-fill {
        flex: 1 1 auto;
    }

    .flex-md-row {
        flex-direction: row;
    }

    .flex-md-column {
        flex-direction: column;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-md-grow-0 {
        flex-grow: 0;
    }

    .flex-md-grow-1 {
        flex-grow: 1;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1;
    }

    .flex-md-wrap {
        flex-wrap: wrap;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .justify-content-md-start {
        justify-content: flex-start;
    }

    .justify-content-md-end {
        justify-content: flex-end;
    }

    .justify-content-md-center {
        justify-content: center;
    }

    .justify-content-md-between {
        justify-content: space-between;
    }

    .justify-content-md-around {
        justify-content: space-around;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly;
    }

    .align-items-md-start {
        align-items: flex-start;
    }

    .align-items-md-end {
        align-items: flex-end;
    }

    .align-items-md-center {
        align-items: center;
    }

    .align-items-md-baseline {
        align-items: baseline;
    }

    .align-items-md-stretch {
        align-items: stretch;
    }

    .align-content-md-start {
        align-content: flex-start;
    }

    .align-content-md-end {
        align-content: flex-end;
    }

    .align-content-md-center {
        align-content: center;
    }

    .align-content-md-between {
        align-content: space-between;
    }

    .align-content-md-around {
        align-content: space-around;
    }

    .align-content-md-stretch {
        align-content: stretch;
    }

    .align-self-md-auto {
        align-self: auto;
    }

    .align-self-md-start {
        align-self: flex-start;
    }

    .align-self-md-end {
        align-self: flex-end;
    }

    .align-self-md-center {
        align-self: center;
    }

    .align-self-md-baseline {
        align-self: baseline;
    }

    .align-self-md-stretch {
        align-self: stretch;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-last {
        order: 6;
    }

    .m-md-0 {
        margin: 0;
    }

    .m-md-1 {
        margin: 0.25rem;
    }

    .m-md-2 {
        margin: 0.5rem;
    }

    .m-md-3 {
        margin: 1rem;
    }

    .m-md-4 {
        margin: 1.5rem;
    }

    .m-md-5 {
        margin: 3rem;
    }

    .m-md-auto {
        margin: auto;
    }

    .mx-md-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-md-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-md-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-md-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-md-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-md-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-md-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-md-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-md-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-md-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-md-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-md-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-md-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-md-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-md-0 {
        margin-top: 0;
    }

    .mt-md-1 {
        margin-top: 0.25rem;
    }

    .mt-md-2 {
        margin-top: 0.5rem;
    }

    .mt-md-3 {
        margin-top: 1rem;
    }

    .mt-md-4 {
        margin-top: 1.5rem;
    }

    .mt-md-5 {
        margin-top: 3rem;
    }

    .mt-md-auto {
        margin-top: auto;
    }

    .me-md-0 {
        margin-right: 0;
    }

    .me-md-1 {
        margin-right: 0.25rem;
    }

    .me-md-2 {
        margin-right: 0.5rem;
    }

    .me-md-3 {
        margin-right: 1rem;
    }

    .me-md-4 {
        margin-right: 1.5rem;
    }

    .me-md-5 {
        margin-right: 3rem;
    }

    .me-md-auto {
        margin-right: auto;
    }

    .mb-md-0 {
        margin-bottom: 0;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem;
    }

    .mb-md-3 {
        margin-bottom: 1rem;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem;
    }

    .mb-md-5 {
        margin-bottom: 3rem;
    }

    .mb-md-auto {
        margin-bottom: auto;
    }

    .ms-md-0 {
        margin-left: 0;
    }

    .ms-md-1 {
        margin-left: 0.25rem;
    }

    .ms-md-2 {
        margin-left: 0.5rem;
    }

    .ms-md-3 {
        margin-left: 1rem;
    }

    .ms-md-4 {
        margin-left: 1.5rem;
    }

    .ms-md-5 {
        margin-left: 3rem;
    }

    .ms-md-auto {
        margin-left: auto;
    }

    .p-md-0 {
        padding: 0;
    }

    .p-md-1 {
        padding: 0.25rem;
    }

    .p-md-2 {
        padding: 0.5rem;
    }

    .p-md-3 {
        padding: 1rem;
    }

    .p-md-4 {
        padding: 1.5rem;
    }

    .p-md-5 {
        padding: 3rem;
    }

    .px-md-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-md-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-md-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-md-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-md-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-md-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-md-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-md-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-md-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-md-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-md-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-md-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-md-0 {
        padding-top: 0;
    }

    .pt-md-1 {
        padding-top: 0.25rem;
    }

    .pt-md-2 {
        padding-top: 0.5rem;
    }

    .pt-md-3 {
        padding-top: 1rem;
    }

    .pt-md-4 {
        padding-top: 1.5rem;
    }

    .pt-md-5 {
        padding-top: 3rem;
    }

    .pe-md-0 {
        padding-right: 0;
    }

    .pe-md-1 {
        padding-right: 0.25rem;
    }

    .pe-md-2 {
        padding-right: 0.5rem;
    }

    .pe-md-3 {
        padding-right: 1rem;
    }

    .pe-md-4 {
        padding-right: 1.5rem;
    }

    .pe-md-5 {
        padding-right: 3rem;
    }

    .pb-md-0 {
        padding-bottom: 0;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem;
    }

    .pb-md-3 {
        padding-bottom: 1rem;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem;
    }

    .pb-md-5 {
        padding-bottom: 3rem;
    }

    .ps-md-0 {
        padding-left: 0;
    }

    .ps-md-1 {
        padding-left: 0.25rem;
    }

    .ps-md-2 {
        padding-left: 0.5rem;
    }

    .ps-md-3 {
        padding-left: 1rem;
    }

    .ps-md-4 {
        padding-left: 1.5rem;
    }

    .ps-md-5 {
        padding-left: 3rem;
    }
}

@media (min-width: 992px) {
    .d-lg-inline {
        display: inline;
    }

    .d-lg-inline-block {
        display: inline-block;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-grid {
        display: grid;
    }

    .d-lg-table {
        display: table;
    }

    .d-lg-table-row {
        display: table-row;
    }

    .d-lg-table-cell {
        display: table-cell;
    }

    .d-lg-flex {
        display: flex;
    }

    .d-lg-inline-flex {
        display: inline-flex;
    }

    .d-lg-none {
        display: none;
    }

    .flex-lg-fill {
        flex: 1 1 auto;
    }

    .flex-lg-row {
        flex-direction: row;
    }

    .flex-lg-column {
        flex-direction: column;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-lg-grow-0 {
        flex-grow: 0;
    }

    .flex-lg-grow-1 {
        flex-grow: 1;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1;
    }

    .flex-lg-wrap {
        flex-wrap: wrap;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .justify-content-lg-start {
        justify-content: flex-start;
    }

    .justify-content-lg-end {
        justify-content: flex-end;
    }

    .justify-content-lg-center {
        justify-content: center;
    }

    .justify-content-lg-between {
        justify-content: space-between;
    }

    .justify-content-lg-around {
        justify-content: space-around;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly;
    }

    .align-items-lg-start {
        align-items: flex-start;
    }

    .align-items-lg-end {
        align-items: flex-end;
    }

    .align-items-lg-center {
        align-items: center;
    }

    .align-items-lg-baseline {
        align-items: baseline;
    }

    .align-items-lg-stretch {
        align-items: stretch;
    }

    .align-content-lg-start {
        align-content: flex-start;
    }

    .align-content-lg-end {
        align-content: flex-end;
    }

    .align-content-lg-center {
        align-content: center;
    }

    .align-content-lg-between {
        align-content: space-between;
    }

    .align-content-lg-around {
        align-content: space-around;
    }

    .align-content-lg-stretch {
        align-content: stretch;
    }

    .align-self-lg-auto {
        align-self: auto;
    }

    .align-self-lg-start {
        align-self: flex-start;
    }

    .align-self-lg-end {
        align-self: flex-end;
    }

    .align-self-lg-center {
        align-self: center;
    }

    .align-self-lg-baseline {
        align-self: baseline;
    }

    .align-self-lg-stretch {
        align-self: stretch;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-last {
        order: 6;
    }

    .m-lg-0 {
        margin: 0;
    }

    .m-lg-1 {
        margin: 0.25rem;
    }

    .m-lg-2 {
        margin: 0.5rem;
    }

    .m-lg-3 {
        margin: 1rem;
    }

    .m-lg-4 {
        margin: 1.5rem;
    }

    .m-lg-5 {
        margin: 3rem;
    }

    .m-lg-auto {
        margin: auto;
    }

    .mx-lg-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-lg-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-lg-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-lg-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-lg-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-lg-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-lg-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-lg-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-lg-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-lg-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-lg-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-lg-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-lg-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-lg-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-lg-0 {
        margin-top: 0;
    }

    .mt-lg-1 {
        margin-top: 0.25rem;
    }

    .mt-lg-2 {
        margin-top: 0.5rem;
    }

    .mt-lg-3 {
        margin-top: 1rem;
    }

    .mt-lg-4 {
        margin-top: 1.5rem;
    }

    .mt-lg-5 {
        margin-top: 3rem;
    }

    .mt-lg-auto {
        margin-top: auto;
    }

    .me-lg-0 {
        margin-right: 0;
    }

    .me-lg-1 {
        margin-right: 0.25rem;
    }

    .me-lg-2 {
        margin-right: 0.5rem;
    }

    .me-lg-3 {
        margin-right: 1rem;
    }

    .me-lg-4 {
        margin-right: 1.5rem;
    }

    .me-lg-5 {
        margin-right: 3rem;
    }

    .me-lg-auto {
        margin-right: auto;
    }

    .mb-lg-0 {
        margin-bottom: 0;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem;
    }

    .mb-lg-3 {
        margin-bottom: 1rem;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem;
    }

    .mb-lg-5 {
        margin-bottom: 3rem;
    }

    .mb-lg-auto {
        margin-bottom: auto;
    }

    .ms-lg-0 {
        margin-left: 0;
    }

    .ms-lg-1 {
        margin-left: 0.25rem;
    }

    .ms-lg-2 {
        margin-left: 0.5rem;
    }

    .ms-lg-3 {
        margin-left: 1rem;
    }

    .ms-lg-4 {
        margin-left: 1.5rem;
    }

    .ms-lg-5 {
        margin-left: 3rem;
    }

    .ms-lg-auto {
        margin-left: auto;
    }

    .p-lg-0 {
        padding: 0;
    }

    .p-lg-1 {
        padding: 0.25rem;
    }

    .p-lg-2 {
        padding: 0.5rem;
    }

    .p-lg-3 {
        padding: 1rem;
    }

    .p-lg-4 {
        padding: 1.5rem;
    }

    .p-lg-5 {
        padding: 3rem;
    }

    .px-lg-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-lg-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-lg-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-lg-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-lg-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-lg-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-lg-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-lg-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-lg-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-lg-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-lg-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-lg-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-lg-0 {
        padding-top: 0;
    }

    .pt-lg-1 {
        padding-top: 0.25rem;
    }

    .pt-lg-2 {
        padding-top: 0.5rem;
    }

    .pt-lg-3 {
        padding-top: 1rem;
    }

    .pt-lg-4 {
        padding-top: 1.5rem;
    }

    .pt-lg-5 {
        padding-top: 3rem;
    }

    .pe-lg-0 {
        padding-right: 0;
    }

    .pe-lg-1 {
        padding-right: 0.25rem;
    }

    .pe-lg-2 {
        padding-right: 0.5rem;
    }

    .pe-lg-3 {
        padding-right: 1rem;
    }

    .pe-lg-4 {
        padding-right: 1.5rem;
    }

    .pe-lg-5 {
        padding-right: 3rem;
    }

    .pb-lg-0 {
        padding-bottom: 0;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem;
    }

    .pb-lg-3 {
        padding-bottom: 1rem;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem;
    }

    .pb-lg-5 {
        padding-bottom: 3rem;
    }

    .ps-lg-0 {
        padding-left: 0;
    }

    .ps-lg-1 {
        padding-left: 0.25rem;
    }

    .ps-lg-2 {
        padding-left: 0.5rem;
    }

    .ps-lg-3 {
        padding-left: 1rem;
    }

    .ps-lg-4 {
        padding-left: 1.5rem;
    }

    .ps-lg-5 {
        padding-left: 3rem;
    }
}

@media (min-width: 1200px) {
    .d-xl-inline {
        display: inline;
    }

    .d-xl-inline-block {
        display: inline-block;
    }

    .d-xl-block {
        display: block;
    }

    .d-xl-grid {
        display: grid;
    }

    .d-xl-table {
        display: table;
    }

    .d-xl-table-row {
        display: table-row;
    }

    .d-xl-table-cell {
        display: table-cell;
    }

    .d-xl-flex {
        display: flex;
    }

    .d-xl-inline-flex {
        display: inline-flex;
    }

    .d-xl-none {
        display: none;
    }

    .flex-xl-fill {
        flex: 1 1 auto;
    }

    .flex-xl-row {
        flex-direction: row;
    }

    .flex-xl-column {
        flex-direction: column;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-xl-grow-0 {
        flex-grow: 0;
    }

    .flex-xl-grow-1 {
        flex-grow: 1;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1;
    }

    .flex-xl-wrap {
        flex-wrap: wrap;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .justify-content-xl-start {
        justify-content: flex-start;
    }

    .justify-content-xl-end {
        justify-content: flex-end;
    }

    .justify-content-xl-center {
        justify-content: center;
    }

    .justify-content-xl-between {
        justify-content: space-between;
    }

    .justify-content-xl-around {
        justify-content: space-around;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly;
    }

    .align-items-xl-start {
        align-items: flex-start;
    }

    .align-items-xl-end {
        align-items: flex-end;
    }

    .align-items-xl-center {
        align-items: center;
    }

    .align-items-xl-baseline {
        align-items: baseline;
    }

    .align-items-xl-stretch {
        align-items: stretch;
    }

    .align-content-xl-start {
        align-content: flex-start;
    }

    .align-content-xl-end {
        align-content: flex-end;
    }

    .align-content-xl-center {
        align-content: center;
    }

    .align-content-xl-between {
        align-content: space-between;
    }

    .align-content-xl-around {
        align-content: space-around;
    }

    .align-content-xl-stretch {
        align-content: stretch;
    }

    .align-self-xl-auto {
        align-self: auto;
    }

    .align-self-xl-start {
        align-self: flex-start;
    }

    .align-self-xl-end {
        align-self: flex-end;
    }

    .align-self-xl-center {
        align-self: center;
    }

    .align-self-xl-baseline {
        align-self: baseline;
    }

    .align-self-xl-stretch {
        align-self: stretch;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-last {
        order: 6;
    }

    .m-xl-0 {
        margin: 0;
    }

    .m-xl-1 {
        margin: 0.25rem;
    }

    .m-xl-2 {
        margin: 0.5rem;
    }

    .m-xl-3 {
        margin: 1rem;
    }

    .m-xl-4 {
        margin: 1.5rem;
    }

    .m-xl-5 {
        margin: 3rem;
    }

    .m-xl-auto {
        margin: auto;
    }

    .mx-xl-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-xl-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-xl-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-xl-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-xl-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-xl-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-xl-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-xl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-xl-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-xl-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-xl-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-xl-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-xl-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-xl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-xl-0 {
        margin-top: 0;
    }

    .mt-xl-1 {
        margin-top: 0.25rem;
    }

    .mt-xl-2 {
        margin-top: 0.5rem;
    }

    .mt-xl-3 {
        margin-top: 1rem;
    }

    .mt-xl-4 {
        margin-top: 1.5rem;
    }

    .mt-xl-5 {
        margin-top: 3rem;
    }

    .mt-xl-auto {
        margin-top: auto;
    }

    .me-xl-0 {
        margin-right: 0;
    }

    .me-xl-1 {
        margin-right: 0.25rem;
    }

    .me-xl-2 {
        margin-right: 0.5rem;
    }

    .me-xl-3 {
        margin-right: 1rem;
    }

    .me-xl-4 {
        margin-right: 1.5rem;
    }

    .me-xl-5 {
        margin-right: 3rem;
    }

    .me-xl-auto {
        margin-right: auto;
    }

    .mb-xl-0 {
        margin-bottom: 0;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xl-3 {
        margin-bottom: 1rem;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xl-5 {
        margin-bottom: 3rem;
    }

    .mb-xl-auto {
        margin-bottom: auto;
    }

    .ms-xl-0 {
        margin-left: 0;
    }

    .ms-xl-1 {
        margin-left: 0.25rem;
    }

    .ms-xl-2 {
        margin-left: 0.5rem;
    }

    .ms-xl-3 {
        margin-left: 1rem;
    }

    .ms-xl-4 {
        margin-left: 1.5rem;
    }

    .ms-xl-5 {
        margin-left: 3rem;
    }

    .ms-xl-auto {
        margin-left: auto;
    }

    .p-xl-0 {
        padding: 0;
    }

    .p-xl-1 {
        padding: 0.25rem;
    }

    .p-xl-2 {
        padding: 0.5rem;
    }

    .p-xl-3 {
        padding: 1rem;
    }

    .p-xl-4 {
        padding: 1.5rem;
    }

    .p-xl-5 {
        padding: 3rem;
    }

    .px-xl-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-xl-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-xl-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-xl-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-xl-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-xl-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-xl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-xl-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-xl-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-xl-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-xl-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-xl-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-xl-0 {
        padding-top: 0;
    }

    .pt-xl-1 {
        padding-top: 0.25rem;
    }

    .pt-xl-2 {
        padding-top: 0.5rem;
    }

    .pt-xl-3 {
        padding-top: 1rem;
    }

    .pt-xl-4 {
        padding-top: 1.5rem;
    }

    .pt-xl-5 {
        padding-top: 3rem;
    }

    .pe-xl-0 {
        padding-right: 0;
    }

    .pe-xl-1 {
        padding-right: 0.25rem;
    }

    .pe-xl-2 {
        padding-right: 0.5rem;
    }

    .pe-xl-3 {
        padding-right: 1rem;
    }

    .pe-xl-4 {
        padding-right: 1.5rem;
    }

    .pe-xl-5 {
        padding-right: 3rem;
    }

    .pb-xl-0 {
        padding-bottom: 0;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem;
    }

    .pb-xl-3 {
        padding-bottom: 1rem;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem;
    }

    .pb-xl-5 {
        padding-bottom: 3rem;
    }

    .ps-xl-0 {
        padding-left: 0;
    }

    .ps-xl-1 {
        padding-left: 0.25rem;
    }

    .ps-xl-2 {
        padding-left: 0.5rem;
    }

    .ps-xl-3 {
        padding-left: 1rem;
    }

    .ps-xl-4 {
        padding-left: 1.5rem;
    }

    .ps-xl-5 {
        padding-left: 3rem;
    }
}

@media (min-width: 1400px) {
    .d-xxl-inline {
        display: inline;
    }

    .d-xxl-inline-block {
        display: inline-block;
    }

    .d-xxl-block {
        display: block;
    }

    .d-xxl-grid {
        display: grid;
    }

    .d-xxl-table {
        display: table;
    }

    .d-xxl-table-row {
        display: table-row;
    }

    .d-xxl-table-cell {
        display: table-cell;
    }

    .d-xxl-flex {
        display: flex;
    }

    .d-xxl-inline-flex {
        display: inline-flex;
    }

    .d-xxl-none {
        display: none;
    }

    .flex-xxl-fill {
        flex: 1 1 auto;
    }

    .flex-xxl-row {
        flex-direction: row;
    }

    .flex-xxl-column {
        flex-direction: column;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .justify-content-xxl-start {
        justify-content: flex-start;
    }

    .justify-content-xxl-end {
        justify-content: flex-end;
    }

    .justify-content-xxl-center {
        justify-content: center;
    }

    .justify-content-xxl-between {
        justify-content: space-between;
    }

    .justify-content-xxl-around {
        justify-content: space-around;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly;
    }

    .align-items-xxl-start {
        align-items: flex-start;
    }

    .align-items-xxl-end {
        align-items: flex-end;
    }

    .align-items-xxl-center {
        align-items: center;
    }

    .align-items-xxl-baseline {
        align-items: baseline;
    }

    .align-items-xxl-stretch {
        align-items: stretch;
    }

    .align-content-xxl-start {
        align-content: flex-start;
    }

    .align-content-xxl-end {
        align-content: flex-end;
    }

    .align-content-xxl-center {
        align-content: center;
    }

    .align-content-xxl-between {
        align-content: space-between;
    }

    .align-content-xxl-around {
        align-content: space-around;
    }

    .align-content-xxl-stretch {
        align-content: stretch;
    }

    .align-self-xxl-auto {
        align-self: auto;
    }

    .align-self-xxl-start {
        align-self: flex-start;
    }

    .align-self-xxl-end {
        align-self: flex-end;
    }

    .align-self-xxl-center {
        align-self: center;
    }

    .align-self-xxl-baseline {
        align-self: baseline;
    }

    .align-self-xxl-stretch {
        align-self: stretch;
    }

    .order-xxl-first {
        order: -1;
    }

    .order-xxl-0 {
        order: 0;
    }

    .order-xxl-1 {
        order: 1;
    }

    .order-xxl-2 {
        order: 2;
    }

    .order-xxl-3 {
        order: 3;
    }

    .order-xxl-4 {
        order: 4;
    }

    .order-xxl-5 {
        order: 5;
    }

    .order-xxl-last {
        order: 6;
    }

    .m-xxl-0 {
        margin: 0;
    }

    .m-xxl-1 {
        margin: 0.25rem;
    }

    .m-xxl-2 {
        margin: 0.5rem;
    }

    .m-xxl-3 {
        margin: 1rem;
    }

    .m-xxl-4 {
        margin: 1.5rem;
    }

    .m-xxl-5 {
        margin: 3rem;
    }

    .m-xxl-auto {
        margin: auto;
    }

    .mx-xxl-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-xxl-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-xxl-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-xxl-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-xxl-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-xxl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-xxl-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-xxl-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-xxl-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-xxl-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-xxl-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-xxl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-xxl-0 {
        margin-top: 0;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem;
    }

    .mt-xxl-3 {
        margin-top: 1rem;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem;
    }

    .mt-xxl-5 {
        margin-top: 3rem;
    }

    .mt-xxl-auto {
        margin-top: auto;
    }

    .me-xxl-0 {
        margin-right: 0;
    }

    .me-xxl-1 {
        margin-right: 0.25rem;
    }

    .me-xxl-2 {
        margin-right: 0.5rem;
    }

    .me-xxl-3 {
        margin-right: 1rem;
    }

    .me-xxl-4 {
        margin-right: 1.5rem;
    }

    .me-xxl-5 {
        margin-right: 3rem;
    }

    .me-xxl-auto {
        margin-right: auto;
    }

    .mb-xxl-0 {
        margin-bottom: 0;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xxl-5 {
        margin-bottom: 3rem;
    }

    .mb-xxl-auto {
        margin-bottom: auto;
    }

    .ms-xxl-0 {
        margin-left: 0;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem;
    }

    .ms-xxl-3 {
        margin-left: 1rem;
    }

    .ms-xxl-4 {
        margin-left: 1.5rem;
    }

    .ms-xxl-5 {
        margin-left: 3rem;
    }

    .ms-xxl-auto {
        margin-left: auto;
    }

    .p-xxl-0 {
        padding: 0;
    }

    .p-xxl-1 {
        padding: 0.25rem;
    }

    .p-xxl-2 {
        padding: 0.5rem;
    }

    .p-xxl-3 {
        padding: 1rem;
    }

    .p-xxl-4 {
        padding: 1.5rem;
    }

    .p-xxl-5 {
        padding: 3rem;
    }

    .px-xxl-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-xxl-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-xxl-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-xxl-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-xxl-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-xxl-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-xxl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-xxl-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-xxl-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-xxl-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-xxl-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-xxl-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-xxl-0 {
        padding-top: 0;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem;
    }

    .pt-xxl-3 {
        padding-top: 1rem;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem;
    }

    .pt-xxl-5 {
        padding-top: 3rem;
    }

    .pe-xxl-0 {
        padding-right: 0;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem;
    }

    .pe-xxl-3 {
        padding-right: 1rem;
    }

    .pe-xxl-4 {
        padding-right: 1.5rem;
    }

    .pe-xxl-5 {
        padding-right: 3rem;
    }

    .pb-xxl-0 {
        padding-bottom: 0;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem;
    }

    .pb-xxl-5 {
        padding-bottom: 3rem;
    }

    .ps-xxl-0 {
        padding-left: 0;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem;
    }

    .ps-xxl-3 {
        padding-left: 1rem;
    }

    .ps-xxl-4 {
        padding-left: 1.5rem;
    }

    .ps-xxl-5 {
        padding-left: 3rem;
    }
}

@media print {
    .d-print-inline {
        display: inline;
    }

    .d-print-inline-block {
        display: inline-block;
    }

    .d-print-block {
        display: block;
    }

    .d-print-grid {
        display: grid;
    }

    .d-print-table {
        display: table;
    }

    .d-print-table-row {
        display: table-row;
    }

    .d-print-table-cell {
        display: table-cell;
    }

    .d-print-flex {
        display: flex;
    }

    .d-print-inline-flex {
        display: inline-flex;
    }

    .d-print-none {
        display: none;
    }
}

/*!
 * Bootstrap Reboot v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-;
    }
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #fffefe;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(33, 37, 41, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

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

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

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

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

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

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

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

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

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

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

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

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

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

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

ol,
ul {
    padding-left: 2rem;
}

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

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

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 0.875em;
}

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

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #bb5656;
    text-decoration: underline;
}

a:hover {
    color: #964545;
}

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

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
    direction: ltr
        /* rtl:ignore */
    ;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

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

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #f9e3e3;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

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

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

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

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

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

button,
select {
    text-transform: none;
}

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

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

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

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

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

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

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend+* {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
}

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

output {
    display: inline-block;
}

iframe {
    border: 0;
}

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

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

/*!
 * Bootstrap Utilities v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.link-primary {
    color: #bb5656;
}

.link-primary:hover,
.link-primary:focus {
    color: #964545;
}

.link-secondary {
    color: #6c757d;
}

.link-secondary:hover,
.link-secondary:focus {
    color: #565e64;
}

.link-success {
    color: #198754;
}

.link-success:hover,
.link-success:focus {
    color: #146c43;
}

.link-info {
    color: #0dcaf0;
}

.link-info:hover,
.link-info:focus {
    color: #0aa2c0;
}

.link-warning {
    color: #ffc107;
}

.link-warning:hover,
.link-warning:focus {
    color: #ffcd39;
}

.link-danger {
    color: #dc3545;
}

.link-danger:hover,
.link-danger:focus {
    color: #b02a37;
}

.link-light {
    color: #f9e3e3;
}

.link-light:hover,
.link-light:focus {
    color: #fae9e9;
}

.link-dark {
    color: #894646;
}

.link-dark:hover,
.link-dark:focus {
    color: #6e3838;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%);
}

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

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

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.align-baseline {
    vertical-align: baseline;
}

.align-top {
    vertical-align: top;
}

.align-middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}

.align-text-bottom {
    vertical-align: text-bottom;
}

.align-text-top {
    vertical-align: text-top;
}

.float-start {
    float: left;
}

.float-end {
    float: right;
}

.float-none {
    float: none;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.d-table {
    display: table;
}

.d-table-row {
    display: table-row;
}

.d-table-cell {
    display: table-cell;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.d-none {
    display: none;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(33, 37, 41, 0.15);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(33, 37, 41, 0.075);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(33, 37, 41, 0.175);
}

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

.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.top-50 {
    top: 50%;
}

.top-100 {
    top: 100%;
}

.bottom-0 {
    bottom: 0;
}

.bottom-50 {
    bottom: 50%;
}

.bottom-100 {
    bottom: 100%;
}

.start-0 {
    left: 0;
}

.start-50 {
    left: 50%;
}

.start-100 {
    left: 100%;
}

.end-0 {
    right: 0;
}

.end-50 {
    right: 50%;
}

.end-100 {
    right: 100%;
}

.translate-middle {
    transform: translate(-50%, -50%);
}

.translate-middle-x {
    transform: translateX(-50%);
}

.translate-middle-y {
    transform: translateY(-50%);
}

.border {
    border: 1px solid #dee2e6;
}

.border-0 {
    border: 0;
}

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

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

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

.border-end-0 {
    border-right: 0;
}

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

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

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

.border-start-0 {
    border-left: 0;
}

.border-primary {
    border-color: #bb5656;
}

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

.border-success {
    border-color: #198754;
}

.border-info {
    border-color: #0dcaf0;
}

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

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

.border-light {
    border-color: #f9e3e3;
}

.border-dark {
    border-color: #894646;
}

.border-white {
    border-color: #f9e3e3;
}

.border-1 {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-3 {
    border-width: 3px;
}

.border-4 {
    border-width: 4px;
}

.border-5 {
    border-width: 5px;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.mw-100 {
    max-width: 100%;
}

.vw-100 {
    width: 100vw;
}

.min-vw-100 {
    min-width: 100vw;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.mh-100 {
    max-height: 100%;
}

.vh-100 {
    height: 100vh;
}

.min-vh-100 {
    min-height: 100vh;
}

.flex-fill {
    flex: 1 1 auto;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

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

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.order-first {
    order: -1;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-last {
    order: 6;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

.m-auto {
    margin: auto;
}

.mx-0 {
    margin-right: 0;
    margin-left: 0;
}

.mx-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.mx-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.mx-3 {
    margin-right: 1rem;
    margin-left: 1rem;
}

.mx-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}

.mx-5 {
    margin-right: 3rem;
    margin-left: 3rem;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.me-0 {
    margin-right: 0;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.me-5 {
    margin-right: 3rem;
}

.me-auto {
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-auto {
    margin-bottom: auto;
}

.ms-0 {
    margin-left: 0;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.ms-5 {
    margin-left: 3rem;
}

.ms-auto {
    margin-left: auto;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.px-0 {
    padding-right: 0;
    padding-left: 0;
}

.px-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.px-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.px-3 {
    padding-right: 1rem;
    padding-left: 1rem;
}

.px-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.px-5 {
    padding-right: 3rem;
    padding-left: 3rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pe-0 {
    padding-right: 0;
}

.pe-1 {
    padding-right: 0.25rem;
}

.pe-2 {
    padding-right: 0.5rem;
}

.pe-3 {
    padding-right: 1rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.pe-5 {
    padding-right: 3rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.ps-0 {
    padding-left: 0;
}

.ps-1 {
    padding-left: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.ps-3 {
    padding-left: 1rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.ps-5 {
    padding-left: 3rem;
}

.font-monospace {
    font-family: var(--bs-font-monospace);
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw);
}

.fs-2 {
    font-size: calc(1.325rem + 0.9vw);
}

.fs-3 {
    font-size: calc(1.3rem + 0.6vw);
}

.fs-4 {
    font-size: calc(1.275rem + 0.3vw);
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1rem;
}

.fst-italic {
    font-style: italic;
}

.fst-normal {
    font-style: normal;
}

.fw-light {
    font-weight: 300;
}

.fw-lighter {
    font-weight: lighter;
}

.fw-normal {
    font-weight: 400;
}

.fw-bold {
    font-weight: 700;
}

.fw-bolder {
    font-weight: bolder;
}

.lh-1 {
    line-height: 1;
}

.lh-sm {
    line-height: 1.25;
}

.lh-base {
    line-height: 1.5;
}

.lh-lg {
    line-height: 2;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

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

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.text-lowercase {
    text-transform: lowercase;
}

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

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

.text-wrap {
    white-space: normal;
}

.text-nowrap {
    white-space: nowrap;
}

/* rtl:begin:remove */
.text-break {
    word-wrap: break-word;
    word-break: break-word;
}

/* rtl:end:remove */
.text-primary {
    color: #bb5656;
}

.text-secondary {
    color: #6c757d;
}

.text-success {
    color: #198754;
}

.text-info {
    color: #0dcaf0;
}

.text-warning {
    color: #ffc107;
}

.text-danger {
    color: #dc3545;
}

.text-light {
    color: #f9e3e3;
}

.text-dark {
    color: #894646;
}

.text-white {
    color: #f9e3e3;
}

.text-body {
    color: #000000;
}

.text-muted {
    color: #6c757d;
}

.text-black-50 {
    color: rgba(33, 37, 41, 0.5);
}

.text-white-50 {
    color: rgba(249, 227, 227, 0.5);
}

.text-reset {
    color: inherit;
}

.bg-primary {
    background-color: #bb5656;
}

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

.bg-success {
    background-color: #198754;
}

.bg-info {
    background-color: #0dcaf0;
}

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

.bg-danger {
    background-color: #dc3545;
}

.bg-light {
    background-color: #f9e3e3;
}

.bg-dark {
    background-color: #894646;
}

.bg-body {
    background-color: #fffefe;
}

.bg-white {
    background-color: #f9e3e3;
}

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

.bg-gradient {
    background-image: var(--bs-gradient);
}

.user-select-all {
    user-select: all;
}

.user-select-auto {
    user-select: auto;
}

.user-select-none {
    user-select: none;
}

.pe-none {
    pointer-events: none;
}

.pe-auto {
    pointer-events: auto;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-0 {
    border-radius: 0;
}

.rounded-1 {
    border-radius: 0.2rem;
}

.rounded-2 {
    border-radius: 0.25rem;
}

.rounded-3 {
    border-radius: 0.3rem;
}

.rounded-circle {
    border-radius: 50%;
}

.rounded-pill {
    border-radius: 50rem;
}

.rounded-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.rounded-end {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.rounded-start {
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left;
    }

    .float-sm-end {
        float: right;
    }

    .float-sm-none {
        float: none;
    }

    .d-sm-inline {
        display: inline;
    }

    .d-sm-inline-block {
        display: inline-block;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-grid {
        display: grid;
    }

    .d-sm-table {
        display: table;
    }

    .d-sm-table-row {
        display: table-row;
    }

    .d-sm-table-cell {
        display: table-cell;
    }

    .d-sm-flex {
        display: flex;
    }

    .d-sm-inline-flex {
        display: inline-flex;
    }

    .d-sm-none {
        display: none;
    }

    .flex-sm-fill {
        flex: 1 1 auto;
    }

    .flex-sm-row {
        flex-direction: row;
    }

    .flex-sm-column {
        flex-direction: column;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-sm-grow-0 {
        flex-grow: 0;
    }

    .flex-sm-grow-1 {
        flex-grow: 1;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1;
    }

    .flex-sm-wrap {
        flex-wrap: wrap;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-sm-0 {
        gap: 0;
    }

    .gap-sm-1 {
        gap: 0.25rem;
    }

    .gap-sm-2 {
        gap: 0.5rem;
    }

    .gap-sm-3 {
        gap: 1rem;
    }

    .gap-sm-4 {
        gap: 1.5rem;
    }

    .gap-sm-5 {
        gap: 3rem;
    }

    .justify-content-sm-start {
        justify-content: flex-start;
    }

    .justify-content-sm-end {
        justify-content: flex-end;
    }

    .justify-content-sm-center {
        justify-content: center;
    }

    .justify-content-sm-between {
        justify-content: space-between;
    }

    .justify-content-sm-around {
        justify-content: space-around;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly;
    }

    .align-items-sm-start {
        align-items: flex-start;
    }

    .align-items-sm-end {
        align-items: flex-end;
    }

    .align-items-sm-center {
        align-items: center;
    }

    .align-items-sm-baseline {
        align-items: baseline;
    }

    .align-items-sm-stretch {
        align-items: stretch;
    }

    .align-content-sm-start {
        align-content: flex-start;
    }

    .align-content-sm-end {
        align-content: flex-end;
    }

    .align-content-sm-center {
        align-content: center;
    }

    .align-content-sm-between {
        align-content: space-between;
    }

    .align-content-sm-around {
        align-content: space-around;
    }

    .align-content-sm-stretch {
        align-content: stretch;
    }

    .align-self-sm-auto {
        align-self: auto;
    }

    .align-self-sm-start {
        align-self: flex-start;
    }

    .align-self-sm-end {
        align-self: flex-end;
    }

    .align-self-sm-center {
        align-self: center;
    }

    .align-self-sm-baseline {
        align-self: baseline;
    }

    .align-self-sm-stretch {
        align-self: stretch;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-last {
        order: 6;
    }

    .m-sm-0 {
        margin: 0;
    }

    .m-sm-1 {
        margin: 0.25rem;
    }

    .m-sm-2 {
        margin: 0.5rem;
    }

    .m-sm-3 {
        margin: 1rem;
    }

    .m-sm-4 {
        margin: 1.5rem;
    }

    .m-sm-5 {
        margin: 3rem;
    }

    .m-sm-auto {
        margin: auto;
    }

    .mx-sm-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-sm-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-sm-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-sm-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-sm-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-sm-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-sm-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-sm-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-sm-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-sm-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-sm-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-sm-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-sm-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-sm-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-sm-0 {
        margin-top: 0;
    }

    .mt-sm-1 {
        margin-top: 0.25rem;
    }

    .mt-sm-2 {
        margin-top: 0.5rem;
    }

    .mt-sm-3 {
        margin-top: 1rem;
    }

    .mt-sm-4 {
        margin-top: 1.5rem;
    }

    .mt-sm-5 {
        margin-top: 3rem;
    }

    .mt-sm-auto {
        margin-top: auto;
    }

    .me-sm-0 {
        margin-right: 0;
    }

    .me-sm-1 {
        margin-right: 0.25rem;
    }

    .me-sm-2 {
        margin-right: 0.5rem;
    }

    .me-sm-3 {
        margin-right: 1rem;
    }

    .me-sm-4 {
        margin-right: 1.5rem;
    }

    .me-sm-5 {
        margin-right: 3rem;
    }

    .me-sm-auto {
        margin-right: auto;
    }

    .mb-sm-0 {
        margin-bottom: 0;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem;
    }

    .mb-sm-3 {
        margin-bottom: 1rem;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem;
    }

    .mb-sm-5 {
        margin-bottom: 3rem;
    }

    .mb-sm-auto {
        margin-bottom: auto;
    }

    .ms-sm-0 {
        margin-left: 0;
    }

    .ms-sm-1 {
        margin-left: 0.25rem;
    }

    .ms-sm-2 {
        margin-left: 0.5rem;
    }

    .ms-sm-3 {
        margin-left: 1rem;
    }

    .ms-sm-4 {
        margin-left: 1.5rem;
    }

    .ms-sm-5 {
        margin-left: 3rem;
    }

    .ms-sm-auto {
        margin-left: auto;
    }

    .p-sm-0 {
        padding: 0;
    }

    .p-sm-1 {
        padding: 0.25rem;
    }

    .p-sm-2 {
        padding: 0.5rem;
    }

    .p-sm-3 {
        padding: 1rem;
    }

    .p-sm-4 {
        padding: 1.5rem;
    }

    .p-sm-5 {
        padding: 3rem;
    }

    .px-sm-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-sm-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-sm-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-sm-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-sm-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-sm-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-sm-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-sm-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-sm-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-sm-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-sm-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-sm-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-sm-0 {
        padding-top: 0;
    }

    .pt-sm-1 {
        padding-top: 0.25rem;
    }

    .pt-sm-2 {
        padding-top: 0.5rem;
    }

    .pt-sm-3 {
        padding-top: 1rem;
    }

    .pt-sm-4 {
        padding-top: 1.5rem;
    }

    .pt-sm-5 {
        padding-top: 3rem;
    }

    .pe-sm-0 {
        padding-right: 0;
    }

    .pe-sm-1 {
        padding-right: 0.25rem;
    }

    .pe-sm-2 {
        padding-right: 0.5rem;
    }

    .pe-sm-3 {
        padding-right: 1rem;
    }

    .pe-sm-4 {
        padding-right: 1.5rem;
    }

    .pe-sm-5 {
        padding-right: 3rem;
    }

    .pb-sm-0 {
        padding-bottom: 0;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem;
    }

    .pb-sm-3 {
        padding-bottom: 1rem;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem;
    }

    .pb-sm-5 {
        padding-bottom: 3rem;
    }

    .ps-sm-0 {
        padding-left: 0;
    }

    .ps-sm-1 {
        padding-left: 0.25rem;
    }

    .ps-sm-2 {
        padding-left: 0.5rem;
    }

    .ps-sm-3 {
        padding-left: 1rem;
    }

    .ps-sm-4 {
        padding-left: 1.5rem;
    }

    .ps-sm-5 {
        padding-left: 3rem;
    }

    .text-sm-start {
        text-align: left;
    }

    .text-sm-end {
        text-align: right;
    }

    .text-sm-center {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left;
    }

    .float-md-end {
        float: right;
    }

    .float-md-none {
        float: none;
    }

    .d-md-inline {
        display: inline;
    }

    .d-md-inline-block {
        display: inline-block;
    }

    .d-md-block {
        display: block;
    }

    .d-md-grid {
        display: grid;
    }

    .d-md-table {
        display: table;
    }

    .d-md-table-row {
        display: table-row;
    }

    .d-md-table-cell {
        display: table-cell;
    }

    .d-md-flex {
        display: flex;
    }

    .d-md-inline-flex {
        display: inline-flex;
    }

    .d-md-none {
        display: none;
    }

    .flex-md-fill {
        flex: 1 1 auto;
    }

    .flex-md-row {
        flex-direction: row;
    }

    .flex-md-column {
        flex-direction: column;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-md-grow-0 {
        flex-grow: 0;
    }

    .flex-md-grow-1 {
        flex-grow: 1;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1;
    }

    .flex-md-wrap {
        flex-wrap: wrap;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-md-0 {
        gap: 0;
    }

    .gap-md-1 {
        gap: 0.25rem;
    }

    .gap-md-2 {
        gap: 0.5rem;
    }

    .gap-md-3 {
        gap: 1rem;
    }

    .gap-md-4 {
        gap: 1.5rem;
    }

    .gap-md-5 {
        gap: 3rem;
    }

    .justify-content-md-start {
        justify-content: flex-start;
    }

    .justify-content-md-end {
        justify-content: flex-end;
    }

    .justify-content-md-center {
        justify-content: center;
    }

    .justify-content-md-between {
        justify-content: space-between;
    }

    .justify-content-md-around {
        justify-content: space-around;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly;
    }

    .align-items-md-start {
        align-items: flex-start;
    }

    .align-items-md-end {
        align-items: flex-end;
    }

    .align-items-md-center {
        align-items: center;
    }

    .align-items-md-baseline {
        align-items: baseline;
    }

    .align-items-md-stretch {
        align-items: stretch;
    }

    .align-content-md-start {
        align-content: flex-start;
    }

    .align-content-md-end {
        align-content: flex-end;
    }

    .align-content-md-center {
        align-content: center;
    }

    .align-content-md-between {
        align-content: space-between;
    }

    .align-content-md-around {
        align-content: space-around;
    }

    .align-content-md-stretch {
        align-content: stretch;
    }

    .align-self-md-auto {
        align-self: auto;
    }

    .align-self-md-start {
        align-self: flex-start;
    }

    .align-self-md-end {
        align-self: flex-end;
    }

    .align-self-md-center {
        align-self: center;
    }

    .align-self-md-baseline {
        align-self: baseline;
    }

    .align-self-md-stretch {
        align-self: stretch;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-last {
        order: 6;
    }

    .m-md-0 {
        margin: 0;
    }

    .m-md-1 {
        margin: 0.25rem;
    }

    .m-md-2 {
        margin: 0.5rem;
    }

    .m-md-3 {
        margin: 1rem;
    }

    .m-md-4 {
        margin: 1.5rem;
    }

    .m-md-5 {
        margin: 3rem;
    }

    .m-md-auto {
        margin: auto;
    }

    .mx-md-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-md-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-md-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-md-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-md-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-md-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-md-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-md-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-md-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-md-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-md-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-md-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-md-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-md-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-md-0 {
        margin-top: 0;
    }

    .mt-md-1 {
        margin-top: 0.25rem;
    }

    .mt-md-2 {
        margin-top: 0.5rem;
    }

    .mt-md-3 {
        margin-top: 1rem;
    }

    .mt-md-4 {
        margin-top: 1.5rem;
    }

    .mt-md-5 {
        margin-top: 3rem;
    }

    .mt-md-auto {
        margin-top: auto;
    }

    .me-md-0 {
        margin-right: 0;
    }

    .me-md-1 {
        margin-right: 0.25rem;
    }

    .me-md-2 {
        margin-right: 0.5rem;
    }

    .me-md-3 {
        margin-right: 1rem;
    }

    .me-md-4 {
        margin-right: 1.5rem;
    }

    .me-md-5 {
        margin-right: 3rem;
    }

    .me-md-auto {
        margin-right: auto;
    }

    .mb-md-0 {
        margin-bottom: 0;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem;
    }

    .mb-md-3 {
        margin-bottom: 1rem;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem;
    }

    .mb-md-5 {
        margin-bottom: 3rem;
    }

    .mb-md-auto {
        margin-bottom: auto;
    }

    .ms-md-0 {
        margin-left: 0;
    }

    .ms-md-1 {
        margin-left: 0.25rem;
    }

    .ms-md-2 {
        margin-left: 0.5rem;
    }

    .ms-md-3 {
        margin-left: 1rem;
    }

    .ms-md-4 {
        margin-left: 1.5rem;
    }

    .ms-md-5 {
        margin-left: 3rem;
    }

    .ms-md-auto {
        margin-left: auto;
    }

    .p-md-0 {
        padding: 0;
    }

    .p-md-1 {
        padding: 0.25rem;
    }

    .p-md-2 {
        padding: 0.5rem;
    }

    .p-md-3 {
        padding: 1rem;
    }

    .p-md-4 {
        padding: 1.5rem;
    }

    .p-md-5 {
        padding: 3rem;
    }

    .px-md-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-md-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-md-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-md-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-md-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-md-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-md-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-md-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-md-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-md-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-md-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-md-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-md-0 {
        padding-top: 0;
    }

    .pt-md-1 {
        padding-top: 0.25rem;
    }

    .pt-md-2 {
        padding-top: 0.5rem;
    }

    .pt-md-3 {
        padding-top: 1rem;
    }

    .pt-md-4 {
        padding-top: 1.5rem;
    }

    .pt-md-5 {
        padding-top: 3rem;
    }

    .pe-md-0 {
        padding-right: 0;
    }

    .pe-md-1 {
        padding-right: 0.25rem;
    }

    .pe-md-2 {
        padding-right: 0.5rem;
    }

    .pe-md-3 {
        padding-right: 1rem;
    }

    .pe-md-4 {
        padding-right: 1.5rem;
    }

    .pe-md-5 {
        padding-right: 3rem;
    }

    .pb-md-0 {
        padding-bottom: 0;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem;
    }

    .pb-md-3 {
        padding-bottom: 1rem;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem;
    }

    .pb-md-5 {
        padding-bottom: 3rem;
    }

    .ps-md-0 {
        padding-left: 0;
    }

    .ps-md-1 {
        padding-left: 0.25rem;
    }

    .ps-md-2 {
        padding-left: 0.5rem;
    }

    .ps-md-3 {
        padding-left: 1rem;
    }

    .ps-md-4 {
        padding-left: 1.5rem;
    }

    .ps-md-5 {
        padding-left: 3rem;
    }

    .text-md-start {
        text-align: left;
    }

    .text-md-end {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left;
    }

    .float-lg-end {
        float: right;
    }

    .float-lg-none {
        float: none;
    }

    .d-lg-inline {
        display: inline;
    }

    .d-lg-inline-block {
        display: inline-block;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-grid {
        display: grid;
    }

    .d-lg-table {
        display: table;
    }

    .d-lg-table-row {
        display: table-row;
    }

    .d-lg-table-cell {
        display: table-cell;
    }

    .d-lg-flex {
        display: flex;
    }

    .d-lg-inline-flex {
        display: inline-flex;
    }

    .d-lg-none {
        display: none;
    }

    .flex-lg-fill {
        flex: 1 1 auto;
    }

    .flex-lg-row {
        flex-direction: row;
    }

    .flex-lg-column {
        flex-direction: column;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-lg-grow-0 {
        flex-grow: 0;
    }

    .flex-lg-grow-1 {
        flex-grow: 1;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1;
    }

    .flex-lg-wrap {
        flex-wrap: wrap;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-lg-0 {
        gap: 0;
    }

    .gap-lg-1 {
        gap: 0.25rem;
    }

    .gap-lg-2 {
        gap: 0.5rem;
    }

    .gap-lg-3 {
        gap: 1rem;
    }

    .gap-lg-4 {
        gap: 1.5rem;
    }

    .gap-lg-5 {
        gap: 3rem;
    }

    .justify-content-lg-start {
        justify-content: flex-start;
    }

    .justify-content-lg-end {
        justify-content: flex-end;
    }

    .justify-content-lg-center {
        justify-content: center;
    }

    .justify-content-lg-between {
        justify-content: space-between;
    }

    .justify-content-lg-around {
        justify-content: space-around;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly;
    }

    .align-items-lg-start {
        align-items: flex-start;
    }

    .align-items-lg-end {
        align-items: flex-end;
    }

    .align-items-lg-center {
        align-items: center;
    }

    .align-items-lg-baseline {
        align-items: baseline;
    }

    .align-items-lg-stretch {
        align-items: stretch;
    }

    .align-content-lg-start {
        align-content: flex-start;
    }

    .align-content-lg-end {
        align-content: flex-end;
    }

    .align-content-lg-center {
        align-content: center;
    }

    .align-content-lg-between {
        align-content: space-between;
    }

    .align-content-lg-around {
        align-content: space-around;
    }

    .align-content-lg-stretch {
        align-content: stretch;
    }

    .align-self-lg-auto {
        align-self: auto;
    }

    .align-self-lg-start {
        align-self: flex-start;
    }

    .align-self-lg-end {
        align-self: flex-end;
    }

    .align-self-lg-center {
        align-self: center;
    }

    .align-self-lg-baseline {
        align-self: baseline;
    }

    .align-self-lg-stretch {
        align-self: stretch;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-last {
        order: 6;
    }

    .m-lg-0 {
        margin: 0;
    }

    .m-lg-1 {
        margin: 0.25rem;
    }

    .m-lg-2 {
        margin: 0.5rem;
    }

    .m-lg-3 {
        margin: 1rem;
    }

    .m-lg-4 {
        margin: 1.5rem;
    }

    .m-lg-5 {
        margin: 3rem;
    }

    .m-lg-auto {
        margin: auto;
    }

    .mx-lg-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-lg-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-lg-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-lg-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-lg-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-lg-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-lg-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-lg-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-lg-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-lg-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-lg-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-lg-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-lg-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-lg-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-lg-0 {
        margin-top: 0;
    }

    .mt-lg-1 {
        margin-top: 0.25rem;
    }

    .mt-lg-2 {
        margin-top: 0.5rem;
    }

    .mt-lg-3 {
        margin-top: 1rem;
    }

    .mt-lg-4 {
        margin-top: 1.5rem;
    }

    .mt-lg-5 {
        margin-top: 3rem;
    }

    .mt-lg-auto {
        margin-top: auto;
    }

    .me-lg-0 {
        margin-right: 0;
    }

    .me-lg-1 {
        margin-right: 0.25rem;
    }

    .me-lg-2 {
        margin-right: 0.5rem;
    }

    .me-lg-3 {
        margin-right: 1rem;
    }

    .me-lg-4 {
        margin-right: 1.5rem;
    }

    .me-lg-5 {
        margin-right: 3rem;
    }

    .me-lg-auto {
        margin-right: auto;
    }

    .mb-lg-0 {
        margin-bottom: 0;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem;
    }

    .mb-lg-3 {
        margin-bottom: 1rem;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem;
    }

    .mb-lg-5 {
        margin-bottom: 3rem;
    }

    .mb-lg-auto {
        margin-bottom: auto;
    }

    .ms-lg-0 {
        margin-left: 0;
    }

    .ms-lg-1 {
        margin-left: 0.25rem;
    }

    .ms-lg-2 {
        margin-left: 0.5rem;
    }

    .ms-lg-3 {
        margin-left: 1rem;
    }

    .ms-lg-4 {
        margin-left: 1.5rem;
    }

    .ms-lg-5 {
        margin-left: 3rem;
    }

    .ms-lg-auto {
        margin-left: auto;
    }

    .p-lg-0 {
        padding: 0;
    }

    .p-lg-1 {
        padding: 0.25rem;
    }

    .p-lg-2 {
        padding: 0.5rem;
    }

    .p-lg-3 {
        padding: 1rem;
    }

    .p-lg-4 {
        padding: 1.5rem;
    }

    .p-lg-5 {
        padding: 3rem;
    }

    .px-lg-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-lg-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-lg-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-lg-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-lg-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-lg-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-lg-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-lg-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-lg-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-lg-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-lg-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-lg-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-lg-0 {
        padding-top: 0;
    }

    .pt-lg-1 {
        padding-top: 0.25rem;
    }

    .pt-lg-2 {
        padding-top: 0.5rem;
    }

    .pt-lg-3 {
        padding-top: 1rem;
    }

    .pt-lg-4 {
        padding-top: 1.5rem;
    }

    .pt-lg-5 {
        padding-top: 3rem;
    }

    .pe-lg-0 {
        padding-right: 0;
    }

    .pe-lg-1 {
        padding-right: 0.25rem;
    }

    .pe-lg-2 {
        padding-right: 0.5rem;
    }

    .pe-lg-3 {
        padding-right: 1rem;
    }

    .pe-lg-4 {
        padding-right: 1.5rem;
    }

    .pe-lg-5 {
        padding-right: 3rem;
    }

    .pb-lg-0 {
        padding-bottom: 0;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem;
    }

    .pb-lg-3 {
        padding-bottom: 1rem;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem;
    }

    .pb-lg-5 {
        padding-bottom: 3rem;
    }

    .ps-lg-0 {
        padding-left: 0;
    }

    .ps-lg-1 {
        padding-left: 0.25rem;
    }

    .ps-lg-2 {
        padding-left: 0.5rem;
    }

    .ps-lg-3 {
        padding-left: 1rem;
    }

    .ps-lg-4 {
        padding-left: 1.5rem;
    }

    .ps-lg-5 {
        padding-left: 3rem;
    }

    .text-lg-start {
        text-align: left;
    }

    .text-lg-end {
        text-align: right;
    }

    .text-lg-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: left;
    }

    .float-xl-end {
        float: right;
    }

    .float-xl-none {
        float: none;
    }

    .d-xl-inline {
        display: inline;
    }

    .d-xl-inline-block {
        display: inline-block;
    }

    .d-xl-block {
        display: block;
    }

    .d-xl-grid {
        display: grid;
    }

    .d-xl-table {
        display: table;
    }

    .d-xl-table-row {
        display: table-row;
    }

    .d-xl-table-cell {
        display: table-cell;
    }

    .d-xl-flex {
        display: flex;
    }

    .d-xl-inline-flex {
        display: inline-flex;
    }

    .d-xl-none {
        display: none;
    }

    .flex-xl-fill {
        flex: 1 1 auto;
    }

    .flex-xl-row {
        flex-direction: row;
    }

    .flex-xl-column {
        flex-direction: column;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-xl-grow-0 {
        flex-grow: 0;
    }

    .flex-xl-grow-1 {
        flex-grow: 1;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1;
    }

    .flex-xl-wrap {
        flex-wrap: wrap;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-xl-0 {
        gap: 0;
    }

    .gap-xl-1 {
        gap: 0.25rem;
    }

    .gap-xl-2 {
        gap: 0.5rem;
    }

    .gap-xl-3 {
        gap: 1rem;
    }

    .gap-xl-4 {
        gap: 1.5rem;
    }

    .gap-xl-5 {
        gap: 3rem;
    }

    .justify-content-xl-start {
        justify-content: flex-start;
    }

    .justify-content-xl-end {
        justify-content: flex-end;
    }

    .justify-content-xl-center {
        justify-content: center;
    }

    .justify-content-xl-between {
        justify-content: space-between;
    }

    .justify-content-xl-around {
        justify-content: space-around;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly;
    }

    .align-items-xl-start {
        align-items: flex-start;
    }

    .align-items-xl-end {
        align-items: flex-end;
    }

    .align-items-xl-center {
        align-items: center;
    }

    .align-items-xl-baseline {
        align-items: baseline;
    }

    .align-items-xl-stretch {
        align-items: stretch;
    }

    .align-content-xl-start {
        align-content: flex-start;
    }

    .align-content-xl-end {
        align-content: flex-end;
    }

    .align-content-xl-center {
        align-content: center;
    }

    .align-content-xl-between {
        align-content: space-between;
    }

    .align-content-xl-around {
        align-content: space-around;
    }

    .align-content-xl-stretch {
        align-content: stretch;
    }

    .align-self-xl-auto {
        align-self: auto;
    }

    .align-self-xl-start {
        align-self: flex-start;
    }

    .align-self-xl-end {
        align-self: flex-end;
    }

    .align-self-xl-center {
        align-self: center;
    }

    .align-self-xl-baseline {
        align-self: baseline;
    }

    .align-self-xl-stretch {
        align-self: stretch;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-last {
        order: 6;
    }

    .m-xl-0 {
        margin: 0;
    }

    .m-xl-1 {
        margin: 0.25rem;
    }

    .m-xl-2 {
        margin: 0.5rem;
    }

    .m-xl-3 {
        margin: 1rem;
    }

    .m-xl-4 {
        margin: 1.5rem;
    }

    .m-xl-5 {
        margin: 3rem;
    }

    .m-xl-auto {
        margin: auto;
    }

    .mx-xl-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-xl-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-xl-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-xl-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-xl-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-xl-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-xl-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-xl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-xl-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-xl-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-xl-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-xl-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-xl-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-xl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-xl-0 {
        margin-top: 0;
    }

    .mt-xl-1 {
        margin-top: 0.25rem;
    }

    .mt-xl-2 {
        margin-top: 0.5rem;
    }

    .mt-xl-3 {
        margin-top: 1rem;
    }

    .mt-xl-4 {
        margin-top: 1.5rem;
    }

    .mt-xl-5 {
        margin-top: 3rem;
    }

    .mt-xl-auto {
        margin-top: auto;
    }

    .me-xl-0 {
        margin-right: 0;
    }

    .me-xl-1 {
        margin-right: 0.25rem;
    }

    .me-xl-2 {
        margin-right: 0.5rem;
    }

    .me-xl-3 {
        margin-right: 1rem;
    }

    .me-xl-4 {
        margin-right: 1.5rem;
    }

    .me-xl-5 {
        margin-right: 3rem;
    }

    .me-xl-auto {
        margin-right: auto;
    }

    .mb-xl-0 {
        margin-bottom: 0;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xl-3 {
        margin-bottom: 1rem;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xl-5 {
        margin-bottom: 3rem;
    }

    .mb-xl-auto {
        margin-bottom: auto;
    }

    .ms-xl-0 {
        margin-left: 0;
    }

    .ms-xl-1 {
        margin-left: 0.25rem;
    }

    .ms-xl-2 {
        margin-left: 0.5rem;
    }

    .ms-xl-3 {
        margin-left: 1rem;
    }

    .ms-xl-4 {
        margin-left: 1.5rem;
    }

    .ms-xl-5 {
        margin-left: 3rem;
    }

    .ms-xl-auto {
        margin-left: auto;
    }

    .p-xl-0 {
        padding: 0;
    }

    .p-xl-1 {
        padding: 0.25rem;
    }

    .p-xl-2 {
        padding: 0.5rem;
    }

    .p-xl-3 {
        padding: 1rem;
    }

    .p-xl-4 {
        padding: 1.5rem;
    }

    .p-xl-5 {
        padding: 3rem;
    }

    .px-xl-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-xl-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-xl-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-xl-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-xl-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-xl-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-xl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-xl-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-xl-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-xl-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-xl-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-xl-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-xl-0 {
        padding-top: 0;
    }

    .pt-xl-1 {
        padding-top: 0.25rem;
    }

    .pt-xl-2 {
        padding-top: 0.5rem;
    }

    .pt-xl-3 {
        padding-top: 1rem;
    }

    .pt-xl-4 {
        padding-top: 1.5rem;
    }

    .pt-xl-5 {
        padding-top: 3rem;
    }

    .pe-xl-0 {
        padding-right: 0;
    }

    .pe-xl-1 {
        padding-right: 0.25rem;
    }

    .pe-xl-2 {
        padding-right: 0.5rem;
    }

    .pe-xl-3 {
        padding-right: 1rem;
    }

    .pe-xl-4 {
        padding-right: 1.5rem;
    }

    .pe-xl-5 {
        padding-right: 3rem;
    }

    .pb-xl-0 {
        padding-bottom: 0;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem;
    }

    .pb-xl-3 {
        padding-bottom: 1rem;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem;
    }

    .pb-xl-5 {
        padding-bottom: 3rem;
    }

    .ps-xl-0 {
        padding-left: 0;
    }

    .ps-xl-1 {
        padding-left: 0.25rem;
    }

    .ps-xl-2 {
        padding-left: 0.5rem;
    }

    .ps-xl-3 {
        padding-left: 1rem;
    }

    .ps-xl-4 {
        padding-left: 1.5rem;
    }

    .ps-xl-5 {
        padding-left: 3rem;
    }

    .text-xl-start {
        text-align: left;
    }

    .text-xl-end {
        text-align: right;
    }

    .text-xl-center {
        text-align: center;
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float: left;
    }

    .float-xxl-end {
        float: right;
    }

    .float-xxl-none {
        float: none;
    }

    .d-xxl-inline {
        display: inline;
    }

    .d-xxl-inline-block {
        display: inline-block;
    }

    .d-xxl-block {
        display: block;
    }

    .d-xxl-grid {
        display: grid;
    }

    .d-xxl-table {
        display: table;
    }

    .d-xxl-table-row {
        display: table-row;
    }

    .d-xxl-table-cell {
        display: table-cell;
    }

    .d-xxl-flex {
        display: flex;
    }

    .d-xxl-inline-flex {
        display: inline-flex;
    }

    .d-xxl-none {
        display: none;
    }

    .flex-xxl-fill {
        flex: 1 1 auto;
    }

    .flex-xxl-row {
        flex-direction: row;
    }

    .flex-xxl-column {
        flex-direction: column;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-xxl-0 {
        gap: 0;
    }

    .gap-xxl-1 {
        gap: 0.25rem;
    }

    .gap-xxl-2 {
        gap: 0.5rem;
    }

    .gap-xxl-3 {
        gap: 1rem;
    }

    .gap-xxl-4 {
        gap: 1.5rem;
    }

    .gap-xxl-5 {
        gap: 3rem;
    }

    .justify-content-xxl-start {
        justify-content: flex-start;
    }

    .justify-content-xxl-end {
        justify-content: flex-end;
    }

    .justify-content-xxl-center {
        justify-content: center;
    }

    .justify-content-xxl-between {
        justify-content: space-between;
    }

    .justify-content-xxl-around {
        justify-content: space-around;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly;
    }

    .align-items-xxl-start {
        align-items: flex-start;
    }

    .align-items-xxl-end {
        align-items: flex-end;
    }

    .align-items-xxl-center {
        align-items: center;
    }

    .align-items-xxl-baseline {
        align-items: baseline;
    }

    .align-items-xxl-stretch {
        align-items: stretch;
    }

    .align-content-xxl-start {
        align-content: flex-start;
    }

    .align-content-xxl-end {
        align-content: flex-end;
    }

    .align-content-xxl-center {
        align-content: center;
    }

    .align-content-xxl-between {
        align-content: space-between;
    }

    .align-content-xxl-around {
        align-content: space-around;
    }

    .align-content-xxl-stretch {
        align-content: stretch;
    }

    .align-self-xxl-auto {
        align-self: auto;
    }

    .align-self-xxl-start {
        align-self: flex-start;
    }

    .align-self-xxl-end {
        align-self: flex-end;
    }

    .align-self-xxl-center {
        align-self: center;
    }

    .align-self-xxl-baseline {
        align-self: baseline;
    }

    .align-self-xxl-stretch {
        align-self: stretch;
    }

    .order-xxl-first {
        order: -1;
    }

    .order-xxl-0 {
        order: 0;
    }

    .order-xxl-1 {
        order: 1;
    }

    .order-xxl-2 {
        order: 2;
    }

    .order-xxl-3 {
        order: 3;
    }

    .order-xxl-4 {
        order: 4;
    }

    .order-xxl-5 {
        order: 5;
    }

    .order-xxl-last {
        order: 6;
    }

    .m-xxl-0 {
        margin: 0;
    }

    .m-xxl-1 {
        margin: 0.25rem;
    }

    .m-xxl-2 {
        margin: 0.5rem;
    }

    .m-xxl-3 {
        margin: 1rem;
    }

    .m-xxl-4 {
        margin: 1.5rem;
    }

    .m-xxl-5 {
        margin: 3rem;
    }

    .m-xxl-auto {
        margin: auto;
    }

    .mx-xxl-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-xxl-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-xxl-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-xxl-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-xxl-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-xxl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-xxl-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-xxl-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-xxl-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-xxl-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-xxl-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-xxl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-xxl-0 {
        margin-top: 0;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem;
    }

    .mt-xxl-3 {
        margin-top: 1rem;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem;
    }

    .mt-xxl-5 {
        margin-top: 3rem;
    }

    .mt-xxl-auto {
        margin-top: auto;
    }

    .me-xxl-0 {
        margin-right: 0;
    }

    .me-xxl-1 {
        margin-right: 0.25rem;
    }

    .me-xxl-2 {
        margin-right: 0.5rem;
    }

    .me-xxl-3 {
        margin-right: 1rem;
    }

    .me-xxl-4 {
        margin-right: 1.5rem;
    }

    .me-xxl-5 {
        margin-right: 3rem;
    }

    .me-xxl-auto {
        margin-right: auto;
    }

    .mb-xxl-0 {
        margin-bottom: 0;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xxl-5 {
        margin-bottom: 3rem;
    }

    .mb-xxl-auto {
        margin-bottom: auto;
    }

    .ms-xxl-0 {
        margin-left: 0;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem;
    }

    .ms-xxl-3 {
        margin-left: 1rem;
    }

    .ms-xxl-4 {
        margin-left: 1.5rem;
    }

    .ms-xxl-5 {
        margin-left: 3rem;
    }

    .ms-xxl-auto {
        margin-left: auto;
    }

    .p-xxl-0 {
        padding: 0;
    }

    .p-xxl-1 {
        padding: 0.25rem;
    }

    .p-xxl-2 {
        padding: 0.5rem;
    }

    .p-xxl-3 {
        padding: 1rem;
    }

    .p-xxl-4 {
        padding: 1.5rem;
    }

    .p-xxl-5 {
        padding: 3rem;
    }

    .px-xxl-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-xxl-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-xxl-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-xxl-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-xxl-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-xxl-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-xxl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-xxl-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-xxl-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-xxl-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-xxl-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-xxl-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-xxl-0 {
        padding-top: 0;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem;
    }

    .pt-xxl-3 {
        padding-top: 1rem;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem;
    }

    .pt-xxl-5 {
        padding-top: 3rem;
    }

    .pe-xxl-0 {
        padding-right: 0;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem;
    }

    .pe-xxl-3 {
        padding-right: 1rem;
    }

    .pe-xxl-4 {
        padding-right: 1.5rem;
    }

    .pe-xxl-5 {
        padding-right: 3rem;
    }

    .pb-xxl-0 {
        padding-bottom: 0;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem;
    }

    .pb-xxl-5 {
        padding-bottom: 3rem;
    }

    .ps-xxl-0 {
        padding-left: 0;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem;
    }

    .ps-xxl-3 {
        padding-left: 1rem;
    }

    .ps-xxl-4 {
        padding-left: 1.5rem;
    }

    .ps-xxl-5 {
        padding-left: 3rem;
    }

    .text-xxl-start {
        text-align: left;
    }

    .text-xxl-end {
        text-align: right;
    }

    .text-xxl-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem;
    }

    .fs-2 {
        font-size: 2rem;
    }

    .fs-3 {
        font-size: 1.75rem;
    }

    .fs-4 {
        font-size: 1.5rem;
    }
}

@media print {
    .d-print-inline {
        display: inline;
    }

    .d-print-inline-block {
        display: inline-block;
    }

    .d-print-block {
        display: block;
    }

    .d-print-grid {
        display: grid;
    }

    .d-print-table {
        display: table;
    }

    .d-print-table-row {
        display: table-row;
    }

    .d-print-table-cell {
        display: table-cell;
    }

    .d-print-flex {
        display: flex;
    }

    .d-print-inline-flex {
        display: inline-flex;
    }

    .d-print-none {
        display: none;
    }
}

/*!
 * Bootstrap v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
    --bs-default: #894646;
    --bs-secondary: #6aabcf;
    --bs-primary: #bb5656;
    --bs-dark: #894646;
    --bs-light: #fff;
    --bs-grey: #bfbfbf;
    --bs-primary: #bb5656;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f9e3e3;
    --bs-dark: #894646;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(249, 227, 227, 0.15), rgba(249, 227, 227, 0));
}

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

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-;
    }
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #fffefe;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(33, 37, 41, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

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

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

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

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

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

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

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

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

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

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

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

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

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

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

ol,
ul {
    padding-left: 2rem;
}

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

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

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 0.875em;
}

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

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #bb5656;
    text-decoration: underline;
}

a:hover {
    color: #964545;
}

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

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
    direction: ltr
        /* rtl:ignore */
    ;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

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

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #f9e3e3;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

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

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

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

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

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

button,
select {
    text-transform: none;
}

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

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

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

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

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

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

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend+* {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
}

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

output {
    display: inline-block;
}

iframe {
    border: 0;
}

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

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

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

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem;
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem;
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}

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

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

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

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

.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}

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

.blockquote> :last-child {
    margin-bottom: 0;
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.875em;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "— ";
}

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

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

.figure {
    display: inline-block;
}

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

.figure-caption {
    font-size: 0.875em;
    color: #6c757d;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto;
}

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

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

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

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

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

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

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-sm-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-md-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-lg-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xxl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #000000;
    --bs-table-striped-bg: rgba(33, 37, 41, 0.05);
    --bs-table-active-color: #000000;
    --bs-table-active-bg: rgba(33, 37, 41, 0.1);
    --bs-table-hover-color: #000000;
    --bs-table-hover-bg: rgba(33, 37, 41, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #000000;
    vertical-align: top;
    border-color: #dee2e6;
}

.table> :not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
    vertical-align: inherit;
}

.table>thead {
    vertical-align: bottom;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: currentColor;
}

.caption-top {
    caption-side: top;
}

.table-sm> :not(caption)>*>* {
    padding: 0.25rem 0.25rem;
}

.table-bordered> :not(caption)>* {
    border-width: 1px 0;
}

.table-bordered> :not(caption)>*>* {
    border-width: 0 1px;
}

.table-borderless> :not(caption)>*>* {
    border-bottom-width: 0;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.table-primary {
    --bs-table-bg: #f1dddd;
    --bs-table-striped-bg: #e7d4d4;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #dccbcb;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #e1cfd0;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #dccbcb;
}

.table-secondary {
    --bs-table-bg: #e1eef5;
    --bs-table-striped-bg: #d7e4eb;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #cedae1;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #d3dfe6;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #cedae1;
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c8ddd4;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #bfd4cb;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #c4d8d0;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #bfd4cb;
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c6eaf1;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #bedfe7;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #c2e4ec;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #bedfe7;
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f4e9c5;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #e9debd;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #eee4c1;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #e9debd;
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #edced1;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #e3c5c8;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #e8cacd;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #e3c5c8;
}

.table-light {
    --bs-table-bg: #fff;
    --bs-table-striped-bg: #f4f4f4;
    --bs-table-striped-color: #212529;
    --bs-table-active-bg: #e9e9ea;
    --bs-table-active-color: #212529;
    --bs-table-hover-bg: #eeefef;
    --bs-table-hover-color: #212529;
    color: #212529;
    border-color: #e9e9ea;
}

.table-dark {
    --bs-table-bg: #894646;
    --bs-table-striped-bg: #8f4e4e;
    --bs-table-striped-color: #f9e3e3;
    --bs-table-active-bg: #945656;
    --bs-table-active-color: #f9e3e3;
    --bs-table-hover-bg: #915252;
    --bs-table-hover-color: #f9e3e3;
    color: #f9e3e3;
    border-color: #945656;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.form-label {
    margin-bottom: 0.5rem;
}

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

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

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

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #f9e3e3;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-control[type="file"] {
    overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control:focus {
    color: #000000;
    background-color: #f9e3e3;
    border-color: #ddabab;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

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

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

.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #000000;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #000000;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

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

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

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

.form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem;
}

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

.form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem;
}

.form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
    max-width: 3rem;
    height: auto;
    padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: 0.25rem;
}

.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: 0.25rem;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #f9e3e3;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    appearance: none;
}

.form-select:focus {
    border-color: #ddabab;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

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

.form-select:disabled {
    background-color: #e9ecef;
}

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

.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
}

.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #f9e3e3;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(33, 37, 41, 0.25);
    appearance: none;
    color-adjust: exact;
    transition: all 0.2s ease-in-out;
}

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

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input:active {
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: #ddabab;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

.form-check-input:checked {
    background-color: #bb5656;
    border-color: #bb5656;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#f9e3e3' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>");
}

.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2' fill='#f9e3e3'/></svg>");
}

.form-check-input[type="checkbox"]:indeterminate {
    background-color: #bb5656;
    border-color: #bb5656;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#f9e3e3' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>");
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
    opacity: 0.5;
}

.form-switch {
    padding-left: 2.5em;
}

.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(0, 0, 0, 0.25)'/></svg>");
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
}

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

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#ddabab'/></svg>");
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#f9e3e3'/></svg>");
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-check[disabled]+.btn,
.btn-check:disabled+.btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65;
}

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    appearance: none;
}

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

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fffefe, 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fffefe, 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

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

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

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

.form-range::-webkit-slider-thumb:active {
    background-color: #ebcccc;
}

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

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

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

.form-range::-moz-range-thumb:active {
    background-color: #ebcccc;
}

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

.form-range:disabled {
    pointer-events: none;
}

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

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

.form-floating {
    position: relative;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

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

.form-floating>.form-control::placeholder {
    color: transparent;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>.form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>.form-control:-webkit-autofill~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

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

.input-group>.form-control,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

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

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

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

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

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

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

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

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

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

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #f9e3e3;
    background-color: rgba(25, 135, 84, 0.9);
    border-radius: 0.25rem;
}

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

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

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

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

.was-validated .form-select:valid,
.form-select.is-valid {
    border-color: #198754;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .input-group .form-control:valid,
.input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
    z-index: 1;
}

.was-validated .input-group .form-control:valid:focus,
.input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
    z-index: 3;
}

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

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

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

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

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

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

.was-validated .form-select:invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='#dc3545'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#dc3545' stroke='none'/></svg>");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

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

.was-validated .input-group .form-control:invalid,
.input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
    z-index: 2;
}

.was-validated .input-group .form-control:invalid:focus,
.input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
    z-index: 3;
}

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

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

.btn:hover {
    color: #000000;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

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

.btn-primary {
    color: #f9e3e3;
    background-color: #bb5656;
    border-color: #bb5656;
}

.btn-primary:hover {
    color: #f9e3e3;
    background-color: #9f4949;
    border-color: #964545;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #f9e3e3;
    background-color: #9f4949;
    border-color: #964545;
    box-shadow: 0 0 0 0.25rem rgba(196, 107, 107, 0.5);
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    color: #f9e3e3;
    background-color: #964545;
    border-color: #8c4141;
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(196, 107, 107, 0.5);
}

.btn-primary:disabled,
.btn-primary.disabled {
    color: #f9e3e3;
    background-color: #bb5656;
    border-color: #bb5656;
}

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

.btn-secondary:hover {
    color: #f9e3e3;
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #f9e3e3;
    background-color: #5c636a;
    border-color: #565e64;
    box-shadow: 0 0 0 0.25rem rgba(129, 134, 140, 0.5);
}

.btn-check:checked+.btn-secondary,
.btn-check:active+.btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show>.btn-secondary.dropdown-toggle {
    color: #f9e3e3;
    background-color: #565e64;
    border-color: #51585e;
}

.btn-check:checked+.btn-secondary:focus,
.btn-check:active+.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(129, 134, 140, 0.5);
}

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

.btn-success {
    color: #f9e3e3;
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    color: #f9e3e3;
    background-color: #157347;
    border-color: #146c43;
}

.btn-check:focus+.btn-success,
.btn-success:focus {
    color: #f9e3e3;
    background-color: #157347;
    border-color: #146c43;
    box-shadow: 0 0 0 0.25rem rgba(59, 149, 105, 0.5);
}

.btn-check:checked+.btn-success,
.btn-check:active+.btn-success,
.btn-success:active,
.btn-success.active,
.show>.btn-success.dropdown-toggle {
    color: #f9e3e3;
    background-color: #146c43;
    border-color: #13653f;
}

.btn-check:checked+.btn-success:focus,
.btn-check:active+.btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 149, 105, 0.5);
}

.btn-success:disabled,
.btn-success.disabled {
    color: #f9e3e3;
    background-color: #198754;
    border-color: #198754;
}

.btn-info {
    color: #f9e3e3;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-info:hover {
    color: #f9e3e3;
    background-color: #0baccc;
    border-color: #0aa2c0;
}

.btn-check:focus+.btn-info,
.btn-info:focus {
    color: #f9e3e3;
    background-color: #0baccc;
    border-color: #0aa2c0;
    box-shadow: 0 0 0 0.25rem rgba(48, 206, 238, 0.5);
}

.btn-check:checked+.btn-info,
.btn-check:active+.btn-info,
.btn-info:active,
.btn-info.active,
.show>.btn-info.dropdown-toggle {
    color: #f9e3e3;
    background-color: #0aa2c0;
    border-color: #0a98b4;
}

.btn-check:checked+.btn-info:focus,
.btn-check:active+.btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(48, 206, 238, 0.5);
}

.btn-info:disabled,
.btn-info.disabled {
    color: #f9e3e3;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

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

.btn-warning:hover {
    color: #212529;
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
    color: #212529;
    background-color: #ffca2c;
    border-color: #ffc720;
    box-shadow: 0 0 0 0.25rem rgba(222, 170, 12, 0.5);
}

.btn-check:checked+.btn-warning,
.btn-check:active+.btn-warning,
.btn-warning:active,
.btn-warning.active,
.show>.btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffcd39;
    border-color: #ffc720;
}

.btn-check:checked+.btn-warning:focus,
.btn-check:active+.btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(222, 170, 12, 0.5);
}

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

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

.btn-danger:hover {
    color: #f9e3e3;
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
    color: #f9e3e3;
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 0 0 0.25rem rgba(224, 79, 93, 0.5);
}

.btn-check:checked+.btn-danger,
.btn-check:active+.btn-danger,
.btn-danger:active,
.btn-danger.active,
.show>.btn-danger.dropdown-toggle {
    color: #f9e3e3;
    background-color: #b02a37;
    border-color: #a52834;
}

.btn-check:checked+.btn-danger:focus,
.btn-check:active+.btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(224, 79, 93, 0.5);
}

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

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

.btn-light:hover {
    color: #212529;
    background-color: #fae7e7;
    border-color: #fae6e6;
}

.btn-check:focus+.btn-light,
.btn-light:focus {
    color: #212529;
    background-color: #fae7e7;
    border-color: #fae6e6;
    box-shadow: 0 0 0 0.25rem rgba(217, 199, 199, 0.5);
}

.btn-check:checked+.btn-light,
.btn-check:active+.btn-light,
.btn-light:active,
.btn-light.active,
.show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #fae9e9;
    border-color: #fae6e6;
}

.btn-check:checked+.btn-light:focus,
.btn-check:active+.btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 199, 199, 0.5);
}

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

.btn-dark {
    color: #f9e3e3;
    background-color: #894646;
    border-color: #894646;
}

.btn-dark:hover {
    color: #f9e3e3;
    background-color: #743c3c;
    border-color: #6e3838;
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    color: #f9e3e3;
    background-color: #743c3c;
    border-color: #6e3838;
    box-shadow: 0 0 0 0.25rem rgba(154, 94, 94, 0.5);
}

.btn-check:checked+.btn-dark,
.btn-check:active+.btn-dark,
.btn-dark:active,
.btn-dark.active,
.show>.btn-dark.dropdown-toggle {
    color: #f9e3e3;
    background-color: #6e3838;
    border-color: #673535;
}

.btn-check:checked+.btn-dark:focus,
.btn-check:active+.btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(154, 94, 94, 0.5);
}

.btn-dark:disabled,
.btn-dark.disabled {
    color: #f9e3e3;
    background-color: #894646;
    border-color: #894646;
}

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

.btn-outline-primary:hover {
    color: #f9e3e3;
    background-color: #bb5656;
    border-color: #bb5656;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.5);
}

.btn-check:checked+.btn-outline-primary,
.btn-check:active+.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
    color: #f9e3e3;
    background-color: #bb5656;
    border-color: #bb5656;
}

.btn-check:checked+.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.5);
}

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

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

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

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

.btn-check:checked+.btn-outline-secondary,
.btn-check:active+.btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
    color: #f9e3e3;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-check:checked+.btn-outline-secondary:focus,
.btn-check:active+.btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}

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

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

.btn-outline-success:hover {
    color: #f9e3e3;
    background-color: #198754;
    border-color: #198754;
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.btn-check:checked+.btn-outline-success,
.btn-check:active+.btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
    color: #f9e3e3;
    background-color: #198754;
    border-color: #198754;
}

.btn-check:checked+.btn-outline-success:focus,
.btn-check:active+.btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

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

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-outline-info:hover {
    color: #f9e3e3;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}

.btn-check:checked+.btn-outline-info,
.btn-check:active+.btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
    color: #f9e3e3;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-check:checked+.btn-outline-info:focus,
.btn-check:active+.btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}

.btn-outline-info:disabled,
.btn-outline-info.disabled {
    color: #0dcaf0;
    background-color: transparent;
}

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

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

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

.btn-check:checked+.btn-outline-warning,
.btn-check:active+.btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-check:checked+.btn-outline-warning:focus,
.btn-check:active+.btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

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

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

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

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

.btn-check:checked+.btn-outline-danger,
.btn-check:active+.btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
    color: #f9e3e3;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-check:checked+.btn-outline-danger:focus,
.btn-check:active+.btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}

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

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

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

.btn-check:focus+.btn-outline-light,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 227, 227, 0.5);
}

.btn-check:checked+.btn-outline-light,
.btn-check:active+.btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
    color: #212529;
    background-color: #f9e3e3;
    border-color: #f9e3e3;
}

.btn-check:checked+.btn-outline-light:focus,
.btn-check:active+.btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 227, 227, 0.5);
}

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

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

.btn-outline-dark:hover {
    color: #f9e3e3;
    background-color: #894646;
    border-color: #894646;
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.25rem rgba(137, 70, 70, 0.5);
}

.btn-check:checked+.btn-outline-dark,
.btn-check:active+.btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
    color: #f9e3e3;
    background-color: #894646;
    border-color: #894646;
}

.btn-check:checked+.btn-outline-dark:focus,
.btn-check:active+.btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(137, 70, 70, 0.5);
}

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

.btn-link {
    font-weight: 400;
    color: #bb5656;
    text-decoration: underline;
}

.btn-link:hover {
    color: #964545;
}

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

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

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

.fade {
    transition: opacity 0.15s linear;
}

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

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

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

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

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

.dropup,
.dropend,
.dropdown,
.dropstart {
    position: relative;
}

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

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

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

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    list-style: none;
    background-color: #f9e3e3;
    background-clip: padding-box;
    border: 1px solid rgba(33, 37, 41, 0.15);
    border-radius: 0.25rem;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 0.125rem;
}

.dropdown-menu-start {
    --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
    right: auto
        /* rtl:ignore */
    ;
    left: 0
        /* rtl:ignore */
    ;
}

.dropdown-menu-end {
    --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
    right: 0
        /* rtl:ignore */
    ;
    left: auto
        /* rtl:ignore */
    ;
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto
            /* rtl:ignore */
        ;
        left: 0
            /* rtl:ignore */
        ;
    }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0
            /* rtl:ignore */
        ;
        left: auto
            /* rtl:ignore */
        ;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto
            /* rtl:ignore */
        ;
        left: 0
            /* rtl:ignore */
        ;
    }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0
            /* rtl:ignore */
        ;
        left: auto
            /* rtl:ignore */
        ;
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto
            /* rtl:ignore */
        ;
        left: 0
            /* rtl:ignore */
        ;
    }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0
            /* rtl:ignore */
        ;
        left: auto
            /* rtl:ignore */
        ;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto
            /* rtl:ignore */
        ;
        left: 0
            /* rtl:ignore */
        ;
    }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0
            /* rtl:ignore */
        ;
        left: auto
            /* rtl:ignore */
        ;
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto
            /* rtl:ignore */
        ;
        left: 0
            /* rtl:ignore */
        ;
    }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0
            /* rtl:ignore */
        ;
        left: auto
            /* rtl:ignore */
        ;
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

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

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

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

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

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

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

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

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

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

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

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

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

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(33, 37, 41, 0.15);
}

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

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #f9e3e3;
    text-decoration: none;
    background-color: #bb5656;
}

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

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

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

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

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(33, 37, 41, 0.15);
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    color: #f9e3e3;
    background-color: rgba(249, 227, 227, 0.15);
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    color: #f9e3e3;
    background-color: #bb5656;
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(33, 37, 41, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #bb5656;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

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

.nav-link:hover,
.nav-link:focus {
    color: #964545;
}

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #f9e3e3;
    background-color: #bb5656;
}

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

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

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%;
}

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

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

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

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-sm,
.navbar>.container-md,
.navbar>.container-lg,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

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

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

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

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

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

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
}

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

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

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem;
}

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

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

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

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

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

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

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

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

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

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

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

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

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

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

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

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

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

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

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

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

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

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

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

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

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

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

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

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

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

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.navbar-light .navbar-brand {
    color: rgba(33, 37, 41, 0.9);
}

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

.navbar-light .navbar-nav .nav-link {
    color: rgba(33, 37, 41, 0.55);
}

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

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

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

.navbar-light .navbar-toggler {
    color: rgba(33, 37, 41, 0.55);
    border-color: rgba(33, 37, 41, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(33, 37, 41, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.navbar-light .navbar-text {
    color: rgba(33, 37, 41, 0.55);
}

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

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

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

.navbar-dark .navbar-nav .nav-link {
    color: rgba(249, 227, 227, 0.55);
}

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

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

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

.navbar-dark .navbar-toggler {
    color: rgba(249, 227, 227, 0.55);
    border-color: rgba(249, 227, 227, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(249, 227, 227, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.navbar-dark .navbar-text {
    color: rgba(249, 227, 227, 0.55);
}

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

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

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

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(33, 37, 41, 0.03);
    border-top: 1px solid rgba(33, 37, 41, 0.125);
}

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

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

.card-header-tabs .nav-link.active {
    background-color: #f9e3e3;
    border-bottom-color: #f9e3e3;
}

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

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

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

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

.card-group>.card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

    .card-group>.card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group>.card:not(:last-child) .card-img-top,
    .card-group>.card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }

    .card-group>.card:not(:last-child) .card-img-bottom,
    .card-group>.card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }

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

    .card-group>.card:not(:first-child) .card-img-top,
    .card-group>.card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }

    .card-group>.card:not(:first-child) .card-img-bottom,
    .card-group>.card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    background-color: #fffefe;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

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

.accordion-button:not(.collapsed) {
    color: #a84d4d;
    background-color: #f8eeee;
    box-shadow: inset 0 -1px 0 rgba(33, 37, 41, 0.125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#a84d4d'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    transform: rotate(-180deg);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

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

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ddabab;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    background-color: #fffefe;
    border: 1px solid rgba(33, 37, 41, 0.125);
}

.accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-item:not(:first-of-type) {
    border-top: 0;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

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

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

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

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

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-inline-end: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/")
        /* rtl: var(--bs-breadcrumb-divider, "/") */
    ;
}

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

html[dir="rtl"] .breadcrumb-item+.breadcrumb-item:before {
    float: right;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    color: #bb5656;
    text-decoration: none;
    background-color: #f9e3e3;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.page-link:hover {
    z-index: 2;
    color: #964545;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 3;
    color: #964545;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #f9e3e3;
    background-color: #bb5656;
    border-color: #bb5656;
}

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

.page-link {
    padding: 0.375rem 0.75rem;
}

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

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

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

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

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

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

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

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

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #f9e3e3;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge:empty {
    display: none;
}

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

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

.alert-heading {
    color: inherit;
}

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

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

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

.alert-primary {
    color: #703434;
    background-color: #f1dddd;
    border-color: #ebcccc;
}

.alert-primary .alert-link {
    color: #5a2a2a;
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.alert-secondary .alert-link {
    color: #34383c;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

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

.alert-info {
    color: #087990;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-info .alert-link {
    color: #066173;
}

.alert-warning {
    color: #997404;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-warning .alert-link {
    color: #7a5d03;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-danger .alert-link {
    color: #6a1a21;
}

.alert-light {
    color: #958888;
    background-color: #fef9f9;
    border-color: #fdf7f7;
}

.alert-light .alert-link {
    color: #776d6d;
}

.alert-dark {
    color: #522a2a;
    background-color: #e7dada;
    border-color: #dcc8c8;
}

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

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

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

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

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

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

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

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

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

.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}

.list-group-numbered>li::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
}

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

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

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

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #f9e3e3;
    border: 1px solid rgba(33, 37, 41, 0.125);
}

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

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

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

.list-group-item.active {
    z-index: 2;
    color: #f9e3e3;
    background-color: #bb5656;
    border-color: #bb5656;
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction: row;
    }

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

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

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

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

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

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction: row;
    }

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

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

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

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

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

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction: row;
    }

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

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

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

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

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

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction: row;
    }

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

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

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

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

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

@media (min-width: 1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row;
    }

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

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

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

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

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

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

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

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

.list-group-item-primary {
    color: #703434;
    background-color: #f1dddd;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
    color: #703434;
    background-color: #d9c7c7;
}

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

.list-group-item-secondary {
    color: #41464b;
    background-color: #e2e3e5;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
    color: #41464b;
    background-color: #cbccce;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #f9e3e3;
    background-color: #41464b;
    border-color: #41464b;
}

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
    color: #0f5132;
    background-color: #bcd0c7;
}

.list-group-item-success.list-group-item-action.active {
    color: #f9e3e3;
    background-color: #0f5132;
    border-color: #0f5132;
}

.list-group-item-info {
    color: #087990;
    background-color: #cff4fc;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
    color: #087990;
    background-color: #badce3;
}

.list-group-item-info.list-group-item-action.active {
    color: #f9e3e3;
    background-color: #087990;
    border-color: #087990;
}

.list-group-item-warning {
    color: #997404;
    background-color: #fff3cd;
}

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

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

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
    color: #842029;
    background-color: #dfc2c4;
}

.list-group-item-danger.list-group-item-action.active {
    color: #f9e3e3;
    background-color: #842029;
    border-color: #842029;
}

.list-group-item-light {
    color: #958888;
    background-color: #fef9f9;
}

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

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

.list-group-item-dark {
    color: #522a2a;
    background-color: #e7dada;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
    color: #522a2a;
    background-color: #d0c4c4;
}

.list-group-item-dark.list-group-item-action.active {
    color: #f9e3e3;
    background-color: #522a2a;
    border-color: #522a2a;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #212529;
    background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#212529'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center / 1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

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

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(187, 86, 86, 0.25);
    opacity: 1;
}

.btn-close:disabled,
.btn-close.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(249, 227, 227, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(33, 37, 41, 0.15);
    border-radius: 0.25rem;
}

.toast:not(.showing):not(.show) {
    opacity: 0;
}

.toast.hide {
    display: none;
}

.toast-container {
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

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

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

.toast-header .btn-close {
    margin-right: -0.375rem;
    margin-left: 0.75rem;
}

.toast-body {
    padding: 0.75rem;
    word-wrap: break-word;
}

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

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

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

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

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

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

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

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

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

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

.modal-fullscreen .modal-footer {
    border-radius: 0;
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

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

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

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

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

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    top: -1px;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #212529;
}

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

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

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
    right: -1px;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #212529;
}

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

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

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #212529;
}

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

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

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
    left: -1px;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #212529;
}

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

.popover {
    position: absolute;
    top: 0;
    left: 0
        /* rtl:ignore */
    ;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #f9e3e3;
    background-clip: padding-box;
    border: 1px solid rgba(33, 37, 41, 0.2);
    border-radius: 0.3rem;
}

.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
}

.popover .popover-arrow::before,
.popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-popover-top>.popover-arrow,
.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow {
    bottom: calc(-0.5rem - 1px);
}

.bs-popover-top>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(33, 37, 41, 0.25);
}

.bs-popover-top>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #f9e3e3;
}

.bs-popover-end>.popover-arrow,
.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
}

.bs-popover-end>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(33, 37, 41, 0.25);
}

.bs-popover-end>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #f9e3e3;
}

.bs-popover-bottom>.popover-arrow,
.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow {
    top: calc(-0.5rem - 1px);
}

.bs-popover-bottom>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(33, 37, 41, 0.25);
}

.bs-popover-bottom>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #f9e3e3;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #ead5d5;
}

.bs-popover-start>.popover-arrow,
.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
}

.bs-popover-start>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(33, 37, 41, 0.25);
}

.bs-popover-start>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #f9e3e3;
}

.popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #ead5d5;
    border-bottom: 1px solid #d3c0c0;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 1rem 1rem;
    color: #000000;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

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

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

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

/* rtl:end:ignore */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #f9e3e3;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #f9e3e3;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#f9e3e3'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#f9e3e3'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #f9e3e3;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #f9e3e3;
    text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #212529;
}

.carousel-dark .carousel-caption {
    color: #212529;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
            /* rtl:ignore */
        ;
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}

@media (prefers-reduced-motion: reduce) {

    .spinner-border,
    .spinner-grow {
        animation-duration: 1.5s;
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #f9e3e3;
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
}

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

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
}

.offcanvas-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

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

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(33, 37, 41, 0.2);
    transform: translateX(-100%);
}

.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(33, 37, 41, 0.2);
    transform: translateX(100%);
}

.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgba(33, 37, 41, 0.2);
    transform: translateY(-100%);
}

.offcanvas-bottom {
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgba(33, 37, 41, 0.2);
    transform: translateY(100%);
}

.offcanvas.show {
    transform: none;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.link-primary {
    color: #bb5656;
}

.link-primary:hover,
.link-primary:focus {
    color: #964545;
}

.link-secondary {
    color: #6c757d;
}

.link-secondary:hover,
.link-secondary:focus {
    color: #565e64;
}

.link-success {
    color: #198754;
}

.link-success:hover,
.link-success:focus {
    color: #146c43;
}

.link-info {
    color: #0dcaf0;
}

.link-info:hover,
.link-info:focus {
    color: #0aa2c0;
}

.link-warning {
    color: #ffc107;
}

.link-warning:hover,
.link-warning:focus {
    color: #ffcd39;
}

.link-danger {
    color: #dc3545;
}

.link-danger:hover,
.link-danger:focus {
    color: #b02a37;
}

.link-light {
    color: #f9e3e3;
}

.link-light:hover,
.link-light:focus {
    color: #fae9e9;
}

.link-dark {
    color: #894646;
}

.link-dark:hover,
.link-dark:focus {
    color: #6e3838;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%);
}

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

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

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.align-baseline {
    vertical-align: baseline;
}

.align-top {
    vertical-align: top;
}

.align-middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}

.align-text-bottom {
    vertical-align: text-bottom;
}

.align-text-top {
    vertical-align: text-top;
}

.float-start {
    float: left;
}

.float-end {
    float: right;
}

.float-none {
    float: none;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.d-table {
    display: table;
}

.d-table-row {
    display: table-row;
}

.d-table-cell {
    display: table-cell;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.d-none {
    display: none;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(33, 37, 41, 0.15);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(33, 37, 41, 0.075);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(33, 37, 41, 0.175);
}

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

.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.top-50 {
    top: 50%;
}

.top-100 {
    top: 100%;
}

.bottom-0 {
    bottom: 0;
}

.bottom-50 {
    bottom: 50%;
}

.bottom-100 {
    bottom: 100%;
}

.start-0 {
    left: 0;
}

.start-50 {
    left: 50%;
}

.start-100 {
    left: 100%;
}

.end-0 {
    right: 0;
}

.end-50 {
    right: 50%;
}

.end-100 {
    right: 100%;
}

.translate-middle {
    transform: translate(-50%, -50%);
}

.translate-middle-x {
    transform: translateX(-50%);
}

.translate-middle-y {
    transform: translateY(-50%);
}

.border {
    border: 1px solid #dee2e6;
}

.border-0 {
    border: 0;
}

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

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

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

.border-end-0 {
    border-right: 0;
}

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

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

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

.border-start-0 {
    border-left: 0;
}

.border-primary {
    border-color: #bb5656;
}

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

.border-success {
    border-color: #198754;
}

.border-info {
    border-color: #0dcaf0;
}

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

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

.border-light {
    border-color: #f9e3e3;
}

.border-dark {
    border-color: #894646;
}

.border-white {
    border-color: #f9e3e3;
}

.border-1 {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-3 {
    border-width: 3px;
}

.border-4 {
    border-width: 4px;
}

.border-5 {
    border-width: 5px;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.mw-100 {
    max-width: 100%;
}

.vw-100 {
    width: 100vw;
}

.min-vw-100 {
    min-width: 100vw;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.mh-100 {
    max-height: 100%;
}

.vh-100 {
    height: 100vh;
}

.min-vh-100 {
    min-height: 100vh;
}

.flex-fill {
    flex: 1 1 auto;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

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

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.order-first {
    order: -1;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-last {
    order: 6;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

.m-auto {
    margin: auto;
}

.mx-0 {
    margin-right: 0;
    margin-left: 0;
}

.mx-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.mx-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.mx-3 {
    margin-right: 1rem;
    margin-left: 1rem;
}

.mx-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}

.mx-5 {
    margin-right: 3rem;
    margin-left: 3rem;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.me-0 {
    margin-right: 0;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.me-5 {
    margin-right: 3rem;
}

.me-auto {
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-auto {
    margin-bottom: auto;
}

.ms-0 {
    margin-left: 0;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.ms-5 {
    margin-left: 3rem;
}

.ms-auto {
    margin-left: auto;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.px-0 {
    padding-right: 0;
    padding-left: 0;
}

.px-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.px-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.px-3 {
    padding-right: 1rem;
    padding-left: 1rem;
}

.px-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.px-5 {
    padding-right: 3rem;
    padding-left: 3rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pe-0 {
    padding-right: 0;
}

.pe-1 {
    padding-right: 0.25rem;
}

.pe-2 {
    padding-right: 0.5rem;
}

.pe-3 {
    padding-right: 1rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.pe-5 {
    padding-right: 3rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.ps-0 {
    padding-left: 0;
}

.ps-1 {
    padding-left: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.ps-3 {
    padding-left: 1rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.ps-5 {
    padding-left: 3rem;
}

.font-monospace {
    font-family: var(--bs-font-monospace);
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw);
}

.fs-2 {
    font-size: calc(1.325rem + 0.9vw);
}

.fs-3 {
    font-size: calc(1.3rem + 0.6vw);
}

.fs-4 {
    font-size: calc(1.275rem + 0.3vw);
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1rem;
}

.fst-italic {
    font-style: italic;
}

.fst-normal {
    font-style: normal;
}

.fw-light {
    font-weight: 300;
}

.fw-lighter {
    font-weight: lighter;
}

.fw-normal {
    font-weight: 400;
}

.fw-bold {
    font-weight: 700;
}

.fw-bolder {
    font-weight: bolder;
}

.lh-1 {
    line-height: 1;
}

.lh-sm {
    line-height: 1.25;
}

.lh-base {
    line-height: 1.5;
}

.lh-lg {
    line-height: 2;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

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

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.text-lowercase {
    text-transform: lowercase;
}

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

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

.text-wrap {
    white-space: normal;
}

.text-nowrap {
    white-space: nowrap;
}

/* rtl:begin:remove */
.text-break {
    word-wrap: break-word;
    word-break: break-word;
}

/* rtl:end:remove */
.text-primary {
    color: #bb5656;
}

.text-secondary {
    color: #6c757d;
}

.text-success {
    color: #198754;
}

.text-info {
    color: #0dcaf0;
}

.text-warning {
    color: #ffc107;
}

.text-danger {
    color: #dc3545;
}

.text-light {
    color: #f9e3e3;
}

.text-dark {
    color: #894646;
}

.text-white {
    color: #f9e3e3;
}

.text-body {
    color: #000000;
}

.text-muted {
    color: #6c757d;
}

.text-black-50 {
    color: rgba(33, 37, 41, 0.5);
}

.text-white-50 {
    color: rgba(249, 227, 227, 0.5);
}

.text-reset {
    color: inherit;
}

.bg-primary {
    background-color: #bb5656;
}

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

.bg-success {
    background-color: #198754;
}

.bg-info {
    background-color: #0dcaf0;
}

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

.bg-danger {
    background-color: #dc3545;
}

.bg-light {
    background-color: #f9e3e3;
}

.bg-dark {
    background-color: #894646;
}

.bg-body {
    background-color: #fffefe;
}

.bg-white {
    background-color: #f9e3e3;
}

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

.bg-gradient {
    background-image: var(--bs-gradient);
}

.user-select-all {
    user-select: all;
}

.user-select-auto {
    user-select: auto;
}

.user-select-none {
    user-select: none;
}

.pe-none {
    pointer-events: none;
}

.pe-auto {
    pointer-events: auto;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-0 {
    border-radius: 0;
}

.rounded-1 {
    border-radius: 0.2rem;
}

.rounded-2 {
    border-radius: 0.25rem;
}

.rounded-3 {
    border-radius: 0.3rem;
}

.rounded-circle {
    border-radius: 50%;
}

.rounded-pill {
    border-radius: 50rem;
}

.rounded-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.rounded-end {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.rounded-start {
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left;
    }

    .float-sm-end {
        float: right;
    }

    .float-sm-none {
        float: none;
    }

    .d-sm-inline {
        display: inline;
    }

    .d-sm-inline-block {
        display: inline-block;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-grid {
        display: grid;
    }

    .d-sm-table {
        display: table;
    }

    .d-sm-table-row {
        display: table-row;
    }

    .d-sm-table-cell {
        display: table-cell;
    }

    .d-sm-flex {
        display: flex;
    }

    .d-sm-inline-flex {
        display: inline-flex;
    }

    .d-sm-none {
        display: none;
    }

    .flex-sm-fill {
        flex: 1 1 auto;
    }

    .flex-sm-row {
        flex-direction: row;
    }

    .flex-sm-column {
        flex-direction: column;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-sm-grow-0 {
        flex-grow: 0;
    }

    .flex-sm-grow-1 {
        flex-grow: 1;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1;
    }

    .flex-sm-wrap {
        flex-wrap: wrap;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-sm-0 {
        gap: 0;
    }

    .gap-sm-1 {
        gap: 0.25rem;
    }

    .gap-sm-2 {
        gap: 0.5rem;
    }

    .gap-sm-3 {
        gap: 1rem;
    }

    .gap-sm-4 {
        gap: 1.5rem;
    }

    .gap-sm-5 {
        gap: 3rem;
    }

    .justify-content-sm-start {
        justify-content: flex-start;
    }

    .justify-content-sm-end {
        justify-content: flex-end;
    }

    .justify-content-sm-center {
        justify-content: center;
    }

    .justify-content-sm-between {
        justify-content: space-between;
    }

    .justify-content-sm-around {
        justify-content: space-around;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly;
    }

    .align-items-sm-start {
        align-items: flex-start;
    }

    .align-items-sm-end {
        align-items: flex-end;
    }

    .align-items-sm-center {
        align-items: center;
    }

    .align-items-sm-baseline {
        align-items: baseline;
    }

    .align-items-sm-stretch {
        align-items: stretch;
    }

    .align-content-sm-start {
        align-content: flex-start;
    }

    .align-content-sm-end {
        align-content: flex-end;
    }

    .align-content-sm-center {
        align-content: center;
    }

    .align-content-sm-between {
        align-content: space-between;
    }

    .align-content-sm-around {
        align-content: space-around;
    }

    .align-content-sm-stretch {
        align-content: stretch;
    }

    .align-self-sm-auto {
        align-self: auto;
    }

    .align-self-sm-start {
        align-self: flex-start;
    }

    .align-self-sm-end {
        align-self: flex-end;
    }

    .align-self-sm-center {
        align-self: center;
    }

    .align-self-sm-baseline {
        align-self: baseline;
    }

    .align-self-sm-stretch {
        align-self: stretch;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-last {
        order: 6;
    }

    .m-sm-0 {
        margin: 0;
    }

    .m-sm-1 {
        margin: 0.25rem;
    }

    .m-sm-2 {
        margin: 0.5rem;
    }

    .m-sm-3 {
        margin: 1rem;
    }

    .m-sm-4 {
        margin: 1.5rem;
    }

    .m-sm-5 {
        margin: 3rem;
    }

    .m-sm-auto {
        margin: auto;
    }

    .mx-sm-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-sm-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-sm-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-sm-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-sm-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-sm-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-sm-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-sm-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-sm-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-sm-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-sm-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-sm-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-sm-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-sm-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-sm-0 {
        margin-top: 0;
    }

    .mt-sm-1 {
        margin-top: 0.25rem;
    }

    .mt-sm-2 {
        margin-top: 0.5rem;
    }

    .mt-sm-3 {
        margin-top: 1rem;
    }

    .mt-sm-4 {
        margin-top: 1.5rem;
    }

    .mt-sm-5 {
        margin-top: 3rem;
    }

    .mt-sm-auto {
        margin-top: auto;
    }

    .me-sm-0 {
        margin-right: 0;
    }

    .me-sm-1 {
        margin-right: 0.25rem;
    }

    .me-sm-2 {
        margin-right: 0.5rem;
    }

    .me-sm-3 {
        margin-right: 1rem;
    }

    .me-sm-4 {
        margin-right: 1.5rem;
    }

    .me-sm-5 {
        margin-right: 3rem;
    }

    .me-sm-auto {
        margin-right: auto;
    }

    .mb-sm-0 {
        margin-bottom: 0;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem;
    }

    .mb-sm-3 {
        margin-bottom: 1rem;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem;
    }

    .mb-sm-5 {
        margin-bottom: 3rem;
    }

    .mb-sm-auto {
        margin-bottom: auto;
    }

    .ms-sm-0 {
        margin-left: 0;
    }

    .ms-sm-1 {
        margin-left: 0.25rem;
    }

    .ms-sm-2 {
        margin-left: 0.5rem;
    }

    .ms-sm-3 {
        margin-left: 1rem;
    }

    .ms-sm-4 {
        margin-left: 1.5rem;
    }

    .ms-sm-5 {
        margin-left: 3rem;
    }

    .ms-sm-auto {
        margin-left: auto;
    }

    .p-sm-0 {
        padding: 0;
    }

    .p-sm-1 {
        padding: 0.25rem;
    }

    .p-sm-2 {
        padding: 0.5rem;
    }

    .p-sm-3 {
        padding: 1rem;
    }

    .p-sm-4 {
        padding: 1.5rem;
    }

    .p-sm-5 {
        padding: 3rem;
    }

    .px-sm-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-sm-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-sm-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-sm-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-sm-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-sm-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-sm-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-sm-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-sm-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-sm-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-sm-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-sm-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-sm-0 {
        padding-top: 0;
    }

    .pt-sm-1 {
        padding-top: 0.25rem;
    }

    .pt-sm-2 {
        padding-top: 0.5rem;
    }

    .pt-sm-3 {
        padding-top: 1rem;
    }

    .pt-sm-4 {
        padding-top: 1.5rem;
    }

    .pt-sm-5 {
        padding-top: 3rem;
    }

    .pe-sm-0 {
        padding-right: 0;
    }

    .pe-sm-1 {
        padding-right: 0.25rem;
    }

    .pe-sm-2 {
        padding-right: 0.5rem;
    }

    .pe-sm-3 {
        padding-right: 1rem;
    }

    .pe-sm-4 {
        padding-right: 1.5rem;
    }

    .pe-sm-5 {
        padding-right: 3rem;
    }

    .pb-sm-0 {
        padding-bottom: 0;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem;
    }

    .pb-sm-3 {
        padding-bottom: 1rem;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem;
    }

    .pb-sm-5 {
        padding-bottom: 3rem;
    }

    .ps-sm-0 {
        padding-left: 0;
    }

    .ps-sm-1 {
        padding-left: 0.25rem;
    }

    .ps-sm-2 {
        padding-left: 0.5rem;
    }

    .ps-sm-3 {
        padding-left: 1rem;
    }

    .ps-sm-4 {
        padding-left: 1.5rem;
    }

    .ps-sm-5 {
        padding-left: 3rem;
    }

    .text-sm-start {
        text-align: left;
    }

    .text-sm-end {
        text-align: right;
    }

    .text-sm-center {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left;
    }

    .float-md-end {
        float: right;
    }

    .float-md-none {
        float: none;
    }

    .d-md-inline {
        display: inline;
    }

    .d-md-inline-block {
        display: inline-block;
    }

    .d-md-block {
        display: block;
    }

    .d-md-grid {
        display: grid;
    }

    .d-md-table {
        display: table;
    }

    .d-md-table-row {
        display: table-row;
    }

    .d-md-table-cell {
        display: table-cell;
    }

    .d-md-flex {
        display: flex;
    }

    .d-md-inline-flex {
        display: inline-flex;
    }

    .d-md-none {
        display: none;
    }

    .flex-md-fill {
        flex: 1 1 auto;
    }

    .flex-md-row {
        flex-direction: row;
    }

    .flex-md-column {
        flex-direction: column;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-md-grow-0 {
        flex-grow: 0;
    }

    .flex-md-grow-1 {
        flex-grow: 1;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1;
    }

    .flex-md-wrap {
        flex-wrap: wrap;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-md-0 {
        gap: 0;
    }

    .gap-md-1 {
        gap: 0.25rem;
    }

    .gap-md-2 {
        gap: 0.5rem;
    }

    .gap-md-3 {
        gap: 1rem;
    }

    .gap-md-4 {
        gap: 1.5rem;
    }

    .gap-md-5 {
        gap: 3rem;
    }

    .justify-content-md-start {
        justify-content: flex-start;
    }

    .justify-content-md-end {
        justify-content: flex-end;
    }

    .justify-content-md-center {
        justify-content: center;
    }

    .justify-content-md-between {
        justify-content: space-between;
    }

    .justify-content-md-around {
        justify-content: space-around;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly;
    }

    .align-items-md-start {
        align-items: flex-start;
    }

    .align-items-md-end {
        align-items: flex-end;
    }

    .align-items-md-center {
        align-items: center;
    }

    .align-items-md-baseline {
        align-items: baseline;
    }

    .align-items-md-stretch {
        align-items: stretch;
    }

    .align-content-md-start {
        align-content: flex-start;
    }

    .align-content-md-end {
        align-content: flex-end;
    }

    .align-content-md-center {
        align-content: center;
    }

    .align-content-md-between {
        align-content: space-between;
    }

    .align-content-md-around {
        align-content: space-around;
    }

    .align-content-md-stretch {
        align-content: stretch;
    }

    .align-self-md-auto {
        align-self: auto;
    }

    .align-self-md-start {
        align-self: flex-start;
    }

    .align-self-md-end {
        align-self: flex-end;
    }

    .align-self-md-center {
        align-self: center;
    }

    .align-self-md-baseline {
        align-self: baseline;
    }

    .align-self-md-stretch {
        align-self: stretch;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-last {
        order: 6;
    }

    .m-md-0 {
        margin: 0;
    }

    .m-md-1 {
        margin: 0.25rem;
    }

    .m-md-2 {
        margin: 0.5rem;
    }

    .m-md-3 {
        margin: 1rem;
    }

    .m-md-4 {
        margin: 1.5rem;
    }

    .m-md-5 {
        margin: 3rem;
    }

    .m-md-auto {
        margin: auto;
    }

    .mx-md-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-md-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-md-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-md-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-md-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-md-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-md-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-md-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-md-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-md-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-md-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-md-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-md-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-md-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-md-0 {
        margin-top: 0;
    }

    .mt-md-1 {
        margin-top: 0.25rem;
    }

    .mt-md-2 {
        margin-top: 0.5rem;
    }

    .mt-md-3 {
        margin-top: 1rem;
    }

    .mt-md-4 {
        margin-top: 1.5rem;
    }

    .mt-md-5 {
        margin-top: 3rem;
    }

    .mt-md-auto {
        margin-top: auto;
    }

    .me-md-0 {
        margin-right: 0;
    }

    .me-md-1 {
        margin-right: 0.25rem;
    }

    .me-md-2 {
        margin-right: 0.5rem;
    }

    .me-md-3 {
        margin-right: 1rem;
    }

    .me-md-4 {
        margin-right: 1.5rem;
    }

    .me-md-5 {
        margin-right: 3rem;
    }

    .me-md-auto {
        margin-right: auto;
    }

    .mb-md-0 {
        margin-bottom: 0;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem;
    }

    .mb-md-3 {
        margin-bottom: 1rem;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem;
    }

    .mb-md-5 {
        margin-bottom: 3rem;
    }

    .mb-md-auto {
        margin-bottom: auto;
    }

    .ms-md-0 {
        margin-left: 0;
    }

    .ms-md-1 {
        margin-left: 0.25rem;
    }

    .ms-md-2 {
        margin-left: 0.5rem;
    }

    .ms-md-3 {
        margin-left: 1rem;
    }

    .ms-md-4 {
        margin-left: 1.5rem;
    }

    .ms-md-5 {
        margin-left: 3rem;
    }

    .ms-md-auto {
        margin-left: auto;
    }

    .p-md-0 {
        padding: 0;
    }

    .p-md-1 {
        padding: 0.25rem;
    }

    .p-md-2 {
        padding: 0.5rem;
    }

    .p-md-3 {
        padding: 1rem;
    }

    .p-md-4 {
        padding: 1.5rem;
    }

    .p-md-5 {
        padding: 3rem;
    }

    .px-md-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-md-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-md-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-md-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-md-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-md-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-md-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-md-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-md-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-md-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-md-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-md-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-md-0 {
        padding-top: 0;
    }

    .pt-md-1 {
        padding-top: 0.25rem;
    }

    .pt-md-2 {
        padding-top: 0.5rem;
    }

    .pt-md-3 {
        padding-top: 1rem;
    }

    .pt-md-4 {
        padding-top: 1.5rem;
    }

    .pt-md-5 {
        padding-top: 3rem;
    }

    .pe-md-0 {
        padding-right: 0;
    }

    .pe-md-1 {
        padding-right: 0.25rem;
    }

    .pe-md-2 {
        padding-right: 0.5rem;
    }

    .pe-md-3 {
        padding-right: 1rem;
    }

    .pe-md-4 {
        padding-right: 1.5rem;
    }

    .pe-md-5 {
        padding-right: 3rem;
    }

    .pb-md-0 {
        padding-bottom: 0;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem;
    }

    .pb-md-3 {
        padding-bottom: 1rem;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem;
    }

    .pb-md-5 {
        padding-bottom: 3rem;
    }

    .ps-md-0 {
        padding-left: 0;
    }

    .ps-md-1 {
        padding-left: 0.25rem;
    }

    .ps-md-2 {
        padding-left: 0.5rem;
    }

    .ps-md-3 {
        padding-left: 1rem;
    }

    .ps-md-4 {
        padding-left: 1.5rem;
    }

    .ps-md-5 {
        padding-left: 3rem;
    }

    .text-md-start {
        text-align: left;
    }

    .text-md-end {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left;
    }

    .float-lg-end {
        float: right;
    }

    .float-lg-none {
        float: none;
    }

    .d-lg-inline {
        display: inline;
    }

    .d-lg-inline-block {
        display: inline-block;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-grid {
        display: grid;
    }

    .d-lg-table {
        display: table;
    }

    .d-lg-table-row {
        display: table-row;
    }

    .d-lg-table-cell {
        display: table-cell;
    }

    .d-lg-flex {
        display: flex;
    }

    .d-lg-inline-flex {
        display: inline-flex;
    }

    .d-lg-none {
        display: none;
    }

    .flex-lg-fill {
        flex: 1 1 auto;
    }

    .flex-lg-row {
        flex-direction: row;
    }

    .flex-lg-column {
        flex-direction: column;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-lg-grow-0 {
        flex-grow: 0;
    }

    .flex-lg-grow-1 {
        flex-grow: 1;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1;
    }

    .flex-lg-wrap {
        flex-wrap: wrap;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-lg-0 {
        gap: 0;
    }

    .gap-lg-1 {
        gap: 0.25rem;
    }

    .gap-lg-2 {
        gap: 0.5rem;
    }

    .gap-lg-3 {
        gap: 1rem;
    }

    .gap-lg-4 {
        gap: 1.5rem;
    }

    .gap-lg-5 {
        gap: 3rem;
    }

    .justify-content-lg-start {
        justify-content: flex-start;
    }

    .justify-content-lg-end {
        justify-content: flex-end;
    }

    .justify-content-lg-center {
        justify-content: center;
    }

    .justify-content-lg-between {
        justify-content: space-between;
    }

    .justify-content-lg-around {
        justify-content: space-around;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly;
    }

    .align-items-lg-start {
        align-items: flex-start;
    }

    .align-items-lg-end {
        align-items: flex-end;
    }

    .align-items-lg-center {
        align-items: center;
    }

    .align-items-lg-baseline {
        align-items: baseline;
    }

    .align-items-lg-stretch {
        align-items: stretch;
    }

    .align-content-lg-start {
        align-content: flex-start;
    }

    .align-content-lg-end {
        align-content: flex-end;
    }

    .align-content-lg-center {
        align-content: center;
    }

    .align-content-lg-between {
        align-content: space-between;
    }

    .align-content-lg-around {
        align-content: space-around;
    }

    .align-content-lg-stretch {
        align-content: stretch;
    }

    .align-self-lg-auto {
        align-self: auto;
    }

    .align-self-lg-start {
        align-self: flex-start;
    }

    .align-self-lg-end {
        align-self: flex-end;
    }

    .align-self-lg-center {
        align-self: center;
    }

    .align-self-lg-baseline {
        align-self: baseline;
    }

    .align-self-lg-stretch {
        align-self: stretch;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-last {
        order: 6;
    }

    .m-lg-0 {
        margin: 0;
    }

    .m-lg-1 {
        margin: 0.25rem;
    }

    .m-lg-2 {
        margin: 0.5rem;
    }

    .m-lg-3 {
        margin: 1rem;
    }

    .m-lg-4 {
        margin: 1.5rem;
    }

    .m-lg-5 {
        margin: 3rem;
    }

    .m-lg-auto {
        margin: auto;
    }

    .mx-lg-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-lg-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-lg-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-lg-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-lg-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-lg-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-lg-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-lg-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-lg-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-lg-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-lg-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-lg-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-lg-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-lg-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-lg-0 {
        margin-top: 0;
    }

    .mt-lg-1 {
        margin-top: 0.25rem;
    }

    .mt-lg-2 {
        margin-top: 0.5rem;
    }

    .mt-lg-3 {
        margin-top: 1rem;
    }

    .mt-lg-4 {
        margin-top: 1.5rem;
    }

    .mt-lg-5 {
        margin-top: 3rem;
    }

    .mt-lg-auto {
        margin-top: auto;
    }

    .me-lg-0 {
        margin-right: 0;
    }

    .me-lg-1 {
        margin-right: 0.25rem;
    }

    .me-lg-2 {
        margin-right: 0.5rem;
    }

    .me-lg-3 {
        margin-right: 1rem;
    }

    .me-lg-4 {
        margin-right: 1.5rem;
    }

    .me-lg-5 {
        margin-right: 3rem;
    }

    .me-lg-auto {
        margin-right: auto;
    }

    .mb-lg-0 {
        margin-bottom: 0;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem;
    }

    .mb-lg-3 {
        margin-bottom: 1rem;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem;
    }

    .mb-lg-5 {
        margin-bottom: 3rem;
    }

    .mb-lg-auto {
        margin-bottom: auto;
    }

    .ms-lg-0 {
        margin-left: 0;
    }

    .ms-lg-1 {
        margin-left: 0.25rem;
    }

    .ms-lg-2 {
        margin-left: 0.5rem;
    }

    .ms-lg-3 {
        margin-left: 1rem;
    }

    .ms-lg-4 {
        margin-left: 1.5rem;
    }

    .ms-lg-5 {
        margin-left: 3rem;
    }

    .ms-lg-auto {
        margin-left: auto;
    }

    .p-lg-0 {
        padding: 0;
    }

    .p-lg-1 {
        padding: 0.25rem;
    }

    .p-lg-2 {
        padding: 0.5rem;
    }

    .p-lg-3 {
        padding: 1rem;
    }

    .p-lg-4 {
        padding: 1.5rem;
    }

    .p-lg-5 {
        padding: 3rem;
    }

    .px-lg-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-lg-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-lg-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-lg-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-lg-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-lg-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-lg-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-lg-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-lg-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-lg-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-lg-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-lg-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-lg-0 {
        padding-top: 0;
    }

    .pt-lg-1 {
        padding-top: 0.25rem;
    }

    .pt-lg-2 {
        padding-top: 0.5rem;
    }

    .pt-lg-3 {
        padding-top: 1rem;
    }

    .pt-lg-4 {
        padding-top: 1.5rem;
    }

    .pt-lg-5 {
        padding-top: 3rem;
    }

    .pe-lg-0 {
        padding-right: 0;
    }

    .pe-lg-1 {
        padding-right: 0.25rem;
    }

    .pe-lg-2 {
        padding-right: 0.5rem;
    }

    .pe-lg-3 {
        padding-right: 1rem;
    }

    .pe-lg-4 {
        padding-right: 1.5rem;
    }

    .pe-lg-5 {
        padding-right: 3rem;
    }

    .pb-lg-0 {
        padding-bottom: 0;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem;
    }

    .pb-lg-3 {
        padding-bottom: 1rem;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem;
    }

    .pb-lg-5 {
        padding-bottom: 3rem;
    }

    .ps-lg-0 {
        padding-left: 0;
    }

    .ps-lg-1 {
        padding-left: 0.25rem;
    }

    .ps-lg-2 {
        padding-left: 0.5rem;
    }

    .ps-lg-3 {
        padding-left: 1rem;
    }

    .ps-lg-4 {
        padding-left: 1.5rem;
    }

    .ps-lg-5 {
        padding-left: 3rem;
    }

    .text-lg-start {
        text-align: left;
    }

    .text-lg-end {
        text-align: right;
    }

    .text-lg-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: left;
    }

    .float-xl-end {
        float: right;
    }

    .float-xl-none {
        float: none;
    }

    .d-xl-inline {
        display: inline;
    }

    .d-xl-inline-block {
        display: inline-block;
    }

    .d-xl-block {
        display: block;
    }

    .d-xl-grid {
        display: grid;
    }

    .d-xl-table {
        display: table;
    }

    .d-xl-table-row {
        display: table-row;
    }

    .d-xl-table-cell {
        display: table-cell;
    }

    .d-xl-flex {
        display: flex;
    }

    .d-xl-inline-flex {
        display: inline-flex;
    }

    .d-xl-none {
        display: none;
    }

    .flex-xl-fill {
        flex: 1 1 auto;
    }

    .flex-xl-row {
        flex-direction: row;
    }

    .flex-xl-column {
        flex-direction: column;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-xl-grow-0 {
        flex-grow: 0;
    }

    .flex-xl-grow-1 {
        flex-grow: 1;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1;
    }

    .flex-xl-wrap {
        flex-wrap: wrap;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-xl-0 {
        gap: 0;
    }

    .gap-xl-1 {
        gap: 0.25rem;
    }

    .gap-xl-2 {
        gap: 0.5rem;
    }

    .gap-xl-3 {
        gap: 1rem;
    }

    .gap-xl-4 {
        gap: 1.5rem;
    }

    .gap-xl-5 {
        gap: 3rem;
    }

    .justify-content-xl-start {
        justify-content: flex-start;
    }

    .justify-content-xl-end {
        justify-content: flex-end;
    }

    .justify-content-xl-center {
        justify-content: center;
    }

    .justify-content-xl-between {
        justify-content: space-between;
    }

    .justify-content-xl-around {
        justify-content: space-around;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly;
    }

    .align-items-xl-start {
        align-items: flex-start;
    }

    .align-items-xl-end {
        align-items: flex-end;
    }

    .align-items-xl-center {
        align-items: center;
    }

    .align-items-xl-baseline {
        align-items: baseline;
    }

    .align-items-xl-stretch {
        align-items: stretch;
    }

    .align-content-xl-start {
        align-content: flex-start;
    }

    .align-content-xl-end {
        align-content: flex-end;
    }

    .align-content-xl-center {
        align-content: center;
    }

    .align-content-xl-between {
        align-content: space-between;
    }

    .align-content-xl-around {
        align-content: space-around;
    }

    .align-content-xl-stretch {
        align-content: stretch;
    }

    .align-self-xl-auto {
        align-self: auto;
    }

    .align-self-xl-start {
        align-self: flex-start;
    }

    .align-self-xl-end {
        align-self: flex-end;
    }

    .align-self-xl-center {
        align-self: center;
    }

    .align-self-xl-baseline {
        align-self: baseline;
    }

    .align-self-xl-stretch {
        align-self: stretch;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-last {
        order: 6;
    }

    .m-xl-0 {
        margin: 0;
    }

    .m-xl-1 {
        margin: 0.25rem;
    }

    .m-xl-2 {
        margin: 0.5rem;
    }

    .m-xl-3 {
        margin: 1rem;
    }

    .m-xl-4 {
        margin: 1.5rem;
    }

    .m-xl-5 {
        margin: 3rem;
    }

    .m-xl-auto {
        margin: auto;
    }

    .mx-xl-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-xl-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-xl-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-xl-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-xl-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-xl-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-xl-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-xl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-xl-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-xl-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-xl-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-xl-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-xl-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-xl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-xl-0 {
        margin-top: 0;
    }

    .mt-xl-1 {
        margin-top: 0.25rem;
    }

    .mt-xl-2 {
        margin-top: 0.5rem;
    }

    .mt-xl-3 {
        margin-top: 1rem;
    }

    .mt-xl-4 {
        margin-top: 1.5rem;
    }

    .mt-xl-5 {
        margin-top: 3rem;
    }

    .mt-xl-auto {
        margin-top: auto;
    }

    .me-xl-0 {
        margin-right: 0;
    }

    .me-xl-1 {
        margin-right: 0.25rem;
    }

    .me-xl-2 {
        margin-right: 0.5rem;
    }

    .me-xl-3 {
        margin-right: 1rem;
    }

    .me-xl-4 {
        margin-right: 1.5rem;
    }

    .me-xl-5 {
        margin-right: 3rem;
    }

    .me-xl-auto {
        margin-right: auto;
    }

    .mb-xl-0 {
        margin-bottom: 0;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xl-3 {
        margin-bottom: 1rem;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xl-5 {
        margin-bottom: 3rem;
    }

    .mb-xl-auto {
        margin-bottom: auto;
    }

    .ms-xl-0 {
        margin-left: 0;
    }

    .ms-xl-1 {
        margin-left: 0.25rem;
    }

    .ms-xl-2 {
        margin-left: 0.5rem;
    }

    .ms-xl-3 {
        margin-left: 1rem;
    }

    .ms-xl-4 {
        margin-left: 1.5rem;
    }

    .ms-xl-5 {
        margin-left: 3rem;
    }

    .ms-xl-auto {
        margin-left: auto;
    }

    .p-xl-0 {
        padding: 0;
    }

    .p-xl-1 {
        padding: 0.25rem;
    }

    .p-xl-2 {
        padding: 0.5rem;
    }

    .p-xl-3 {
        padding: 1rem;
    }

    .p-xl-4 {
        padding: 1.5rem;
    }

    .p-xl-5 {
        padding: 3rem;
    }

    .px-xl-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-xl-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-xl-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-xl-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-xl-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-xl-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-xl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-xl-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-xl-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-xl-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-xl-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-xl-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-xl-0 {
        padding-top: 0;
    }

    .pt-xl-1 {
        padding-top: 0.25rem;
    }

    .pt-xl-2 {
        padding-top: 0.5rem;
    }

    .pt-xl-3 {
        padding-top: 1rem;
    }

    .pt-xl-4 {
        padding-top: 1.5rem;
    }

    .pt-xl-5 {
        padding-top: 3rem;
    }

    .pe-xl-0 {
        padding-right: 0;
    }

    .pe-xl-1 {
        padding-right: 0.25rem;
    }

    .pe-xl-2 {
        padding-right: 0.5rem;
    }

    .pe-xl-3 {
        padding-right: 1rem;
    }

    .pe-xl-4 {
        padding-right: 1.5rem;
    }

    .pe-xl-5 {
        padding-right: 3rem;
    }

    .pb-xl-0 {
        padding-bottom: 0;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem;
    }

    .pb-xl-3 {
        padding-bottom: 1rem;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem;
    }

    .pb-xl-5 {
        padding-bottom: 3rem;
    }

    .ps-xl-0 {
        padding-left: 0;
    }

    .ps-xl-1 {
        padding-left: 0.25rem;
    }

    .ps-xl-2 {
        padding-left: 0.5rem;
    }

    .ps-xl-3 {
        padding-left: 1rem;
    }

    .ps-xl-4 {
        padding-left: 1.5rem;
    }

    .ps-xl-5 {
        padding-left: 3rem;
    }

    .text-xl-start {
        text-align: left;
    }

    .text-xl-end {
        text-align: right;
    }

    .text-xl-center {
        text-align: center;
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float: left;
    }

    .float-xxl-end {
        float: right;
    }

    .float-xxl-none {
        float: none;
    }

    .d-xxl-inline {
        display: inline;
    }

    .d-xxl-inline-block {
        display: inline-block;
    }

    .d-xxl-block {
        display: block;
    }

    .d-xxl-grid {
        display: grid;
    }

    .d-xxl-table {
        display: table;
    }

    .d-xxl-table-row {
        display: table-row;
    }

    .d-xxl-table-cell {
        display: table-cell;
    }

    .d-xxl-flex {
        display: flex;
    }

    .d-xxl-inline-flex {
        display: inline-flex;
    }

    .d-xxl-none {
        display: none;
    }

    .flex-xxl-fill {
        flex: 1 1 auto;
    }

    .flex-xxl-row {
        flex-direction: row;
    }

    .flex-xxl-column {
        flex-direction: column;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .gap-xxl-0 {
        gap: 0;
    }

    .gap-xxl-1 {
        gap: 0.25rem;
    }

    .gap-xxl-2 {
        gap: 0.5rem;
    }

    .gap-xxl-3 {
        gap: 1rem;
    }

    .gap-xxl-4 {
        gap: 1.5rem;
    }

    .gap-xxl-5 {
        gap: 3rem;
    }

    .justify-content-xxl-start {
        justify-content: flex-start;
    }

    .justify-content-xxl-end {
        justify-content: flex-end;
    }

    .justify-content-xxl-center {
        justify-content: center;
    }

    .justify-content-xxl-between {
        justify-content: space-between;
    }

    .justify-content-xxl-around {
        justify-content: space-around;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly;
    }

    .align-items-xxl-start {
        align-items: flex-start;
    }

    .align-items-xxl-end {
        align-items: flex-end;
    }

    .align-items-xxl-center {
        align-items: center;
    }

    .align-items-xxl-baseline {
        align-items: baseline;
    }

    .align-items-xxl-stretch {
        align-items: stretch;
    }

    .align-content-xxl-start {
        align-content: flex-start;
    }

    .align-content-xxl-end {
        align-content: flex-end;
    }

    .align-content-xxl-center {
        align-content: center;
    }

    .align-content-xxl-between {
        align-content: space-between;
    }

    .align-content-xxl-around {
        align-content: space-around;
    }

    .align-content-xxl-stretch {
        align-content: stretch;
    }

    .align-self-xxl-auto {
        align-self: auto;
    }

    .align-self-xxl-start {
        align-self: flex-start;
    }

    .align-self-xxl-end {
        align-self: flex-end;
    }

    .align-self-xxl-center {
        align-self: center;
    }

    .align-self-xxl-baseline {
        align-self: baseline;
    }

    .align-self-xxl-stretch {
        align-self: stretch;
    }

    .order-xxl-first {
        order: -1;
    }

    .order-xxl-0 {
        order: 0;
    }

    .order-xxl-1 {
        order: 1;
    }

    .order-xxl-2 {
        order: 2;
    }

    .order-xxl-3 {
        order: 3;
    }

    .order-xxl-4 {
        order: 4;
    }

    .order-xxl-5 {
        order: 5;
    }

    .order-xxl-last {
        order: 6;
    }

    .m-xxl-0 {
        margin: 0;
    }

    .m-xxl-1 {
        margin: 0.25rem;
    }

    .m-xxl-2 {
        margin: 0.5rem;
    }

    .m-xxl-3 {
        margin: 1rem;
    }

    .m-xxl-4 {
        margin: 1.5rem;
    }

    .m-xxl-5 {
        margin: 3rem;
    }

    .m-xxl-auto {
        margin: auto;
    }

    .mx-xxl-0 {
        margin-right: 0;
        margin-left: 0;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .mx-xxl-3 {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .mx-xxl-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .mx-xxl-5 {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .mx-xxl-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .my-xxl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .my-xxl-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .my-xxl-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .my-xxl-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .my-xxl-4 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .my-xxl-5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .my-xxl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .mt-xxl-0 {
        margin-top: 0;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem;
    }

    .mt-xxl-3 {
        margin-top: 1rem;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem;
    }

    .mt-xxl-5 {
        margin-top: 3rem;
    }

    .mt-xxl-auto {
        margin-top: auto;
    }

    .me-xxl-0 {
        margin-right: 0;
    }

    .me-xxl-1 {
        margin-right: 0.25rem;
    }

    .me-xxl-2 {
        margin-right: 0.5rem;
    }

    .me-xxl-3 {
        margin-right: 1rem;
    }

    .me-xxl-4 {
        margin-right: 1.5rem;
    }

    .me-xxl-5 {
        margin-right: 3rem;
    }

    .me-xxl-auto {
        margin-right: auto;
    }

    .mb-xxl-0 {
        margin-bottom: 0;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xxl-5 {
        margin-bottom: 3rem;
    }

    .mb-xxl-auto {
        margin-bottom: auto;
    }

    .ms-xxl-0 {
        margin-left: 0;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem;
    }

    .ms-xxl-3 {
        margin-left: 1rem;
    }

    .ms-xxl-4 {
        margin-left: 1.5rem;
    }

    .ms-xxl-5 {
        margin-left: 3rem;
    }

    .ms-xxl-auto {
        margin-left: auto;
    }

    .p-xxl-0 {
        padding: 0;
    }

    .p-xxl-1 {
        padding: 0.25rem;
    }

    .p-xxl-2 {
        padding: 0.5rem;
    }

    .p-xxl-3 {
        padding: 1rem;
    }

    .p-xxl-4 {
        padding: 1.5rem;
    }

    .p-xxl-5 {
        padding: 3rem;
    }

    .px-xxl-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .px-xxl-1 {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .px-xxl-2 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .px-xxl-3 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .px-xxl-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .px-xxl-5 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .py-xxl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .py-xxl-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .py-xxl-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-xxl-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-xxl-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-xxl-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pt-xxl-0 {
        padding-top: 0;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem;
    }

    .pt-xxl-3 {
        padding-top: 1rem;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem;
    }

    .pt-xxl-5 {
        padding-top: 3rem;
    }

    .pe-xxl-0 {
        padding-right: 0;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem;
    }

    .pe-xxl-3 {
        padding-right: 1rem;
    }

    .pe-xxl-4 {
        padding-right: 1.5rem;
    }

    .pe-xxl-5 {
        padding-right: 3rem;
    }

    .pb-xxl-0 {
        padding-bottom: 0;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem;
    }

    .pb-xxl-5 {
        padding-bottom: 3rem;
    }

    .ps-xxl-0 {
        padding-left: 0;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem;
    }

    .ps-xxl-3 {
        padding-left: 1rem;
    }

    .ps-xxl-4 {
        padding-left: 1.5rem;
    }

    .ps-xxl-5 {
        padding-left: 3rem;
    }

    .text-xxl-start {
        text-align: left;
    }

    .text-xxl-end {
        text-align: right;
    }

    .text-xxl-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem;
    }

    .fs-2 {
        font-size: 2rem;
    }

    .fs-3 {
        font-size: 1.75rem;
    }

    .fs-4 {
        font-size: 1.5rem;
    }
}

@media print {
    .d-print-inline {
        display: inline;
    }

    .d-print-inline-block {
        display: inline-block;
    }

    .d-print-block {
        display: block;
    }

    .d-print-grid {
        display: grid;
    }

    .d-print-table {
        display: table;
    }

    .d-print-table-row {
        display: table-row;
    }

    .d-print-table-cell {
        display: table-cell;
    }

    .d-print-flex {
        display: flex;
    }

    .d-print-inline-flex {
        display: inline-flex;
    }

    .d-print-none {
        display: none;
    }
}

.overlay {
    position: relative;
}

.overlay:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #894646;
    opacity: 0.5;
}

section:not(.block-style) .has-style,
section:not(.block-style).has-style {
    border-radius: 0;
    border: 1px solid #fff;
    background-color: #fff;
}

/* Icon Style */
.icons {
    display: inline-flex;
    padding: 0.1rem;
    line-height: 1;
    border-radius: 50%;
}

.icon-style-1 {
    font-size: 2rem;
}

.icon-style-2 {
    font-size: 3rem;
}

.icon-style-3 {
    font-size: 4rem;
}

/* Icon Style */
.header-social-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-contacts {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-contacts ul {
    display: flex;
}

.main-header,
.down-header,
.up-header {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.container.color-background-container:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    background-color: #bb5656;
    opacity: 1;
    z-index: -1;
}

@media screen and (min-width: 1451px) {
    .down-header {
        margin-bottom: 20px;
    }
}

/*Header style 1*/
.header_style_1 .navigation .navbar-header .toggle {
    flex: 1;
}

@media screen and (min-width: 1199px) {
    .header_style_1 .menu-overlay .module-menu .list {
        justify-content: flex-end;
        display: flex;
        flex-wrap: wrap;
    }

    html[dir="ltr"] body .header_style_1 .member-nav {
        padding-left: 30px;
    }

    html[dir="rtl"] body .header_style_1 .member-nav {
        padding-right: 30px;
    }
}

/*Header style 2*/
@media screen and (min-width: 1199px) {
    .header_style_2 .menu-overlay .menu {
        width: 100%;
    }

    .header_style_2 .navigation .menu .collapseNav-initialized {
        justify-content: center;
    }

    .header_style_2 .menu-overlay {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
}

/*Header style 3*/
.header_style_3 .member-nav {
    flex: 1;
}

.header_style_3 .navigation .navbar-header .toggle {
    flex: 1;
}

@media (max-width: 575px) {
    .mobile-menu-active .header_style_3 .menu {
        width: 100%;
    }
}

/*Header style 4*/
.header_style_4 .member-nav {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.header_style_4 .navigation .navbar-header .toggle {
    flex: 1;
}

@media screen and (min-width: 1199px) {
    .header_style_4 .menu-overlay .module-menu .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header_style_4 .menu-overlay .menu {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .header_style_4 .member-nav .dropdown-menu:before {
        left: 10px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .website_member-nav .header_style_4 .navigation .navbar-header .logo {
        margin: 10px;
    }
}

@media (max-width: 575px) {
    .mobile-menu-active .header_style_4 .menu {
        width: 100%;
    }
}

/*Header style 5*/
.header_style_5 .navbar-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-wrap: wrap;
    flex-direction: column;
}

.header_style_5.not-transparent .navigation .socials li a,
.header_style_5 .navigation.sticky .socials li a {
    color: #000000;
}

.header_style_5 .down-header {
    margin-bottom: 0;
}

.header_style_5 .down-header .header-social-links {
    margin-bottom: 0;
}

.header_style_5 .main-header {
    justify-content: space-between;
    align-items: center;
}

.header_style_5 .main-header .logo {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.header_style_5 .down-header {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1199px) {
    .header_style_5 .menu-overlay {
        text-align: center;
    }

    .header_style_5 .menu-overlay .module-menu .list {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {

    .header_style_5 .main-header .logo,
    .header_style_5 .main-header .member-nav {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .header_style_5 .main-header .logo {
        justify-content: flex-start;
    }
}

/*Header style 6*/
.header_style_6 .navbar-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-wrap: wrap;
    flex-direction: column;
}

.header_style_6 .main-header {
    justify-content: space-between;
    align-items: center;
}

.header_style_6 .main-header .logo {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.header_style_6 .down-header {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1199px) {
    .header_style_6 .menu-overlay {
        text-align: center;
    }

    .header_style_6 .menu-overlay .module-menu .list {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    .header_style_6 .main-header .logo {
        flex: 1;
    }

    .header_style_6 .main-header .member-nav {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .header_style_6 .navbar-header ul.header-contacts-list {
        text-align: center;
    }

    .header_style_6 .navbar-header ul.header-contacts-list li a {
        background-color: #fff;
        color: #000000;
        width: 36px;
        height: 36px;
        border-radius: 100%;
    }
}

/*Header style 7*/
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation.sticky .logo.logo-dark,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
    display: none;
}

html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder .navigation.sticky .logo.logo-light,
html:not(.mobile-menu-active) .header_style_7.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
    display: flex;
}

html:not(.mobile-menu-active) .header_style_7 .navigation.sticky {
    border: 0;
}

html:not(.mobile-menu-active) .header_style_7 .navigation .list>li>a {
    color: #000000;
}

html:not(.mobile-menu-active) .header_style_7 .navigation .member-nav .dropdown-toggle>i,
html:not(.mobile-menu-active) .header_style_7 .not-transparent .navigation .member-nav .dropdown-toggle>i,
html:not(.mobile-menu-active) .header_style_7 .navigation.sticky .member-nav .dropdown-toggle>i {
    color: #000000;
}

html:not(.mobile-menu-active) .header_style_7 .member-nav .dropdown-toggle>span {
    background-color: #ffffff;
    color: #000000;
}

.header_style_7 .navbar-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-wrap: wrap;
    flex-direction: column;
}

.header_style_7 .main-header {
    justify-content: space-between;
    align-items: center;
}

.header_style_7 .main-header .logo {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.header_style_7 .down-header {
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .header_style_7 .down-header {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .header_style_7 .down-header {
        justify-content: flex-end;
        margin-bottom: 10px;
    }
}

/*Header style 8*/
.header_style_8 .navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.header_style_8 .navigation.sticky .navbar-header ul.header-contacts-list li a {
    color: #ffffff;
}

.header_style_8 .toggle {
    flex: 1;
}

.header_style_8 .up-header {
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
}

.header_style_8 .up-header .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header_style_8 .up-header .list li {
    margin: 0;
}

.header_style_8 .up-header .list li a {
    color: #ffffff;
}

.header_style_8 .up-header .list li a:hover {
    color: white;
}

.header_style_8 .header-social-links {
    justify-content: center;
    flex: unset;
}

.header_style_8 .main-header {
    justify-content: space-between;
    align-items: center;
}

.header_style_8 .main-header .logo {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.header_style_8 .member-nav {
    flex: unset;
}

@media screen and (min-width: 1199px) {
    .header_style_8 .secondary-menu.secondray-menu-open {
        padding: 20px 0;
    }
}

@media screen and (max-width: 767px) {
    .header_style_8 .up-header {
        justify-content: space-between;
    }

    .header_style_8 .header-contacts,
    .header_style_8 .header-social-links,
    .header_style_8 .toggle {
        flex: unset;
    }
}

/*Header style 9*/
.header_style_9 .mobile-menu-btn.active:not(.blocked-toggle) span {
    background: #000000;
}

@media screen and (max-width: 5000px) {

    /***** Sidebar navigation menu *****/
    /***** End Sidebar navigation menu *****/
    .header_style_9 .navigation .menu .sub-menu-more {
        display: none;
    }

    .header_style_9 .navigation .menu ul {
        width: 100%;
        margin-top: 20px;
    }

    .header_style_9 .navigation .menu .list li {
        display: block;
        margin: 0;
        clear: both;
        width: 100%;
    }

    .header_style_9 .navigation .menu .list>li>a {
        color: #000000;
        clear: both;
        padding: 10px 30px;
    }

    .header_style_9 .navigation .menu .list>li>ul a {
        color: fade(#000000, 70%);
    }

    .header_style_9 .navigation .menu .list>li>ul>li a {
        padding: 8px 40px;
    }

    .header_style_9 .navigation .menu .list>li>ul>li>ul>li a {
        padding: 8px 50px;
    }

    .header_style_9 .navigation .menu .list>li a:hover {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .header_style_9 .navigation .menu .dropdown-menu>.active>a,
    .header_style_9 .navigation .menu .dropdown-menu>.active>a:focus {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .header_style_9 .navigation .menu .list>li.active-parent>a,
    .header_style_9 .navigation .menu .list>li.active>a {
        color: #bb5656;
    }

    .header_style_9 .navigation .menu .list>li.active li.active-parent>a {
        color: #000000;
    }

    .header_style_9 .navigation .menu .show>.dropdown-menu {
        display: block;
        position: relative;
        float: none;
        margin: 0 auto;
        max-width: 100%;
        margin-top: 0;
    }

    .header_style_9 .navigation .menu .list .dropdown.show {
        background: #d89f9f;
        margin: 0 20px;
        padding-bottom: 15px;
    }

    .header_style_9 .navigation .menu .has-sub-menu ul.dropdown-menu {
        position: static;
        transform: unset;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        -webkit-transition: none;
        transition: none;
        border: 0;
        margin: 0;
        background: transparent;
        max-width: 100%;
        min-width: unset;
    }

    .header_style_9 .navigation .menu-overlay[class*="pl-"] {
        padding: 0;
    }

    .header_style_9 .navigation .navbar-header .toggle {
        display: block;
        margin-right: 20px;
    }

    .header_style_9 .navigation .member-nav {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .header_style_9 .navigation.sticky .menu .member-nav {
        display: block;
    }

    .header_style_9 nav.navigation li.btn-cart a:not(.btn) {
        display: inline-flex;
        align-items: center;
        position: relative;
    }

    .header_style_9 .member-nav.main-member-nav:not(.visible-search) .search {
        display: none;
    }

    .header_style_9 .navigation .menu .list>li.mobile-search {
        display: block;
        width: 100%;
        background: white;
        padding: 0 15px;
        background-clip: content-box;
        clear: both;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .header_style_9 .member-nav .dropdown-menu:before {
        left: auto;
        right: 10px;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu-overlay {
        visibility: visible;
        width: 340px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        opacity: 1;
        transition: all, 0.3s;
        z-index: 1;
        margin-left: -340px;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu {
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0px 0 40px;
        background: white;
        height: 100vh;
        transition: all, 0.3s;
        max-width: 100%;
        width: 340px;
        z-index: 1;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu ul {
        margin-top: 0;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list>.has-sub-menu>ul.dropdown-menu {
        padding: 0 0 1rem 0;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list>li:not(:first-of-type) {
        border-top: 1px solid #ffffff;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu .module-menu .list>li:last-of-type {
        border-bottom: 1px solid #ffffff;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu .list>li>a {
        padding: 1rem 2rem;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu .list>li>ul>li a {
        padding: 0.5rem 2.5rem;
    }

    .sidebar-nav-website .header_style_9 .navigation .menu .list>li>ul>li>ul>li a {
        padding: 0.5rem 3rem;
    }

    .sidebar-nav-website .header_style_9 .main {
        width: 100%;
        transition: all, 0.3s;
        position: relative;
        right: 0;
    }

    .mobile-menu-active.sidebar-nav-website .header_style_9 .mw-live-edit .menu-overlay {
        top: 56px;
    }

    .mobile-menu-active.sidebar-nav-website .header_style_9 .menu-overlay {
        margin-left: 0;
    }

    .mobile-menu-active.sidebar-nav-website .header_style_9 .menu {
        overflow: auto;
        max-width: 340px;
        border-right: 1px solid #ffffff;
    }

    .mobile-menu-active.sidebar-nav-website .header_style_9 .main {
        width: calc(100% - 340px);
        right: -340px;
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .header_style_9 .js-sidebar-nav {
        width: 100%;
        margin: 0;
        left: 0;
    }
}

/* *******************************************
 **************** Navigation *************** *
 ******************************************* */
.navigation {
    margin-bottom: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: background 0.4s;
    background: rgba(255, 255, 255, 0.15);
}

.navigation .logo a .logo-text,
.navigation .logo .logo-text,
.navigation .logo a,
.navigation .logo a span {
    color: #894646;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.navigation.sticky {
    border-bottom: 2px solid #e5e5e5;
}

.sticky-padding {
    padding-top: 65px;
}

.mw-live-edit .navigation.sticky {
    margin-top: 55px;
}

.navigation-holder:not(.not-transparent) .navigation .logo.logo-dark {
    display: none;
}

.navigation-holder:not(.not-transparent) .navigation .logo.logo-light {
    display: flex;
}

.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-dark {
    display: flex;
}

.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-light {
    display: none;
}

.navigation-holder.not-transparent .navigation .logo.logo-dark {
    display: flex;
}

.navigation-holder.not-transparent .navigation .logo.logo-light {
    display: none;
}

.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
    display: flex;
}

.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
    display: none;
}

.navigation {
    border: 0;
    border-radius: 0;
    transition: all, 0.3s;
    position: relative;
}

/* Sticky nav */
.navigation-holder {
    background: #fff;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.19), 0 1px 6px rgba(0, 0, 0, 0.23);
}

.mw-live-edit .navigation-holder {
    top: 55px;
}

.container-fluid>.navbar-collapse,
.container-sm>.navbar-collapse,
.container-md>.navbar-collapse,
.container-lg>.navbar-collapse,
.container-xl>.navbar-collapse,
.container-xxl>.navbar-collapse,
.container-fluid>.navbar-header,
.container-sm>.navbar-header,
.container-md>.navbar-header,
.container-lg>.navbar-header,
.container-xl>.navbar-header,
.container-xxl>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
}

.container-fluid>.navbar-collapse .module.module-menu,
.container-sm>.navbar-collapse .module.module-menu,
.container-md>.navbar-collapse .module.module-menu,
.container-lg>.navbar-collapse .module.module-menu,
.container-xl>.navbar-collapse .module.module-menu,
.container-xxl>.navbar-collapse .module.module-menu,
.container-fluid>.navbar-header .module.module-menu,
.container-sm>.navbar-header .module.module-menu,
.container-md>.navbar-header .module.module-menu,
.container-lg>.navbar-header .module.module-menu,
.container-xl>.navbar-header .module.module-menu,
.container-xxl>.navbar-header .module.module-menu,
.container>.navbar-collapse .module.module-menu,
.container>.navbar-header .module.module-menu {
    flex: 1;
}

.navbar-header:after {
    display: block;
    clear: both;
    content: "";
    font-size: 0;
}

.navbar-header ul.socials {
    margin: 0;
}

.navbar-header ul.socials li a {
    /*    background: $header-social-icons-back-color;
    color: $header-social-icons-color;*/
    font-size: 18px;
    padding: 0;
    margin: 0;
    height: 20px;
    width: 20px;
}

.navbar-header ul.socials a:hover {
    background: transparent;
    color: #ffffff;
}

.navbar-header ul.header-contacts-list li {
    display: inline-block;
}

.navbar-header ul.header-contacts-list li+li {
    margin-left: 15px;
}

.navbar-header ul.header-contacts-list li a {
    color: #ffffff;
    font-size: 0.75rem;
    padding: 5px;
    display: inline-flex;
    display: flex;
    align-items: center;
}

.navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.navigation.sticky .navbar-header ul.header-contacts-list li a {
    color: #212121;
}

.navbar-header ul.header-contacts-list li a:hover {
    text-decoration: none;
}

.navbar-header ul.header-contacts-list li a span {
    line-height: 0;
}

html[dir="ltr"] body .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
    margin-left: 7px;
}

html[dir="rtl"] body .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
    margin-right: 7px;
}

.navbar-header ul.header-contacts-list li a i {
    font-weight: 600;
    font-size: 1rem;
}

.navbar-header ul.socials.header-social-phone {
    margin-top: 20px;
}

.navbar-header ul.socials.header-social-phone li a {
    color: #fff;
}

/*Logo settings*/
.logo a .logo-text,
.logo .logo-text,
.logo a,
.logo a span {
    color: #894646;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.logo a span {
    width: auto;
}

.navigation .navbar-header .logo {
    position: relative;
    height: auto;
    transition: all, 0.3s;
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.navigation.sticky .navbar-header .logo {
    transition: all, 0.3s;
}

.navigation .navbar-header .logo a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.navigation .navbar-header .logo img {
    max-height: 100px;
    transition: all, 0.3s;
}

.navigation.sticky .navbar-header .logo img {
    transition: all, 0.3s;
}

@media screen and (min-width: 768px) {
    .navigation .navbar-header .logo img {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .navigation .navbar-header .logo {
        margin: 15px 0;
    }

    .navigation .navbar-header .logo img {
        max-height: 100%;
    }
}

/*END Logo settings*/
@media screen and (max-width: 767px) {
    body.lock-scroll-extra-menu {
        overflow: hidden;
    }

    body.lock-scroll {
        overflow: hidden;
    }
}

.navigation .navbar-header .toggle,
.navigation .navbar-header .cart {
    display: none;
}

.navigation .navbar-header .toggle,
.navigation .navbar-header .toggle-inside-menu {
    height: 25px;
    width: 34px;
}

html[dir="ltr"] body .navigation .navbar-header .toggle {
    text-align: right;
}

html[dir="rtl"] body .navigation .navbar-header .toggle {
    text-align: left;
}

html[dir="ltr"] body .navigation .navbar-header .toggle-inside-menu {
    margin-left: 15px;
}

html[dir="rtl"] body .navigation .navbar-header .toggle-inside-menu {
    margin-right: 15px;
}

.toggle-inside-menu .mobile-menu-btn span {
    background: #000000;
}

html:not(.sidebar-nav-website) .toggle .mobile-menu-btn.active span {
    background: transparent;
}

.extra-toggle .mobile-menu-btn.active span {
    background: #ffffff;
}

.mobile-menu-btn {
    color: #894646;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 34px;
    height: 22px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    top: 0;
}

.toggle-inside-menu {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.mobile-menu-btn span {
    position: absolute;
    transition: all 0.5s ease;
    display: inline-block;
    height: 2px;
    width: 33px;
    top: 0;
    right: 0;
    background: #111;
}

.navigation.sticky .mobile-menu-btn span,
.not-transparent.navigation-holder .mobile-menu-btn span {
    background: #000000;
}

.mobile-menu-btn span:first-child {
    -webkit-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    -moz-transform-origin: 0 center;
    transform-origin: 0 center;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    -webkit-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    -moz-transform-origin: 0 center;
    transform-origin: 0 center;
    top: 19px;
}

.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(-2px);
    -moz-transform: rotate(45deg) translateY(-2px);
    -ms-transform: rotate(45deg) translateY(-2px);
    transform: rotate(45deg) translateY(-3px);
}

.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(2px);
    -ms-transform: rotate(-45deg) translateY(2px);
    -moz-transform: rotate(-45deg) translateY(2px);
    transform: rotate(-45deg) translateY(3px);
}

.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(2) {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mobile-menu-btn.active:not(.blocked-toggle) {
    transform: rotate(180deg);
    right: 3px;
}

.toggle-inside-menu .mobile-menu-btn.active {
    right: 0px;
}

/* Kebab icon */
.extra-toggle {
    display: none;
}

.mobile-menu-btn-2.active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-menu-btn-2 {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: inline-block;
    transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu-btn-2 span {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    margin: auto;
    pointer-events: none;
    border-radius: 50%;
    background-color: #ffffff;
}

.mobile-menu-btn-2 span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn-2 span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile-menu-btn-2 span:nth-child(3) {
    bottom: 0;
}

/*Sidebar Nav menu collapse icon*/
.sidebar-nav-website .navigation .list li>a:after {
    display: none;
}

.sidebar-nav-website .submenu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
}

.sidebar-nav-website .submenu-toggle:before {
    position: absolute;
    top: 50%;
    content: " ";
    right: 20px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #000000;
    transform: rotate(90deg);
    transition: transform 0.25s ease-in-out;
}

.sidebar-nav-website .submenu-toggle.active-icon:before {
    transform: rotate(0);
}

.sidebar-nav-website .submenu-toggle:after {
    position: absolute;
    top: 50%;
    content: " ";
    right: 20px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #000000;
}

/*End Sidebar Nav menu collapse icon*/
.mobile-menu-label {
    margin-right: 10px;
    width: 100%;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    height: 30px;
    font-size: 14px;
    display: none;
}

.mobile-menu-label b {
    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s ease;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    color: #ffffff;
}

.mobile-menu-label b+b {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.9);
}

.mobile-extra-menu-active .mobile-menu-label b:first-child {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px) scale(0.9);
}

.mobile-extra-menu-active .mobile-menu-label b+b {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.navigation .navbar-header .cart {
    text-align: left;
}

.navigation .navbar-header .cart a {
    color: #fff;
    font-size: 24px;
}

.navigation .menu-overlay {
    flex: 1;
}

.member-nav>.dropdown>.dropdown-menu {
    margin-top: 10px;
}

.navigation .list {
    display: block;
    max-width: 100%;
    text-align: center;
}

.navigation .list li a {
    transition: all, 0.3s;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    text-transform: inherit;
    color: #000000;
}

.navigation .list .dropdown-menu span.name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 20px);
    display: inline-block;
}

.navigation .list>li>a {
    display: block;
    text-decoration: none;
    position: relative;
    color: #333;
    padding: 0.7rem 0.5rem;
}

.navigation .list li>a:after {
    content: "";
    transition: all, 0.3s;
    transform: rotate(0);
    top: calc(50% - 1.5px);
}

.navigation li:hover>a:after {
    transform: rotate(-90deg);
}

.navigation .list>li>a:hover,
.navigation .list>li.active>a,
.navigation .list>li.active-parent>a {
    color: #bb5656;
    transition: all, 0.3s;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
    left: -1px;
}

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

.navigation .list>li {
    margin: 0 25px;
    display: inline-block;
    clear: both;
}

.navigation .list>li>ul a {
    padding: 0.5rem 0.7rem;
    color: #ffffff;
}

.dropdown-menu>li>a {
    display: block;
    clear: both;
    font-weight: 600;
    text-transform: inherit;
    text-decoration: none;
}

.navigation .menu .list {
    transition: all, 0.3s;
}

.navigation .list>li:hover {
    z-index: 10;
}

.show>.dropdown-menu,
.show+.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu>li>a:focus {
    background-color: transparent;
}

.navigation .dropdown-menu {
    background: #000000;
    border: 1px solid fade(#ffffff, 10%);
}

.navigation .module-menu .dropdown-menu {
    max-width: 15rem;
    min-width: 12rem;
}

/*.navigation .list>li>ul a:hover {
    background-color: $header-dropdown-back-on-hover;
    color: $header-dropdown-color-on-hover;
}*/
.navigation .list .dropdown:hover .dropdown-menu {
    margin: 0;
    left: 10%;
}

.member-nav .dropdown-menu li a {
    transition: all, 0.3s;
}

.member-nav .dropdown-menu:not(.shopping-cart) a {
    padding: 0.5rem 0.7rem;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 16px;
}

.member-nav .dropdown-menu:not(.shopping-cart) li:not(:first-child) a:hover {
    color: white;
}

.member-nav .btn-member .dropdown-menu li:not(:first-of-type) a:hover {
    background: fade(#ffffff, 3%);
}

.member-nav .shopping-cart-holder .btn:hover {
    background: rgba(187, 86, 86, 0.1);
    color: #894646;
}

.navigation .menu .list>li.mobile-search,
.navigation .menu .list>li.mobile-profile {
    display: none;
}

.navigation .menu .list>li.mobile-search form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.mobile-search button {
    border: none;
    color: white;
    background: #bb5656;
    height: 45px;
    text-align: center;
    width: auto;
    padding: 0 15px;
}

.mobile-search input {
    background: transparent;
    border: none;
    height: 45px;
    width: 100%;
    color: #894646;
}

.mobile-search .fa {
    color: #894646;
    margin: 0 14px;
}

/* Member nav */
.member-nav {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.member-nav li.dropdown {
    position: relative;
}

.member-nav li.dropdown a {
    position: relative;
}

.member-nav .dropdown-menu {
    right: 0;
    left: auto;
    transform: unset;
    margin-top: 50px;
}

.member-nav .btn {
    padding-left: 15px;
    padding-right: 15px;
}

.member-nav>li {
    display: inline-block;
    vertical-align: middle;
}

.member-nav>li a {
    text-decoration: none;
}

.member-nav .dropdown-toggle>span {
    color: #ffffff;
    font-size: 11px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    position: absolute;
    z-index: 1;
    background-color: #bb5656;
    min-width: 16px;
    min-height: 16px;
    align-items: center;
    justify-content: center;
    top: -4px;
    right: -9px;
}

.member-nav-inverse .member-nav .dropdown-toggle>span {
    color: #894646;
}

.member-nav .dropdown-toggle>i {
    color: #000000;
    font-size: 22px;
    line-height: 28px;
}

.not-transparent .navigation .member-nav .dropdown-toggle>i,
.navigation.sticky .member-nav .dropdown-toggle>i {
    color: inherit;
}

.member-nav a:after {
    display: none;
}

.member-nav .search button.dropdown-toggle {
    margin-right: 0;
    color: #ffffff;
    border: 0;
    background: transparent;
}

.member-nav .search button.dropdown-toggle:after {
    display: none;
}

.member-nav .search button {
    outline: none;
    border-radius: 0;
}

.member-nav .search .dropdown-menu {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.member-nav .search input {
    background: #fff;
    font-size: 0.9rem;
    border-radius: 0px;
    padding: 0.4rem 0.7rem;
    outline: none;
    border: 0;
    flex: 1;
}

.member-nav .search .dropdown-menu i {
    color: #894646;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

html[dir="ltr"] body .member-nav .search .dropdown-menu i {
    padding: 0 0 0 0.5rem;
}

html[dir="rtl"] body .member-nav .search .dropdown-menu i {
    padding: 0 0.5rem 0 0;
}

/* Header Shopping Cart */
.navigation .menu .member-nav .shopping-cart {
    border-radius: 5px;
}

.navigation .menu .member-nav .shopping-cart:before {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #894646;
    content: "";
    display: block;
    position: absolute;
    margin-top: -10px;
    margin-left: 39px;
}

.member-nav .shopping-cart-holder {
    padding: 0 20px;
    width: 240px;
    max-width: 100%;
    overflow: hidden;
}

.member-nav .shopping-cart-holder .product {
    padding: 10px 0;
    border-bottom: 1px solid #bb5656;
}

.member-nav .shopping-cart-holder .product .remove {
    position: absolute;
    right: 10px;
    color: #bb5656;
    line-height: 0;
    top: 10px;
}

.member-nav .shopping-cart-holder .product .remove:hover {
    background: transparent;
    color: #d89f9f;
}

.member-nav .shopping-cart-holder .product h5,
.member-nav .shopping-cart-holder .product .h5 {
    color: #fff;
    font-size: 14px;
}

.member-nav .shopping-cart-holder .product .qty {
    color: #bb5656;
}

.member-nav .shopping-cart-holder .product .price {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.member-nav .shopping-cart-holder .total p {
    font-size: 16px;
    color: #fff;
    margin: 15px 0 10px 0;
}

.member-nav .shopping-cart-holder .btn {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.dropdown-menu {
    border-radius: 0;
    color: #894646;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
    min-width: 15rem;
    /*    top: 100%;*/
}

html[dir="rtl"] .navigation .menu .list>li a,
html[dir="rtl"] body .dropdown,
html[dir="rtl"] body .dropdown-menu,
html[dir="rtl"] body .dropdown-menu a,
html[dir="rtl"] body .dropdown a {
    text-align: right;
}

.dropdown-menu li {
    position: relative;
}

.member-nav>.dropdown>.dropdown-menu {
    margin-top: 0.7rem;
}

.member-nav .dropdown-menu:before {
    position: absolute;
    top: -7px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    content: "";
    left: 10px;
    display: none;
}

.member-nav .dropdown-menu,
.member-nav .dropdown-menu:before {
    background-color: #000000;
}

/*See more icon*/
.navigation .sub-menu-more>a {
    font-size: 0;
    line-height: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 32px;
    height: 32px;
    padding: 0px;
    align-items: center;
}

.navigation .sub-menu-more>a span {
    left: 2px;
}

.navigation .sub-menu-more>a span:before {
    left: 12px;
}

.navigation .sub-menu-more>a span:after {
    left: 24px;
}

.navigation .sub-menu-more>a span,
.navigation .sub-menu-more>a span:after,
.navigation .sub-menu-more>a span:before {
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: white;
    transition: all, 0.3s;
}

.navigation .sub-menu-more>a:hover span,
.navigation .sub-menu-more>a:hover span:after,
.navigation .sub-menu-more>a:hover span:before {
    background-color: white;
}

.navigation .sub-menu-more>a span:after,
.navigation .sub-menu-more>a span:before {
    content: "";
    display: block;
}

body.sticky-nav .navigation .menu .collapseNav-initialized {
    margin-bottom: 0px;
}

.navigation ul.list {
    display: block;
    /*    @media screen and (min-width: $burgerOpenMedia) {
        display: none;

    }*/
}

/*!!! Only for main header menu !!!*/
@media screen and (min-width: 1199px) {
    html:not(.sidebar-nav-website) {
        /*See more icon*/
        /*End See more icon*/
    }

    html:not(.sidebar-nav-website) .navigation .menu .small-navbar .list li a {
        font-size: 14px;
    }

    html:not(.sidebar-nav-website) .navigation .menu .list>li:hover>a {
        color: #bb5656;
        transition: all, 0.3s;
    }

    html:not(.sidebar-nav-website) .navigation .menu .list>li>ul li:hover>a {
        color: white;
        background-color: fade(#ffffff, 3%);
    }

    html:not(.sidebar-nav-website) .navigation .list li:hover>ul {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    html:not(.sidebar-nav-website) .mw-live-edit .navigation .menu-overlay {
        position: static;
    }

    html:not(.sidebar-nav-website) .toggle-inside-menu {
        display: none;
    }

    html:not(.sidebar-nav-website) .navigation .menu .collapseNav-initialized {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more>.dropdown-menu {
        left: auto;
        right: 0;
    }

    html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu .dropdown-menu {
        left: -100%;
        right: 100%;
    }

    html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu li:hover>a:after {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 1199px) {

    /***** Sidebar navigation menu *****/
    /***** End Sidebar navigation menu *****/
    .navigation .menu .sub-menu-more {
        display: none;
    }

    .navigation .menu ul {
        width: 100%;
        margin-top: 20px;
    }

    .navigation .menu .list li {
        display: block;
        margin: 0;
        clear: both;
        width: 100%;
    }

    .navigation .menu .list>li>a {
        color: #000000;
        clear: both;
        padding: 10px 30px;
        text-align: left;
    }

    .navigation .menu a.dropdown-toggle::after {
        margin-top: 0px;
    }

    .navigation .menu .list .dropdown span.name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: calc(100% - 20px);
        display: inline-block;
    }

    .navigation .menu .list>li>ul a {
        color: black;
    }

    .navigation .menu .list>li>ul>li a {
        padding: 8px 40px;
    }

    .navigation .menu .list>li>ul>li>ul>li a {
        padding: 8px 50px;
    }

    .navigation .menu .list>li a:hover {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .menu .dropdown-menu>.active>a,
    .navigation .menu .dropdown-menu>.active>a:focus {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .menu .list>li.active-parent>a,
    .navigation .menu .list>li.active>a {
        color: #bb5656;
    }

    .navigation .menu .list>li.active li.active-parent>a {
        color: #000000;
    }

    .navigation .menu .show>.dropdown-menu {
        display: block;
        position: relative;
        float: none;
        margin: 0 auto;
        max-width: 100%;
        margin-top: 0;
    }

    .navigation .menu .list .dropdown.show {
        background: fade(#ffffff, 50%);
        padding-bottom: 15px;
    }

    .navigation .menu .has-sub-menu ul.dropdown-menu {
        position: static;
        transform: unset;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        -webkit-transition: none;
        transition: none;
        border: 0;
        margin: 0;
        background: transparent;
        max-width: 100%;
        min-width: unset;
    }

    .navigation .menu-overlay[class*="pl-"] {
        padding: 0;
    }

    .navigation .navbar-header .toggle {
        display: block;
    }

    .navigation .member-nav {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .navigation.sticky .menu .member-nav {
        display: block;
    }

    html:not(.sidebar-nav-website) .navigation .menu-overlay {
        visibility: hidden;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        background: fade(#000000, 50%);
        opacity: 0;
        transition: all, 0.3s;
        z-index: 10;
    }

    html:not(.sidebar-nav-website) .navigation .menu {
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px 0 40px 0;
        background: white;
        min-height: calc(100vh);
        transform: scaleY(1) scaleX(0) translateX(400px);
        transform-origin: right 0;
        transition: all, 0.3s;
        max-width: 100%;
        width: 100%;
        box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
        z-index: 10;
    }

    html.mobile-menu-active:not(.sidebar-nav-website) .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    html.mobile-menu-active:not(.sidebar-nav-website) .menu {
        visibility: visible;
        overflow: auto;
        opacity: 1;
        transform: scaleY(1) scaleX(1) translateX(0);
        max-width: 400px;
    }

    nav.navigation li.btn-cart a:not(.btn) {
        display: inline-flex;
        align-items: center;
        position: relative;
    }

    .member-nav.main-member-nav:not(.visible-search) .search {
        display: none;
    }

    .navigation .menu .list>li.mobile-search {
        display: block;
        width: 100%;
        background: white;
        padding: 0 15px;
        background-clip: content-box;
        clear: both;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .member-nav .dropdown-menu:before {
        left: auto;
        right: 10px;
    }

    .sidebar-nav-website .navigation .menu-overlay {
        visibility: visible;
        width: 340px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        opacity: 1;
        transition: all, 0.3s;
        z-index: 1;
        margin-left: -340px;
    }

    .sidebar-nav-website .navigation .menu {
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0px 0 40px;
        background: white;
        height: calc(100vh);
        transition: all, 0.3s;
        max-width: 100%;
        width: 340px;
        z-index: 1;
    }

    .mobile-menu-active.sidebar-nav-website .mw-live-edit .menu-overlay {
        top: 56px;
    }

    .mobile-menu-active.sidebar-nav-website .menu-overlay {
        margin-left: 0;
    }

    .mobile-menu-active.sidebar-nav-website .menu {
        overflow: auto;
        max-width: 340px;
        border-right: 1px solid #ffffff;
    }

    .mobile-menu-active.sidebar-nav-website .main {
        width: calc("100%" - 340px);
        right: -340px;
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        width: calc(100%);
        margin: 0;
        left: 0;
    }

    .sidebar-nav-website .main {
        width: 100%;
        transition: all, 0.3s;
        position: relative;
        right: 0;
    }

    .sidebar-nav-website .navigation .menu ul {
        margin-top: 0;
    }

    .sidebar-nav-website .navigation .menu .module-menu .list>.has-sub-menu>ul.dropdown-menu {
        padding: 0 0 1rem 0;
    }

    .sidebar-nav-website .navigation .menu .module-menu .list>li:not(:first-of-type) {
        border-top: 1px solid #ffffff;
    }

    .sidebar-nav-website .navigation .menu .module-menu .list>li:last-of-type {
        border-bottom: 1px solid #ffffff;
    }

    .sidebar-nav-website .navigation .menu .list>li>a {
        padding: 1rem 2rem;
    }

    .sidebar-nav-website .navigation .menu .list>li>ul>li a {
        padding: 0.5rem 2.5rem;
    }

    .sidebar-nav-website .navigation .menu .list>li>ul>li>ul>li a {
        padding: 0.5rem 3rem;
    }
}

@media (max-width: 1365px) {

    html.sidebar-nav-website.mobile-menu-active,
    html.sidebar-nav-website.mobile-menu-active body {
        overflow: hidden;
    }

    .mobile-menu-active.sidebar-nav-website .main {
        width: 100%;
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        width: 100%;
    }

    .sidebar-nav-website .navigation .menu-overlay {
        width: 100%;
        margin-left: 0;
        visibility: hidden;
        opacity: 0;
        transition: all 1s ease;
    }

    .mobile-menu-active.sidebar-nav-website .menu-overlay {
        visibility: visible;
        opacity: 1;
        background-color: fade(#000000, 50%);
    }

    .sidebar-nav-website .navigation .menu {
        margin-left: -340px;
    }

    .mobile-menu-active.sidebar-nav-website .navigation .menu {
        margin-left: 0;
    }

    .sidebar-nav-website .mobile-menu-btn {
        z-index: 10;
    }
}

@media (max-width: 767px) {
    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        width: 100%;
        left: 340px;
    }

    .sidebar-nav-website .navigation .menu ul {
        margin-top: 20px;
    }

    .sidebar-nav-website .navigation .menu {
        min-height: 100vh;
    }
}

@media (max-width: 404px) {
    .sidebar-nav-website .navigation .menu {
        width: calc("100vw" - 64px);
        max-width: calc("100vw" - 64px);
        margin-left: calc("-100vw" - 64px);
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        left: calc("100vw" - 64px);
    }

    .mobile-menu-active.sidebar-nav-website .main {
        right: calc(-100vw + 64px);
    }
}

@media (max-width: 767px) {
    html:not(.sidebar-nav-website) .navigation .menu {
        padding-bottom: 220px;
    }

    .navigation .list li>a:after {
        position: absolute;
        margin-left: 0;
    }

    html[dir="rtl"] body .navigation .list li>a:after {
        left: 0;
        margin-left: 25px;
    }

    .member-nav li.btn-member {
        display: none;
    }

    .navigation .menu .list>li.mobile-profile {
        display: block;
    }

    .navbar-header ul.socials.header-social-phone {
        justify-content: center;
        padding: 0 15px;
    }

    .navbar-header ul.socials.header-social-phone li a {
        color: #894646;
        background-color: #fff;
    }

    .navbar-header ul.header-contacts-list-phone {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    html:not(.sidebar-nav-website) .navigation .menu {
        width: calc(100% - 30px);
    }

    .member-nav .btn-cart,
    .member-nav.visible-search .search {
        position: static;
    }

    .member-nav>.dropdown.btn-cart>.dropdown-menu,
    .member-nav.visible-search>.dropdown.search>.dropdown-menu {
        width: auto;
    }

    .member-nav.visible-search>.dropdown.search>.dropdown-menu:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        bottom: 0;
        background-color: fade(#ffffff, 50%);
        height: 100vh;
        z-index: 0;
        width: 100%;
    }

    .member-nav.visible-search>.dropdown.search>.dropdown-menu {
        min-height: initial;
        padding: 1rem;
    }

    .member-nav>.dropdown>.dropdown-menu:before {
        display: none;
    }

    .member-nav .shopping-cart-holder {
        width: 100%;
    }

    .navbar-header ul.header-contacts-list li+li {
        margin-left: 5px;
    }
}

/*Secondary menu*/
.navigation .secondary-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.navigation .secondary-menu .module-menu {
    width: 100%;
}

.navigation .secondary-menu .list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.secondary-menu>ul.dropdown-menu {
    border-radius: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
    top: 100%;
    position: absolute;
    background-color: #bb5656;
}

.navigation .secondary-menu>li>a {
    display: block;
    font-size: 16px;
    color: #282627;
    text-decoration: none;
    position: relative;
}

.navigation .secondary-menu>li>a,
.navigation .secondary-menu>li>ul a {
    padding: 10px 30px;
    text-align: right;
}

.navigation .secondary-menu .list>li.mobile-search,
.navigation .secondary-menu .list>li.mobile-profile {
    display: none;
}

.navigation .secondary-menu .list>li.mobile-search form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.navigation .secondary-menu .list>li.mobile-search {
    background: #fff;
}

/* Mega DropDown Secondary menu in huge resolution */
/* Not Finished */
/*@media screen and (min-width: 992px) {
    .navigation .secondary-menu.secondary-menu-open .module-menu {
        margin-top: 20px;
    }
    .navigation .secondary-menu.secondary-menu-open .module-menu>ul{
        padding-bottom: 0;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navigation .secondary-menu.secondary-menu-open .module-menu>ul>li {
        display: inline-block;
    }
}*/
/* END Mega DropDown Secondary menu in huge resolution */
@media screen and (min-width: 1199px) {

    /*See more icon for secondary menu*/
    /*End See more icon*/
    .navigation .secondary-menu .small-navbar .list li a {
        font-size: 14px;
    }

    .navigation .secondary-menu .list>li:hover>a {
        color: #bb5656;
        transition: all, 0.3s;
    }

    .navigation .secondary-menu .list>li>ul li:hover>a {
        color: white;
        background-color: fade(#ffffff, 3%);
    }

    .navigation .secondary-menu .collapseNav-initialized {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more>.dropdown-menu {
        left: auto;
        right: 0;
    }

    .navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu .dropdown-menu {
        left: -100%;
        right: 100%;
    }

    .navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu li:hover>a:after {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 1199px) {
    .navigation .secondary-menu .sub-menu-more {
        display: none;
    }

    .mobile-menu-label {
        display: inline-flex;
    }

    .extra-toggle {
        width: 34px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        cursor: pointer;
    }

    .navigation .secondary-menu .module-menu>ul {
        margin-top: 20px;
        padding-bottom: 160px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        -ms-flex-direction: column;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .navigation .secondary-menu {
        position: absolute;
        right: 0;
        left: 0;
        top: calc(-100vh);
        margin-left: auto;
        margin-right: auto;
        padding: 0 0 20px 0;
        background-color: white;
        min-height: 100vh;
        transform-origin: left top;
        transition: all, 0.3s;
        max-width: 100%;
        width: 100%;
        z-index: -1;
        bottom: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 1;
        align-content: flex-start;
    }

    .mobile-extra-menu-active .secondary-menu {
        visibility: visible;
        overflow: auto;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0%, 100%, 0);
        webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 220px;
    }

    .navigation .secondary-menu ul {
        width: 100%;
    }

    .navigation .secondary-menu .list>li,
    .navigation .secondary-menu .list>li li {
        display: block;
        margin: 0;
        clear: both;
    }

    .navigation .secondary-menu .list>li>ul a,
    .navigation .secondary-menu .list>li>a {
        color: #000000;
        clear: both;
        padding: 10px 30px;
    }

    .navigation .secondary-menu .list>li>ul a {
        color: black;
    }

    .navigation .secondary-menu .list>li>ul>li a {
        padding: 8px 40px;
    }

    .navigation .secondary-menu .list>li>ul>li>ul a {
        padding: 8px 50px;
    }

    .navigation .secondary-menu .list>li a:hover {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .secondary-menu .dropdown-menu>.active>a,
    .navigation .secondary-menu .dropdown-menu>.active>a:focus {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .secondary-menu .list>li.active-parent>a,
    .navigation .secondary-menu .list>li.active>a {
        color: #bb5656;
    }

    .navigation .secondary-menu .list>li.active li.active-parent>a {
        color: #000000;
    }

    .navigation .secondary-menu .has-sub-menu ul.dropdown-menu {
        position: static;
        transform: unset;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        -webkit-transition: none;
        transition: none;
        border: 0;
        margin: 0;
        background: 0 0;
        max-width: 100%;
        min-width: unset;
    }

    .navigation .secondary-menu .list>li.mobile-search {
        display: block;
        margin-top: 20px;
    }

    .member-nav.secondary-member-nav:not(.visible-search) .search {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .navigation .secondary-menu .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navigation .secondary-menu .list>li.mobile-profile {
        display: block;
        margin-top: 20px;
    }
}

.header-posts-holder .posts-menu {
    z-index: 99;
    display: none;
    width: 100%;
    height: 280px;
    left: 0;
    position: absolute;
    background: #fff;
    border-top: 2px solid rgba(137, 70, 70, 0.1);
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
    .header-posts-holder .posts-menu {
        height: 560px;
    }
}

.header-posts-holder .posts-menu.opened {
    display: block;
}

.header-posts-holder .posts-menu .container {
    position: relative;
}

.header-posts-holder .posts-menu .container:before {
    content: "";
    right: 30px;
    border: solid rgba(137, 70, 70, 0.1);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 7px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    background: #fff;
    position: absolute;
    top: -10px;
}

.header-posts-holder .posts-menu .events {
    float: right;
}

.header-posts-holder .posts-menu .events .event {
    margin-bottom: 30px;
    width: 140px;
    float: left;
    margin-left: 30px;
}

.header-posts-holder .posts-menu .events .event h5,
.header-posts-holder .posts-menu .events .event .h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header-posts-holder .posts-menu .events .event:after {
    display: block;
    clear: both;
    content: "";
}

.header-posts-holder .posts-menu .events .event .info {
    margin-top: 10px;
}

.header-posts-holder .posts-menu .events .event .image img {
    max-width: 100%;
    width: 140px;
    height: 140px;
}

@media screen and (max-width: 767px) {
    .header-posts-holder .posts-menu {
        height: 100vh;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        width: 300px;
        left: auto;
        box-shadow: 0 11px 32px 0 rgba(219, 219, 219, 0.5);
    }

    .header-posts-holder .posts-menu .posts-title {
        display: none;
    }

    .header-posts-holder .posts-menu .btn-posts {
        margin: 30px 0;
    }

    .header-posts-holder .posts-menu .btn-posts .btn span.fas {
        margin-top: 3px;
    }

    .header-posts-holder .posts-menu .events {
        float: none;
    }

    .header-posts-holder .posts-menu .events .event {
        max-width: 100%;
        padding: 15px 0;
        margin-left: 0;
        margin-bottom: 0;
        border-bottom: 2px solid rgba(137, 70, 70, 0.1);
        float: none;
        width: 300px;
    }

    .header-posts-holder .posts-menu .events .event:last-of-type {
        border-bottom: 0;
    }

    .header-posts-holder .posts-menu .events .event .image {
        margin-right: 25px;
        float: left;
    }

    .header-posts-holder .posts-menu .events .event .image img {
        width: 60px;
        height: 60px;
    }
}

.dropdown-toggle-v2-list-item {
    position: relative;
}

.dropdown-menu-v2 {
    background-color: #212529;
    padding: 10px;
    position: absolute;
    top: 45px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}

.dropdown-menu-v2 i {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 22px;
    line-height: 28px;
    background-color: #fff;
}

@media (max-width: 991px) {
    .dropdown-menu-v2 {
        left: -65px;
    }
}

.dropdown-toggle-v2 {
    outline: none;
    border-radius: 0;
    margin-right: 0;
    color: #f8f9fa;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dropdown-toggle-v2 i {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 22px;
    line-height: 28px;
    background-color: #fff;
}

.dropdown-toggle-v2-list-item-active .dropdown-menu-v2 {
    visibility: visible;
    opacity: 1;
}

.dropdown-menu.shopping-cart {
    transform: translate3d(50%, 7px, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media (max-width: 600px) {
    .dropdown-menu.shopping-cart {
        transform: translate3d(85%, 7px, 0);
    }

    html[dir="rtl"] {
        transform: translate3d(0, 7px, 0);
    }
}

/* *******************************************
 **************** Pages *************** *
 ******************************************* */
/* Page - Blog Inner */
.blog-inner-page .padding {
    max-width: 780px;
}

.blog-inner-page ul.socials li a {
    color: #000000;
    background: transparent;
}

.blog-inner-page ul.socials li a:hover {
    color: #000000;
    background: #894646;
}

.blog-inner-page .heading h1,
.blog-inner-page .heading .h1 {
    font-size: 46px;
    color: #000000;
    font-weight: 600;
}

@media screen and (max-width: 1199px) {

    .blog-inner-page .heading h1,
    .blog-inner-page .heading .h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {

    .blog-inner-page .heading h1,
    .blog-inner-page .heading .h1 {
        font-size: 24px;
    }
}

.blog-inner-page .heading-image {
    width: 100%;
}

.blog-inner-page .description img {
    max-width: 100%;
}

.blog-inner-page .share-label {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
}

.blog-inner-page .comments .comment-holder {
    text-align: center;
}

.blog-inner-page .comments .comment-holder .author,
.blog-inner-page .comments .comment-holder .author a,
.blog-inner-page .comments .comment-holder .author span {
    font-size: 20px;
    color: #894646;
    font-weight: bold;
    text-decoration: none;
}

.blog-inner-page .comments .comment-holder .date {
    margin-bottom: 20px;
}

.blog-inner-page .comments .comment-holder .date,
.blog-inner-page .comments .comment-holder .date span {
    font-size: 12px;
    color: #9f9f9f;
}

.blog-inner-page .comments .comment-holder .description {
    width: 80%;
    margin: 0 auto;
}

.blog-inner-page .comments .comment-holder .description,
.blog-inner-page .comments .comment-holder .description p {
    font-size: 16px;
    color: #000000;
    text-align: center;
}

@media screen and (max-width: 991px) {

    .blog-inner-page .heading h1,
    .blog-inner-page .heading .h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {
    .blog-inner-page .heading-image {
        width: 100%;
        -webkit-background-size: contain;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: inherit;
    }

    .blog-inner-page .heading h1,
    .blog-inner-page .heading .h1 {
        font-size: 28px;
    }
}

.blog-inner-page .reviews {
    margin-top: 20px;
}

.blog-inner-page .reviews .heading h3,
.blog-inner-page .reviews .heading .h3 {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    padding: 8px 0 25px 0px;
}

.blog-inner-page .reviews .heading i {
    float: left;
    font-size: 50px;
    color: #894646;
}

.blog-inner-page .reviews .review {
    background: #f3f3f3;
    padding: 15px 0;
    color: #212121;
    margin-bottom: 20px;
}

.blog-inner-page .reviews .review:after {
    clear: both;
    content: "";
    display: block;
}

.blog-inner-page .reviews .review .avatar-holder {
    width: 70px;
    float: left;
}

.blog-inner-page .reviews .review .avatar-holder .avatar {
    background: #f3f3f3;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-size: cover;
}

.blog-inner-page .reviews .review .info {
    width: calc(100% - 70px);
    float: left;
}

.blog-inner-page .reviews .review .info h4,
.blog-inner-page .reviews .review .info .h4 {
    color: #212121;
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0 20px 0;
}

.blog-inner-page .reviews .review .info p {
    color: #212121;
    font-size: 14px;
}

.blog-inner-page .leave-review .left-side {
    float: left;
    width: 70px;
}

.blog-inner-page .leave-review .right-side {
    float: left;
    width: calc(100% - 70px);
}

.blog-inner-page .leave-review .left-side i {
    font-size: 50px;
    color: #212121;
}

.blog-inner-page .leave-review .right-side h3,
.blog-inner-page .leave-review .right-side .h3 {
    font-size: 24px;
    color: #212121;
    font-weight: bold;
    margin: 12px 0 25px 0;
}

.blog-inner-page .leave-review .right-side p {
    font-size: 16px;
    color: #212121;
}

.blog-inner-page .leave-review .form textarea {
    min-height: 100px;
    max-width: 100%;
}

.blog-inner-page .leave-review .form .form-group {
    margin-bottom: 25px;
}

.blog-inner-page .leave-review .form .form-group label {
    font-size: 14px;
    color: #212121;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-inner-page .leave-review .form .form-group .form-control {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 2px solid #ddd;
    color: #212121;
    font-size: 0.857rem;
    padding: 12px 20px;
    margin-bottom: 10px;
    margin-right: 10px;
    font-weight: 600;
    height: auto;
}

.blog-inner-page .leave-review .form .form-group .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bfbfbf;
    opacity: 1;
    /* Firefox */
}

.blog-inner-page .leave-review .form .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bfbfbf;
}

.blog-inner-page .leave-review .form .form-group .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bfbfbf;
}

.blog-inner-page .reviews h1,
.blog-inner-page .reviews .h1,
.blog-inner-page .reviews h2,
.blog-inner-page .reviews .h2,
.blog-inner-page .reviews h3,
.blog-inner-page .reviews .h3,
.blog-inner-page .reviews h4,
.blog-inner-page .reviews .h4,
.blog-inner-page .reviews h5,
.blog-inner-page .reviews .h5,
.blog-inner-page .reviews h6,
.blog-inner-page .reviews .h6,
.blog-inner-page .reviews p,
.blog-inner-page .reviews span {
    color: #212121;
}

/* Page - Shop Inner */
.relative {
    position: relative;
}

.shop-inner-page .next-previous-content .btn {
    padding: 4px 8px;
    text-align: center;
}

.shop-inner-page .next-previous-content .btn i {
    margin: 0;
}

.shop-inner-page .heading {
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.shop-inner-page .heading h4,
.shop-inner-page .heading .h4 {
    width: calc(100% - 70px);
}

.shop-inner-page .next-previous-content {
    direction: ltr;
}

.shop-inner-page .main-price {
    font-weight: bold;
}

.shop-inner-page .main-price .price {
    color: #bb5656;
    font-size: 24px;
}

.shop-inner-page .main-price .price span {
    margin: 0 5px;
    font-size: 36px;
}

.shop-inner-page .main-price .price-old {
    color: #b9b9b9;
    font-size: 24px;
    text-decoration: line-through;
    margin-right: 15px;
}

.shop-inner-page .mw-add-to-cart-holder .price:after {
    clear: both;
    display: block;
    content: "";
}

.shop-inner-page .mw-price-item-value,
.shop-inner-page .mw-price-item-key {
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

.shop-inner-page p.labels {
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
}

.shop-inner-page p.labels span {
    color: #000000;
}

.shop-inner-page .description-short {
    margin-top: 20px;
}

.shop-inner-page .description-short h1,
.shop-inner-page .description-short .h1,
.shop-inner-page .description-short h2,
.shop-inner-page .description-short .h2,
.shop-inner-page .description-short h3,
.shop-inner-page .description-short .h3,
.shop-inner-page .description-short h4,
.shop-inner-page .description-short .h4,
.shop-inner-page .description-short h5,
.shop-inner-page .description-short .h5,
.shop-inner-page .description-short h6,
.shop-inner-page .description-short .h6,
.shop-inner-page .description-short span,
.shop-inner-page .description-short p {
    color: #000000;
}

.shop-inner-page .description {
    margin-top: 20px;
}

.shop-inner-page .description h1,
.shop-inner-page .description .h1,
.shop-inner-page .description h2,
.shop-inner-page .description .h2,
.shop-inner-page .description h3,
.shop-inner-page .description .h3,
.shop-inner-page .description h4,
.shop-inner-page .description .h4,
.shop-inner-page .description h5,
.shop-inner-page .description .h5,
.shop-inner-page .description h6,
.shop-inner-page .description .h6 {
    color: #212121;
}

.shop-inner-page .description p {
    line-height: 1.5;
    font-size: 16px;
    color: #212121;
    text-align: justify;
    margin-bottom: 10px;
}

.shop-inner-page .description .table {
    margin: 0;
    text-align: left;
}

.shop-inner-page .description .table tr td:first-of-type {
    padding-left: 0;
}

.shop-inner-page .description .table td {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}

.shop-inner-page .product-gallery a {
    display: block;
    width: 100%;
    background: #f3f3f3;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
}

.shop-inner-page .product-gallery img {
    max-width: 70%;
}

.shop-inner-page .product-gallery a:last-child img {
    margin-bottom: 0px;
}

.shop-inner-page .quantity input,
.shop-inner-page .quantity .minus,
.shop-inner-page .quantity .plus {
    display: block;
    float: left;
    background: #d18d8d;
    color: #fff;
    border: 0;
    margin: 0;
    font-size: 18px;
    padding: 6px 20px;
    height: 46px;
}

.shop-inner-page .quantity input {
    width: calc(100% - 120px);
    text-align: center;
    border-radius: 0;
}

.shop-inner-page .quantity .minus,
.shop-inner-page .quantity .plus {
    font-size: 24px;
    width: 60px;
}

.shop-inner-page .quantity .minus {
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
}

.shop-inner-page .quantity .plus {
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
}

.shop-inner-page .box .btn {
    text-transform: uppercase;
}

.shop-inner-page .table-striped>tbody>tr:nth-of-type(odd) {
    background: transparent;
}

.shop-inner-page .table-striped>tbody>tr:nth-of-type(even) {
    background: rgba(61, 0, 180, 0.05);
}

.shop-inner-page .product-specifications .table-striped>tbody>tr td:first-of-type {
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
}

.shop-inner-page .product-specifications .table-striped>tbody>tr td:last-of-type {
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
}

.shop-inner-page .product-specifications .table-striped th {
    background: transparent;
    color: #000000;
    text-transform: uppercase;
}

.shop-inner-page .product-specifications .table tr:hover>td {
    background: #dadada;
}

.shop-inner-page .product-specifications .table {
    width: 100%;
}

.shop-inner-page .product-specifications .left-side {
    float: left;
    width: 70px;
}

.shop-inner-page .product-specifications .right-side {
    float: left;
    width: calc(100% - 70px);
}

.shop-inner-page .product-specifications .left-side i {
    font-size: 50px;
    color: #894646;
}

.shop-inner-page .product-specifications .right-side h3,
.shop-inner-page .product-specifications .right-side .h3 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    margin: 12px 0 25px 0;
}

.shop-inner-page .product-specifications .right-side p {
    font-size: 16px;
    color: #000000;
}

.shop-inner-page .reviews {
    margin-top: 20px;
}

.shop-inner-page .reviews h1,
.shop-inner-page .reviews .h1,
.shop-inner-page .reviews h2,
.shop-inner-page .reviews .h2,
.shop-inner-page .reviews h3,
.shop-inner-page .reviews .h3,
.shop-inner-page .reviews h4,
.shop-inner-page .reviews .h4,
.shop-inner-page .reviews h5,
.shop-inner-page .reviews .h5,
.shop-inner-page .reviews h6,
.shop-inner-page .reviews .h6,
.shop-inner-page .reviews span,
.shop-inner-page .reviews p {
    color: #212121;
}

.shop-inner-page .reviews .heading h3,
.shop-inner-page .reviews .heading .h3 {
    font-size: 16px;
    color: #212121;
    font-weight: bold;
    padding: 8px 0 25px 0px;
}

.shop-inner-page .reviews .heading i {
    float: left;
    font-size: 50px;
    color: #894646;
}

.shop-inner-page .reviews .review {
    background: #f3f3f3;
    padding: 15px 0;
    color: #212121;
    margin-bottom: 20px;
}

.shop-inner-page .reviews .review:after {
    clear: both;
    content: "";
    display: block;
}

.shop-inner-page .reviews .review .avatar-holder {
    width: 70px;
    float: left;
}

.shop-inner-page .reviews .review .avatar-holder .avatar {
    background: #f3f3f3;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-size: cover;
}

.shop-inner-page .reviews .review .info {
    width: calc(100% - 70px);
    float: left;
}

.shop-inner-page .reviews .review .info h4,
.shop-inner-page .reviews .review .info .h4 {
    color: #212121;
    font-size: 14px;
    font-weight: 700;
    margin: 0px 0 20px 0;
}

.shop-inner-page .reviews .review .info p {
    color: #212121;
    font-size: 14px;
}

.shop-inner-page .leave-review .left-side {
    float: left;
    width: 70px;
}

.shop-inner-page .leave-review .right-side {
    float: left;
    width: calc(100% - 70px);
}

.shop-inner-page .leave-review .left-side i {
    font-size: 50px;
    color: #894646;
}

.shop-inner-page .leave-review .right-side h3,
.shop-inner-page .leave-review .right-side .h3 {
    font-size: 24px;
    color: #212121;
    font-weight: bold;
    margin: 12px 0 25px 0;
}

.shop-inner-page .leave-review .right-side p {
    font-size: 16px;
    color: #212121;
}

.shop-inner-page .leave-review .form textarea {
    min-height: 100px;
    max-width: 100%;
}

.shop-inner-page .leave-review .form .form-group {
    margin-bottom: 25px;
}

.shop-inner-page .leave-review .form .form-group label {
    font-size: 14px;
    color: #212121;
    line-height: 1.4;
    margin-bottom: 10px;
}

.shop-inner-page .leave-review .form .form-group .form-control {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 2px solid #ddd;
    color: #212121;
    font-size: 0.857rem;
    padding: 12px 20px;
    margin-bottom: 10px;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: 600;
    height: auto;
}

.shop-inner-page .leave-review .form .form-group .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bfbfbf;
    opacity: 1;
    /* Firefox */
}

.shop-inner-page .leave-review .form .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bfbfbf;
}

.shop-inner-page .leave-review .form .form-group .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bfbfbf;
}

@media screen and (max-width: 991px) {

    .shop-inner-page .heading h1,
    .shop-inner-page .heading .h1 {
        font-size: 30px;
    }

    .shop-inner-page p.price {
        font-size: 30px;
    }

    .shop-inner-page .box {
        padding: 30px 30px 30px 30px;
    }

    .shop-inner-page .box .quantity input {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .shop-inner-page p.price {
        font-size: 28px;
    }
}

.shop-inner-page .tabs .tab-pane {
    padding: 20px 0 0 0;
}

.zoomContainer {
    z-index: 3;
}

.shop-inner-page .elevatezoom {
    position: relative;
    margin-bottom: 40px;
}

.shop-inner-page .elevatezoom .main-image {
    max-width: 100%;
}

.shop-inner-page .elevatezoom .square {
    border: 1px solid #f3f3f3;
}

.shop-inner-page .elevatezoom .square .content {
    padding: 20px;
}

.shop-inner-page .elevatezoom .elevatezoom-holder {
    height: 100%;
    white-space: nowrap;
    max-height: 100%;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}

.shop-inner-page .elevatezoom .elevatezoom-holder img {
    max-height: 100%;
    /*position: relative $mw-importance;*/
    left: 0;
    right: 0;
    margin: 0 auto;
}

.shop-inner-page .elevatezoom .elevatezoom-holder .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.shop-inner-page .elevatezoom .elevatezoom-holder .zoomWrapper {
    max-height: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.shop-inner-page .elevatezoom #elevatezoom-gallery {
    margin-top: 20px;
    position: relative;
    padding: 0 25px;
    width: 100%;
    float: left;
}

.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-list {
    margin: 0 -10px;
}

.shop-inner-page .elevatezoom #elevatezoom-gallery a {
    display: block;
    height: 100px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: content-box;
    padding: 5px 10px;
    margin: 0px 0 14px 0;
    background-color: #fff;
    background-position: center center;
    border: 1px solid #ebebeb;
    margin: 10px;
}

.shop-inner-page .elevatezoom #elevatezoom-gallery a.active {
    border-color: #bb5656;
    -webkit-box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
    -moz-box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
    box-shadow: 0 0 17px rgba(200, 200, 200, 0.5);
}

.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-arrow {
    top: 60px;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: none;
}

.shop-inner-page .elevatezoom #elevatezoom-gallery:hover .slick-arrow {
    display: block;
}

.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-arrow:before {
    font-family: FontAwesome;
    color: #bfbfbf;
    display: block;
    font-size: 12px;
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.8);
}

.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-next {
    right: 0;
}


.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-prev {
    left: 0;
}


.shop-inner-page .elevatezoom #elevatezoom-gallery .slick-track {
    float: left;
}

/* Slick options */
.product-gallery .slick-arrow {
    position: absolute;
    top: 45%;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: none;
    display: none;
}

.shop-inner-page .product-gallery:hover .slick-arrow {
    display: block;
}

.shop-inner-page .product-gallery .slick-arrow:before {
    font-family: FontAwesome;
    color: #fff;
    display: block;
    font-size: 20px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}

.shop-inner-page .product-gallery .slick-next {
    right: 5%;
}


.shop-inner-page .product-gallery .slick-prev {
    left: 5%;
}

.shop-inner-page .product-gallery .slick-prev:before {
    content: "";
}

@media screen and (max-width: 991px) {
    .shop-inner-page .product-holder .product-info {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .shop-inner-page .table-responsive {
        border: 0;
    }
}

.shop-inner-page .product-info .heading h1,
.shop-inner-page .product-info .heading .h1 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

@media screen and (max-width: 1199px) {

    .shop-inner-page .product-info .heading h1,
    .shop-inner-page .product-info .heading .h1 {
        font-size: 18px;
    }
}

/* Masonry Gallery */
.masonry-gallery .image-holder {
    position: relative;
    overflow: hidden;
    z-index: 60;
}

.masonry-gallery .image-holder:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 10px solid #fff;
    z-index: 50;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

.masonry-gallery .image-holder:hover:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.masonry-gallery .image-holder:hover .image-holder__descr {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.masonry-gallery .image-holder:hover .image-holder__icon {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.masonry-gallery .image-holder_dark:after {
    border-color: #2b2b2b;
}

.masonry-gallery .image-holder__img {
    width: 100%;
    height: auto;
}

.masonry-gallery .image-holder__descr {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    background-color: #bb5656;
    text-align: center;
    padding: 17px 0px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.projects .masonry-gallery .image-holder__descr {
    background-color: fade(#bb5656, 80%);
    text-align: left;
    padding: 15px 20px;
}

.projects .masonry-gallery .image-holder__descr .image-holder__heading {
    color: #894646;
    font-size: 16px;
    text-transform: none;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projects .masonry-gallery .image-holder__descr .image-holder__description {
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.masonry-gallery .image-holder__heading {
    font-size: 1.07692rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.masonry-gallery .image-holder__icon {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #894646;
    text-align: center;
    padding: 3px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    -webkit-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
}

.masonry-gallery .image-holder__icon:before {
    content: "";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 1.23077rem;
    color: #894646;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.masonry-gallery .masonry-grid-works {
    margin: 0 -10px;
}

.masonry-gallery .masonry-grid-works_fullwidth {
    margin: 0;
}

.masonry-gallery .masonry-grid-works__sizer_w-20 {
    width: 20%;
}

.masonry-gallery .masonry-grid-works__sizer_w-25 {
    width: 25%;
}

.masonry-gallery .masonry-grid-works__sizer_w-33 {
    width: calc(100% / 3);
}

.masonry-gallery .masonry-grid-works__item {
    padding: 10px;
}

.masonry-gallery .masonry-grid-works__item_fullwidth {
    padding: 0;
}

.masonry-gallery .masonry-grid-works__item_w-20 {
    width: 20%;
}

.masonry-gallery .masonry-grid-works__item_w-25 {
    width: 25%;
}

.masonry-gallery .masonry-grid-works__item_w-33 {
    width: calc(100% / 3);
}

.masonry-gallery .list-masonry-grid-works-filter {
    display: block;
    text-align: center;
}

.masonry-gallery .list-masonry-grid-works-filter__item {
    display: inline-block;
}

.masonry-gallery .list-masonry-grid-works-filter__link {
    margin: 0 10px;
}

.masonry-gallery .list-masonry-grid-works-filter__link_active .list-masonry-grid-works-filter__link-lines {
    opacity: 1;
    visibility: visible;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines:before,
.masonry-gallery .list-masonry-grid-works-filter__link-lines:after {
    content: "";
    display: block;
    background-color: #894646;
    position: absolute;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_top:before {
    width: 1px;
    height: 38px;
    bottom: -9px;
    left: 2px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_top:after {
    width: 1px;
    height: 30px;
    bottom: -9px;
    left: 0px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_bottom:before {
    width: 1px;
    height: 38px;
    top: -9px;
    right: 2px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_bottom:after {
    width: 1px;
    height: 30px;
    top: -9px;
    right: 0px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_left:before {
    width: 60px;
    height: 1px;
    bottom: 2px;
    left: -9px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_left:after {
    width: 50px;
    height: 1px;
    bottom: 0px;
    left: -9px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_right:before {
    width: 60px;
    height: 1px;
    top: 2px;
    right: -9px;
}

.masonry-gallery .list-masonry-grid-works-filter__link-lines_right:after {
    width: 50px;
    height: 1px;
    top: 0px;
    right: -9px;
}

@media only screen and (max-width: 1200px) {

    .masonry-gallery .masonry-grid-works__sizer_w-20,
    .masonry-gallery .masonry-grid-works__item_w-20 {
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {

    .masonry-gallery .masonry-grid-works__sizer_w-25,
    .masonry-gallery .masonry-grid-works__item_w-25 {
        width: 50%;
    }

    .masonry-gallery .masonry-grid-works__sizer_w-33,
    .masonry-gallery .masonry-grid-works__item_w-33 {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .masonry-gallery .list-masonry-grid-works-filter__item {
        display: block;
        margin-bottom: 15px;
        padding: 0px 15px;
    }

    .masonry-gallery .list-masonry-grid-works-filter__item:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    .masonry-gallery .image-holder__descr {
        opacity: 1;
    }

    .masonry-gallery .masonry-grid-works__sizer_w-20,
    .masonry-gallery .masonry-grid-works__item_w-20 {
        width: 100%;
    }

    .masonry-gallery .masonry-grid-works__sizer_w-25,
    .masonry-gallery .masonry-grid-works__item_w-25 {
        width: 100%;
    }

    .masonry-gallery .masonry-grid-works__sizer_w-33,
    .masonry-gallery .masonry-grid-works__item_w-33 {
        width: 100%;
    }
}

/* Checkout Modal */
@media screen and (min-width: 1450px) {
    .modal-dialog {
        margin: 10% auto;
    }
}

.checkout-modal .modal-content {
    border: 1px solid #c3c3c3;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: #f5f5f5;
    color: #505050;
}

.checkout-modal .modal-header {
    padding-bottom: 0;
    border-color: #c3c3c3;
}

.checkout-modal .modal-header .close {
    margin-top: -25px;
    margin-right: -10px;
    background: #f5f5f5;
    opacity: 1;
    color: #505050;
    padding: 1px 5px;
    border: 1px solid #c3c3c3;
    border-radius: 100%;
    right: 0;
    position: absolute;
}

.checkout-modal .step-button {
    text-align: center;
    padding: 0;
}

.checkout-modal .step-button a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.checkout-modal .step-button.muted a {
    opacity: 0.4;
}

.checkout-modal .step-button .active {
    border-bottom: 2px solid #894646;
}

.checkout-modal .step-button i {
    font-size: 24px;
    color: #505050;
}

.checkout-modal .step-button span {
    display: block;
    font-size: 14px;
    color: #505050;
    font-weight: bold;
    padding-bottom: 10px;
}

.checkout-modal .js-step-content {
    display: none;
}

.checkout-modal .js-step-content .btn {
    border-radius: 2px;
}

.checkout-modal .js-shopping-cart .products .product {
    font-size: 14px;
    border-bottom: 1px solid #c3c3c3;
    padding: 10px 0;
}

@media screen and (max-width: 767px) {
    .checkout-modal .js-shopping-cart .products .product img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}

.checkout-modal .js-shopping-cart .products .product:hover {
    background: #fff;
}

.checkout-modal .js-shopping-cart .products .product .action {
    padding-left: 0;
    padding-right: 0;
}

.checkout-modal .js-shopping-cart .products .product .action a {
    color: #bb5656;
    opacity: 1;
    display: inline-block;
}

.checkout-modal .js-shopping-cart .products .product .qty {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.checkout-modal .js-shopping-cart .products .product .qty select {
    margin-top: 25px;
}

.checkout-modal .js-shopping-cart .products .product .action .tooltip {
    margin-top: 5px;
}

.checkout-modal .js-shopping-cart .products .product .title,
.checkout-modal .js-shopping-cart .products .product .price,
.checkout-modal .js-shopping-cart .products .product .action {
    padding-top: 35px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-modal .js-shopping-cart .products .product .price,
.checkout-modal .js-shopping-cart .products .product .action {
    text-align: center;
}

.checkout-modal .js-shopping-cart .amount .total,
.checkout-modal .js-shopping-cart .amount .promocode {
    padding-top: 35px;
}

.checkout-modal .js-shopping-cart .amount .promocode .form-control {
    font-size: 14px;
    font-style: italic;
}

.checkout-modal .js-shopping-cart .amount .total p,
.checkout-modal .js-shopping-cart .amount .promocode p {
    margin-bottom: 20px;
}

.checkout-modal .js-shopping-cart .amount .promocode .btn {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.checkout-modal .js-shopping-cart .amount .promocode .form-control {
    margin: 0;
}

.checkout-modal .js-shopping-cart .amount .total {
    font-size: 16px;
}

.checkout-modal .js-step-content {
    font-size: 16px;
}

.checkout-modal .js-step-content .form-control {
    border: 0;
    margin-bottom: 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px;
}

.checkout-modal .js-step-content .fields .field-holder {
    margin-bottom: 0;
}

.checkout-modal .js-step-content .fields .field-holder .form-control,
.checkout-modal .js-step-content .fields .field-holder .bootstrap-select {
    width: 100%;
}

.checkout-modal .js-step-content .fields .field-holder .bootstrap-select .btn {
    margin-bottom: 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
}

.checkout-modal .js-step-content .fields:after {
    display: block;
    clear: both;
    content: "";
}

.checkout-modal .js-step-content .fields.x2,
.checkout-modal .js-step-content .fields.x3 {
    margin: 0 -5px;
}

.checkout-modal .js-step-content .fields.x2 .field-holder {
    float: left;
    width: 50%;
    padding: 0 5px;
}

.checkout-modal .js-step-content .fields.x3 .field-holder {
    float: left;
    width: 33.3%;
    padding: 0 5px;
}

@media screen and (max-width: 767px) {
    .checkout-modal .js-shopping-cart .products .product .title {
        text-align: center;
    }
}

@media (min-width: 1450px) {
    .checkout-modal .modal-dialog {
        width: 700px;
    }
}

/* Login Modal */
@media screen and (min-width: 1450px) {
    /*.modal-dialog {*/
    /*margin: 10% auto;*/
    /*}*/
}

.login-modal .modal-content {
    border: 1px solid #c3c3c3;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: #f5f5f5;
    color: #505050;
}

.login-modal .modal-header {
    padding-bottom: 0;
    border-color: #c3c3c3;
    border: 0;
}

.login-modal .modal-header .close {
    margin-top: -25px;
    margin-right: -25px;
    background: #f5f5f5;
    opacity: 1;
    color: #505050;
    padding: 1px 5px;
    border: 1px solid #c3c3c3;
    border-radius: 100%;
}

.login-modal .modal-dialog {
    max-width: 500px;
}

.login-modal .modal-body {
    padding: 20px 60px;
}

.login-modal .modal-body .form-control {
    background: #fff;
    border: 1px solid #c3c3c3;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    color: #505050;
    font-size: 16px;
}

.login-modal .modal-body p {
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

.login-modal .modal-body .icon {
    text-align: center;
    margin-bottom: 20px;
}

.login-modal .modal-body .icon i {
    font-size: 45px;
    color: #333;
}

/*
@media (min-width: 1450px) {
    .login-modal .modal-dialog {
        width: 700px;
    }
}
*/
.login-modal .socials-login {
    display: flex;
    width: 100%;
    margin: 20px 0 30px 0;
}

.login-modal .socials-login a {
    color: #fff;
    flex: 1;
    padding: 5px 10px;
    font-size: 24px;
    text-align: center;
    margin: 0 2px;
}

.login-modal .socials-login a:hover {
    opacity: 0.8;
}

.login-modal .socials-login .facebook {
    background-color: #3b5998;
}

.login-modal .socials-login .twitter {
    background-color: #00aced;
}

.login-modal .socials-login .gplus {
    background-color: #db4437;
}

.login-modal .socials-login .linkedin {
    background-color: #0077b5;
}

.login-modal .socials-login .github {
    background-color: #333333;
}

.login-modal .socials-login .microweber {
    background-color: #0086db;
}

.login-modal .or {
    line-height: 0.5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-modal .or span {
    display: inline-block;
    position: relative;
}

.login-modal .or span:before,
.login-modal .or span:after {
    content: "";
    position: absolute;
    height: 13px;
    border-bottom: 1px solid #c3c3c3;
    top: 0;
    width: 600px;
}

.login-modal .or span:before {
    right: 100%;
    margin-right: 15px;
}

.login-modal .or span:after {
    left: 100%;
    margin-left: 15px;
}

.login-modal .act {
    position: relative;
    margin: 25px 0 20px 0;
    text-align: center;
}

.login-modal a {
    color: #505050;
    font-size: 14px;
    text-decoration: none;
}

.login-modal .act a {
    font-size: 16px;
    text-transform: uppercase;
    color: #505050;
    text-decoration: none;
    font-weight: bold;
}

.login-modal .act a:hover {
    opacity: 0.8;
}

.login-modal .act a span {
    display: block;
}

.login-modal .act:after {
    font-family: "Material Icons";
    display: block;
    position: absolute;
    top: -11px;
    font-size: 30px;
}

.login-modal .act.create:after {
    content: "arrow_forward";
    float: right;
    right: 62px;
}

.login-modal .act.login:after {
    content: "arrow_back";
    float: left;
    left: 90px;
}

.login-modal .personal-data {
    color: #bbbbbb;
    text-align: justify;
}

@media screen and (max-width: 520px) {
    .login-modal .act:after {
        display: none;
    }
}

/* Page - Portfolio Inner */
.portfolio-inner-page .container {
    padding: 0 5%;
}

.relative {
    position: relative;
}

.portfolio-inner-page .heading {
    text-align: left;
}

html[dir="rtl"] .portfolio-inner-page .heading {
    text-align: right;
}

.portfolio-inner-page .heading h1,
.portfolio-inner-page .heading .h1 {
    font-size: 36px;
    color: #894646;
    font-weight: bold;
}

.portfolio-inner-page .description {
    margin-top: 20px;
}

.portfolio-inner-page .description p {
    line-height: 1.5;
    font-size: 16px;
    color: #894646;
    text-align: justify;
    margin-bottom: 10px;
}

.portfolio-inner-page .description .table {
    margin: 0;
    text-align: left;
}

.portfolio-inner-page .description .table tr td:first-of-type {
    padding-left: 0;
}

.portfolio-inner-page .description .table td {
    font-size: 16px;
    color: #894646;
    font-weight: bold;
}

.portfolio-inner-page .project-gallery img {
    max-width: 100%;
    margin-bottom: 20px;
}

.portfolio-inner-page .project-gallery a:last-child img {
    margin-bottom: 0px;
}

/* Slick options */
.project-gallery .slick-arrow {
    position: absolute;
    top: 45%;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: none;
    display: none;
}

.portfolio-inner-page .project-gallery:hover .slick-arrow {
    display: block;
}

.portfolio-inner-page .project-gallery .slick-arrow:before {
    font-family: FontAwesome;
    color: #fff;
    display: block;
    font-size: 20px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}

.portfolio-inner-page .project-gallery .slick-next {
    right: 5%;
}

.portfolio-inner-page .project-gallery .slick-prev {
    left: 5%;
}

.portfolio-inner-page .project-gallery .slick-prev:before {
    content: "";
}

@media screen and (max-width: 991px) {

    /*    .project-holder {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            flex-direction: column-reverse;
        }

        .project-holder > div.col-md-6 {
            width: 100%;
        }*/
    .portfolio-inner-page .project-holder .project-info {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .portfolio-inner-page .table-responsive {
        border: 0;
    }
}

/* Portfolio projects */
.portfolio-projects .project {
    margin-bottom: 25px;
}

.portfolio-projects .project h3,
.portfolio-projects .project .h3 {
    color: #894646;
    font-weight: bold;
    font-size: 17px;
    margin: 25px 0 15px 0;
    text-decoration: none;
    text-align: center;
}

.portfolio-projects .project a,
.portfolio-projects .project a:hover {
    text-decoration: none;
}

.portfolio-projects .project .image {
    position: relative;
    background-origin: content-box;
    background-color: #f0f0f0;
    height: 260px;
    width: 100%;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
}

.portfolio-projects .project .image .hover {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 32, 81, 0.15);
    display: none;
}

.portfolio-projects .project .image:hover .hover {
    display: inline-block;
}

.portfolio-projects .project .hover .btn {
    padding: 10px;
    text-align: center;
    margin: 0 5px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.portfolio-projects .project .hover .btn i {
    margin: 0;
}

.portfolio-projects .project .hover>* {
    top: 45%;
    position: relative;
}

@media screen and (max-width: 991px) {

    .portfolio-inner-page .heading h1,
    .portfolio-inner-page .heading .h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {

    .portfolio-inner-page .heading h1,
    .portfolio-inner-page .heading .h1 {
        font-size: 28px;
    }
}

/* *******************************************
 ************** Section ************** *
 ******************************************* */
.section {
    min-height: 100px;
    padding: 30px 0;
}

/* *******************************************
 ************** Section 2 ************** *
 ******************************************* */
.section-2 h1,
.section-2 .h1,
.section-2 h2,
.section-2 .h2,
.section-2 h3,
.section-2 .h3,
.section-2 h4,
.section-2 .h4,
.section-2 h5,
.section-2 .h5,
.section-2 h6,
.section-2 .h6,
.section-2 p,
.section-2 p.lead,
.main-content .section-2 h1,
.main-content .section-2 .h1,
.main-content .section-2 h2,
.main-content .section-2 .h2,
.main-content .section-2 h3,
.main-content .section-2 .h3,
.main-content .section-2 h4,
.main-content .section-2 .h4,
.main-content .section-2 h5,
.main-content .section-2 .h5,
.main-content .section-2 h6,
.main-content .section-2 .h6,
.main-content .section-2 p,
.main-content .section-2 p.lead {
    color: #ffffff;
}

.section-2 {
    padding: 30px 0 0 0;
}

.section-2 .background-image-holder {
    min-height: 50vh;
    height: 750px;
    max-height: 100vh;
}

.section-2.vh-80 .background-image-holder {
    min-height: 80vh;
    height: 80vh;
}

.section-2 .container {
    z-index: 9;
}

.section-2 .socials-holder {
    z-index: 9;
    right: 0;
    height: 100%;
    text-align: right;
    color: #ffffff;
    display: flex;
    flex-flow: column;
    align-self: center;
    justify-self: center;
    align-items: center;
    justify-content: center;
}

.section-2 .socials-holder ul li {
    display: block;
}

.section-2 .socials-holder ul li a {
    color: #ffffff;
    font-size: 24px;
    margin: 35px 40px 35px 0;
}

@media screen and (max-width: 991px) {
    .section-2 .socials-holder {
        display: none;
    }
}

/* *******************************************
 ************** Section 3 ************** *
 ******************************************* */
.section-3 {
    padding: 30px 0 0 0;
}

.section-3 .background-image-holder {
    min-height: 20vh;
    height: 350px;
    max-height: 50vh;
}

.section-3.vh-100 .background-image-holder {
    min-height: 100vh;
}

.section-3 h1,
.section-3 .h1,
.section-3 h2,
.section-3 .h2,
.section-3 h3,
.section-3 .h3,
.section-3 h4,
.section-3 .h4,
.section-3 h5,
.section-3 .h5,
.section-3 h6,
.section-3 .h6,
.section-3 p,
.section-3 p.lead {
    color: #ffffff;
}

.section-3 .container {
    z-index: 9;
}

.section-3 .socials-holder {
    z-index: 9;
    right: 0;
    height: 100%;
    text-align: right;
    color: #ffffff;
    display: flex;
    flex-flow: column;
    align-self: center;
    justify-self: center;
    align-items: center;
    justify-content: center;
}

.section-3 .socials-holder ul li {
    display: block;
}

.section-3 .socials-holder ul li a {
    color: #ffffff;
    font-size: 24px;
    margin: 35px 40px 35px 0;
}

@media screen and (max-width: 991px) {
    .section-3 .socials-holder {
        display: none;
    }
}

/* *******************************************
 ************** Section 4 ************** *
 ******************************************* */
.section-4 .bg-secondary {
    background-clip: content-box;
}

.section-4 * {
    color: #ffffff;
}

@media screen and (max-width: 575px) {
    .section-4 .h-100 {
        height: auto;
    }

    .section-4 .module-btn {
        bottom: 0;
        position: absolute;
    }
}

.section-4 .info-holder {
    padding: 40px 30px;
}

@media screen and (max-width: 575px) {
    .section-4 .info-holder {
        height: 370px;
    }
}

/* *******************************************
 ************** Section 5 ************** *
 ******************************************* */
.section-5 .picrow {
    margin-bottom: 10px;
}

.section-5 .photo-container {
    position: relative;
}

.section-5 .photo-container .image-thumb {
    padding: 0px 5px;
    width: calc(100% - 10px);
    background: transparent;
}

/* *******************************************
 ************** Section 6 ************** *
 ******************************************* */
.section-6 {
    padding: 30px 0;
    /* h1,h2,h3,h4,h5,h6,p{
     color: $default;
   }*/
}

.section-6 .mwembed {
    height: auto;
    width: auto;
}

@media screen and (max-width: 1199px) {
    .section-6 .info-holder {
        margin-bottom: 30px;
        text-align: center;
    }
}

.section-6 .div-table-cell {
    position: relative;
}

.section-6 .div-table-cell .button-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* *******************************************
 ************** Section 7 ************** *
 ******************************************* */
.section-7 .card {
    height: 100%;
    background: #fff;
    border: 0;
    padding: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.section-7 .card .stamp {
    margin-left: 0;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 35px;
}

.section-7 .card .stamp i {
    color: #000000;
}

@media screen and (max-width: 767px) {
    .section-7 .card .stamp {
        font-size: 30px;
        width: 80px;
        height: 60px;
        padding: 0;
        margin-bottom: 0;
    }
}

.section-7 .card.dark {
    background: #894646;
}

.section-7 .card.dark h1,
.section-7 .card.dark .h1,
.section-7 .card.dark h2,
.section-7 .card.dark .h2,
.section-7 .card.dark h3,
.section-7 .card.dark .h3,
.section-7 .card.dark h4,
.section-7 .card.dark .h4,
.section-7 .card.dark p {
    color: #ffffff;
}

.section-7 .card.dark i {
    color: #ffffff;
}

.section-7 .card:hover {
    background: #bb5656;
}

.section-7 .card:hover h1,
.section-7 .card:hover .h1,
.section-7 .card:hover h2,
.section-7 .card:hover .h2,
.section-7 .card:hover h3,
.section-7 .card:hover .h3,
.section-7 .card:hover h4,
.section-7 .card:hover .h4,
.section-7 .card:hover p {
    color: #ffffff;
}

.section-7 .card:hover i {
    color: #ffffff;
}

/* *******************************************
 ************** Section 8 ************** *
 ******************************************* */
.section-8 {
    position: relative;
    z-index: 9;
}

.section-8 .icon-holder {
    margin-top: 50px;
    margin-bottom: 50px;
}

.section-8 .icon-holder .mw-icon,
.section-8 .icon-holder .icon {
    margin-bottom: 35px;
    font-size: 65px;
    color: #bb5656;
    display: block;
}

/* *******************************************
 ************** Section 9 ************** *
 ******************************************* */
.section-9 {
    padding: 0;
    z-index: -1;
}

.section-9 .background-image-holder {
    position: relative;
    height: 575px;
    max-height: 100vh;
    /*&:before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      left: 0;
      right: 0;
      top: 0;
      height: 300px;
      background: rgba(255, 255, 255, 1);
      background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(1%, rgba(255, 255, 255, 1)), color-stop(29%, rgba(255, 255, 255, 0.72)), color-stop(100%, rgba(255, 255, 255, 0)));
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
      background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
      background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0.72) 29%, rgba(255, 255, 255, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
    }*/
}

.section-9 .container {
    padding: 160px 0 320px 0;
}

@media screen and (max-width: 1199px) {
    .section-9 .container {
        padding: 120px 0 240px 0;
    }
}

@media screen and (max-width: 991px) {
    .section-9 .container {
        padding: 120px 0 240px 0;
    }
}

@media screen and (max-width: 575px) {
    .section-9 .container {
        padding: 80px 0 160px 0;
    }
}

.section-9 .blockquote-holder {
    max-width: 680px;
    padding-bottom: 400px;
}

@media screen and (min-width: 1441px) {
    .section-9 .blockquote-holder {
        padding-bottom: 600px;
    }
}

.mw-live-edit .section-9 {
    margin-top: 0px;
}

.section-9.no-gradient {
    margin-top: 0px;
}

.section-9.no-gradient .background-image-holder {
    min-height: 70vh;
}

.section-9.no-gradient .background-image-holder:before {
    display: none;
}

/* *******************************************
 ************** Section 10 ************** *
 ******************************************* */
.section-10 .mwembed {
    height: auto;
}

.section-10 .new-world-testimonials-2 .info-holder {
    text-align: left;
}

@media screen and (min-width: 992px) {
    .section-10 .video-left .video-holder {
        padding-right: 4.15%;
    }
}

@media screen and (max-width: 991px) {
    .section-10 .video-right .left-side {
        order: 1;
    }

    .section-10 .video-right .right-side {
        order: 2;
    }
}

@media screen and (min-width: 992px) {
    .section-10 .video-right .video-holder {
        padding-left: 4.15%;
    }
}

/* *******************************************
 ************** Section 11 ************** *
 ******************************************* */
.section-11 i.fab {
    font-size: 36px;
    color: #bb5656;
    margin-bottom: 30px;
}

.section-11 .title-holder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* *******************************************
 ************** Section 12 ************** *
 ******************************************* */
.section-12 {
    position: relative;
    z-index: 9;
}

.section-12 .icon-holder {
    margin: 50px auto;
}

.section-12 .icon-holder .mw-icon,
.section-12 .icon-holder .icon {
    margin-bottom: 20px;
    font-size: 55px;
    color: #bb5656;
    display: block;
}

.section-12 h6,
.section-12 .h6 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.section-12 p {
    color: #000000;
}

.section-12 .button-holder:before {
    opacity: 0;
}

@media screen and (min-width: 576px) and (max-width: 991px) {

    .section-12 h6,
    .section-12 .h6 {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .section-12 .button-holder {
        margin-top: 30px;
        padding: 40px 0 50px 0;
    }

    .section-12 .button-holder:before {
        opacity: 1;
    }

    .section-12 .icon-holder {
        margin: 20px auto;
    }
}

/* *******************************************
 ************** Section 13 ************** *
 ******************************************* */
.section-13 {
    position: relative;
    z-index: 9;
}

.section-13 .icon-holder {
    margin: 50px auto;
}

.section-13 .icon-holder .icon,
.section-13 .icon-holder .mw-icon {
    margin-bottom: 30px;
    font-size: 55px;
    color: #ffffff;
    display: block;
}

.section-13 h6,
.section-13 .h6 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.section-13 p {
    color: #ffffff;
}

.section-13 .button-holder:before {
    opacity: 0;
}

@media screen and (min-width: 576px) and (max-width: 991px) {

    .section-13 h6,
    .section-13 .h6 {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .section-13 .button-holder {
        margin-top: 30px;
        padding: 40px 0 50px 0;
    }

    .section-13 .button-holder:before {
        opacity: 1;
    }

    .section-13 .icon-holder {
        margin: 20px auto;
    }
}

/* *******************************************
 ************** Section 14 ************** *
 ******************************************* */
.section-14 .info {
    float: left;
    width: calc(100% - 50px);
}

.section-14 .mw-icon,
.section-14 .icon {
    display: block;
    float: left;
    width: 50px;
    margin-bottom: 20px;
}

.section-14 .mw-icon i,
.section-14 .icon i {
    font-size: 38px;
    color: #000000;
    opacity: 0.5;
    margin-top: 5px;
}

@media screen and (max-width: 575px) {

    .section-14 .info,
    .section-14 .icon {
        float: none;
        width: 100%;
    }
}

/* *******************************************
 ************** Section 15 ************** *
 ******************************************* */
.section-15 {
    min-height: 100px;
    padding: 30px 0;
    background-color: #894646;
}

.section-15 .container {
    padding: 0 10%;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .section-15 .slider-wrapper {
        max-width: 100%;
    }
}

/* *******************************************
 ************** Section 16 ************** *
 ******************************************* */
.section-16 {
    min-height: 100px;
    padding: 30px 0;
}

.section-16 .info-holder {
    z-index: 9;
    background: #fff;
    padding: 50px 70px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.section-16 .flexbox-container {
    justify-content: center;
}

.section-16 .left-side {
    padding: 120px 60px;
    min-height: 550px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.section-16 h1,
.section-16 .h1,
.section-16 h2,
.section-16 .h2,
.section-16 h3,
.section-16 .h3,
.section-16 h4,
.section-16 .h4,
.section-16 h5,
.section-16 .h5,
.section-16 h6,
.section-16 .h6 {
    color: #000000;
}

.section-16 p,
.section-16 span {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.section-16 p {
    margin-bottom: 10px;
}

.section-16 .img-holder {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (max-width: 991px) {
    .section-16 .left-side {
        min-height: auto;
        padding: 10px;
    }

    .section-16 p {
        text-align: center;
    }

    .section-16 .img-holder {
        padding-top: 56.25%;
        /* 16:9 Aspect Ratio */
    }

    .section-16 .flexbox-container {
        flex-direction: column-reverse;
    }

    .section-16 .info-holder {
        padding: 50px 20px;
    }
}

/* *******************************************
 ************** Section 17 ************** *
 ******************************************* */
.section-17 {
    min-height: 100px;
    padding: 30px 0;
}

.section-17 .info-holder {
    z-index: 9;
    background: #fff;
    padding: 50px 70px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.section-17 .flexbox-container {
    justify-content: center;
}

.section-17 .right-side {
    padding: 120px 60px;
    min-height: 550px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.section-17 h1,
.section-17 .h1,
.section-17 h2,
.section-17 .h2,
.section-17 h3,
.section-17 .h3,
.section-17 h4,
.section-17 .h4,
.section-17 h5,
.section-17 .h5,
.section-17 h6,
.section-17 .h6 {
    color: #000000;
}

.section-17 p,
.section-17 span {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.section-17 p {
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .section-17 .right-side {
        min-height: auto;
        padding: 10px;
    }

    .section-17 p {
        text-align: center;
    }

    .section-17 .flexbox-container {
        flex-direction: column;
    }
}

.section-17 .img-holder {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (max-width: 991px) {
    .section-17 .img-holder {
        padding-top: 56.25%;
        /* 16:9 Aspect Ratio */
    }

    .section-17 .info-holder {
        padding: 50px 20px;
    }
}

/* *******************************************
 ************** Section 18 ************** *
 ******************************************* */
.section-18 .padding-holder {
    padding: 50px 30px;
    max-height: calc(100vh - 100px);
}

@media screen and (min-width: 1200px) {
    .section-18 .padding-holder {
        min-height: 680px;
        height: 100%;
    }
}

@media screen and (max-width: 1199px) {
    .section-18 .button-holder {
        margin-top: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .section-18 .background-image-holder .button-holder {
        bottom: 50px;
        position: absolute;
    }
}

.section-18 .text-white h1,
.section-18 .text-white .h1,
.section-18 .text-white h2,
.section-18 .text-white .h2,
.section-18 .text-white h3,
.section-18 .text-white .h3,
.section-18 .text-white h4,
.section-18 .text-white .h4,
.section-18 .text-white h5,
.section-18 .text-white .h5,
.section-18 .text-white h6,
.section-18 .text-white .h6,
.section-18 .text-white p {
    color: #ffffff;
}

/* *******************************************
 ************** Section 19 ************** *
 ******************************************* */
.section-19 {
    padding: 30px 0 0 0;
}

.section-19 .background-image-holder {
    min-height: 400px;
    height: 30.25vw;
    max-height: 90vh;
    /*position: relative;
    &:before {
      position: absolute;
      left: 0;
      top: 0;
      background: rgba(red($default), green($default), blue($default), .3);
      content: '';
      width: 100%;
      height: 100%;
      z-index: 1;
    }*/
}

.section-19 .background-image-holder>div {
    z-index: 2;
}

@media screen and (max-width: 1440px) {
    .section-19 .background-image-holder {
        height: 56.25vw;
    }
}

.section-19 .text-holder {
    min-height: 400px;
}

.section-19 .info-holder {
    padding-left: 50px;
    padding-right: 50px;
}

.section-19 .info-holder h1,
.section-19 .info-holder .h1,
.section-19 .info-holder h2,
.section-19 .info-holder .h2,
.section-19 .info-holder h3,
.section-19 .info-holder .h3,
.section-19 .info-holder h4,
.section-19 .info-holder .h4,
.section-19 .info-holder h5,
.section-19 .info-holder .h5,
.section-19 .info-holder h6,
.section-19 .info-holder .h6,
.section-19 .info-holder p {
    color: #ffffff;
}

.section-19 blockquote:before,
.section-19 blockquote,
.section-19 blockquote .testimonial .name {
    color: #ffffff;
    text-align: left;
}

.section-19 .socials-holder {
    right: 0;
    height: 100%;
    text-align: right;
    color: #ffffff;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.section-19 .socials-holder ul li {
    display: block;
}

.section-19 .socials-holder ul li a {
    color: #ffffff;
    font-size: 24px;
    margin: 35px 40px 35px 0;
}

@media screen and (min-width: 992px) {
    .section-19 .stamp {
        background: transparent;
        width: auto;
        height: auto;
        max-width: 450px;
    }
}

@media screen and (max-width: 991px) {
    .section-19 .socials-holder {
        display: none;
    }

    .section-19 .stamp {
        padding: 35px;
        position: absolute;
        z-index: 999;
        left: 0;
        right: 0;
    }

    .section-19 .background-image-holder.cuted {
        margin-bottom: 140px;
    }

    .section-19 .background-image-holder.cuted:after {
        display: block;
        width: 100%;
        position: absolute;
        content: "";
        background: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/divider.svg");
        -webkit-background-size: cover;
        background-size: cover;
        height: 140px;
        z-index: 9;
        top: calc(100% - 140px);
        -moz-transform: scale(-1, 1);
        -webkit-transform: scale(-1, 1);
        -o-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }

    .section-19 blockquote:before,
    .section-19 blockquote,
    .section-19 blockquote .testimonial .name {
        text-align: center;
    }

    .section-19 blockquote {
        font-size: 16px;
    }

    .section-19 blockquote:before {
        font-size: 18px;
    }

    .section-19 .align-self-end {
        align-self: flex-start;
        text-align: center;
    }

    .section-19 .info-holder {
        padding-bottom: 10px;
        margin: 50px auto 30px auto;
    }
}

@media screen and (max-width: 767px) {
    .section-19 blockquote:before {
        margin: 5px auto;
    }

    .section-19 .stamp {
        margin-top: 0;
        width: 280px;
        height: 280px;
        background-repeat: no-repeat;
    }

    .section-19 .info-holder {
        padding-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
        margin: 30px auto 10px;
    }
}

/* *******************************************
 ************** Section 20 ************** *
 ******************************************* */
.section-20 {
    position: relative;
    z-index: 9;
}

.section-20 h3,
.section-20 .h3 {
    font-size: 30px;
    margin: 10px 0;
}

.section-20 .text-white h1,
.section-20 .text-white .h1,
.section-20 .text-white h2,
.section-20 .text-white .h2,
.section-20 .text-white h3,
.section-20 .text-white .h3,
.section-20 .text-white h4,
.section-20 .text-white .h4,
.section-20 .text-white h5,
.section-20 .text-white .h5,
.section-20 .text-white h6,
.section-20 .text-white .h6,
.section-20 .text-white p {
    color: #ffffff;
}

.section-20 .background-image-holder {
    -webkit-background-size: cover;
    background-size: cover;
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.section-20 .background-image-holder:before {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(137, 70, 70, 0.5);
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-20 .icon-holder {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.section-20 .icon-holder i,
.section-20 .icon-holder span {
    font-size: 45px;
    color: #ffffff;
    display: block;
}

.section-20 .square {
    position: relative;
    width: 100%;
    z-index: 2;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
}

.section-20 .square .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    display: flex;
}

.section-20 .square:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.section-20 .slick-dots {
    text-align: center;
    margin-top: 20px;
}

.section-20 .slick-dots li {
    display: inline-block;
    font-size: 0px;
    margin: 0 5px;
}

.section-20 .slick-dots li button {
    border: 0;
    height: 11px;
    width: 11px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #c2c2c2;
}

.section-20 .slick-dots li.slick-active button {
    background: #894646;
    height: 16px;
    width: 16px;
}

.section-20 .slick-dots li button:before {
    display: none;
}

@media screen and (max-width: 1199px) {
    .section-20 .slide.slick-center {
        margin-top: 0px;
    }

    .section-20 .slick-dots {
        margin-top: 30px;
    }
}

/* *******************************************
 ************** Section 21 ************** *
 ******************************************* */
.section-21 .twitter-holder {
    padding: 30px;
    background: #bb5656;
}

.section-21 .twitter-holder a {
    color: #ffffff;
}

.section-21 .twitter-holder .module {
    max-width: 100%;
}

/* *******************************************
 ************** Section 22 ************** *
 ******************************************* */
.section-22 .box {
    margin-bottom: 30px;
    padding: 25px 30px;
    display: flex;
    flex-flow: row;
    align-items: center;
}

@media screen and (max-width: 575px) {
    .section-22 .box {
        justify-content: center;
        flex-flow: column;
        align-items: start;
    }
}

.section-22 .box:hover {
    cursor: pointer;
    background: #bb5656;
}

.section-22 .box:hover * {
    color: #ffffff;
}

.section-22 .box:after {
    content: "";
    display: block;
    clear: both;
}

.section-22 .box .icon-holder {
    float: left;
    font-size: 35px;
    width: 60px;
    text-align: left;
    margin-inline-end: 12px;
}

@media screen and (max-width: 575px) {
    .section-22 .box .icon-holder {
        margin-bottom: 10px;
    }
}

.section-22 .box .text-holder {
    float: left;
    width: calc(100% - 60px);
}

.section-22 .box p {
    font-size: 16px;
    line-height: 1.35;
}

.section-22 ul.socials {
    margin: 0;
}

.section-22 ul.socials li {
    margin-left: 7px;
    margin-right: 0;
}

.section-22 ul.socials li a {
    background: transparent;
    color: #000000;
    font-size: 20px;
    height: 29px;
    width: 29px;
}

.section-22 .socials-holder {
    right: 180px;
    bottom: 67px;
    position: absolute;
}

/* *******************************************
 ************** Section 23 ************** *
 ******************************************* */
.section-23 p {
    font-size: 16px;
    line-height: 1.5;
}

.section-23 .card {
    height: 100%;
    background: #fff;
    border: 0;
    padding: 30px 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
}

.section-23 .card .stamp {
    margin: 0 auto;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 55px;
}

.section-23 .card .stamp i {
    color: #bb5656;
}

@media screen and (max-width: 767px) {
    .section-23 .card .stamp {
        font-size: 30px;
        width: 80px;
        height: 80px;
        padding: 26px;
    }
}

.section-23 .card.dark {
    background: #894646;
}

.section-23 .card.dark h1,
.section-23 .card.dark .h1,
.section-23 .card.dark h2,
.section-23 .card.dark .h2,
.section-23 .card.dark h3,
.section-23 .card.dark .h3,
.section-23 .card.dark h4,
.section-23 .card.dark .h4,
.section-23 .card.dark p {
    color: #ffffff;
}

.section-23 .card.dark i {
    color: #ffffff;
}

.section-23 .card:hover {
    background: #bb5656;
}

.section-23 .card:hover h1,
.section-23 .card:hover .h1,
.section-23 .card:hover h2,
.section-23 .card:hover .h2,
.section-23 .card:hover h3,
.section-23 .card:hover .h3,
.section-23 .card:hover h4,
.section-23 .card:hover .h4,
.section-23 .card:hover p {
    color: #ffffff;
}

.section-23 .card:hover i {
    color: #ffffff;
}

/* *******************************************
 ************** Section 24 ************** *
 ******************************************* */
.section-24 {
    position: relative;
    z-index: 9;
}

.section-24 .background-image-holder {
    -webkit-background-size: cover;
    background-size: cover;
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
}

.section-24 .background-image-holder:before {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(187, 86, 86, 0.8);
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    visibility: hidden;
}

.section-24 .icon-holder {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.section-24 .icon-holder i,
.section-24 .icon-holder span {
    font-size: 45px;
    color: #ffffff;
    display: block;
}

.section-24 .square {
    position: relative;
    width: 100%;
    z-index: 2;
    visibility: hidden;
}

.section-24 .square .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.section-24 .square .content p {
    font-size: 16px;
}

.section-24 .square:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.section-24 .background-image-holder:hover {
    cursor: pointer;
}

.section-24 .background-image-holder:hover .square {
    visibility: visible;
}

.section-24 .background-image-holder:hover:before {
    visibility: visible;
}

.section-24 ul.socials {
    margin: 0 0 20px 0;
}

.section-24 ul.socials li {
    margin: 0 2px;
}

.section-24 ul.socials li a,
.section-24 ul.socials li a:hover {
    background: transparent;
    font-size: 24px;
}

.section-24 ul.socials li a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.section-24 .socials-holder {
    position: absolute;
    bottom: 0;
}

/* *******************************************
 ************** Section 25 ************** *
 ******************************************* */
.section-25 {
    min-height: 100px;
    padding: 30px 0;
}

.section-25 .img-holder {
    padding: 0 70px;
    position: relative;
    min-height: 500px;
    margin-bottom: 20px;
}

.section-25 .img-holder .image-1 {
    width: 80%;
    height: 80%;
    position: absolute;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
}

.section-25 .img-holder .image-2 {
    width: 70%;
    height: 70%;
    position: absolute;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    border: 15px solid #fff;
    bottom: 0;
    right: 0;
}

/* *******************************************
 ************** Section 26 ************** *
 ******************************************* */
.section-26 {
    position: relative;
    z-index: 9;
}

@media screen and (max-width: 576px) {
    .section-26 .features-holder>div {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 576px) {
    .section-26 .features-holder>div:nth-child(odd) {
        margin-top: 40px;
    }
}

.section-26 .icon-holder {
    padding-top: 50px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding-bottom: 50px;
}

.section-26 .icon-holder .mw-icon,
.section-26 .icon-holder .icon {
    margin-bottom: 15px;
    font-size: 55px;
    color: #bb5656;
    display: block;
}

.section-26 .icon-holder:hover {
    background-color: #bb5656;
}

.section-26 .icon-holder:hover * {
    color: #ffffff;
}

.section-26 .icon-holder:hover .mw-icon,
.section-26 .icon-holder:hover .icon {
    color: #ffffff;
}

/* *******************************************
 ************** Section 27 ************** *
 ******************************************* */
.section-27 {
    padding: 30px 0 0 0;
}

@media screen and (min-width: 1440px) {

    .section-27 h1,
    .section-27 .h1 {
        font-size: 100px;
    }

    .section-27 h2,
    .section-27 .h2 {
        font-size: 46px;
    }
}

.section-27 .background-image-holder {
    min-height: 50vh;
    height: 750px;
    max-height: 80vh;
}

.section-27.vh-80 .background-image-holder {
    min-height: 80vh;
    height: 80vh;
}

.section-27 h1,
.section-27 .h1,
.section-27 h2,
.section-27 .h2,
.section-27 h3,
.section-27 .h3,
.section-27 h4,
.section-27 .h4,
.section-27 h5,
.section-27 .h5,
.section-27 h6,
.section-27 .h6,
.section-27 p,
.section-27 p.lead {
    color: #ffffff;
}

.section-27 .container {
    z-index: 9;
}

.section-27 .socials-holder {
    z-index: 9;
    right: 0;
    height: 100%;
    text-align: right;
    color: #ffffff;
    display: flex;
    flex-flow: column;
    align-self: center;
    justify-self: center;
    align-items: center;
    justify-content: center;
}

.section-27 .socials-holder ul li {
    display: block;
}

.section-27 .socials-holder ul li a {
    color: #ffffff;
    font-size: 24px;
    margin: 35px 40px 35px 0;
}

@media screen and (max-width: 991px) {
    .section-27 .socials-holder {
        display: none;
    }
}

.row-mx-1 {
    margin-left: -1px;
    margin-right: -1px;
}

.row-mx-2 {
    margin-left: -2px;
    margin-right: -2px;
}

.row-mx-3 {
    margin-left: -3px;
    margin-right: -3px;
}

.row-mx-4 {
    margin-left: -4px;
    margin-right: -4px;
}

.row-mx-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-mx-6 {
    margin-left: -6px;
    margin-right: -6px;
}

.row-mx-7 {
    margin-left: -7px;
    margin-right: -7px;
}

.row-mx-8 {
    margin-left: -8px;
    margin-right: -8px;
}

.row-mx-9 {
    margin-left: -9px;
    margin-right: -9px;
}

.row-mx-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-mx-11 {
    margin-left: -11px;
    margin-right: -11px;
}

.row-mx-12 {
    margin-left: -12px;
    margin-right: -12px;
}

.row-mx-13 {
    margin-left: -13px;
    margin-right: -13px;
}

.row-mx-14 {
    margin-left: -14px;
    margin-right: -14px;
}

.row-mx-15 {
    margin-left: -15px;
    margin-right: -15px;
}

.col-px-1 {
    padding-left: 1px;
    padding-right: 1px;
}

.col-px-2 {
    padding-left: 2px;
    padding-right: 2px;
}

.col-px-3 {
    padding-left: 3px;
    padding-right: 3px;
}

.col-px-4 {
    padding-left: 4px;
    padding-right: 4px;
}

.col-px-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.col-px-6 {
    padding-left: 6px;
    padding-right: 6px;
}

.col-px-7 {
    padding-left: 7px;
    padding-right: 7px;
}

.col-px-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.col-px-9 {
    padding-left: 9px;
    padding-right: 9px;
}

.col-px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.col-px-11 {
    padding-left: 11px;
    padding-right: 11px;
}

.col-px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.col-px-13 {
    padding-left: 13px;
    padding-right: 13px;
}

.col-px-14 {
    padding-left: 14px;
    padding-right: 14px;
}

.col-px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.typography-area img {
    max-width: 100%;
}

.main-content .layout-blockquotes-block blockquote {
    color: white;
}

/* ---------------- TYPOGRAPHY ---------------- */
html,
body,
p,
div,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
img,
form,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    outline: 0;
}

input[type="checkbox"] {
    outline: 0;
    border: 0;
}

select {
    outline: 0;
}

img,
fieldset {
    border: none;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}

.red {
    color: #ff2051;
}

.darkred {
    color: #dd2229;
}

.green {
    color: green;
}

.silver {
    color: #666666;
}

.m-a {
    margin: auto;
}

.m-0 {
    margin: 0px;
}

.m-5 {
    margin: 5px;
}

.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

.m-30 {
    margin: 30px;
}

.m-40 {
    margin: 40px;
}

.m-t-0 {
    margin-top: 0px;
}

.m-t-5 {
    margin-top: 5px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-t-40 {
    margin-top: 40px;
}

.m-t-50 {
    margin-top: 50px;
}

.m-t-60 {
    margin-top: 60px;
}

.m-t-70 {
    margin-top: 70px;
}

.m-t-80 {
    margin-top: 80px;
}

.m-t-90 {
    margin-top: 90px;
}

.m-t-100 {
    margin-top: 100px;
}

.m-l-0 {
    margin-left: 0px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-l-20 {
    margin-left: 20px;
}

.m-l-30 {
    margin-left: 30px;
}

.m-l-40 {
    margin-left: 40px;
}

.m-l-50 {
    margin-left: 50px;
}

.m-l-60 {
    margin-left: 60px;
}

.m-l-70 {
    margin-left: 70px;
}

.m-l-80 {
    margin-left: 80px;
}

.m-b-0 {
    margin-bottom: 0px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-b-60 {
    margin-bottom: 60px;
}

.m-b-70 {
    margin-bottom: 70px;
}

.m-b-80 {
    margin-bottom: 80px;
}

.m-b-90 {
    margin-bottom: 90px;
}

.m-b-100 {
    margin-bottom: 100px;
}

.p-0 {
    padding: 0px;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.p-40 {
    padding: 40px;
}

.p-t-0 {
    padding-top: 0px;
}

.p-t-5 {
    padding-top: 5px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-t-40 {
    padding-top: 40px;
}

.p-t-50 {
    padding-top: 50px;
}

.p-t-60 {
    padding-top: 60px;
}

.p-t-70 {
    padding-top: 70px;
}

.p-t-80 {
    padding-top: 80px;
}

.p-t-90 {
    padding-top: 90px;
}

.p-t-100 {
    padding-top: 100px;
}

.p-t-150 {
    padding-top: 150px;
}

.p-t-200 {
    padding-top: 200px;
}

.p-t-250 {
    padding-top: 250px;
}

.p-t-300 {
    padding-top: 300px;
}

.p-b-0 {
    padding-bottom: 0px;
}

.p-b-10 {
    padding-bottom: 10px;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-b-30 {
    padding-bottom: 30px;
}

.p-b-40 {
    padding-bottom: 40px;
}

.p-b-50 {
    padding-bottom: 50px;
}

.p-b-60 {
    padding-bottom: 60px;
}

.p-b-70 {
    padding-bottom: 70px;
}

.p-b-80 {
    padding-bottom: 80px;
}

.p-b-90 {
    padding-bottom: 90px;
}

.p-b-100 {
    padding-bottom: 100px;
}

.p-b-150 {
    padding-bottom: 150px;
}

.p-b-200 {
    padding-bottom: 200px;
}

.p-b-250 {
    padding-bottom: 250px;
}

.p-b-300 {
    padding-bottom: 300px;
}

@media screen and (max-width: 991px) {
    .m-t-10 {
        margin-top: 5px;
    }

    .m-t-15 {
        margin-top: 7px;
    }

    .m-t-20 {
        margin-top: 10px;
    }

    .m-t-30 {
        margin-top: 15px;
    }

    .m-t-40 {
        margin-top: 20px;
    }

    .m-t-50 {
        margin-top: 25px;
    }

    .m-t-60 {
        margin-top: 30px;
    }

    .m-t-70 {
        margin-top: 35px;
    }

    .m-t-80 {
        margin-top: 40px;
    }

    .m-t-90 {
        margin-top: 45px;
    }

    .m-t-100 {
        margin-top: 50px;
    }

    .m-l-10 {
        margin-left: 5px;
    }

    .m-l-20 {
        margin-left: 10px;
    }

    .m-l-30 {
        margin-left: 15px;
    }

    .m-l-40 {
        margin-left: 20px;
    }

    .m-l-50 {
        margin-left: 25px;
    }

    .m-l-60 {
        margin-left: 30px;
    }

    .m-l-70 {
        margin-left: 35px;
    }

    .m-l-80 {
        margin-left: 40px;
    }

    .m-b-10 {
        margin-bottom: 5px;
    }

    .m-b-20 {
        margin-bottom: 10px;
    }

    .m-b-30 {
        margin-bottom: 15px;
    }

    .m-b-40 {
        margin-bottom: 20px;
    }

    .m-b-50 {
        margin-bottom: 25px;
    }

    .m-b-60 {
        margin-bottom: 30px;
    }

    .m-b-70 {
        margin-bottom: 35px;
    }

    .m-b-80 {
        margin-bottom: 40px;
    }

    .m-b-90 {
        margin-bottom: 45px;
    }

    .m-b-100 {
        margin-bottom: 50px;
    }

    .p-t-10 {
        padding-top: 5px;
    }

    .p-t-20 {
        padding-top: 10px;
    }

    .p-t-30 {
        padding-top: 15px;
    }

    .p-t-40 {
        padding-top: 20px;
    }

    .p-t-50 {
        padding-top: 25px;
    }

    .p-t-60 {
        padding-top: 30px;
    }

    .p-t-70 {
        padding-top: 35px;
    }

    .p-t-80 {
        padding-top: 40px;
    }

    .p-t-90 {
        padding-top: 45px;
    }

    .p-t-100 {
        padding-top: 50px;
    }

    .p-t-150 {
        padding-top: 75px;
    }

    .p-t-200 {
        padding-top: 100px;
    }

    .p-t-250 {
        padding-top: 125px;
    }

    .p-t-300 {
        padding-top: 150px;
    }

    .p-b-10 {
        padding-bottom: 5px;
    }

    .p-b-20 {
        padding-bottom: 10px;
    }

    .p-b-30 {
        padding-bottom: 15px;
    }

    .p-b-40 {
        padding-bottom: 20px;
    }

    .p-b-50 {
        padding-bottom: 25px;
    }

    .p-b-60 {
        padding-bottom: 30px;
    }

    .p-b-70 {
        padding-bottom: 35px;
    }

    .p-b-80 {
        padding-bottom: 40px;
    }

    .p-b-90 {
        padding-bottom: 45px;
    }

    .p-b-100 {
        padding-bottom: 50px;
    }

    .p-b-150 {
        padding-bottom: 75px;
    }

    .p-b-200 {
        padding-bottom: 100px;
    }

    .p-b-250 {
        padding-bottom: 125px;
    }

    .p-b-300 {
        padding-bottom: 150px;
    }

    .m-r-10 {
        margin-right: 10px;
    }
}

.r-15 {
    border-radius: 15px;
}

body {
    font-family: "Lato", sans-serif;
    outline: none;
}

img {
    max-width: 100%;
}

html,
body {
    font-size: 16px;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    background: #fff;
    color: #000000;
}

a {
    color: #bb5656;
}

.main {
    position: relative;
}

h1.hr,
.hr.h1,
h2.hr,
.hr.h2,
h3.hr,
.hr.h3,
h4.hr,
.hr.h4,
h5.hr,
.hr.h5 {
    display: inline-block;
}

h1.hr:after,
.hr.h1:after,
h2.hr:after,
.hr.h2:after,
h3.hr:after,
.hr.h3:after,
h4.hr:after,
.hr.h4:after,
h5.hr:after,
.hr.h5:after {
    display: block;
    content: "";
    width: 65%;
    max-width: 150px;
    height: 8px;
    background-color: #bb5656;
    -webkit-mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr.svg");
    mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr.svg");
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: contain;
    mask-size: contain;
}

h1.hr:after,
.hr.h1:after {
    margin: 15px auto 25px;
}

h2.hr:after,
.hr.h2:after {
    margin: 30px auto;
}

h3.hr:after,
.hr.h3:after {
    margin: 15px auto;
}

h4.hr:after,
.hr.h4:after {
    margin: 15px auto;
}

h5.hr:after,
.hr.h5:after {
    margin: 10px auto;
}

hr.hr {
    display: inline-block;
    min-height: auto;
    border: 0;
    width: 65%;
    max-width: 150px;
    height: 8px;
    background-color: #bb5656;
    -webkit-mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr.svg");
    mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr.svg");
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.text-center h1.hr,
.text-center .hr.h1,
.text-center h2.hr,
.text-center .hr.h2,
.text-center h3.hr,
.text-center .hr.h3,
.text-center h4.hr,
.text-center .hr.h4,
.text-center h5.hr,
.text-center .hr.h5,
.text-center h6.hr,
.text-center .hr.h6 {
    margin-bottom: 10px;
}

.text-center h1.hr:after,
.text-center .hr.h1:after,
.text-center h2.hr:after,
.text-center .hr.h2:after,
.text-center h3.hr:after,
.text-center .hr.h3:after,
.text-center h4.hr:after,
.text-center .hr.h4:after,
.text-center h5.hr:after,
.text-center .hr.h5:after,
.text-center h6.hr:after,
.text-center .hr.h6:after {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}

.text-left h1.hr,
.text-left .hr.h1,
.text-left h2.hr,
.text-left .hr.h2,
.text-left h3.hr,
.text-left .hr.h3,
.text-left h4.hr,
.text-left .hr.h4,
.text-left h5.hr,
.text-left .hr.h5,
.text-left h6.hr,
.text-left .hr.h6 {
    margin-left: 0;
}

.text-left h1.hr:after,
.text-left .hr.h1:after,
.text-left h2.hr:after,
.text-left .hr.h2:after,
.text-left h3.hr:after,
.text-left .hr.h3:after,
.text-left h4.hr:after,
.text-left .hr.h4:after,
.text-left h5.hr:after,
.text-left .hr.h5:after,
.text-left h6.hr:after,
.text-left .hr.h6:after {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media screen and (max-width: 991px) {

    .text-lg-center h1.hr,
    .text-lg-center .hr.h1,
    .text-lg-center h2.hr,
    .text-lg-center .hr.h2,
    .text-lg-center h3.hr,
    .text-lg-center .hr.h3,
    .text-lg-center h4.hr,
    .text-lg-center .hr.h4,
    .text-lg-center h5.hr,
    .text-lg-center .hr.h5,
    .text-lg-center h6.hr,
    .text-lg-center .hr.h6 {
        text-align: center;
    }

    .text-lg-center h1.hr:after,
    .text-lg-center .hr.h1:after,
    .text-lg-center h2.hr:after,
    .text-lg-center .hr.h2:after,
    .text-lg-center h3.hr:after,
    .text-lg-center .hr.h3:after,
    .text-lg-center h4.hr:after,
    .text-lg-center .hr.h4:after,
    .text-lg-center h5.hr:after,
    .text-lg-center .hr.h5:after,
    .text-lg-center h6.hr:after,
    .text-lg-center .hr.h6:after {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 991px) {

    .text-lg-left h1.hr,
    .text-lg-left .hr.h1,
    .text-lg-left h2.hr,
    .text-lg-left .hr.h2,
    .text-lg-left h3.hr,
    .text-lg-left .hr.h3,
    .text-lg-left h4.hr,
    .text-lg-left .hr.h4,
    .text-lg-left h5.hr,
    .text-lg-left .hr.h5,
    .text-lg-left h6.hr,
    .text-lg-left .hr.h6 {
        text-align: left;
    }

    .text-lg-left h1.hr:after,
    .text-lg-left .hr.h1:after,
    .text-lg-left h2.hr:after,
    .text-lg-left .hr.h2:after,
    .text-lg-left h3.hr:after,
    .text-lg-left .hr.h3:after,
    .text-lg-left h4.hr:after,
    .text-lg-left .hr.h4:after,
    .text-lg-left h5.hr:after,
    .text-lg-left .hr.h5:after,
    .text-lg-left h6.hr:after,
    .text-lg-left .hr.h6:after {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

h1,
.h1 {
    font-size: 50px;
    color: #000000;
    font-weight: bold;
}

@media screen and (max-width: 1199px) {

    h1,
    .h1 {
        font-size: 46px;
    }
}

h2,
.h2 {
    font-size: 46px;
    color: #000000;
    font-weight: 700;
}

@media screen and (max-width: 1199px) {

    h2,
    .h2 {
        font-size: 36px;
    }
}

h3,
.h3 {
    font-size: 36px;
    color: #000000;
    font-weight: 600;
    /*  @media screen and (max-width: 767px) {
      font-size: $title-xs;
    }*/
}

@media screen and (max-width: 1199px) {

    h3,
    .h3 {
        font-size: 24px;
    }
}

h4,
.h4 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

@media screen and (max-width: 1199px) {

    h4,
    .h4 {
        font-size: 18px;
    }
}

h5,
.h5 {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.text-white h1,
.text-white .h1,
.text-white h2,
.text-white .h2,
.text-white h3,
.text-white .h3,
.text-white h4,
.text-white .h4,
.text-white h5,
.text-white .h5,
.text-white h6,
.text-white .h6,
.text-white p {
    color: #ffffff;
}

.bg-default h1,
.bg-default .h1,
.bg-default h2,
.bg-default .h2,
.bg-default h3,
.bg-default .h3,
.bg-default h4,
.bg-default .h4,
.bg-default h5,
.bg-default .h5 {
    color: #ffffff;
}

.text-background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.1;
    font-size: 140px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 120px;
    letter-spacing: normal;
    color: #894646;
}

.text-background.xl {
    font-size: 300px;
    line-height: 280px;
}

.bg-default {
    background-color: #894646;
}

.bg-primary {
    background-color: #bb5656;
}

.bg-secondary {
    background-color: #6aabcf;
}

.bg-silver {
    background-color: #f3f3f3;
}

.bg-content-box {
    background-clip: content-box;
    /*  @media screen and (max-width: 991px) {
      background-clip: border-box;
    }*/
}

.cuted:after,
.cuted-top:before,
.cutted-bottom:after {
    pointer-events: none;
}

.main-content {
    overflow: hidden;
    color: #000000;
}

.main-content p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    /*  @media screen and (max-width: 767px) {
        font-size: $paragraph-sm;
      }*/
}

@media screen and (max-width: 1199px) {
    .main-content p {
        font-size: 14px;
    }
}

.main-content p.highlight {
    color: #894646;
    font-size: 18px;
    position: relative;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: 0.23px;
    padding-left: 30px;
    text-align: left;
    /*
    @media screen and (max-width: 767px) {
      font-size: $paragraph-md;
    }
    */
}

@media screen and (max-width: 1199px) {
    .main-content p.highlight {
        font-size: 16px;
    }
}

.main-content p.highlight:before {
    display: block;
    content: "";
    width: 10px;
    height: 100%;
    position: absolute;
    margin-left: -30px;
    background-color: #bb5656;
    -webkit-mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr-vertical.svg");
    mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr-vertical.svg");
    -webkit-mask-repeat: repeat-y;
    mask-repeat: repeat-y;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.main-content p.lead {
    color: #894646;
    font-size: 24px;
    position: relative;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: 0.23px;
}

@media screen and (max-width: 1199px) {
    .main-content p.lead {
        font-size: 16px;
    }
}

.main-content blockquote {
    font-size: 36px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.32;
    letter-spacing: 0.35px;
    text-align: center;
    color: inherit;
}

.main-content blockquote:before {
    width: 100%;
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 25px auto;
    left: 0;
    right: 0;
    text-align: center;
}

.main-content blockquote .testimonial {
    margin-top: 40px;
}

.main-content blockquote .testimonial img {
    width: 81px;
    height: 81px;
    object-fit: contain;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-bottom: 15px;
}

.main-content blockquote .testimonial .name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: 0.23px;
    text-align: center;
    color: #894646;
}

.main-content blockquote .testimonial .info {
    display: block;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: center;
    color: #b3b7c5;
}

.main-content blockquote.text-white .testimonial .name,
.main-content blockquote.text-white .testimonial .info {
    color: #ffffff;
}

.main-content blockquote.small {
    font-size: 16px;
    text-align: left;
}

.main-content blockquote.small:before {
    text-align: left;
    margin: 25px auto 25px 0;
}

.main-content blockquote.small .testimonial .name {
    text-align: left;
}

.main-content blockquote.small .testimonial .info {
    text-align: left;
}

.main-content .bg-default p,
.main-content .bg-default p.lead,
.main-content .bg-default p.highlight,
.main-content .bg-default blockquote,
.main-content .bg-default blockquote.small {
    color: #ffffff;
}

.main-content .text-left blockquote {
    text-align: left;
}

.main-content .text-left blockquote:before {
    text-align: left;
    margin: 0 auto 25px 0;
}

.main-content .text-left blockquote .testimonial .name {
    text-align: left;
}

.main-content .text-left blockquote .testimonial .info {
    text-align: left;
}

.main-content small,
.main-content .small {
    color: #979aa6;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
}

@media screen and (max-width: 1199px) {

    .main-content small,
    .main-content .small {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {

    .main-content small,
    .main-content .small {
        font-size: 12px;
    }
}

.main-content ol.ol {
    padding-left: 15px;
}

.main-content ol.ol li {
    color: #bb5656;
    text-align: left;
    margin-bottom: 20px;
    list-style-type: decimal;
    font-weight: bold;
    font-size: 16px;
}

.main-content ol.ol li:after {
    clear: both;
    display: block;
    content: "";
}

.main-content ol.ol li:before {
    content: "|";
    display: block;
    font-weight: 900;
    margin-right: 10px;
    float: left;
}

.main-content ol.ol li span {
    color: #000000;
    float: left;
    display: block;
    font-weight: normal;
    width: calc(100% - 25px);
}

.main-content ul.ul li {
    color: #bb5656;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
}

.main-content ul.ul li:after {
    clear: both;
    display: block;
    content: "";
}

.main-content ul.ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    display: block;
    font-weight: 900;
    margin-right: 10px;
    float: left;
}

.main-content ul.ul li span {
    color: #000000;
    float: left;
    display: block;
    width: calc(100% - 25px);
}

.main-content section {
    z-index: 9;
    position: relative;
    clear: both;
}

.main-content section>div {
    z-index: 3;
    position: relative;
}

.main-content nav {
    z-index: 2;
}

.main-content .hidden {
    display: none;
}

@media (min-width: 1200px) {
    .main-content .hidden-lg {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .main-content .hidden-md {
        display: none;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .main-content .hidden-sm {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-content .hidden-xs {
        display: none;
    }
}

.main-content .row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.shadow-sm {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-md {
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
}

/* Background */
.background-image-holder {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: static;
}

[data-bg-contain] .background-image-holder {
    background-size: contain;
}

[data-parallax] .background-image-holder {
    background-attachment: fixed;
}

@media screen and (max-width: 767px) {
    [data-parallax] .background-image-holder {
        background-attachment: scroll;
    }
}

[data-background-position="center top"] .background-image-holder {
    background-position: center top;
}

[data-background-position="center bottom"] .background-image-holder {
    background-position: center bottom;
}

[background-position="center center"] .background-image-holder {
    background-position: center center;
}

[data-overlay] {
    position: relative;
}

[data-overlay] .background-image-holder:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #894646, #bb7a7a);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

[data-overlay-inverse] .background-image-holder:after {
    background-image: linear-gradient(to bottom right, #bb5656, #d89f9f);
}

[data-overlay-black] .background-image-holder:after {
    background-image: linear-gradient(to bottom right, #000, #000);
}

[data-overlay="1"] .background-image-holder:after {
    opacity: 0.1;
}

[data-overlay="2"] .background-image-holder:after {
    opacity: 0.2;
}

[data-overlay="3"] .background-image-holder:after {
    opacity: 0.3;
}

[data-overlay="4"] .background-image-holder:after {
    opacity: 0.4;
}

[data-overlay="5"] .background-image-holder:after {
    opacity: 0.5;
}

[data-overlay="6"] .background-image-holder:after {
    opacity: 0.6;
}

[data-overlay="7"] .background-image-holder:after {
    opacity: 0.7;
}

[data-overlay="8"] .background-image-holder:after {
    opacity: 0.8;
}

[data-overlay="9"] .background-image-holder:after {
    opacity: 0.9;
}

[data-overlay="10"] .background-image-holder:after {
    opacity: 1;
}

.form-control {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border-color: #d8d8d8;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
    color: #000000;
    min-height: calc(1.5em + .75rem + 4px);
}

.form-control:focus {
    border-color: #bb5656;
    -webkit-box-shadow: 0 0 10px rgba(187, 86, 86, 0.5);
    box-shadow: 0 0 10px rgba(187, 86, 86, 0.5);
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #cacaca;
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #cacaca;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #cacaca;
}

.bootstrap-select .dropdown-toggle:focus,
.btn:focus,
.btn-group .dropdown-toggle:active,
.btn-group.show .dropdown-toggle {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.module {
    line-height: 1;
}

.custom-control.custom-radio,
.custom-control.custom-checkbox,
.custom-control.custom-switch {
    font-weight: normal;
}

.custom-control.custom-radio.d-inline-block,
.custom-control.custom-checkbox.d-inline-block,
.custom-control.custom-switch.d-inline-block {
    margin-left: 20px;
}

.custom-control.custom-radio.d-inline-block:first-of-type,
.custom-control.custom-checkbox.d-inline-block:first-of-type,
.custom-control.custom-switch.d-inline-block:first-of-type {
    margin-left: 0;
}

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

.custom-control.custom-radio:first-of-type {
    margin-left: 0;
}

.custom-control.custom-radio .custom-control-label {
    padding-top: 2px;
    line-height: 1.5;
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background: #bb5656;
    border: 3px solid #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 13px;
    height: 13px;
}

.custom-control.custom-radio .custom-control-label::before {
    width: 13px;
    height: 13px;
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background: #bb5656;
    width: 15px;
    height: 15px;
    border-color: #6c757d;
}

.custom-control.custom-radio .custom-control-label::before {
    top: 3px;
    left: -25px;
}

.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label::after {
    margin-top: 4px;
}

.custom-control.custom-checkbox .custom-control-label {
    line-height: 1.5;
}

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

.custom-control.custom-checkbox .custom-control-label::before {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.custom-control.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-color: #6c757d;
    background-color: #fff;
}

.custom-control.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#6c757d' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>");
}

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

.custom-control.custom-switch .custom-control-input:checked~.custom-control-label::before {
    border-color: #bb5656;
    background-color: #bb5656;
}

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

.form-control.is-valid,
.was-validated .form-control:valid,
.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #d8d8d8;
    background-size: calc(.25em + .375rem) calc(.25em + .375rem);
}

.invalid-feedback {
    color: #bb5656;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background: #bb5656;
}

.bootstrap-select .dropdown-menu {
    margin-top: -1px;
}

.bootstrap-select .dropdown-toggle::after {
    border-top: 0.2em solid;
    border-right: 0.2em solid transparent;
    border-left: 0.2em solid transparent;
}

.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .bootstrap-select .dropdown-menu {
    background: #fff;
    border: 1px solid #d8d8d8;
}

.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover {
    color: #3f4043;
}

.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover {
    color: #3f4043;
    text-decoration: none;
    background-color: #f4f4f4;
}

/* Ajax Loading */
.js-ajax-loading {
    transition: 0.2s;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 999;
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;
}

.js-ajax-loading img {
    display: block;
    margin: 0 auto;
    -webkit-animation: pulse 1s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
    animation: pulse 1s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

body.page-loaded .js-ajax-loading {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulse {

    0%,
    100% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* *******************************************
 **************** Containers *************** *
 ******************************************* */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 90%;
    }
}

@media (min-width: 1366px) and (max-width: 1439px) {
    .container {
        width: 1336px;
        max-width: 1336px;
    }
}

@media (max-width: 1365px) {
    .container {
        width: 90%;
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}

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

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

/*
@media (min-width: 1650px) {
  .container {
    width: 1650px;
    max-width: 1650px;
  }
}*/
/* *******************************************
 **************** Navigation *************** *
 ******************************************* */
/* *******************************************
 **************** Navigation *************** *
 ******************************************* */
.navigation {
    margin-bottom: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: background 0.4s;
    background: rgba(255, 255, 255, 0.15);
}

.navigation .logo a .logo-text,
.navigation .logo .logo-text,
.navigation .logo a,
.navigation .logo a span {
    color: #894646;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.navigation.sticky {
    border-bottom: 2px solid #e5e5e5;
}

.sticky-padding {
    padding-top: 65px;
}

.mw-live-edit .navigation.sticky {
    margin-top: 55px;
}

.navigation-holder:not(.not-transparent) .navigation .logo.logo-dark {
    display: none;
}

.navigation-holder:not(.not-transparent) .navigation .logo.logo-light {
    display: flex;
}

.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-dark {
    display: flex;
}

.navigation-holder:not(.not-transparent) .navigation.sticky .logo.logo-light {
    display: none;
}

.navigation-holder.not-transparent .navigation .logo.logo-dark {
    display: flex;
}

.navigation-holder.not-transparent .navigation .logo.logo-light {
    display: none;
}

.navigation-holder.not-transparent .navigation.sticky .logo.logo-dark {
    display: flex;
}

.navigation-holder.not-transparent .navigation.sticky .logo.logo-light {
    display: none;
}

.navigation {
    border: 0;
    border-radius: 0;
    transition: all, 0.3s;
    position: relative;
}

/* Sticky nav */
.navigation-holder {
    background: #fff;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.19), 0 1px 6px rgba(0, 0, 0, 0.23);
}

.mw-live-edit .navigation-holder {
    top: 55px;
}

.container-fluid>.navbar-collapse,
.container-sm>.navbar-collapse,
.container-md>.navbar-collapse,
.container-lg>.navbar-collapse,
.container-xl>.navbar-collapse,
.container-xxl>.navbar-collapse,
.container-fluid>.navbar-header,
.container-sm>.navbar-header,
.container-md>.navbar-header,
.container-lg>.navbar-header,
.container-xl>.navbar-header,
.container-xxl>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
}

.container-fluid>.navbar-collapse .module.module-menu,
.container-sm>.navbar-collapse .module.module-menu,
.container-md>.navbar-collapse .module.module-menu,
.container-lg>.navbar-collapse .module.module-menu,
.container-xl>.navbar-collapse .module.module-menu,
.container-xxl>.navbar-collapse .module.module-menu,
.container-fluid>.navbar-header .module.module-menu,
.container-sm>.navbar-header .module.module-menu,
.container-md>.navbar-header .module.module-menu,
.container-lg>.navbar-header .module.module-menu,
.container-xl>.navbar-header .module.module-menu,
.container-xxl>.navbar-header .module.module-menu,
.container>.navbar-collapse .module.module-menu,
.container>.navbar-header .module.module-menu {
    flex: 1;
}

.navbar-header:after {
    display: block;
    clear: both;
    content: "";
    font-size: 0;
}

.navbar-header ul.socials {
    margin: 0;
}

.navbar-header ul.socials li a {
    /*    background: $header-social-icons-back-color;
    color: $header-social-icons-color;*/
    font-size: 18px;
    padding: 0;
    margin: 0;
    height: 20px;
    width: 20px;
}

.navbar-header ul.socials a:hover {
    background: transparent;
    color: #ffffff;
}

.navbar-header ul.header-contacts-list li {
    display: inline-block;
}

.navbar-header ul.header-contacts-list li+li {
    margin-left: 15px;
}

.navbar-header ul.header-contacts-list li a {
    color: #ffffff;
    font-size: 0.75rem;
    padding: 5px;
    display: inline-flex;
    display: flex;
    align-items: center;
}

.navigation-holder.not-transparent .navbar-header ul.header-contacts-list li a,
.navigation.sticky .navbar-header ul.header-contacts-list li a {
    color: #212121;
}

.navbar-header ul.header-contacts-list li a:hover {
    text-decoration: none;
}

.navbar-header ul.header-contacts-list li a span {
    line-height: 0;
}

html[dir="ltr"] body .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
    margin-left: 7px;
}

html[dir="rtl"] body .navbar-header ul.header-contacts-list li a span:nth-of-type(2) {
    margin-right: 7px;
}

.navbar-header ul.header-contacts-list li a i {
    font-weight: 600;
    font-size: 1rem;
}

.navbar-header ul.socials.header-social-phone {
    margin-top: 20px;
}

.navbar-header ul.socials.header-social-phone li a {
    color: #fff;
}

/*Logo settings*/
.logo a .logo-text,
.logo .logo-text,
.logo a,
.logo a span {
    color: #894646;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.logo a span {
    width: auto;
}

.navigation .navbar-header .logo {
    position: relative;
    height: auto;
    transition: all, 0.3s;
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.navigation.sticky .navbar-header .logo {
    transition: all, 0.3s;
}

.navigation .navbar-header .logo a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.navigation .navbar-header .logo img {
    max-height: 100px;
    transition: all, 0.3s;
}

.navigation.sticky .navbar-header .logo img {
    transition: all, 0.3s;
}

@media screen and (min-width: 768px) {
    .navigation .navbar-header .logo img {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .navigation .navbar-header .logo {
        margin: 15px 0;
    }

    .navigation .navbar-header .logo img {
        max-height: 100%;
    }
}

/*END Logo settings*/
@media screen and (max-width: 767px) {
    body.lock-scroll-extra-menu {
        overflow: hidden;
    }

    body.lock-scroll {
        overflow: hidden;
    }
}

.navigation .navbar-header .toggle,
.navigation .navbar-header .cart {
    display: none;
}

.navigation .navbar-header .toggle,
.navigation .navbar-header .toggle-inside-menu {
    height: 25px;
    width: 34px;
}

html[dir="ltr"] body .navigation .navbar-header .toggle {
    text-align: right;
}

html[dir="rtl"] body .navigation .navbar-header .toggle {
    text-align: left;
}

html[dir="ltr"] body .navigation .navbar-header .toggle-inside-menu {
    margin-left: 15px;
}

html[dir="rtl"] body .navigation .navbar-header .toggle-inside-menu {
    margin-right: 15px;
}

.toggle-inside-menu .mobile-menu-btn span {
    background: #000000;
}

html:not(.sidebar-nav-website) .toggle .mobile-menu-btn.active span {
    background: transparent;
}

.extra-toggle .mobile-menu-btn.active span {
    background: #ffffff;
}

.mobile-menu-btn {
    color: #894646;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 34px;
    height: 22px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    top: 0;
}

.toggle-inside-menu {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.mobile-menu-btn span {
    position: absolute;
    transition: all 0.5s ease;
    display: inline-block;
    height: 2px;
    width: 33px;
    top: 0;
    right: 0;
    background: #111;
}

.navigation.sticky .mobile-menu-btn span,
.not-transparent.navigation-holder .mobile-menu-btn span {
    background: #000000;
}

.mobile-menu-btn span:first-child {
    -webkit-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    -moz-transform-origin: 0 center;
    transform-origin: 0 center;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    -webkit-transform-origin: 0 center;
    -ms-transform-origin: 0 center;
    -moz-transform-origin: 0 center;
    transform-origin: 0 center;
    top: 19px;
}

.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(-2px);
    -moz-transform: rotate(45deg) translateY(-2px);
    -ms-transform: rotate(45deg) translateY(-2px);
    transform: rotate(45deg) translateY(-3px);
}

.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(2px);
    -ms-transform: rotate(-45deg) translateY(2px);
    -moz-transform: rotate(-45deg) translateY(2px);
    transform: rotate(-45deg) translateY(3px);
}

.mobile-menu-btn.active:not(.blocked-toggle) span:nth-child(2) {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mobile-menu-btn.active:not(.blocked-toggle) {
    transform: rotate(180deg);
    right: 3px;
}

.toggle-inside-menu .mobile-menu-btn.active {
    right: 0px;
}

/* Kebab icon */
.extra-toggle {
    display: none;
}

.mobile-menu-btn-2.active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-menu-btn-2 {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: inline-block;
    transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: 400ms cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu-btn-2 span {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    margin: auto;
    pointer-events: none;
    border-radius: 50%;
    background-color: #ffffff;
}

.mobile-menu-btn-2 span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn-2 span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile-menu-btn-2 span:nth-child(3) {
    bottom: 0;
}

/*Sidebar Nav menu collapse icon*/
.sidebar-nav-website .navigation .list li>a:after {
    display: none;
}

.sidebar-nav-website .submenu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
}

.sidebar-nav-website .submenu-toggle:before {
    position: absolute;
    top: 50%;
    content: " ";
    right: 20px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #000000;
    transform: rotate(90deg);
    transition: transform 0.25s ease-in-out;
}

.sidebar-nav-website .submenu-toggle.active-icon:before {
    transform: rotate(0);
}

.sidebar-nav-website .submenu-toggle:after {
    position: absolute;
    top: 50%;
    content: " ";
    right: 20px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #000000;
}

/*End Sidebar Nav menu collapse icon*/
.mobile-menu-label {
    margin-right: 10px;
    width: 100%;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    height: 30px;
    font-size: 14px;
    display: none;
}

.mobile-menu-label b {
    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s ease;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    color: #ffffff;
}

.mobile-menu-label b+b {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.9);
}

.mobile-extra-menu-active .mobile-menu-label b:first-child {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px) scale(0.9);
}

.mobile-extra-menu-active .mobile-menu-label b+b {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.navigation .navbar-header .cart {
    text-align: left;
}

.navigation .navbar-header .cart a {
    color: #fff;
    font-size: 24px;
}

.navigation .menu-overlay {
    flex: 1;
}

.member-nav>.dropdown>.dropdown-menu {
    margin-top: 10px;
}

.navigation .list {
    display: block;
    max-width: 100%;
    text-align: center;
}

.navigation .list li a {
    transition: all, 0.3s;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    text-transform: inherit;
    color: #000000;
}

.navigation .list .dropdown-menu span.name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 20px);
    display: inline-block;
}

.navigation .list>li>a {
    display: block;
    text-decoration: none;
    position: relative;
    color: #333;
    padding: 0.7rem 0.5rem;
}

.navigation .list li>a:after {
    content: "";
    transition: all, 0.3s;
    transform: rotate(0);
    top: calc(50% - 1.5px);
}

.navigation li:hover>a:after {
    transform: rotate(-90deg);
}

.navigation .list>li>a:hover,
.navigation .list>li.active>a,
.navigation .list>li.active-parent>a {
    color: #bb5656;
    transition: all, 0.3s;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
    left: -1px;
}

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

.navigation .list>li {
    margin: 0 25px;
    display: inline-block;
    clear: both;
}

.navigation .list>li>ul a {
    padding: 0.5rem 0.7rem;
    color: #ffffff;
}

.dropdown-menu>li>a {
    display: block;
    clear: both;
    font-weight: 600;
    text-transform: inherit;
    text-decoration: none;
}

.navigation .menu .list {
    transition: all, 0.3s;
}

.navigation .list>li:hover {
    z-index: 10;
}

.show>.dropdown-menu,
.show+.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu>li>a:focus {
    background-color: transparent;
}

.navigation .dropdown-menu {
    background: #000000;
    border: 1px solid fade(#ffffff, 10%);
}

.navigation .module-menu .dropdown-menu {
    max-width: 15rem;
    min-width: 12rem;
}

/*.navigation .list>li>ul a:hover {
    background-color: $header-dropdown-back-on-hover;
    color: $header-dropdown-color-on-hover;
}*/
.navigation .list .dropdown:hover .dropdown-menu {
    margin: 0;
    left: 10%;
}

.member-nav .dropdown-menu li a {
    transition: all, 0.3s;
}

.member-nav .dropdown-menu:not(.shopping-cart) a {
    padding: 0.5rem 0.7rem;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 16px;
}

.member-nav .dropdown-menu:not(.shopping-cart) li:not(:first-child) a:hover {
    color: white;
}

.member-nav .btn-member .dropdown-menu li:not(:first-of-type) a:hover {
    background: fade(#ffffff, 3%);
}

.member-nav .shopping-cart-holder .btn:hover {
    background: rgba(187, 86, 86, 0.1);
    color: #894646;
}

.navigation .menu .list>li.mobile-search,
.navigation .menu .list>li.mobile-profile {
    display: none;
}

.navigation .menu .list>li.mobile-search form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.mobile-search button {
    border: none;
    color: white;
    background: #bb5656;
    height: 45px;
    text-align: center;
    width: auto;
    padding: 0 15px;
}

.mobile-search input {
    background: transparent;
    border: none;
    height: 45px;
    width: 100%;
    color: #894646;
}

.mobile-search .fa {
    color: #894646;
    margin: 0 14px;
}

/* Member nav */
.member-nav {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.member-nav li.dropdown {
    position: relative;
}

.member-nav li.dropdown a {
    position: relative;
}

.member-nav .dropdown-menu {
    right: 0;
    left: auto;
    transform: unset;
    margin-top: 50px;
}

.member-nav .btn {
    padding-left: 15px;
    padding-right: 15px;
}

.member-nav>li {
    display: inline-block;
    vertical-align: middle;
}

.member-nav>li a {
    text-decoration: none;
}

.member-nav .dropdown-toggle>span {
    color: #ffffff;
    font-size: 11px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    position: absolute;
    z-index: 1;
    background-color: #bb5656;
    min-width: 16px;
    min-height: 16px;
    align-items: center;
    justify-content: center;
    top: -4px;
    right: -9px;
}

.member-nav-inverse .member-nav .dropdown-toggle>span {
    color: #894646;
}

.member-nav .dropdown-toggle>i {
    color: #000000;
    font-size: 22px;
    line-height: 28px;
}

.not-transparent .navigation .member-nav .dropdown-toggle>i,
.navigation.sticky .member-nav .dropdown-toggle>i {
    color: inherit;
}

.member-nav a:after {
    display: none;
}

.member-nav .search button.dropdown-toggle {
    margin-right: 0;
    color: #ffffff;
    border: 0;
    background: transparent;
}

.member-nav .search button.dropdown-toggle:after {
    display: none;
}

.member-nav .search button {
    outline: none;
    border-radius: 0;
}

.member-nav .search .dropdown-menu {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.member-nav .search input {
    background: #fff;
    font-size: 0.9rem;
    border-radius: 0px;
    padding: 0.4rem 0.7rem;
    outline: none;
    border: 0;
    flex: 1;
}

.member-nav .search .dropdown-menu i {
    color: #894646;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

html[dir="ltr"] body .member-nav .search .dropdown-menu i {
    padding: 0 0 0 0.5rem;
}

html[dir="rtl"] body .member-nav .search .dropdown-menu i {
    padding: 0 0.5rem 0 0;
}

/* Header Shopping Cart */
.navigation .menu .member-nav .shopping-cart {
    border-radius: 5px;
}

.navigation .menu .member-nav .shopping-cart:before {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #894646;
    content: "";
    display: block;
    position: absolute;
    margin-top: -10px;
    margin-left: 39px;
}

.member-nav .shopping-cart-holder {
    padding: 0 20px;
    width: 240px;
    max-width: 100%;
    overflow: hidden;
}

.member-nav .shopping-cart-holder .product {
    padding: 10px 0;
    border-bottom: 1px solid #bb5656;
}

.member-nav .shopping-cart-holder .product .remove {
    position: absolute;
    right: 10px;
    color: #bb5656;
    line-height: 0;
    top: 10px;
}

.member-nav .shopping-cart-holder .product .remove:hover {
    background: transparent;
    color: #d89f9f;
}

.member-nav .shopping-cart-holder .product h5,
.member-nav .shopping-cart-holder .product .h5 {
    color: #fff;
    font-size: 14px;
}

.member-nav .shopping-cart-holder .product .qty {
    color: #bb5656;
}

.member-nav .shopping-cart-holder .product .price {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.member-nav .shopping-cart-holder .total p {
    font-size: 16px;
    color: #fff;
    margin: 15px 0 10px 0;
}

.member-nav .shopping-cart-holder .btn {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.dropdown-menu {
    border-radius: 0;
    color: #894646;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
    min-width: 15rem;
    /*    top: 100%;*/
}

html[dir="rtl"] .navigation .menu .list>li a,
html[dir="rtl"] body .dropdown,
html[dir="rtl"] body .dropdown-menu,
html[dir="rtl"] body .dropdown-menu a,
html[dir="rtl"] body .dropdown a {
    text-align: right;
}

.dropdown-menu li {
    position: relative;
}

.member-nav>.dropdown>.dropdown-menu {
    margin-top: 0.7rem;
}

.member-nav .dropdown-menu:before {
    position: absolute;
    top: -7px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    content: "";
    left: 10px;
    display: none;
}

.member-nav .dropdown-menu,
.member-nav .dropdown-menu:before {
    background-color: #000000;
}

/*See more icon*/
.navigation .sub-menu-more>a {
    font-size: 0;
    line-height: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 32px;
    height: 32px;
    padding: 0px;
    align-items: center;
}

.navigation .sub-menu-more>a span {
    left: 2px;
}

.navigation .sub-menu-more>a span:before {
    left: 12px;
}

.navigation .sub-menu-more>a span:after {
    left: 24px;
}

.navigation .sub-menu-more>a span,
.navigation .sub-menu-more>a span:after,
.navigation .sub-menu-more>a span:before {
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: white;
    transition: all, 0.3s;
}

.navigation .sub-menu-more>a:hover span,
.navigation .sub-menu-more>a:hover span:after,
.navigation .sub-menu-more>a:hover span:before {
    background-color: white;
}

.navigation .sub-menu-more>a span:after,
.navigation .sub-menu-more>a span:before {
    content: "";
    display: block;
}

body.sticky-nav .navigation .menu .collapseNav-initialized {
    margin-bottom: 0px;
}

.navigation ul.list {
    display: block;
    /*    @media screen and (min-width: $burgerOpenMedia) {
        display: none;

    }*/
}

/*!!! Only for main header menu !!!*/
@media screen and (min-width: 1199px) {
    html:not(.sidebar-nav-website) {
        /*See more icon*/
        /*End See more icon*/
    }

    html:not(.sidebar-nav-website) .navigation .menu .small-navbar .list li a {
        font-size: 14px;
    }

    html:not(.sidebar-nav-website) .navigation .menu .list>li:hover>a {
        color: #bb5656;
        transition: all, 0.3s;
    }

    html:not(.sidebar-nav-website) .navigation .menu .list>li>ul li:hover>a {
        color: white;
        background-color: fade(#ffffff, 3%);
    }

    html:not(.sidebar-nav-website) .navigation .list li:hover>ul {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    html:not(.sidebar-nav-website) .mw-live-edit .navigation .menu-overlay {
        position: static;
    }

    html:not(.sidebar-nav-website) .toggle-inside-menu {
        display: none;
    }

    html:not(.sidebar-nav-website) .navigation .menu .collapseNav-initialized {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more>.dropdown-menu {
        left: auto;
        right: 0;
    }

    html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu .dropdown-menu {
        left: -100%;
        right: 100%;
    }

    html:not(.sidebar-nav-website) .navigation-holder:not(.header_style_3) .navigation .menu .sub-menu-more .dropdown-menu li:hover>a:after {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 1199px) {

    /***** Sidebar navigation menu *****/
    /***** End Sidebar navigation menu *****/
    .navigation .menu .sub-menu-more {
        display: none;
    }

    .navigation .menu ul {
        width: 100%;
        margin-top: 20px;
    }

    .navigation .menu .list li {
        display: block;
        margin: 0;
        clear: both;
        width: 100%;
    }

    .navigation .menu .list>li>a {
        color: #000000;
        clear: both;
        padding: 10px 30px;
        text-align: left;
    }

    .navigation .menu a.dropdown-toggle::after {
        margin-top: 0px;
    }

    .navigation .menu .list .dropdown span.name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: calc(100% - 20px);
        display: inline-block;
    }

    .navigation .menu .list>li>ul a {
        color: black;
    }

    .navigation .menu .list>li>ul>li a {
        padding: 8px 40px;
    }

    .navigation .menu .list>li>ul>li>ul>li a {
        padding: 8px 50px;
    }

    .navigation .menu .list>li a:hover {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .menu .dropdown-menu>.active>a,
    .navigation .menu .dropdown-menu>.active>a:focus {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .menu .list>li.active-parent>a,
    .navigation .menu .list>li.active>a {
        color: #bb5656;
    }

    .navigation .menu .list>li.active li.active-parent>a {
        color: #000000;
    }

    .navigation .menu .show>.dropdown-menu {
        display: block;
        position: relative;
        float: none;
        margin: 0 auto;
        max-width: 100%;
        margin-top: 0;
    }

    .navigation .menu .list .dropdown.show {
        background: fade(#ffffff, 50%);
        padding-bottom: 15px;
    }

    .navigation .menu .has-sub-menu ul.dropdown-menu {
        position: static;
        transform: unset;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        -webkit-transition: none;
        transition: none;
        border: 0;
        margin: 0;
        background: transparent;
        max-width: 100%;
        min-width: unset;
    }

    .navigation .menu-overlay[class*="pl-"] {
        padding: 0;
    }

    .navigation .navbar-header .toggle {
        display: block;
    }

    .navigation .member-nav {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .navigation.sticky .menu .member-nav {
        display: block;
    }

    html:not(.sidebar-nav-website) .navigation .menu-overlay {
        visibility: hidden;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        background: fade(#000000, 50%);
        opacity: 0;
        transition: all, 0.3s;
        z-index: 10;
    }

    html:not(.sidebar-nav-website) .navigation .menu {
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px 0 40px 0;
        background: white;
        min-height: calc(100vh);
        transform: scaleY(1) scaleX(0) translateX(400px);
        transform-origin: right 0;
        transition: all, 0.3s;
        max-width: 100%;
        width: 100%;
        box-shadow: 0px 35px 60px 0px rgba(0, 0, 0, 0.6);
        z-index: 10;
    }

    html.mobile-menu-active:not(.sidebar-nav-website) .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    html.mobile-menu-active:not(.sidebar-nav-website) .menu {
        visibility: visible;
        overflow: auto;
        opacity: 1;
        transform: scaleY(1) scaleX(1) translateX(0);
        max-width: 400px;
    }

    nav.navigation li.btn-cart a:not(.btn) {
        display: inline-flex;
        align-items: center;
        position: relative;
    }

    .member-nav.main-member-nav:not(.visible-search) .search {
        display: none;
    }

    .navigation .menu .list>li.mobile-search {
        display: block;
        width: 100%;
        background: white;
        padding: 0 15px;
        background-clip: content-box;
        clear: both;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .member-nav .dropdown-menu:before {
        left: auto;
        right: 10px;
    }

    .sidebar-nav-website .navigation .menu-overlay {
        visibility: visible;
        width: 340px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        opacity: 1;
        transition: all, 0.3s;
        z-index: 1;
        margin-left: -340px;
    }

    .sidebar-nav-website .navigation .menu {
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0px 0 40px;
        background: white;
        height: calc(100vh);
        transition: all, 0.3s;
        max-width: 100%;
        width: 340px;
        z-index: 1;
    }

    .mobile-menu-active.sidebar-nav-website .mw-live-edit .menu-overlay {
        top: 56px;
    }

    .mobile-menu-active.sidebar-nav-website .menu-overlay {
        margin-left: 0;
    }

    .mobile-menu-active.sidebar-nav-website .menu {
        overflow: auto;
        max-width: 340px;
        border-right: 1px solid #ffffff;
    }

    .mobile-menu-active.sidebar-nav-website .main {
        width: calc("100%" - 340px);
        right: -340px;
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        width: calc(100%);
        margin: 0;
        left: 0;
    }

    .sidebar-nav-website .main {
        width: 100%;
        transition: all, 0.3s;
        position: relative;
        right: 0;
    }

    .sidebar-nav-website .navigation .menu ul {
        margin-top: 0;
    }

    .sidebar-nav-website .navigation .menu .module-menu .list>.has-sub-menu>ul.dropdown-menu {
        padding: 0 0 1rem 0;
    }

    .sidebar-nav-website .navigation .menu .module-menu .list>li:not(:first-of-type) {
        border-top: 1px solid #ffffff;
    }

    .sidebar-nav-website .navigation .menu .module-menu .list>li:last-of-type {
        border-bottom: 1px solid #ffffff;
    }

    .sidebar-nav-website .navigation .menu .list>li>a {
        padding: 1rem 2rem;
    }

    .sidebar-nav-website .navigation .menu .list>li>ul>li a {
        padding: 0.5rem 2.5rem;
    }

    .sidebar-nav-website .navigation .menu .list>li>ul>li>ul>li a {
        padding: 0.5rem 3rem;
    }
}

@media (max-width: 1365px) {

    html.sidebar-nav-website.mobile-menu-active,
    html.sidebar-nav-website.mobile-menu-active body {
        overflow: hidden;
    }

    .mobile-menu-active.sidebar-nav-website .main {
        width: 100%;
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        width: 100%;
    }

    .sidebar-nav-website .navigation .menu-overlay {
        width: 100%;
        margin-left: 0;
        visibility: hidden;
        opacity: 0;
        transition: all 1s ease;
    }

    .mobile-menu-active.sidebar-nav-website .menu-overlay {
        visibility: visible;
        opacity: 1;
        background-color: fade(#000000, 50%);
    }

    .sidebar-nav-website .navigation .menu {
        margin-left: -340px;
    }

    .mobile-menu-active.sidebar-nav-website .navigation .menu {
        margin-left: 0;
    }

    .sidebar-nav-website .mobile-menu-btn {
        z-index: 10;
    }
}

@media (max-width: 767px) {
    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        width: 100%;
        left: 340px;
    }

    .sidebar-nav-website .navigation .menu ul {
        margin-top: 20px;
    }

    .sidebar-nav-website .navigation .menu {
        min-height: 100vh;
    }
}

@media (max-width: 404px) {
    .sidebar-nav-website .navigation .menu {
        width: calc("100vw" - 64px);
        max-width: calc("100vw" - 64px);
        margin-left: calc("-100vw" - 64px);
    }

    .mobile-menu-active.sidebar-nav-website body.sticky-nav:not(.mw-live-edit) .js-sidebar-nav {
        left: calc("100vw" - 64px);
    }

    .mobile-menu-active.sidebar-nav-website .main {
        right: calc(-100vw + 64px);
    }
}

@media (max-width: 767px) {
    html:not(.sidebar-nav-website) .navigation .menu {
        padding-bottom: 220px;
    }

    .navigation .list li>a:after {
        position: absolute;
        margin-left: 0;
    }

    html[dir="rtl"] body .navigation .list li>a:after {
        left: 0;
        margin-left: 25px;
    }

    .member-nav li.btn-member {
        display: none;
    }

    .navigation .menu .list>li.mobile-profile {
        display: block;
    }

    .navbar-header ul.socials.header-social-phone {
        justify-content: center;
        padding: 0 15px;
    }

    .navbar-header ul.socials.header-social-phone li a {
        color: #894646;
        background-color: #fff;
    }

    .navbar-header ul.header-contacts-list-phone {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    html:not(.sidebar-nav-website) .navigation .menu {
        width: calc(100% - 30px);
    }

    .member-nav .btn-cart,
    .member-nav.visible-search .search {
        position: static;
    }

    .member-nav>.dropdown.btn-cart>.dropdown-menu,
    .member-nav.visible-search>.dropdown.search>.dropdown-menu {
        width: auto;
    }

    .member-nav.visible-search>.dropdown.search>.dropdown-menu:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        bottom: 0;
        background-color: fade(#ffffff, 50%);
        height: 100vh;
        z-index: 0;
        width: 100%;
    }

    .member-nav.visible-search>.dropdown.search>.dropdown-menu {
        min-height: initial;
        padding: 1rem;
    }

    .member-nav>.dropdown>.dropdown-menu:before {
        display: none;
    }

    .member-nav .shopping-cart-holder {
        width: 100%;
    }

    .navbar-header ul.header-contacts-list li+li {
        margin-left: 5px;
    }
}

/*Secondary menu*/
.navigation .secondary-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.navigation .secondary-menu .module-menu {
    width: 100%;
}

.navigation .secondary-menu .list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.secondary-menu>ul.dropdown-menu {
    border-radius: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
    top: 100%;
    position: absolute;
    background-color: #bb5656;
}

.navigation .secondary-menu>li>a {
    display: block;
    font-size: 16px;
    color: #282627;
    text-decoration: none;
    position: relative;
}

.navigation .secondary-menu>li>a,
.navigation .secondary-menu>li>ul a {
    padding: 10px 30px;
    text-align: right;
}

.navigation .secondary-menu .list>li.mobile-search,
.navigation .secondary-menu .list>li.mobile-profile {
    display: none;
}

.navigation .secondary-menu .list>li.mobile-search form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.navigation .secondary-menu .list>li.mobile-search {
    background: #fff;
}

/* Mega DropDown Secondary menu in huge resolution */
/* Not Finished */
/*@media screen and (min-width: 992px) {
    .navigation .secondary-menu.secondary-menu-open .module-menu {
        margin-top: 20px;
    }
    .navigation .secondary-menu.secondary-menu-open .module-menu>ul{
        padding-bottom: 0;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navigation .secondary-menu.secondary-menu-open .module-menu>ul>li {
        display: inline-block;
    }
}*/
/* END Mega DropDown Secondary menu in huge resolution */
@media screen and (min-width: 1199px) {

    /*See more icon for secondary menu*/
    /*End See more icon*/
    .navigation .secondary-menu .small-navbar .list li a {
        font-size: 14px;
    }

    .navigation .secondary-menu .list>li:hover>a {
        color: #bb5656;
        transition: all, 0.3s;
    }

    .navigation .secondary-menu .list>li>ul li:hover>a {
        color: white;
        background-color: fade(#ffffff, 3%);
    }

    .navigation .secondary-menu .collapseNav-initialized {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more>.dropdown-menu {
        left: auto;
        right: 0;
    }

    .navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu .dropdown-menu {
        left: -100%;
        right: 100%;
    }

    .navigation-holder:not(.header_style_3) .navigation .secondary-menu .sub-menu-more .dropdown-menu li:hover>a:after {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 1199px) {
    .navigation .secondary-menu .sub-menu-more {
        display: none;
    }

    .mobile-menu-label {
        display: inline-flex;
    }

    .extra-toggle {
        width: 34px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        cursor: pointer;
    }

    .navigation .secondary-menu .module-menu>ul {
        margin-top: 20px;
        padding-bottom: 160px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        -ms-flex-direction: column;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .navigation .secondary-menu {
        position: absolute;
        right: 0;
        left: 0;
        top: calc(-100vh);
        margin-left: auto;
        margin-right: auto;
        padding: 0 0 20px 0;
        background-color: white;
        min-height: 100vh;
        transform-origin: left top;
        transition: all, 0.3s;
        max-width: 100%;
        width: 100%;
        z-index: -1;
        bottom: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 1;
        align-content: flex-start;
    }

    .mobile-extra-menu-active .secondary-menu {
        visibility: visible;
        overflow: auto;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0%, 100%, 0);
        webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 220px;
    }

    .navigation .secondary-menu ul {
        width: 100%;
    }

    .navigation .secondary-menu .list>li,
    .navigation .secondary-menu .list>li li {
        display: block;
        margin: 0;
        clear: both;
    }

    .navigation .secondary-menu .list>li>ul a,
    .navigation .secondary-menu .list>li>a {
        color: #000000;
        clear: both;
        padding: 10px 30px;
    }

    .navigation .secondary-menu .list>li>ul a {
        color: black;
    }

    .navigation .secondary-menu .list>li>ul>li a {
        padding: 8px 40px;
    }

    .navigation .secondary-menu .list>li>ul>li>ul a {
        padding: 8px 50px;
    }

    .navigation .secondary-menu .list>li a:hover {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .secondary-menu .dropdown-menu>.active>a,
    .navigation .secondary-menu .dropdown-menu>.active>a:focus {
        background-color: fade(#ffffff, 3%);
        color: #000000;
    }

    .navigation .secondary-menu .list>li.active-parent>a,
    .navigation .secondary-menu .list>li.active>a {
        color: #bb5656;
    }

    .navigation .secondary-menu .list>li.active li.active-parent>a {
        color: #000000;
    }

    .navigation .secondary-menu .has-sub-menu ul.dropdown-menu {
        position: static;
        transform: unset;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        -webkit-transition: none;
        transition: none;
        border: 0;
        margin: 0;
        background: 0 0;
        max-width: 100%;
        min-width: unset;
    }

    .navigation .secondary-menu .list>li.mobile-search {
        display: block;
        margin-top: 20px;
    }

    .member-nav.secondary-member-nav:not(.visible-search) .search {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .navigation .secondary-menu .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navigation .secondary-menu .list>li.mobile-profile {
        display: block;
        margin-top: 20px;
    }
}

.header-posts-holder .posts-menu {
    z-index: 99;
    display: none;
    width: 100%;
    height: 280px;
    left: 0;
    position: absolute;
    background: #fff;
    border-top: 2px solid rgba(137, 70, 70, 0.1);
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
    .header-posts-holder .posts-menu {
        height: 560px;
    }
}

.header-posts-holder .posts-menu.opened {
    display: block;
}

.header-posts-holder .posts-menu .container {
    position: relative;
}

.header-posts-holder .posts-menu .container:before {
    content: "";
    right: 30px;
    border: solid rgba(137, 70, 70, 0.1);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 7px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    background: #fff;
    position: absolute;
    top: -10px;
}

.header-posts-holder .posts-menu .events {
    float: right;
}

.header-posts-holder .posts-menu .events .event {
    margin-bottom: 30px;
    width: 140px;
    float: left;
    margin-left: 30px;
}

.header-posts-holder .posts-menu .events .event h5,
.header-posts-holder .posts-menu .events .event .h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header-posts-holder .posts-menu .events .event:after {
    display: block;
    clear: both;
    content: "";
}

.header-posts-holder .posts-menu .events .event .info {
    margin-top: 10px;
}

.header-posts-holder .posts-menu .events .event .image img {
    max-width: 100%;
    width: 140px;
    height: 140px;
}

@media screen and (max-width: 767px) {
    .header-posts-holder .posts-menu {
        height: 100vh;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        width: 300px;
        left: auto;
        box-shadow: 0 11px 32px 0 rgba(219, 219, 219, 0.5);
    }

    .header-posts-holder .posts-menu .posts-title {
        display: none;
    }

    .header-posts-holder .posts-menu .btn-posts {
        margin: 30px 0;
    }

    .header-posts-holder .posts-menu .btn-posts .btn span.fas {
        margin-top: 3px;
    }

    .header-posts-holder .posts-menu .events {
        float: none;
    }

    .header-posts-holder .posts-menu .events .event {
        max-width: 100%;
        padding: 15px 0;
        margin-left: 0;
        margin-bottom: 0;
        border-bottom: 2px solid rgba(137, 70, 70, 0.1);
        float: none;
        width: 300px;
    }

    .header-posts-holder .posts-menu .events .event:last-of-type {
        border-bottom: 0;
    }

    .header-posts-holder .posts-menu .events .event .image {
        margin-right: 25px;
        float: left;
    }

    .header-posts-holder .posts-menu .events .event .image img {
        width: 60px;
        height: 60px;
    }
}

.dropdown-toggle-v2-list-item {
    position: relative;
}

.dropdown-menu-v2 {
    background-color: #212529;
    padding: 10px;
    position: absolute;
    top: 45px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}

.dropdown-menu-v2 i {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 22px;
    line-height: 28px;
    background-color: #fff;
}

@media (max-width: 991px) {
    .dropdown-menu-v2 {
        left: -65px;
    }
}

.dropdown-toggle-v2 {
    outline: none;
    border-radius: 0;
    margin-right: 0;
    color: #f8f9fa;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dropdown-toggle-v2 i {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 22px;
    line-height: 28px;
    background-color: #fff;
}

.dropdown-toggle-v2-list-item-active .dropdown-menu-v2 {
    visibility: visible;
    opacity: 1;
}

.dropdown-menu.shopping-cart {
    transform: translate3d(50%, 7px, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media (max-width: 600px) {
    .dropdown-menu.shopping-cart {
        transform: translate3d(85%, 7px, 0);
    }

    html[dir="rtl"] {
        transform: translate3d(0, 7px, 0);
    }
}

/*Flex mixin*/
.inline-flex,
.flex-inline,
.mixin-inline-flex {
    display: inline-flex;
}

.flex,
.flex-row,
.mixin-flex-row {
    display: flex;
    flex-wrap: wrap;
}

.flex-row-nowrap,
.mixin-flex-row-nowrap {
    display: flex;
    flex-wrap: nowrap;
}

.row-reverse,
.flex-row-reverse,
.mixin-flex-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column,
.mixin-flex-column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-wrap: wrap;
    flex-direction: column;
}

.flex-column-reverse,
.mixin-flex-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-center,
.mixin-flex-center {
    align-items: center;
    justify-content: center;
}

.overlay-opacity-0:after {
    opacity: 0;
}

.overlay-opacity-1:after {
    opacity: 0.1;
}

.overlay-opacity-2:after {
    opacity: 0.2;
}

.overlay-opacity-3:after {
    opacity: 0.3;
}

.overlay-opacity-4:after {
    opacity: 0.4;
}

.overlay-opacity-5:after {
    opacity: 0.5;
}

.overlay-opacity-6:after {
    opacity: 0.6;
}

.overlay-opacity-7:after {
    opacity: 0.7;
}

.overlay-opacity-8:after {
    opacity: 0.8;
}

.overlay-opacity-9:after {
    opacity: 0.9;
}

.overlay-opacity-10:after {
    opacity: 1;
}

.overlay * {
    position: relative;
    z-index: 1;
}

/* *******************************************
 **************** Margins *************** *
 ******************************************* */
.row-mx-1 {
    margin-left: -1px;
    margin-right: -1px;
}

.row-mx-2 {
    margin-left: -2px;
    margin-right: -2px;
}

.row-mx-3 {
    margin-left: -3px;
    margin-right: -3px;
}

.row-mx-4 {
    margin-left: -4px;
    margin-right: -4px;
}

.row-mx-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-mx-6 {
    margin-left: -6px;
    margin-right: -6px;
}

.row-mx-7 {
    margin-left: -7px;
    margin-right: -7px;
}

.row-mx-8 {
    margin-left: -8px;
    margin-right: -8px;
}

.row-mx-9 {
    margin-left: -9px;
    margin-right: -9px;
}

.row-mx-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-mx-11 {
    margin-left: -11px;
    margin-right: -11px;
}

.row-mx-12 {
    margin-left: -12px;
    margin-right: -12px;
}

.row-mx-13 {
    margin-left: -13px;
    margin-right: -13px;
}

.row-mx-14 {
    margin-left: -14px;
    margin-right: -14px;
}

.row-mx-15 {
    margin-left: -15px;
    margin-right: -15px;
}

.col-px-1 {
    padding-left: 1px;
    padding-right: 1px;
}

.col-px-2 {
    padding-left: 2px;
    padding-right: 2px;
}

.col-px-3 {
    padding-left: 3px;
    padding-right: 3px;
}

.col-px-4 {
    padding-left: 4px;
    padding-right: 4px;
}

.col-px-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.col-px-6 {
    padding-left: 6px;
    padding-right: 6px;
}

.col-px-7 {
    padding-left: 7px;
    padding-right: 7px;
}

.col-px-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.col-px-9 {
    padding-left: 9px;
    padding-right: 9px;
}

.col-px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.col-px-11 {
    padding-left: 11px;
    padding-right: 11px;
}

.col-px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.col-px-13 {
    padding-left: 13px;
    padding-right: 13px;
}

.col-px-14 {
    padding-left: 14px;
    padding-right: 14px;
}

.col-px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

/* *******************************************
 **************** Socials *************** *
 ******************************************* */
ul.socials.center {
    text-align: center;
}

a {
    text-decoration: none;
}

ul.socials {
    margin-top: 20px;
}

ul.socials li {
    display: inline-block;
    color: #894646;
    margin-right: 15px;
    width: auto;
}

ul.socials li a {
    display: block;
    color: #fff;
    text-decoration: none;
    background: #bb5656;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 20px;
    padding: 9px 0;
    text-align: center;
    position: relative;
}

ul.socials li a:hover {
    background: #894646;
    color: #894646;
    text-decoration: none;
}

ul.socials.labels {
    margin-top: 0;
    text-align: right;
}

ul.socials.labels li {
    display: inline-block;
    color: #894646;
    margin-left: 5px;
    margin-right: 0px;
    width: auto;
}

ul.socials.labels li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    background: rgba(61, 0, 180, 0.03);
    height: 30px;
    width: auto;
    font-size: 14px;
    line-height: 14px;
    padding: 0px 15px;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

ul.socials.labels li a i {
    font-size: 16px;
    margin-right: 10px;
    float: left;
    margin-top: 7px;
    color: #ffffff;
}

ul.socials.labels li a span {
    float: left;
    display: block;
    margin-top: 7px;
    font-size: 12px;
    line-height: 18px;
}

ul.socials.labels li a:hover {
    background: #894646;
    color: #fff;
    text-decoration: none;
}

ul.socials.labels li a.facebook {
    background: #3B5998;
}

ul.socials.labels li a.google-plus {
    background: #d62d20;
}

ul.socials.labels li a.twitter {
    background: #1dcaff;
}

ul.socials.labels li a.pinterest {
    background: #cb2027;
}

ul.socials.labels li a.linkedin {
    background: #0077B5;
}

ul.socials.labels li:hover a {
    color: #fff;
    background: #894646;
}

/* *******************************************
 **************** Socials *************** *
 ******************************************* */
ul.socials-2.center {
    text-align: center;
}

ul.socials-2 li {
    display: inline-block;
    color: #000000;
    margin: 0 10px;
    width: auto;
}

ul.socials-2 li a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 26px;
    padding: 2px 0;
    text-align: center;
    position: relative;
}

ul.socials-2 li a:hover {
    color: #d89f9f;
}

/* *******************************************
 **************** Elements *************** *
 ******************************************* */
/* Google Maps */
#map {
    height: 400px;
    width: 100%;
}

#map img {
    width: inherit;
}

#map .gmnoprint {
    width: 200px;
}

/* To Top */
#to-top {
    width: 40px;
    height: 40px;
    background-color: #bb5656;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    opacity: 0.4;
    border: 0;
    color: #fff;
    padding: 0;
    z-index: 99;
}

#to-top:before {
    content: "";
    color: white;
    font-family: "FontAwesome";
    position: relative;
    top: -1px;
}

#to-top:hover {
    opacity: 1;
}

/* Tables holder */
.div-table {
    display: table;
    width: 100%;
    height: 100%;
}

.div-table-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

/* Buttons */
.btn {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
}

.btn-lg,
.btn-group-lg>.btn {
    padding: 0.75rem 2.1rem;
    font-size: 1.05rem;
    font-weight: 700;
    min-width: 250px;
}

[class*="btn-outline"] {
    background: #fff;
    border: 1px solid #fff;
}

.btn img {
    max-width: 100%;
    max-height: 30px;
}

.btn-default {
    color: #ffffff;
    background: #894646;
    border: 1px solid #894646;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn-default:hover,
.btn-default.focus,
.btn-default:focus {
    color: #ffffff;
    background-color: #bb7a7a;
    border: 1px solid #bb7a7a;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn-outline-default {
    color: #894646;
    border-color: #894646;
}

.btn-outline-default:hover {
    background-color: #894646;
    border-color: #894646;
    color: #ffffff;
}

.btn-primary {
    color: #ffffff;
    background-color: #bb5656;
    border: 1px solid #bb5656;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
    color: #ffffff;
    background-color: #d89f9f;
    border: 1px solid #d89f9f;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

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

.btn-outline-primary:hover {
    background-color: #bb5656;
    border-color: #bb5656;
}

.btn-outline-primary.active:hover,
.btn-outline-primary.active.focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.active {
    color: #ffffff;
    background-color: #bb5656;
    border: 1px solid #bb5656;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn-link {
    color: #bb5656;
    text-decoration: none;
    font-size: 18px;
}

.btn-link:hover {
    color: rgba(187, 86, 86, 0.7);
    text-decoration: none;
}

.btn i {
    margin-right: 10px;
}

.btn-play {
    width: 85px;
    height: 85px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-play i {
    margin: 0;
}

.button-1 {
    height: 50px;
    background: #bb5656;
    border: 1px solid #bb5656;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    user-select: none;
    display: inline-block;
}

.button-1 .mask {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100px;
    position: absolute;
    transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
    transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 200px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.button-1:hover {
    background: #bb5656;
    border: 1px solid #bb5656;
    transition: background 0s;
}

.button-1:hover .mask {
    background-color: #fff;
    transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.button-1 a,
.button-1 button {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px 40px 0 40px;
    transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}


.button-1 a:hover,
.button-1 button:hover {
    text-indent: -20px;
    padding: 0px 45px 0 35px;
}

.button-1 a:hover:before,
.button-1 button:hover:before {
    opacity: 1;
    text-indent: 0px;
}

.button-1.button-md {
    height: 40px;
}

.button-1 button:hover {
    text-indent: 0px;
}

.button-2 {
    height: 50px;
    background: #bb5656;
    border: 1px solid #bb5656;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    user-select: none;
    display: inline-block;
}

.button-2 .mask {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100px;
    position: absolute;
    transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
    transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 200px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.button-2:hover {
    background: #bb5656;
    border: 1px solid #bb5656;
    transition: background 0s;
}

.button-2:hover .mask {
    background-color: #fff;
    transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.button-2 a,
.button-2 button {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px 70px 0 30px;
    transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}


.button-2 a:hover,
.button-2 button:hover {
    text-indent: -20px;
}

.button-2 a:hover:before,
.button-2 button:hover:before {
    text-indent: 0px;
    width: 50px;
}

.button-2.button-md {
    height: 40px;
}

.button-2 button:hover {
    text-indent: 0px;
}

.button-3 {
    height: 50px;
    background: #fff;
    border: 1px solid #bb5656;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    user-select: none;
    display: inline-block;
}

.button-3:hover {
    background: #fff;
    border: 1px solid #bb5656;
    transition: background 0s;
}

.button-3 a,
.button-3 button {
    font-size: 14px;
    color: #000000;
    text-align: center;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px 40px 0 40px;
    transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}

.button-3 a:before,
.button-3 button:before {
    left: 130%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 90%;
    color: #bb5656;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    font-family: "Font Awesome 5 Free";
    content: "";
    font-weight: 900;
}

.button-3 a:hover,
.button-3 button:hover {
    padding: 0px 45px 0 35px;
}

.button-3 a:hover:before,
.button-3 button:hover:before {
    left: calc(100% - 30px);
}

.button-3.button-md {
    height: 40px;
}

.button-4 {
    color: #ffffff;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 50px;
    border: 1px solid #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}

.button-4 span {
    color: #ffffff;
    z-index: 20;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.button-4:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: auto;
}

.button-4:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.button-4.button-md {
    height: 40px;
}

.button-5 {
    padding: 0px 60px 0 20px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 50px;
    border: 1px solid #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}

.button-5 span {
    color: #ffffff;
    z-index: 20;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.button-5:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: auto;
}

.button-5:hover:before {
    width: 50px;
}

.button-5:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.button-5.button-md {
    height: 40px;
}

.button-6 {
    height: 50px;
    background: #ffffff;
    border: 1px solid #ffffff;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    user-select: none;
    display: inline-block;
}

.button-6:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
    transition: background 0s;
    opacity: 0.9;
}

.button-6 a,
.button-6 button {
    font-size: 14px;
    color: #894646;
    text-align: center;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px 40px 0 40px;
    transition: padding-right 0.2s linear 0s, padding-left 0.2s linear 0s;
}

.button-6 a:before,
.button-6 button:before {
    left: 130%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 90%;
    color: #894646;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    font-family: "Font Awesome 5 Free";
    content: "";
    font-weight: 900;
}

.button-6 a:hover,
.button-6 button:hover {
    padding: 0px 45px 0 35px;
}

.button-6 a:hover:before,
.button-6 button:hover:before {
    left: calc(100% - 30px);
}

.button-6.button-md {
    height: 40px;
}

.button-7 {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.button-7 span {
    display: block;
    z-index: 2;
    padding-bottom: 2px;
    padding-right: 30px;
    transition: all 0.2s linear 0s;
}

.button-7 span:after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    height: 100%;
    margin-right: 5px;
    z-index: 2;
    background: 0 0;
    color: #fff;
}

.button-7:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background: #bb5656;
    height: 7px;
    bottom: 0;
    z-index: -1;
}

.button-7:hover span {
    padding-right: 40px;
}

.button-8 {
    color: #bb5656;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 2;
}

.button-8 span {
    font-size: 18px;
    display: block;
    z-index: 2;
    padding-right: 20px;
    transition: all 0.2s linear 0s;
    color: #bb5656;
}

.button-8 span:after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    background: 0 0;
    color: #bb5656;
    margin-top: 2px;
}

.button-8:hover span {
    padding-right: 25px;
}

.button-8.button-red {
    color: #bb5656;
}

.button-8.button-red span:after {
    color: #bb5656;
}

.button-1 button,
.button-2 button,
.button-3 button,
.button-4 button,
.button-5 button,
.button-6 button,
.button-7 button,
.button-8 button {
    line-height: 1;
    background: transparent;
    border: 0;
}

/* Newsletter form */
.newsletter-form input {
    width: calc(100% - 40px);
}

.newsletter-form button {
    width: 40px;
    padding: 6px 0 7px 0;
}

.newsletter-form button i {
    float: none;
    margin: 0 auto;
}

/* Tables */
.table {
    width: auto;
    margin: 0 auto;
}

.table th {
    background: #894646;
    color: #fff;
}

.table th,
.table td {
    font-size: 16px;
}

.table td {
    color: #894646;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border: 0;
    padding: 10px 30px;
}

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

/* Tabs */
.tabs {
    margin-bottom: 10px;
}

.tabs .tab-pane {
    min-height: 200px;
    padding: 80px 0;
}

.tabs .nav-tabs {
    border-bottom: 0;
}

@media screen and (max-width: 991px) {
    .tabs .tab-pane {
        padding: 80px 0 20px 0;
    }
}

.tabs .nav-tabs>li .icon::before {
    display: block;
    margin: 0 0 0.35em;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
    pointer-events: none;
    font-size: 36px;
}

.tabs .nav-tabs>li.active .icon::before {
    color: #894646;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabs .nav-tabs>li>a {
    color: #894646;
    font-size: 18px;
    line-height: 1.3333333;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 3px solid transparent;
    margin: 0;
    padding: 10px 10px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    text-align: center;
}

.tabs .nav-tabs>li>a span {
    font-weight: 700;
    color: #894646;
}

.tabs .nav-tabs>li.active>a span {
    font-weight: 700;
    color: #894646;
}

.tabs .nav-tabs>li.active>a,
.tabs .nav-tabs>li.active>a:focus,
.tabs .nav-tabs>li.active>a:hover {
    color: #894646;
    border: 0;
    border-bottom: 3px solid #894646;
}

.tabs .nav-tabs>li>a:focus,
.tabs .nav-tabs>li>a:hover {
    background: transparent;
    color: #894646;
    border-bottom: 3px solid #894646;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .tabs .nav-tabs>li>a span {
        display: none;
    }

    .tabs .nav-tabs>li .icon::before {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width: 480px) {
    .tabs .nav-tabs>li .icon::before {
        font-size: 30px;
    }
}

@media screen and (max-width: 400px) {
    .tabs .nav-tabs>li .icon::before {
        font-size: 28px;
    }
}

.tabs .nav-tabs>li {
    text-align: center;
}

/* Tabs 2 */
.tabs-2 {
    margin-bottom: 10px;
}

.tabs-2 .tab-pane {
    min-height: 200px;
    padding: 80px 0;
}

.tabs-2 .nav-tabs {
    text-align: center;
    border-bottom: 0;
}

@media screen and (min-width: 992px) {
    .tabs-2 .nav-tabs {
        border-bottom: 3px solid #894646;
        height: 45px;
    }
}

.tabs-2 .nav-tabs>li {
    margin: 0 2px;
    display: inline-block;
    float: none;
}

.tabs-2 .nav-tabs>li>a {
    color: #894646;
    font-size: 16px;
    font-weight: bold;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 10px 30px;
    text-align: center;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabs-2 .nav-tabs>li.active>a,
.tabs-2 .nav-tabs>li.active>a:focus,
.tabs-2 .nav-tabs>li.active>a:hover {
    color: #fff;
    border: 0;
    background: #894646;
}

.tabs-2 .nav>li>a:focus,
.tabs-2 .nav>li>a:hover {
    background: #fff;
    color: #894646;
}

.tabs-2 .nav-tabs>li>a i {
    margin-right: 10px;
    line-height: 18px;
    float: left;
}

.tabs-2 .nav-tabs>li>a i.material-icons {
    font-size: 22px;
    margin-top: 3px;
    line-height: 10px;
}

@media screen and (max-width: 991px) {
    .tabs-2 .nav-tabs>li {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .tabs-2 .nav-tabs>li {
        width: 100%;
    }
}

.tabs-2 .as-buttons.nav-tabs {
    border: 0;
    text-align: center;
}

.tabs-2 .as-buttons.nav-tabs>li {
    margin: 0 10px;
    display: inline-block;
    float: none;
}

.tabs-2 .as-buttons.nav-tabs>li a i {
    float: left;
    margin-top: 10px;
}

.tabs-2 .as-buttons.nav-tabs>li>a {
    border: 1px solid #894646;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    color: #894646;
}

.tabs-2 .as-buttons.nav-tabs>li.active>a,
.tabs-2 .as-buttons.nav-tabs>li.active>a:focus,
.tabs-2 .as-buttons.nav-tabs>li.active>a:hover {
    border: 1px solid #894646;
    background-color: #894646;
    color: #fff;
}

/* Select holder */
.field-holder {
    margin-bottom: 20px;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 19px;
}

.field-holder label {
    color: #894646;
    padding: 13px 15px 13px 0;
    font-weight: bold;
    font-size: 16px;
}

.field-holder .bootstrap-select,
.field-holder label,
.field-holder input,
.field-holder select:not(.selectpicker) {
    float: left;
    display: block;
    width: auto;
}

.field-holder .btn,
.field-holder select:not(.selectpicker),
.field-holder input {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #d1d1d1;
    font-size: 18px;
    font-weight: bold;
    color: #894646;
    height: 46px;
    padding: 12px 12px;
    background: #fff;
}

/* Accordions */
.accordions .panel {
    border: 0;
    margin-bottom: 25px;
}

.accordions .panel-heading {
    background: rgba(61, 0, 180, 0.03);
    padding: 0;
    border-color: #f9f9f9;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.accordions .panel-collapse,
.accordions .collapse {
    width: 100%;
}

.accordions .panel-title {
    margin-bottom: 0;
    font-size: 20px;
    text-align: left;
}

.accordions .panel-title>.small,
.accordions .panel-title>.small>a,
.panel-title>a,
.accordions .panel-title>small,
.accordions .panel-title>small>a {
    font-size: 20px;
    color: #894646;
    display: block;
    padding: 14px 12px;
}

.accordions .panel-title>a {
    font-size: 20px;
    color: #894646;
    display: block;
    padding: 14px 12px;
    text-decoration: none;
    position: relative;
}

.accordions .panel-title>a:before {
    padding: 25px;
    background: #894646;
    display: block;
    float: right;
    margin-top: -14px;
    margin-right: -12px;
    content: "";
}

.accordions .panel-title>a:after {
    font-family: FontAwesome;
    font-size: 24px;
    color: #fff;
    display: block;
    content: "";
    right: 19px;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    top: 24px;
    line-height: 0;
    transition: all 0.2s ease;
}

.accordions .panel-title>a.collapsed:after {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Safari 3-8 */
    transform: rotate(0deg);
}

.accordions .panel-body {
    padding: 15px;
    border: 1px solid #f9f9f9;
    border-top: 0;
}

.accordions .panel-body,
.accordions .panel-body p {
    text-align: left;
    font-size: 16px;
    color: #894646;
    line-height: 1.5;
}

/* Slick slider - Testimonials */
.slick-testimonials.slick-slider {
    padding-bottom: 30px;
}

.slick-testimonials.slick-slider .slick-prev:before,
.slick-testimonials.slick-slider .slick-next:before {
    color: #894646;
    font-size: 30px;
    padding: 5px;
    opacity: 1;
}

.slick-testimonials.slick-slider .slick-prev:hover:before,
.slick-testimonials.slick-slider .slick-next:hover:before {
    color: #894646;
}

.slick-testimonials.slick-slider.inverse .slick-prev:before,
.slick-testimonials.slick-slider.inverse .slick-next:before {
    color: #ffffff;
}

.slick-testimonials.slick-slider.inverse .slick-prev:hover:before,
.slick-testimonials.slick-slider.inverse .slick-next:hover:before {
    color: #ffffff;
}

.slick-testimonials .slide-holder {
    width: auto;
    padding-top: 45px;
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
}

.slick-testimonials .slide .img-holder {
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 30px;
    border: 0;
    background-color: #fff;
}

.slick-testimonials .slide .info-holder {
    text-align: center;
}

.slick-testimonials .slide .info-holder h3,
.slick-testimonials .slide .info-holder .h3,
.slick-testimonials .slide .info-holder h5,
.slick-testimonials .slide .info-holder .h5 {
    color: #000000;
}

.slick-testimonials.inverse .slide .info-holder h3,
.slick-testimonials.inverse .slide .info-holder .h3,
.slick-testimonials.inverse .slide .info-holder h5,
.slick-testimonials.inverse .slide .info-holder .h5 {
    color: #ffffff;
}

.slick-testimonials .slide .info-holder h4,
.slick-testimonials .slide .info-holder .h4 {
    color: #894646;
    margin-bottom: 18px;
}

.slick-testimonials .slide .info-holder p {
    color: #894646;
    font-weight: 500;
}

.slick-testimonials.inverse .slide .info-holder h4,
.slick-testimonials.inverse .slide .info-holder .h4,
.slick-testimonials.inverse .slide .info-holder p {
    color: #fff;
}

.slick-testimonials .slide {
    transition: all 0.4s ease;
}

.slick-testimonials .slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-testimonials .slick-dots li {
    display: inline-block;
    font-size: 0px;
    margin: 0 10px;
}

.slick-testimonials .slick-dots li button {
    border: 0;
    height: 16px;
    width: 16px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #fff;
}

.slick-testimonials.inverse .slick-dots li button {
    border: 0;
}

.slick-testimonials .slick-dots li.slick-active button {
    background: #bb5656;
}

.slick-testimonials .slick-dots li button:before {
    display: none;
}

@media screen and (max-width: 1199px) {
    .slick-testimonials .slide.slick-center {
        margin-top: 0px;
    }

    .slick-testimonials .slick-dots {
        margin-top: 30px;
    }
}

.slick-testimonials .slick-arrow {
    position: absolute;
    top: 45%;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: none;
}

.slick-testimonials .slick-arrow:before {
    font-family: FontAwesome;
    color: #ffffff;
    display: block;
    font-size: 20px;
}

.slick-testimonials .slick-next {
    right: 5%;
}

.slick-testimonials .slick-prev {
    left: 5%;
}

.slick-testimonials .slick-prev:before {
    content: "";
}

/* Slick slider - Testimonials 2 */
.slick-testimonials-2.slick-slider {
    padding-bottom: 30px;
}

.slick-testimonials-2 .slide-holder {
    width: 100%;
    margin: 0 auto;
}

.slick-testimonials-2 .slide .img-holder {
    width: 105px;
    height: 105px;
    background-size: cover;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0 auto;
}

.slick-testimonials-2 .slide .info-holder {
    width: 100%;
    padding: 30px 0px 30px 0px;
    text-align: center;
}

.slick-testimonials-2 .slide .info-holder h3,
.slick-testimonials-2 .slide .info-holder .h3 {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}

.slick-testimonials-2 .slide .info-holder h4,
.slick-testimonials-2 .slide .info-holder .h4 {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 38px;
}

.slick-testimonials-2 .slide .info-holder p {
    font-size: 16px;
    color: #fff;
}

.slick-testimonials-2 .slide {
    transition: all 0.4s ease;
}

.slick-testimonials-2 .slick-dots {
    text-align: center;
}

.slick-testimonials-2 .slick-dots li button:before {
    display: none;
}

.slick-testimonials-2 .slick-dots li {
    display: inline;
    font-size: 0px;
    margin: 0 5px;
}

.slick-testimonials-2 .slick-dots li button {
    border: 0;
    height: 14px;
    width: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: transparent;
    border: 1px solid #fff;
}

.slick-testimonials-2 .slick-dots li.slick-active button {
    background: #fff;
    border: 1px solid #fff;
}

@media screen and (max-width: 1199px) {
    .slick-testimonials-2 .slide.slick-center {
        margin-top: 0px;
    }

    .slick-testimonials-2 .slick-dots {
        margin-top: 30px;
    }
}

.slick-testimonials-2 .slick-arrow {
    position: absolute;
    top: 45%;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: none;
    display: none;
}

.slick-testimonials-2:hover .slick-arrow {
    display: block;
}

.slick-testimonials-2 .slick-arrow:before {
    font-family: FontAwesome;
    color: #fff;
    display: block;
    font-size: 20px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}

.slick-testimonials-2 .slick-next {
    right: 5%;
}


.slick-testimonials-2 .slick-prev {
    left: 5%;
}

.slick-testimonials-2 .slick-prev:before {
    content: "";
}

/* Slick slider 3 - Testimonials */
.slick-testimonials-3 .slick-track {
    display: flex;
}

.slick-testimonials-3 .slick-track .slick-slide {
    display: flex;
    height: auto;
}

.slick-testimonials-3 .slick-list {
    max-width: calc(100% - 100px);
    margin: 0 auto;
}

.slick-testimonials-3 .slick-prev:before,
.slick-testimonials-3 .slick-next:before {
    color: #212121;
    font-size: 30px;
    padding: 5px;
    opacity: 1;
}

.slick-testimonials-3 .slick-prev:hover:before,
.slick-testimonials-3 .slick-next:hover:before {
    color: #212121;
}

.slick-testimonials-3 .slide-holder {
    width: auto;
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
    padding: 25px;
}

.slick-testimonials-3 .img-holder {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0;
    border: 0;
    background-color: #fff;
}

.slick-testimonials-3 .slide .info-holder {
    text-align: left;
}

.slick-testimonials-3 .slide .info-holder p {
    color: #212121;
    font-size: 16px;
}

.slick-testimonials-3 .slide {
    transition: all 0.4s ease;
}

.slick-testimonials-3 .slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-testimonials-3 .slick-dots li {
    display: inline-block;
    font-size: 0px;
    margin: 0 10px;
}

.slick-testimonials-3 .slick-dots li button {
    border: 0;
    height: 16px;
    width: 16px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #fff;
}

.slick-testimonials-3 .inverse .slick-dots li button {
    border: 0;
}

.slick-testimonials-3 .slick-dots li.slick-active button {
    background: #bb5656;
}

.slick-testimonials-3 .slick-dots li button:before {
    display: none;
}

@media screen and (max-width: 1199px) {
    .slick-testimonials-3 .slide.slick-center {
        margin-top: 0px;
    }

    .slick-testimonials-3 .slick-dots {
        margin-top: 30px;
    }
}

.slick-testimonials-3 .slick-arrow {
    position: absolute;
    top: 45%;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 100%;
}

.slick-testimonials-3 .slick-arrow:before {
    font-family: FontAwesome;
    color: #212121;
    display: block;
    font-size: 20px;
}

.slick-testimonials-3 .slick-next {
    right: 0%;
}

.slick-testimonials-3 .slick-prev {
    left: 0%;
}

.slick-testimonials-3 .slick-prev:before {
    content: "";
}

/* Slick brands */
.slick-brands .slide {
    text-align: center;
}

.slick-brands .slide img {
    max-width: 80%;
    margin: 0 auto;
}

/* Paging */
.pagination>li {
    margin: 5px 3px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    font-weight: bold;
    color: #ffffff;
    background-color: #bb5656;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pagination>li>a,
.pagination>li>span {
    color: #894646;
    background-color: #fff;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #894646;
    background-color: #f3f3f3;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #ffffff;
    background-color: #bb5656;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* lists */
.styled-lists li {
    color: #894646;
    padding: 0 30px;
    margin-bottom: 55px;
}

@media screen and (max-width: 1199px) {
    .styled-lists li {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 991px) {
    .styled-lists li {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .styled-lists li {
        margin-bottom: 25px;
    }
}

.styled-lists li:before {
    content: "";
    display: block;
    font-family: "FontAwesome";
    position: absolute;
    margin: 3px 0 0 -22px;
    color: #894646;
}

.styled-lists li strong {
    font-size: 20px;
    font-weight: bold;
}

.styled-lists li p {
    font-size: 16px;
}

/* Blog posts */
.blog-posts .slick-arrow {
    display: none !important;
}

.blog-posts .post {
    margin-bottom: 30px;
}

.blog-posts .post .description {
    min-height: 260px;
    text-align: left;
}

.blog-posts .post .description h3,
.blog-posts .post .description .h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-posts .post .date {
    font-size: 16px;
}

.blog-posts .post .description p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-posts .post .description .cats {
    color: #bfbfbf;
    font-size: 14px;
    margin: 5px 0 5px 0;
    text-decoration: none;
    text-align: center;
}

.blog-posts .slick-dots {
    text-align: left;
    padding: 0 10px;
}

/* Blog posts 2 */
.blog-posts-2 .post {
    display: block;
    text-decoration: none;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.blog-posts-2 .description h5,
.blog-posts-2 .description .h5 {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 10px 0;
    text-decoration: none;
    text-align: left;
}

.blog-posts-2 a,
.blog-posts-2 a:hover {
    text-decoration: none;
}

.blog-posts-2 .description {
    padding: 15px 0;
}

.blog-posts-2 .description,
.blog-posts-2 .description p {
    color: #bfbfbf;
    font-size: 12px;
    line-height: 1.7;
}

.blog-posts-2 .post .image {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background-position: center center;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    float: left;
    margin-right: 20px;
}

/* Teamcard */
.teamcard .member {
    margin-bottom: 25px;
}

.teamcard .description h3,
.teamcard .description .h3 {
    color: #894646;
    font-size: 24px;
    margin: 10px 0 5px 0;
    text-align: center;
    font-weight: bold;
}

.teamcard .description {
    padding: 15px;
    text-align: center;
}

.teamcard .description,
.teamcard .description p {
    color: #894646;
    font-size: 18px;
    line-height: 1.5;
}

.teamcard .member .image {
    height: 240px;
    width: 240px;
    margin: 0 auto;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/* Teamcard 2 */
.teamcard-2 .member {
    max-width: 240px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.teamcard-2 .description h3,
.teamcard-2 .description .h3 {
    color: #894646;
    font-size: 18px;
    line-height: 1.4;
    margin: 10px 0 5px 0;
    text-align: left;
    font-weight: bold;
}

.teamcard-2 .description {
    text-align: left;
}

.teamcard-2 .description span {
    font-size: 12px;
    display: block;
    color: #bfbfbf;
}

.teamcard-2 .description,
.teamcard-2 .description p {
    color: #894646;
    font-size: 16px;
    line-height: 1.4;
}

.teamcard-2 .member .image {
    height: 290px;
    margin: 0 auto;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.teamcard-2 .member .image .hover {
    visibility: hidden;
    display: inline-block;
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -webkit-transition: opacity 0.25s ease-in-out;
}

.teamcard-2 .member:hover .image .hover {
    visibility: visible;
    background-color: fade(#894646, 80%);
    color: #fff;
    opacity: 1;
}

.teamcard-2 .member .image .hover .socials {
    padding-top: 110px;
    text-align: center;
}

.teamcard-2 .member .image .hover ul.socials li {
    display: inline-block;
    color: #894646;
    margin: 0 5px;
    width: auto;
}

.teamcard-2 .member .image .hover ul.socials li a {
    display: block;
    color: #894646;
    text-decoration: none;
    background: rgba(61, 0, 180, 0.03);
    height: 40px;
    width: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 26px;
    padding: 2px 0;
    text-align: center;
    position: relative;
}

.teamcard-2 .member .image .hover ul.socials li a:hover {
    background: #894646;
    color: #894646;
    text-decoration: none;
}

/* Teamcard */
.masonry-team .teamcard .member {
    min-height: 250px;
    padding: 25px 10px 15px 10px;
    height: 100%;
    display: flex;
    flex-flow: column;
    margin: 0;
}

.masonry-team .teamcard .member .description h3,
.masonry-team .teamcard .member .description .h3 {
    color: #894646;
    font-size: 24px;
    margin: 10px 0 5px 0;
    text-align: center;
    font-weight: bold;
}

.masonry-team .teamcard .member .description {
    padding: 15px;
    text-align: center;
}

.masonry-team .teamcard .member .description,
.masonry-team .teamcard .member .description p {
    color: #894646;
    font-size: 16px;
    line-height: 1.5;
}

.masonry-team .teamcard .member .image {
    height: 85px;
    width: 85px;
    margin: 0 auto;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.masonry-team .teamcard .member .socials-holder {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.masonry-team .teamcard .member ul.socials {
    text-align: center;
    margin: 0;
}

.masonry-team .teamcard .member ul.socials li {
    margin: 0;
}

.masonry-team .teamcard .member ul.socials li a {
    background: transparent;
    color: #000000;
    font-size: 22px;
}

.masonry-team .teamcard .member ul.socials li a:hover {
    background: transparent;
    color: #bb5656;
}

.masonry-team .masonry-grid-works {
    margin: 0 -10px;
}

.masonry-team .masonry-grid-works_fullwidth {
    margin: 0;
}

.masonry-team .masonry-grid-works__sizer_w-50 {
    width: 50%;
}

.masonry-team .masonry-grid-works__sizer_w-33 {
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
}

.masonry-team .masonry-grid-works__sizer_w-25 {
    width: -webkit-calc(100% / 4);
    width: calc(100% / 4);
}

.masonry-team .masonry-grid-works__item {
    padding: 15px;
}

.masonry-team .masonry-grid-works__item_w-50 {
    width: 50%;
}

.masonry-team .masonry-grid-works__item_w-33 {
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
}

.masonry-team .masonry-grid-works__item_w-25 {
    width: -webkit-calc(100% / 4);
    width: calc(100% / 4);
}

.masonry-team .list-masonry-grid-works-filter {
    display: block;
    text-align: center;
}

.masonry-team .list-masonry-grid-works-filter__item {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.masonry-team .list-masonry-grid-works-filter__link_active .list-masonry-grid-works-filter__link-lines {
    opacity: 1;
    visibility: visible;
}

.masonry-team .list-masonry-grid-works-filter__link-lines {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.masonry-team .list-masonry-grid-works-filter__link-lines:before,
.masonry-team .list-masonry-grid-works-filter__link-lines:after {
    content: "";
    display: block;
    background-color: #894646;
    position: absolute;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_top:before {
    width: 1px;
    height: 38px;
    bottom: -9px;
    left: 2px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_top:after {
    width: 1px;
    height: 30px;
    bottom: -9px;
    left: 0px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_bottom:before {
    width: 1px;
    height: 38px;
    top: -9px;
    right: 2px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_bottom:after {
    width: 1px;
    height: 30px;
    top: -9px;
    right: 0px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_left:before {
    width: 60px;
    height: 1px;
    bottom: 2px;
    left: -9px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_left:after {
    width: 50px;
    height: 1px;
    bottom: 0px;
    left: -9px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_right:before {
    width: 60px;
    height: 1px;
    top: 2px;
    right: -9px;
}

.masonry-team .list-masonry-grid-works-filter__link-lines_right:after {
    width: 50px;
    height: 1px;
    top: 0px;
    right: -9px;
}

@media only screen and (max-width: 991px) {

    .masonry-team .masonry-grid-works__sizer_w-33,
    .masonry-team .masonry-grid-works__item_w-33 {
        width: 50%;
    }

    .masonry-team .masonry-grid-works__sizer_w-25,
    .masonry-team .masonry-grid-works__item_w-25 {
        width: 33.3%;
    }
}

@media only screen and (max-width: 767px) {

    .masonry-team .masonry-grid-works__sizer_w-50,
    .masonry-team .masonry-grid-works__item_w-50 {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {

    .masonry-team .masonry-grid-works__sizer_w-33,
    .masonry-team .masonry-grid-works__item_w-33 {
        width: 100%;
    }

    .masonry-team .masonry-grid-works__sizer_w-25,
    .masonry-team .masonry-grid-works__item_w-25 {
        width: 100%;
    }
}

/* Shop products */
.shop-products .product {
    margin-bottom: 40px;
    /*
  .image:hover .hover {
      visibility: visible;
      opacity: 1;
    }
    */
}

.shop-products .product h3,
.shop-products .product .h3 {
    text-decoration: none;
    text-align: left;
    min-height: 45px;
}

.shop-products .product .price-holder {
    display: flex;
    justify-content: left;
    align-items: center;
}

.shop-products .product a,
.shop-products .product a:hover {
    text-decoration: none;
}

.shop-products .product .image {
    padding: 15px;
    position: relative;
    background-origin: content-box;
    height: 360px;
    width: 100%;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid #f3f3f3;
}

.shop-products .product:hover .image {
    border: 1px solid #bb5656;
    -webkit-box-shadow: 0 0 10px rgba(187, 86, 86, 0.4);
    box-shadow: 0 0 10px rgba(187, 86, 86, 0.4);
}

.shop-products .product:hover .image .hover {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: fade(#894646, 15%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.shop-products .product .hover .btn {
    padding: 10px;
    text-align: center;
    margin: 0 5px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.shop-products .product .hover .btn+.btn {
    transform: translateY(20px);
}

.shop-products .product .btn.btn-primary {
    background: transparent;
    border-color: transparent;
    color: #000000;
    font-weight: bold;
}

.shop-products .product:hover .btn.btn-primary {
    background: #bb5656;
    border-color: #bb5656;
    color: #ffffff;
}

.shop-products .product .image:hover .hover .btn {
    transform: translateY(0);
}

.shop-products .product .hover .btn i {
    margin: 0;
}

.shop-products .product .hover>* {
    top: 45%;
    position: relative;
}

.shop-products .product .heading-holder {
    min-height: 50px;
}

.shop-products .product .heading-holder h5,
.shop-products .product .heading-holder .h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-products .product .btn {
    padding: 5px 10px;
}

.shop-products .product .btn i {
    float: left;
    margin-right: 5px;
    font-size: 18px;
    margin-top: 2px;
}

.shop-products .product .price,
.shop-products .product .price-old {
    font-size: 16px;
    font-weight: bold;
}

.shop-products .product .price {
    color: #bb5656;
}

.shop-products .product .price-old {
    text-decoration: line-through;
    color: #b9b9b9;
    margin-right: 10px;
}

.shop-products .product .product-label {
    min-width: 60px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #bb5656;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    right: 35px;
    top: 20px;
    font-weight: bold;
    z-index: 1;
    padding: 6px 10px;
}

.related-products .product .image {
    height: 250px;
}

/* Pricing list */
.pricing-list>div {
    max-width: 290px;
    margin-bottom: 30px;
}

.pricing-list .btn {
    min-width: unset;
}

.pricing-list .plan {
    max-width: 290px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.28);
    height: 100%;
    margin: 0 auto 0px auto;
}

.pricing-list .plan .label {
    font-size: 12px;
    text-align: center;
    min-height: 26px;
    width: 100%;
    display: block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 7px;
}

.pricing-list .plan .label.bestseller {
    background: #bb5656;
    color: #ffffff;
}

.pricing-list .plan .heading {
    font-size: 16px;
    text-align: center;
    padding: 20px 10px 20px 10px;
}

.pricing-list .plan .heading .price {
    position: relative;
    margin-top: 10px;
}

.pricing-list .plan .heading .price .sum {
    font-size: 75px;
    font-weight: bold;
    margin: 0 0px;
    color: #000000;
}

.pricing-list .plan .heading .price small,
.pricing-list .plan .heading .price .small {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}

.pricing-list .plan .heading .price .period {
    font-size: 14px;
    line-height: 14px;
    font-weight: normal;
    position: relative;
    display: block;
    margin-top: 20px;
    color: #000000;
}

.pricing-list .plan .heading .price .period:after {
    margin: 10px auto 0 auto;
    display: block;
    content: "";
    width: 100%;
    max-width: 75px;
    height: 4px;
    background-color: #bb5656;
    -webkit-mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr.svg");
    mask-image: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/hr.svg");
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.pricing-list .plan .heading p {
    font-size: 16px;
    color: #bb5656;
    font-weight: 600;
}

.pricing-list .plan .description {
    text-align: center;
    padding: 0 15px 45px 15px;
}

.pricing-list .plan .description p {
    font-size: 16px;
    text-align: center;
}

.pricing-list .plan .description p.strikethrough {
    text-decoration: line-through;
    color: #868686;
}

.pricing-list .plan:hover {
    background: #bb5656;
    cursor: pointer;
}

.pricing-list .plan:hover .price .sum,
.pricing-list .plan:hover .price small,
.pricing-list .plan:hover .price .small,
.pricing-list .plan:hover .price .period,
.pricing-list .plan:hover p,
.pricing-list .plan:hover span {
    color: #ffffff;
}

.pricing-list .plan:hover .price .period:after {
    background-color: #fff;
}

/* *******************************************
 ************** Footer ********************* *
 ******************************************* */
footer {
    background: #894646;
}

footer .logo {
    margin-bottom: 30px;
}

footer .logo img {
    max-width: 100px;
}

footer ul li {
    color: #f3f3f3;
    display: inline-block;
    width: auto;
    margin: 0 10px 0 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

footer ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0px 0;
}

footer ul li a:hover {
    color: #fff;
    text-decoration: none;
}

footer,
footer p {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
}

footer a,
footer p a {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    color: #ffffff;
}

footer a.underlined,
footer p a.underlined {
    display: inline-block;
}

footer a.underlined:after,
footer p a.underlined:after {
    content: "";
    display: block;
    border-bottom: 2px solid #979aa6;
}

footer .copyright {
    margin-top: 30px;
}

footer .copyright ul {
    line-height: 1;
}

footer .copyright ul li {
    display: inline-block;
    width: auto;
}

footer .copyright ul li a:after {
    content: "|";
    margin: 0 2px 0 3px;
}

footer .copyright a {
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
    text-decoration: none;
}

footer .copyright li:last-of-type a:after {
    content: "";
    margin: 0 2px 0 3px;
}

footer .copyright p {
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
}

footer h4,
footer .h4 {
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    text-transform: none;
}

footer .newsletter-holder {
    font-size: 36px;
    font-weight: 600;
    color: #f3f3f3;
}

footer ul.socials {
    margin-top: 20px;
    display: block;
    width: 100%;
}

footer ul.socials li {
    margin: 0 10px;
    width: auto;
    display: inline-block;
    border: 0;
}

footer ul.socials li a {
    display: block;
    text-decoration: none;
    height: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    position: relative;
    padding: 0;
    font-size: 20px;
    background: transparent;
    width: auto;
    color: #ffffff;
}

footer ul.socials li a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 991px) {
    footer {
        text-align: left;
    }

    footer .container>.edit>.row>div {
        margin-bottom: 60px;
    }

    footer .logo-column,
    footer .logo-column p {
        text-align: center;
    }

    footer .newsletter-form {
        max-width: 250px;
        margin: 0 -15px 0 -15px;
    }
}

@media screen and (max-width: 575px) {
    footer {
        text-align: center;
    }

    footer .container>.edit>.row>div {
        margin-bottom: 60px;
    }

    footer ul li a {
        padding: 7px 0;
    }

    footer .newsletter-form {
        max-width: 250px;
        margin: 0 auto;
    }

    footer ul.socials li a {
        font-size: 46px;
    }
}

/* Newsletter */
.newsletter-holder {
    background: #292832;
    width: 420px;
    max-width: 100%;
    height: 55px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 5px;
}

.newsletter-holder input {
    border: 0;
    background: transparent;
    float: left;
    width: 65%;
    padding: 0 20px;
    height: 100%;
    font-size: 16px;
}

.newsletter-holder button {
    float: left;
    width: 35%;
    background: #894646;
    color: #fff;
    font-size: 16px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    border: 0;
    padding: 11px;
}

.newsletter-holder button:hover {
    background-color: #fff;
    color: #894646;
}

.section-silver {
    background: #f3f3f3;
}

.section-dark {
    background: #bb5656;
}

.member-nav.main-member-nav {
    margin-bottom: 0px;
}

.feature-grid .img-holder {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 991px) {
    .feature-grid .img-holder {
        position: static;
        left: 0;
        transform: translateX(0);
    }

    .project-info-content {
        position: static;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.feature-grid:after {
    display: block;
    content: " ";
    font-size: 0;
    clear: both;
}

.feature-grid {
    position: relative;
}

.feature-grid .left-side {
    float: left;
}

.feature-grid .right-side {
    float: right;
}

.bootstrap-select.btn-group .dropdown-menu li.selected a span.text {
    color: #fff;
    font-weight: bold;
}

/* Effects */
.particles {
    position: relative;
    display: inline-block;
}

.particles-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.particles-canvas {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

/*
.module-menu {
  .dropdown-menu {
    min-width: 200px;
    border-radius: 0;
    color: #000000;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    transform: scaleY(0) scaleX(.2);
    top: 100%;
    transform-origin: left top;

    box-shadow: 0 39px 97px 0 rgba(175, 175, 175, 0.25);
    border: solid 1px #f4f4f4;
  }

  .dropdown-menu li {
    position: relative;
  }
}

.navigation li li .caret {
  position: absolute;
  top: 19px;
  right: 10px;
}

.navigation li:hover > a .caret {
  transform: rotate(-90deg);
}

.module-menu {
  .dropdown-menu .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    transform: scaleY(0) scaleX(.2);
    transform-origin: left top;
    top: 0;
    left: 100%;
  }

  .show > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) scaleX(1);
  }

  .dropdown-menu > li > a:focus {
    background-color: transparent;
  }
}*/
.slider-wrapper .swiper-slide {
    border-radius: 7px;
    overflow: hidden;
}

.slider-wrapper .swiper-slide>img {
    width: 100%;
}

@media (min-width: 741px) {
    .swiper-slide {
        opacity: 0.2;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        opacity: 0.7;
    }
}

.swiper-slide-active {
    opacity: 1;
}

.material-icons,
.fa {
    position: relative;
    display: inline-block;
}

.info-block .particles {
    vertical-align: middle;
}

/* /Mobilemenu */
/**
 * Simple fade transition for Magnific Pop Up
 */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

footer a {
    transition: color 0.3s;
    text-decoration: none;
}

ul.socials li a {
    transition: all 0.3s;
}

/* *******************************************
 ************** Product Slider ************** *
 ******************************************* */
.product-slider-holder {
    min-height: 100px;
    padding: 0;
    padding-bottom: 30px;
}

.product-slider-holder .slick-dotted.slick-slider {
    margin-bottom: 0;
    padding-bottom: 30px;
}

.product-slider-holder .flexbox-container {
    align-items: center;
    justify-content: center;
}

.product-slider-holder .left-side {
    text-align: left;
}

.product-slider-holder .product-slider .slide {
    padding: 70px 100px 30px 100px;
}

.product-slider-holder h1,
.product-slider-holder .h1,
.product-slider-holder h2,
.product-slider-holder .h2,
.product-slider-holder h3,
.product-slider-holder .h3,
.product-slider-holder h4,
.product-slider-holder .h4,
.product-slider-holder h5,
.product-slider-holder .h5,
.product-slider-holder h6,
.product-slider-holder .h6 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #000000;
}

.product-slider-holder p,
.product-slider-holder span {
    font-size: 16px;
    line-height: 1.5;
    color: #894646;
    font-weight: 300;
}

.product-slider-holder p {
    margin-bottom: 10px;
}

.product-slider-holder .btn {
    min-width: 150px;
}

.product-slider-holder .img-holder img {
    margin: 0 auto;
    max-height: 400px;
    max-width: 100%;
}

.product-slider .slick-arrow {
    position: absolute;
    z-index: 4;
    font-size: 0;
    border: 0;
    background: none;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
}

.product-slider .slick-arrow:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #894646;
    display: block;
    font-size: 32px;
    line-height: 1;
    padding: 5px 20px;
}

.product-slider .slick-next {
    right: 0;
    width: auto;
    transition: all 0.5s ease;
    overflow: hidden;
}

.product-slider .slick-next:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #894646;
    transform: translateX(100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.product-slider .slick-next:hover:after,
.product-slider .slick-next:focus:after {
    right: auto;
    left: 0;
    transform: translateX(0%);
    transition: all 0.5s ease;
}

.product-slider .slick-prev {
    left: 0;
    width: auto;
    transition: all 0.5s ease;
    overflow: hidden;
}

.product-slider .slick-prev:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #894646;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.product-slider .slick-prev:hover:after,
.product-slider .slick-prev:focus:after {
    right: auto;
    left: 0;
    transform: translateX(0%);
    transition: all 0.5s ease;
}

.product-slider .slick-prev:before {
    content: "";
}

.product-slider .slick-dots {
    text-align: center;
    margin: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-slider .slick-dots li {
    display: inline-flex;
    font-size: 0px;
    margin: 0 5px;
    align-items: center;
    justify-content: center;
}

.product-slider .slick-dots li button {
    height: 15px;
    width: 15px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: transparent;
    padding: 3px;
    border: 2px solid #894646;
}

.product-slider .slick-dots li button:before {
    display: none;
}

.product-slider .slick-dots li.slick-active button {
    background: #894646;
}

@media screen and (max-width: 1366px) {
    .product-slider .slick-dots {
        margin: 30px 0;
    }
}

@media screen and (max-width: 1199px) {
    .product-slider-holder .img-holder {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {

    .product-slider-holder h1,
    .product-slider-holder .h1,
    .product-slider-holder h2,
    .product-slider-holder .h2,
    .product-slider-holder h3,
    .product-slider-holder .h3,
    .product-slider-holder h4,
    .product-slider-holder .h4,
    .product-slider-holder h5,
    .product-slider-holder .h5,
    .product-slider-holder h6,
    .product-slider-holder .h6 {
        text-align: center;
        font-size: 30px;
    }

    .product-slider-holder p {
        text-align: center;
    }

    .product-slider-holder .flexbox-container {
        flex-direction: column-reverse;
    }

    .product-slider .slide .img-holder {
        max-height: 500px;
    }
}

@media screen and (max-width: 767px) {

    .product-slider-holder h1,
    .product-slider-holder .h1,
    .product-slider-holder h2,
    .product-slider-holder .h2,
    .product-slider-holder h3,
    .product-slider-holder .h3,
    .product-slider-holder h4,
    .product-slider-holder .h4,
    .product-slider-holder h5,
    .product-slider-holder .h5,
    .product-slider-holder h6,
    .product-slider-holder .h6 {
        text-align: center;
        font-size: 26px;
    }

    .product-slider-holder .product-slider .slide {
        padding: 70px 10px 30px 10px;
    }

    .product-slider .slick-arrow {
        display: none;
    }
}

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

.js-red-text {
    color: #bb5656;
}

.module-categories-template-default .nav-list li {
    width: 100%;
    display: block;
    margin-top: 25px;
}

.module-categories-template-default .nav-list li span.dot {
    height: 16px;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    background: #bb5656;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    padding: 5px;
}

.module-categories-template-default .nav-list li span.dot:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #bb5656;
    position: absolute;
    right: -8px;
    top: 0;
}

.module-categories-template-default .nav-list li a {
    display: block;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.module-categories-template-default .nav-list li a span:not(.dot) {
    position: relative;
}

.module-categories-template-default .nav-list li a span:not(.dot):after {
    content: "";
    display: none;
    width: 100%;
    position: absolute;
    height: 2px;
    background: #bb5656;
    left: 0;
    bottom: -3px;
}

.module-categories-template-default .nav-list li a:hover span:not(.dot):after {
    display: block;
}

.sidebar__widget {
    margin-bottom: 30px;
}

.sidebar__widget h6,
.sidebar__widget .h6 {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.sidebar__widget hr {
    margin-top: 5px;
    margin-bottom: 1rem;
    border-top: 2px solid #dddddd;
}

.sidebar__widget .sidebar-search .mw-search-default-btn-holder {
    width: 40px;
}

.sidebar__widget .sidebar-search .search-field {
    background: #ebebeb;
    border-radius: 20px;
    overflow: hidden;
}

.sidebar__widget .sidebar-search .search-field input,
.sidebar__widget .sidebar-search .search-field button {
    background: transparent;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.sidebar__widget .sidebar-search .search-field input {
    padding: 0px 10px 2px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.sidebar__widget .sidebar-search .search-field button {
    padding: 0 5px;
}

.sidebar__widget .sidebar-search .search-field button:before {
    display: inline-block;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #000000;
}

.tags {
    margin-bottom: 20px;
}

.tags:after {
    clear: both;
    display: block;
    content: "";
}

.tags a {
    border: 2px solid #ddd;
    color: #000000;
    font-size: 0.857rem;
    padding: 8px 15px;
    text-decoration: none;
    float: left;
    display: block;
    margin-bottom: 10px;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.tags a:hover {
    border: 2px solid #bfbfbf;
    color: #000000;
}

/* Small Cart Modal */
.member-nav {
    /* Start of .checkout-modal */
    /* End of .checkout-modal */
    /*Small Checkout*/
}

.member-nav .checkout-modal .checkout-modal-header {
    padding: 0rem;
    padding-bottom: 0;
}

.member-nav .checkout-modal .step-button {
    text-align: center;
}

.member-nav .checkout-modal .js-red-text {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.member-nav .checkout-modal .js-green-text {
    color: #28a745;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.member-nav .checkout-modal .step-button.muted a {
    opacity: 0.4;
}

.member-nav .checkout-modal .step-button a {
    padding: 1.6rem 1rem;
}

.member-nav .checkout-modal .step-button .js-show-step i {
    color: #894646;
}

.member-nav .checkout-modal .step-button .js-show-step span {
    color: #894646;
    font-size: 0.9rem;
}

.member-nav .checkout-modal .step-button .js-show-step.active {
    background: #894646;
}

.member-nav .checkout-modal .step-button .js-show-step.active span,
.member-nav .checkout-modal .step-button .js-show-step.active i {
    color: #ffffff;
}

.member-nav .checkout-modal .js-step-content {
    display: none;
}

.member-nav .checkout-modal .checkout-modal-products-wrapper .checkout-modal-product-list-item {
    padding: 0.75rem 0;
    position: relative;
}

.member-nav .checkout-modal .checkout-modal-products-wrapper .checkout-modal-product-list-item:after {
    height: 1px;
    background-color: #fff;
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 16px);
}

.member-nav .checkout-modal .checkout-modal-products-wrapper .checkout-modal-product-list-item:hover {
    background: #ffffff;
}

.member-nav .checkout-modal .checkout-modal-product-list-item-action a {
    color: #894646;
    opacity: 1;
    display: inline-block;
    line-height: 1;
}

.member-nav .checkout-modal .checkout-modal-product-list-item-qty select {
    margin-top: 2rem;
}

.member-nav .checkout-modal .checkout-modal-product-list-item-action .tooltip {
    margin-top: 5px;
}

.member-nav .checkout-modal .checkout-modal-list-item-cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.9rem;
}

.member-nav .checkout-modal .checkout-modal-product-list-item-title,
.member-nav .checkout-modal .checkout-modal-product-list-item-title>* {
    /*    white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;*/
}

.member-nav .item-title a {
    color: #000000;
}

.member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-promocode-holder,
.member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-total-holder {
    padding-top: 2.5rem;
    align-items: flex-start;
    align-content: flex-start;
}

.member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-promocode-holder .form-control {
    font-style: italic;
}

.member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-promocode-holder p,
.member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-total-holder p {
    margin-bottom: 1rem;
}

.member-nav .checkout-modal .checkout-modal-total-price {
    font-weight: bold;
}

.member-nav .checkout-modal .js-step-content .row .field-holder,
.member-nav .checkout-modal .js-step-content .form-row .field-holder {
    margin-bottom: 1rem;
}

.member-nav .checkout-modal .js-step-content .row .field-holder .bootstrap-select,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .bootstrap-select,
.member-nav .checkout-modal .js-step-content .row .field-holder .form-control,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .form-control {
    width: 100%;
}

.member-nav .checkout-modal .js-step-content .row .field-holder .form-control.input-md,
.member-nav .checkout-modal .js-step-content .form-row .field-holder .form-control.input-md {
    padding-right: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-nav .checkout-modal .checkout-modal-list-item-cell .form-control {
    max-width: 90px;
}

.member-nav .checkout-modal .js-step-content .row:after,
.member-nav .checkout-modal .js-step-content .form-row:after {
    display: block;
    clear: both;
    content: "";
}

.member-nav .checkout-modal .mw-ui-check input[type=checkbox]+span:after {
    left: 0;
    width: 100%;
    height: 100%;
    top: 1px;
}

@media screen and (max-width: 991px) {
    .member-nav .checkout-modal .checkout-modal-header {
        padding: 0rem;
        padding-bottom: 0;
    }

    .member-nav .checkout-modal .modal-body {
        padding: 2.5rem 1.5rem;
        padding-top: 1rem;
    }

    .member-nav .checkout-modal .step-button .js-show-step span {
        font-size: 0.8rem;
    }

    .member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-promocode-holder,
    .member-nav .checkout-modal .checkout-modal-amount-holder .checkout-modal-total-holder {
        padding-top: 1.5rem;
    }
}

@media screen and (max-width: 767px) {

    .member-nav .checkout-modal .checkout-modal-products-wrapper .row,
    .member-nav .checkout-modal .checkout-modal-products-wrapper .form-row {
        align-content: flex-start;
    }

    .member-nav .checkout-modal .checkout-modal-list-item-cell .form-control {
        margin: 0.75rem 0;
    }

    .member-nav .checkout-modal .checkout-modal-product-list-item-action {
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .member-nav .checkout-modal .step-button a {
        padding: 1rem;
    }
}

@media screen and (max-width: 575px) {
    .member-nav .checkout-modal .checkout-modal-header {
        padding: 0rem;
        padding-bottom: 0;
    }

    .member-nav .checkout-modal .modal-body {
        padding: 2.5rem 1rem;
        padding-top: 1.5rem;
    }

    .member-nav .checkout-modal .step-button .js-show-step span {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 400px) {
    .member-nav .checkout-modal .step-button a {
        padding: 1rem 0.5rem;
    }

    .member-nav .coupon-col,
    .member-nav .coupon-btn-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .member-nav .coupon-btn-col {
        margin-top: 0.5rem;
    }
}

.member-nav .dropdown-menu.shopping-cart {
    background-color: #ffffff;
    padding: 0;
    border: 1px solid #fff;
}

.member-nav .dropdown-menu.shopping-cart:before {
    display: none;
}

.member-nav .dropdown-menu.shopping-cart .products,
.member-nav .dropdown-menu.shopping-cart .products-amount {
    padding: 1.7rem;
}

.member-nav .dropdown-menu.shopping-cart .products {
    padding-bottom: 0;
    overflow: auto;
    max-height: 400px;
}

.member-nav .dropdown-menu.shopping-cart .product-item {
    padding: 0.7rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #fff;
}

.member-nav .dropdown-menu.shopping-cart a i {
    color: #894646;
    font-size: 1.2rem;
}

@media screen and (min-width: 576px) {
    .member-nav .dropdown-menu.shopping-cart {
        min-width: 25rem;
    }
}

@media screen and (max-width: 575px) {
    .member-nav .dropdown-menu.shopping-cart {
        min-width: 21rem;
    }

    .member-nav .dropdown-menu.shopping-cart .total {
        margin-bottom: 1rem;
    }
}

/* Elements */
.new-world-news .post-holder {
    margin: 20px auto;
    padding: 10px;
}

.new-world-news .thumbnail-holder {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.new-world-news .thumbnail-holder .thumbnail {
    width: 100%;
    height: 285px;
    position: relative;
    background-size: cover;
    background-position: center center;
    transition: transform 0.2s;
    /* Animation */
}

.new-world-news .thumbnail-holder .thumbnail img {
    width: 100%;
    position: relative;
    max-height: 100%;
    height: 285px;
}

.new-world-news .thumbnail-holder:hover .thumbnail {
    transform: scale(1.1);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.new-world-news small,
.new-world-news .small {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
    margin: 10px 0;
    display: block;
}

.new-world-news p {
    line-height: 1.75;
}

.new-world-news .tags {
    left: 0px;
    position: absolute;
    z-index: 9;
    top: 20px;
}

.new-world-news .tags .badge {
    height: 26px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    background: #bb5656;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    padding: 5px 10px;
}

.new-world-news .tags .badge:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 8px solid #bb5656;
    position: absolute;
    right: -8px;
    top: 0;
}

.new-world-news a:hover {
    text-decoration: none;
}

.new-world-news a h3:hover,
.new-world-news a .h3:hover {
    color: #bb5656;
    text-decoration: underline;
}

.new-world-news .post-big .thumbnail {
    padding: 40px;
    min-height: 540px;
    -webkit-background-size: cover;
    background-size: cover;
}

@media screen and (max-width: 991px) {
    .new-world-news .post-big .thumbnail {
        min-height: 390px;
    }
}

.new-world-news .post-big h2,
.new-world-news .post-big .h2,
.new-world-news .post-big h3,
.new-world-news .post-big .h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.new-world-news .post-big p {
    color: #ffffff;
    margin-bottom: 10px;
}

.new-world-news .post-big small,
.new-world-news .post-big .small {
    color: #ffffff;
}

.new-world-news .post-big .button-5 span {
    padding: 0 10px;
}

.new-world-news-1 .post-holder {
    margin: 20px auto;
}

.new-world-news-1 .thumbnail {
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    -webkit-background-size: cover;
}

.new-world-news-1 small,
.new-world-news-1 .small {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
    margin: 10px 0;
    display: block;
}

.new-world-news-1 p {
    line-height: 1.75;
}

.new-world-news-1 .tags {
    left: -10px;
    position: absolute;
    z-index: 9;
    top: 20px;
}

.new-world-news-1 .tags .badge {
    height: 26px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    background: #bb5656;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    padding: 5px 10px;
}

.new-world-news-1 .tags .badge:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 8px solid #bb5656;
    position: absolute;
    right: -8px;
    top: 0;
}

.new-world-news-1 a:hover {
    text-decoration: none;
}

.new-world-news-1 .post-big small,
.new-world-news-1 .post-big .small {
    font-size: 16px;
}

.new-world-news-2 .post-holder {
    margin: 20px auto;
}

.new-world-news-2 .thumbnail {
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    -webkit-background-size: cover;
}

.new-world-news-2 small,
.new-world-news-2 .small {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
    margin: 10px 0;
    display: block;
}

.new-world-news-2 p {
    line-height: 1.75;
}

.new-world-news-2 .tags {
    left: -10px;
    position: absolute;
    z-index: 9;
    top: 20px;
}

.new-world-news-2 .tags .badge {
    height: 26px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    background: #bb5656;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    padding: 5px 10px;
}

.new-world-news-2 .tags .badge:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 8px solid #bb5656;
    position: absolute;
    right: -8px;
    top: 0;
}

.new-world-news-2 a:hover {
    text-decoration: none;
}

.new-world-news-2 .post-big .thumbnail {
    padding: 40px;
    height: 390px;
    -webkit-background-size: cover;
    background-size: cover;
}

@media screen and (max-width: 991px) {
    .new-world-news-2 .post-big .thumbnail {
        min-height: 390px;
    }
}

.new-world-news-2 .post-big h2,
.new-world-news-2 .post-big .h2,
.new-world-news-2 .post-big h3,
.new-world-news-2 .post-big .h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.new-world-news-2 .post-big p {
    color: #ffffff;
    margin-bottom: 10px;
}

.new-world-news-2 .post-big small,
.new-world-news-2 .post-big .small {
    color: #ffffff;
}

.new-world-news-2 .post-big .button-5 span {
    padding: 0 10px;
}

.new-world-news-3 .post-holder {
    margin: 15px auto;
}

.new-world-news-3 .thumbnail {
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    -webkit-background-size: cover;
}

.new-world-news-3 small,
.new-world-news-3 .small {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #979aa6;
    margin: 10px 0;
    display: block;
}

.new-world-news-3 p {
    line-height: 1.75;
}

.new-world-news-3 .tags {
    left: -10px;
    position: absolute;
    z-index: 9;
    top: 20px;
}

.new-world-news-3 .tags .badge {
    height: 26px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    background: #bb5656;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    padding: 5px 10px;
}

.new-world-news-3 .tags .badge:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 8px solid #bb5656;
    position: absolute;
    right: -8px;
    top: 0;
}

.new-world-news-3 a:hover {
    text-decoration: none;
}

.new-world-news-3 .post-big .thumbnail {
    padding: 40px;
    height: 390px;
    -webkit-background-size: cover;
    background-size: cover;
}

@media screen and (max-width: 991px) {
    .new-world-news-3 .post-big .thumbnail {
        min-height: 390px;
    }
}

.new-world-news-3 .post-big.high .thumbnail {
    height: 643px;
}

.new-world-news-3 .post-big h2,
.new-world-news-3 .post-big .h2,
.new-world-news-3 .post-big h3,
.new-world-news-3 .post-big .h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.new-world-news-3 .post-big p {
    color: #ffffff;
    margin-bottom: 10px;
}

.new-world-news-3 .post-big small,
.new-world-news-3 .post-big .small {
    color: #ffffff;
}

.new-world-news-3 .post-big .button-5 span {
    padding: 0 10px;
}

.mw-instagram-feeds {
    margin: 0 -5px;
}

.mw-instagram-feeds .feed-photo {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.mw-instagram-feeds .feed-photo:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.mw-instagram-feeds .feed-photo a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.mw-instagram-feeds .feed-photo .background-holder {
    height: 100%;
    width: 100%;
    background-size: cover;
    position: absolute;
    overflow: hidden;
}

.mw-instagram-feeds .feed-photo .info-holder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    display: flex;
    background: rgba(137, 70, 70, 0.8);
    height: 100%;
    color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.mw-instagram-feeds .feed-photo .info-holder p {
    color: #ffffff;
}

.mw-instagram-feeds .feed-photo .info-holder .counts {
    width: 100%;
    margin-top: 15px;
}

.mw-instagram-feeds .feed-photo .info-holder .counts span {
    margin: 0 7px;
    font-size: 12px;
}

.mw-instagram-feeds .feed-photo .info-holder .counts span i {
    margin-right: 3px;
}

.mw-instagram-feeds .feed-photo .info-holder .counts span i.fa-heart {
    color: red;
}

.mw-instagram-feeds .feed-photo:hover .info-holder {
    opacity: 1;
}

.partners .partner {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.border-top-bottom {
    border-top: solid 2px rgba(179, 183, 197, 0.5);
    border-bottom: solid 2px rgba(179, 183, 197, 0.5);
}

.posts-tags .badge {
    height: 26px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    background: #bb5656;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.posts-tags .badge:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 8px solid #bb5656;
    position: absolute;
    right: -8px;
    top: 0;
}

.stamped-img {
    /*
    width: 116px;
    height: 116px;
    min-width: 116px;
    min-height: 116px;*/
    padding-top: 102%;
    width: 100%;
    float: left;
    margin-right: 20px;
    position: relative;
}

.stamped-img img {
    width: 100%;
    max-width: max-content;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    border: 0;
    height: 98%;
}

.stamped-img:before {
    z-index: 2;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/shape.svg");
    -webkit-background-size: contain;
    background-size: contain;
}

.icons-with-label {
    margin: 10px 0;
}

.icons-with-label span {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: 0.23px;
    color: #894646;
    margin-right: 20px;
    display: inline-block;
}

.icons-with-label span i {
    font-size: 24px;
    line-height: 18px;
    color: #bb5656;
    float: left;
    margin-right: 7px;
}

.prev-next-post {
    padding: 30px;
    background: url("/web/20250304001543im_/https://lilifolia.com/userfiles/templates/new-world/assets/img/prev_next.jpg");
    background-size: cover;
    background-position: center center;
    min-height: 212px;
}

.prev-next-post a {
    text-decoration: none;
}

.prev-next-post h4,
.prev-next-post .h4,
.prev-next-post p {
    color: #ffffff;
}

.prev-next-post .link {
    padding: 0 50px;
}

.prev-next-post .link a {
    font-size: 36px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.35px;
    color: #ffffff;
    text-decoration: none;
}

.prev-next-post .link a i {
    color: #bb5656;
    font-size: 16px;
}

.prev-next-post .link.left-side {
    text-align: right;
}

.prev-next-post .link.left-side i {
    margin-right: 10px;
}

.prev-next-post .link.right-side {
    text-align: left;
}

.prev-next-post .link.right-side i {
    margin-left: 10px;
}

.prev-next-post img {
    float: left;
    margin-right: 20px;
    width: 90px;
    height: 90px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.h3-icon i {
    font-size: 38px;
    float: left;
    margin-top: -3px;
    margin-right: 10px;
    color: #bb5656;
}

@media screen and (max-width: 1199px) {
    .h3-icon i {
        margin-top: -8px;
    }
}

.h4-icon i {
    font-size: 38px;
    float: left;
    margin-top: -3px;
    margin-right: 10px;
    color: #bb5656;
}

@media screen and (max-width: 1199px) {
    .h4-icon i {
        margin-top: -8px;
    }
}

.mwembed {
    height: auto;
}

.vimeo-bg-wrapper,
.vimeo-bg-wrapper .mwembed,
.vimeo-bg-wrapper .mwembed>div,
.vimeo-bg-wrapper .module-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.vimeo-bg-wrapper iframe,
.vimeo-bg-wrapper video {
    object-fit: cover;
}

.vimeo-bg-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
}

.popup-vimeo {
    overflow: hidden;
}

.popup-vimeo a {
    width: 85px;
    height: 85px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.play-btn i {
    float: none;
    margin: 0 auto;
}

.blog-stamp {
    z-index: 11;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: -340px;
}

.blog-stamp blockquote {
    font-size: 16px;
    line-height: 1.75;
}

.blog-stamp blockquote:before {
    font-size: 30px;
    margin-bottom: 5px;
}

.blog-inner-2 .posts-tags {
    margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
    .blog-inner-2 .posts-tags {
        text-align: center;
    }
}

.blog-inner-2 .socials.labels.center {
    margin-bottom: 20px;
    text-align: left;
}

.blog-inner-2 .socials.labels.center li {
    margin: 0 5px 0 0;
}

.post-image-slider .slider>div {
    height: 70vh;
    max-height: 500px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.post-image-slider .bx-wrapper {
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.post-image-slider .bx-wrapper .bx-next {
    right: -21.5px;
}

.post-image-slider .bx-wrapper .bx-prev {
    left: -21.5px;
}

.post-image-slider .bx-wrapper .bx-next,
.post-image-slider .bx-wrapper .bx-prev {
    width: 43px;
    height: 43px;
    background: #bb5656;
    font-size: 0px;
    text-indent: 0;
    padding: 14px 0px;
    line-height: 1;
    text-align: center;
}

.post-image-slider .bx-wrapper .bx-next:hover,
.post-image-slider .bx-wrapper .bx-prev:hover {
    text-decoration: none;
}

.post-image-slider .bx-controls-direction a.bx-prev:before,
.post-image-slider .bx-controls-direction a.bx-next:before {
    font-family: "Font Awesome 5 Free";
    color: #ffffff;
    display: block;
    font-weight: 900;
    font-size: 14px;
}

.post-image-slider .bx-controls-direction a.bx-prev:before {
    content: "";
    margin-left: -3px;
}

.post-image-slider .bx-controls-direction a.bx-next:before {
    content: "";
    margin-right: -3px;
}

.post-image-slider img {
    width: 100%;
}

.post-image-slider .bx-pager-link {
    width: 6px;
    height: 6px;
    opacity: 0.5;
    background-color: #ffffff;
}

.post-image-slider .bx-pager-link.active {
    opacity: 1;
}

.post-image-slider .bx-pager-item {
    margin: 0 3px;
}

.post-image-slider .bx-wrapper .bx-pager {
    bottom: 25px;
}

.home-slider h1,
.home-slider .h1,
.home-slider h2,
.home-slider .h2,
.home-slider h3,
.home-slider .h3,
.home-slider h4,
.home-slider .h4,
.home-slider h5,
.home-slider .h5,
.home-slider h6,
.home-slider .h6,
.home-slider p {
    color: #ffffff;
}

.home-slider p {
    font-size: 24px;
}

.home-slider .slide .img-holder {
    align-items: center;
    justify-content: center;
    display: flex;
    background-size: cover;
    background-position: center center;
    min-height: 750px;
    max-height: 100vh;
}

.home-slider .slide .img-holder:before {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(137, 70, 70, 0.2);
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-slider .slide .info-holder {
    z-index: 2;
}

.home-slider .slide .img-holder.right {
    align-items: center;
    justify-content: flex-end;
}

.home-slider .slide .img-holder.left {
    align-items: center;
    justify-content: flex-start;
}

.home-slider .bx-wrapper {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.home-slider .bx-wrapper .bx-controls-direction {
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    position: absolute;
}

.home-slider .bx-wrapper .bx-controls-direction a {
    background: none;
    font-size: 0;
    text-indent: 0;
    text-decoration: none;
}

.home-slider .bx-wrapper .bx-controls-direction a:before {
    font-family: FontAwesome;
    color: #ffffff;
    display: block;
    font-size: 20px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}

.home-slider .bx-wrapper .bx-controls-direction a.bx-next {
    right: 0%;
}

.home-slider .bx-wrapper .bx-controls-direction a.bx-prev {
    left: 0%;
    text-align: right;
}

.home-slider .bx-wrapper .bx-controls-direction a.bx-prev:before {
    content: "";
}

.home-slider .bx-wrapper .bx-pager {
    bottom: 30px;
}

.home-slider .bx-wrapper .bx-pager.bx-default-pager a {
    border: 0;
    height: 14px;
    width: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #fff;
}

.home-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #bb5656;
}

.icons-slider h1,
.icons-slider .h1,
.icons-slider h2,
.icons-slider .h2,
.icons-slider h3,
.icons-slider .h3,
.icons-slider h4,
.icons-slider .h4,
.icons-slider h5,
.icons-slider .h5,
.icons-slider h6,
.icons-slider .h6,
.icons-slider p {
    color: #ffffff;
}

.icons-slider p {
    font-size: 24px;
}

.icons-slider .slide .img-holder {
    align-items: center;
    justify-content: center;
    display: flex;
    background-size: cover;
    background-position: center center;
    height: 750px;
    max-height: calc(100vh - 170px);
}

.icons-slider .slide .img-holder.right {
    align-items: center;
    justify-content: flex-end;
}

.icons-slider .slide .img-holder.left {
    align-items: center;
    justify-content: flex-start;
}

.icons-slider .bx-wrapper {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.icons-slider .bx-wrapper .bx-controls-direction a {
    background: none;
    font-size: 0;
    text-indent: 0;
    text-decoration: none;
}

.icons-slider .bx-wrapper .bx-controls-direction a:before {
    font-family: FontAwesome;
    color: #ffffff;
    display: block;
    font-size: 30px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
}

.icons-slider .bx-wrapper .bx-controls-direction a.bx-next {
    right: 5%;
}

.icons-slider .bx-wrapper .bx-controls-direction a.bx-prev {
    left: 5%;
}

.icons-slider .bx-wrapper .bx-controls-direction a.bx-prev:before {
    content: "";
}

.icons-slider .bx-wrapper .bx-pager {
    bottom: 30px;
}

.icons-slider .bx-wrapper .bx-pager.bx-default-pager a {
    border: 0;
    height: 14px;
    width: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #fff;
}

.icons-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #bb5656;
}

.icons-pager {
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .icons-pager {
        margin-bottom: 20px;
    }
}

.icons-pager .icon-holder {
    margin: 0 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 50px;
    color: #000000;
    background: #ececec;
    width: 90px;
    height: 90px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid #ececec;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -ms-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

@media screen and (max-width: 767px) {
    .icons-pager .icon-holder {
        font-size: 40px;
        margin: 0 10px;
        width: 70px;
        height: 70px;
    }
}

.icons-pager .icon-holder div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icons-pager .icon-holder.active {
    background: #fff;
    border: 1px solid #bfbfbf;
}

.square {
    position: relative;
    width: 100%;
}

.square .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.square:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 1199px) {
    .slick-dots {
        margin-top: 30px;
    }

    .slick-dots .slide.slick-center {
        margin-top: 0px;
    }
}

.slick-dots li {
    display: inline-block;
    font-size: 0px;
    margin: 0 5px;
}

.slick-dots li button {
    border: 0;
    height: 11px;
    width: 11px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    background: #c2c2c2;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: #bb5656;
    height: 16px;
    width: 16px;
}

.footer-newsletter {
    border-radius: 3px;
    overflow: hidden;
}

.footer-newsletter input {
    width: 100%;
}

.footer-newsletter button {
    width: 100%;
    margin: 20px 0 0;
    border-radius: 30px;
}

.twitter-feed-skin-1 {
    font-size: 18px;
    color: #ffffff;
}

.twitter-feed-skin-1 a {
    color: #ffffff;
}

.twitter-feed-skin-1 p {
    line-height: 1.35;
}

.twitter-feed-skin-1 h4,
.twitter-feed-skin-1 .h4 {
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.twitter-feed-skin-1 i {
    font-size: 30px;
    margin-bottom: 30px;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.breadcrumb a {
    color: #bb5656;
    font-size: 16px;
    font-weight: bold;
}

.small-cta {
    background: #bb5656;
    text-align: center;
    padding: 30px 70px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.small-cta h1,
.small-cta .h1,
.small-cta h2,
.small-cta .h2,
.small-cta h3,
.small-cta .h3,
.small-cta h4,
.small-cta .h4,
.small-cta h5,
.small-cta .h5,
.small-cta h6,
.small-cta .h6,
.small-cta p,
.small-cta * {
    color: #ffffff;
}

.small-cta .icon-holder {
    position: absolute;
    opacity: 0.5;
    left: 25px;
}

.small-cta .icon-holder i {
    font-size: 50px;
}

.product-custom-fields-holder {
    position: relative;
    margin: 0;
}

.product-custom-fields-holder .row,
.product-custom-fields-holder div[class*="col-"] {
    position: static;
}

.product-custom-fields-holder .control-label,
.product-custom-fields-holder .form-check-label {
    left: 0;
    display: block;
    margin-top: 10px;
}

.product-custom-fields-holder .custom-control {
    margin-inline-start: 0px;
    margin-inline-end: 20px;
    display: inline-block;
}

.starrr {
    margin-bottom: 30px;
}

.starrr .mw-icon-web-star {
    color: #ececec;
    font-size: 16px;
    margin: 0 3px;
}

.starrr .mw-icon-web-star:before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.starrr .mw-icon-web-star.active {
    color: #bb5656;
}

.product-info-content .availability {
    display: inline-block;
}

.product-info-content .availability i {
    display: inline-block;
    margin-right: 5px;
}

.module-categories-template-horizontal-list-1 ul.mw-cats-menu {
    text-align: left;
}

.module-categories-template-horizontal-list-1 ul.mw-cats-menu li {
    display: block;
}

.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 10px;
    color: #000000;
}

.module-categories-template-horizontal-list-1 ul.mw-cats-menu li a:hover {
    color: #bb5656;
}


.shop-tags a {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin: 0 5px 15px 0;
    display: inline-block;
}

.shop-tags a:hover {
    color: #bb5656;
}

.module-categories-template-horizontal-list-1 ul.mw-cats-menu>li>ul {
    display: block;
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
}

.module-categories-template-horizontal-list-1 ul.mw-cats-menu>li:hover>ul {
    padding: 0;
}

.module-custom-fields textarea[name="Message"] {
    min-height: 200px;
}

.faq-holder.styled .item {
    width: 100%;
}

.module-multilanguage .mw-dropdown-default .mw-ui-btn {
    background: #bb5656;
    border-color: #bb5656;
}

.module-multilanguage .mw-dropdown-default .mw-ui-btn .flag-icon {
    margin-right: 10px;
    font-size: 13px;
}

.module-multilanguage .flag-icon {
    margin-right: 10px;
}

.modal-content .table th {
    background: none;
    color: black;
}

.modal-content .btn-lg,
.modal-content .btn-group-lg>.btn {
    min-width: auto;
}

.not_found_text h1,
.not_found_text .h1 {
    color: #0044de;
}

.not_found_img img {
    width: 70%;
}

@media only screen and (max-width: 415px) {
    .name-of-product-shop {
        display: none;
    }
}

@media only screen and (min-width: 700px) {
    .name-of-product-shop {
        display: none;
    }
}

@media only screen and (min-width: 1460px) {
    .name-of-product-shop {
        display: flex;
    }
}

i.checkout-v2-remove-icon {
    font-size: 24px;
    color: #6c757d;
}

.mw-tags-btn-light {
    border-color: white;
}

.mw-active-tag-skin-1 {
    text-decoration: underline;
}

select.form-control {
    appearance: auto;
}

.sticky-nav-disabled .navigation-holder {
    position: unset !important;
}

.container .container {
    width: auto;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Jun 28, 2019, 11:47:53 AM
    Author     : m.petkov
*/
/*Color mixer*/
.btn-name,
.bg-name,
.badge-name,
.icon-bg-name,
.hr-bg-name {
    background-color: #894646;
}

.module-hr-bg-name div[class*="hr-"] {
    background-color: #894646;
}

.text-name {
    color: #894646;
}

.text-name>*:not(font),
.text-name .btn-link,
.icon-name {
    color: #894646;
}

.btn-name,
.bg-name,
.badge-name,
.icon-bg-name,
.hr-bg-name {
    background-color: #6aabcf;
}

.module-hr-bg-name div[class*="hr-"] {
    background-color: #6aabcf;
}

.text-name {
    color: #6aabcf;
}

.text-name>*:not(font),
.text-name .btn-link,
.icon-name {
    color: #6aabcf;
}

.btn-name,
.bg-name,
.badge-name,
.icon-bg-name,
.hr-bg-name {
    background-color: #bb5656;
}

.module-hr-bg-name div[class*="hr-"] {
    background-color: #bb5656;
}

.text-name {
    color: #bb5656;
}

.text-name>*:not(font),
.text-name .btn-link,
.icon-name {
    color: #bb5656;
}

.btn-name,
.bg-name,
.badge-name,
.icon-bg-name,
.hr-bg-name {
    background-color: #894646;
}

.module-hr-bg-name div[class*="hr-"] {
    background-color: #894646;
}

.text-name {
    color: #894646;
}

.text-name>*:not(font),
.text-name .btn-link,
.icon-name {
    color: #894646;
}

.btn-name,
.bg-name,
.badge-name,
.icon-bg-name,
.hr-bg-name {
    background-color: #fff;
}

.module-hr-bg-name div[class*="hr-"] {
    background-color: #fff;
}

.text-name {
    color: #fff;
}

.text-name>*:not(font),
.text-name .btn-link,
.icon-name {
    color: #fff;
}

.btn-name,
.bg-name,
.badge-name,
.icon-bg-name,
.hr-bg-name {
    background-color: #bfbfbf;
}

.module-hr-bg-name div[class*="hr-"] {
    background-color: #bfbfbf;
}

.text-name {
    color: #bfbfbf;
}

.text-name>*:not(font),
.text-name .btn-link,
.icon-name {
    color: #bfbfbf;
}