

@import url(<'https://kit.fontawesome.com/4f87bb2299.js')

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap'); :root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #c1c1c1;
    --secondary: #DE7067;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family: 'Lato', sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}


 .red {
        color: red;
        font-size: 30px; /* Задайте потрібний розмір шрифту */
    }

iframe {
            border: 0;
            width: 100%;
            height: 400px;
        }
.process-steps {
    text-align: center;
    margin: 50px 0;
}

.process-steps h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1 0 12%;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    padding-bottom: 10px;
}

.step-icon {
    margin-bottom: 10px;
}

.step-icon img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.step p {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.step:hover .step-icon img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .steps-container {
        display: block;
    }

    .step {
        flex: 1 0 100%;
        margin-bottom: 30px;
    }

    .step-icon img {
        width: 40px;
        height: 40px;
    }

    .step p {
        font-size: 16px;
    }
}









.product-slider {
    text-align: center;
    margin: 30px auto;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slider-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 25%;
    padding: 10px;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.item-info {
    margin-top: 10px;
    text-align: center;
}

.item-info p {
    font-size: 16px;
    color: #333;
}

.item-info .btn {
    background-color: #d33c33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.item-info .btn:hover {
    background-color: #c12e2e;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%;
    }
}












.promo-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.promo-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 10px;
}

.promo-content {
    flex: 1;
    margin-left: 20px;
}

.promo-content h2 {
    font-size: 34px;
    font-weight: bold;
    color: #d33c33;
}

.promo-content p {
    font-size: 18px;
    color: #333;
}

.phone-number {
    font-weight: bold;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.catalog-btn {
    background-color: #333;
    color: white;
}

.call-btn {
    background-color: #d33c33;
    color: white;
}

.catalog-btn:hover {
    background-color: #555;
}

.call-btn:hover {
    background-color: #c12e2e;
}

@media (max-width: 768px) {
    .promo-block {
        flex-direction: column;
        align-items: center;
    }

    .promo-image img {
        max-width: 100%;
    }

    .promo-content {
        text-align: center;
        margin-left: 0;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}








.chat-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-button {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #000;
    border-radius: 20%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.chat-telegram {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #24A1DE;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.chat-viber {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #59267c;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.chat-whatsapp {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.chat-messenger {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #3b5998;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.chat-email {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #ff5e5e;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.chat-phone {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #ff5e5e;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

@media (max-width: 768px) {
    .chat-buttons {
        bottom: 10px;
        right: 10px;
    }
    .chat-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    .close-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}




/* Загальні стилі для відео */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Стилі для відео на комп'ютерах */
.desktop-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Стилі для відео на мобільних */
.mobile-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Медіа-запит для мобільних пристроїв */
@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }
}









 .hero-section {
  position: relative;
  
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* Стилі для відео на фоні */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Медіа-запит для комп'ютера (PC) */
@media (min-width: 769px) {
  .hero-section::before {
  background: url('../images/komp.gif') no-repeat center center/cover;
    opacity: 1; /* Показуємо відео для ПК */
  }
}

/* Медіа-запит для мобільних пристроїв */
@media (max-width: 768px) {
  .hero-section::before {
    background: url('../images/znp.gif') no-repeat center center/cover;
    opacity: 1; /* Показуємо відео для мобільних пристроїв */
  }
}


    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 86%;
     
     
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      padding: 20px;
    }

    .hero-content h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .hero-content p {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-buttons a {
      text-decoration: none;
      color: white;
      padding: 10px 20px;
      border: 2px solid white;
      border-radius: 5px;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .hero-buttons a.red {
      background: #e63946;
      border: none;
    }

    .hero-buttons a:hover {
      background: white;
      color: black;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 1.5rem;
      }

      .hero-content p {
        font-size: 0.9rem;
      }

      .hero-buttons a {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .hero-content {
        padding: 10px;
      }

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

      .hero-buttons a {
        width: 100%;
        text-align: center;
      }
    }













.articles-section {
  padding: 20px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: #d32f2f;
  font-weight: bold;
}

.articles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.article {
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-info {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
  color: #757575;
}

.article-title {
  font-size: 18px;
  margin: 10px;
  color: #333;
}

.article-description {
  font-size: 14px;
  color: #555;
  margin: 0 10px 10px;
}

.icon-calendar::before,
.icon-eye::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: cover;
  margin-right: 5px;
}

.icon-calendar::before {
  background-image: url('calendar-icon.png');
}

.icon-eye::before {
  background-image: url('eye-icon.png');
}

/* Адаптація для мобільних пристроїв */
@media (max-width: 768px) {
  .articles-container {
    flex-direction: column;
    gap: 15px;
  }

  .article {
    width: 100%;
  }

  .section-title {
    font-size: 20px;
  }

  .article-title {
    font-size: 16px;
  }

  .article-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .article-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-info p {
    margin: 2px 0;
  }

  .section-title {
    font-size: 18px;
  }
}




/* Загальний стиль для блоку */
.hero-block {
  position: relative;
  background: url('background-image.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Напівпрозорий чорний фон */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #ddd;
}

/* Адаптація для мобільних пристроїв */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-block {
     background-image: url('../images/blog1.png'); /* Шлях до вашого зображення */
    background-size: cover; /* Зображення розтягується, щоб покрити всю секцію */
    background-position: center; /* Центрування зображення */
    background-repeat: no-repeat; /* Заборона повторення зображення */
    height: 50vh; /* Висота секції - вся висота вікна браузера */
  }
}




/* Основний блок */
.text-block {
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.text-title {
  font-size: 24px;
  color: #d32f2f;
  font-weight: bold;
  margin: 30px 0 15px;
  text-align: left;
}

.description-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.epitaph-list {
  padding-left: 20px;
  font-size: 16px;
}

.epitaph-list li {
  margin-bottom: 10px;
}

/* Адаптація для мобільних пристроїв */
@media (max-width: 768px) {
  .intro-text {
    font-size: 14px;
  }

  .text-title {
    font-size: 20px;
    text-align: center;
  }

  .description-text {
    font-size: 14px;
  }

  .epitaph-list {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .intro-text {
    font-size: 13px;
  }

  .text-title {
    font-size: 18px;
  }

  .description-text {
    font-size: 13px;
  }

  .epitaph-list {
    font-size: 13px;
  }

  .text-block {
    padding: 20px 10px;
  }
}






.hr {
    color: #ccac5f;
}
.photf {
    background-size: cover;
    max-width: 100%;
    object-fit: contain;
}


.telef {
    border-spacing:5px;
}





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

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

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



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

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

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

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

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

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

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

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

dt {
    font-weight: 700
}

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

blockquote {
    margin: 0 0 1rem
}

b,strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

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

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

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

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

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

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

figure {
    margin: 0 0 1rem
}

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

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

table {
    border-collapse: collapse
}

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

th {
    text-align: inherit
}

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

button {
    -webkit-border-radius: 0;
    border-radius: 0
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

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

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

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

select {
    word-wrap: normal
}

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

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

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

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

textarea {
    overflow: auto;
    resize: vertical
}

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

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

progress {
    vertical-align: baseline
}

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




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

output {
    display: inline-block
}

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

template {
    display: none
}

[hidden] {
    display: none !important
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.figure {
    display: inline-block
}

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

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

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

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

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

@media (min-width: 992px) {
    .container {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1140px
    }
}

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

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

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

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

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

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

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

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

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

.col {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%
}

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

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

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

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

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

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

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

.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

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

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

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

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

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

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

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

.order-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

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

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

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

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

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

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width: 576px) {
    .col-sm {
        -webkit-flex-basis:0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

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

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

    .row-cols-sm-3>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

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

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

    .row-cols-sm-6>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

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

    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

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

    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }

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

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

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

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

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

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

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

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 768px) {
    .col-md {
        -webkit-flex-basis:0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

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

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

    .row-cols-md-3>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

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

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

    .row-cols-md-6>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

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

    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

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

    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }

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

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

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

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

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

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

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

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        -webkit-flex-basis:0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

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

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

    .row-cols-lg-3>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

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

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

    .row-cols-lg-6>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

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

    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

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

    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }

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

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

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

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

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

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

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

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -webkit-flex-basis:0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

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

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

    .row-cols-xl-3>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

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

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

    .row-cols-xl-6>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

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

    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

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

    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }

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

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

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

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

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

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

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

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

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

.table th,.table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 0 solid #dee2e6
}

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

.table tbody+tbody {
    border-top: 0 solid #dee2e6
}

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

.table-bordered {
    border: 0 solid #dee2e6
}

.table-bordered th,.table-bordered td {
    border: 0 solid #dee2e6
}

.table-bordered thead th,.table-bordered thead td {
    border-bottom-width: 0
}

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

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

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

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

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

.table-hover .table-primary:hover {
    background-color: #eeb9b5
}

.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th {
    background-color: #eeb9b5
}

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

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

.table-hover .table-secondary:hover {
    background-color: #f2c3bf
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ecada9;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.25)
}

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

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

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

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

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

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

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

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

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

.col-form-label {
    padding-top: .375rem;
    padding-bottom: .375rem;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: .875rem;
    line-height: 1.5
}

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

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

.form-control-sm {
    height: -webkit-calc(1.5em + .5rem);
    height: calc(1.5em + .5rem);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    -webkit-border-radius: .2rem;
    border-radius: .2rem
}

.form-control-lg {
    height: -webkit-calc(1.5em + 1rem);
    height: calc(1.5em + 1rem);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    -webkit-border-radius: .3rem;
    border-radius: .3rem
}

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

textarea.form-control {
    height: auto
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.was-validated textarea.form-control:valid,textarea.form-control.is-valid {
    padding-right: -webkit-calc(1.5em + .75rem);
    padding-right: calc(1.5em + .75rem);
    background-position: top -webkit-calc(.375em + .1875rem) right -webkit-calc(.375em + .1875rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

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

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

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

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

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

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

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

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

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

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

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

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

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,0.9);
    -webkit-border-radius: .25rem;
    border-radius: .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: -webkit-calc(1.5em + .75rem);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right -webkit-calc(.375em + .1875rem) center;
    background-position: right calc(.375em + .1875rem) center;
    background-size: -webkit-calc(.75em + .375rem) -webkit-calc(.75em + .375rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

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

.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid {
    padding-right: -webkit-calc(1.5em + .75rem);
    padding-right: calc(1.5em + .75rem);
    background-position: top -webkit-calc(.375em + .1875rem) right -webkit-calc(.375em + .1875rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

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

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

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

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

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

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

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

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

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

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

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

.form-inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

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

@media (min-width: 576px) {
    .form-inline label {
        display:-webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .input-group,.form-inline .custom-select {
        width: auto
    }

    .form-inline .form-check {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }

    .form-inline .custom-control {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0 solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    -o-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;
    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;
    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,-webkit-box-shadow 0.15s ease-in-out
}

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

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

.btn:focus,.btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.25)
}

.btn.disabled,.btn:disabled {
    opacity: .65
}

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

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

.btn-primary:hover {
    color: #fff;
    background-color: #c4362b;
    border-color: #b93329
}

.btn-primary:focus,.btn-primary.focus {
    color: #fff;
    background-color: #c4362b;
    border-color: #c1c1c1;
    -webkit-box-shadow: 0 0 0 0 rgba(219,102,93,0.5);
    box-shadow: 0 0 0 0 rgba(219,102,93,0.5)
}

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

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

.btn-secondary:hover {
    color: #fff;
    background-color: #d75248;
    border-color: #d5493d
}

.btn-secondary:focus,.btn-secondary.focus {
    color: #fff;
    background-color: #d75248;
    border-color: #d5493d;
    -webkit-box-shadow: 0 0 0 0 rgba(227,133,126,0.5);
    box-shadow: 0 0 0 0 rgba(227,133,126,0.5)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-outline-primary:hover {
    color: #000;
    background-color: #c1c1c1;
    border-color: #D54B40
}

.btn-outline-primary:focus,.btn-outline-primary.focus {
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.5);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.5)
}

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

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

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

.btn-outline-secondary:focus,.btn-outline-secondary.focus {
    -webkit-box-shadow: 0 0 0 0 rgba(222,112,103,0.5);
    box-shadow: 0 0 0 0 rgba(222,112,103,0.5)
}

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

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

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

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

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

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

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

.btn-outline-info:focus,.btn-outline-info.focus {
    -webkit-box-shadow: 0 0 0 0 rgba(23,162,184,0.5);
    box-shadow: 0 0 0 0 rgba(23,162,184,0.5)
}

.btn-outline-info.disabled,.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent
}

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

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

.btn-outline-warning:focus,.btn-outline-warning.focus {
    -webkit-box-shadow: 0 0 0 0 rgba(255,193,7,0.5);
    box-shadow: 0 0 0 0 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: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    -webkit-border-radius: .3rem;
    border-radius: .3rem
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    -webkit-border-radius: .2rem;
    border-radius: .2rem
}

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

.btn-block+.btn-block {
    margin-top: .5rem
}

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

.fade {
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear
}

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

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

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

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0s ease;
    -o-transition: height 0s ease;
    transition: height 0s ease
}

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

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

.dropdown-toggle {
    white-space: nowrap
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-menu.show {
    display: block
}

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

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

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

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

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

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

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

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

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

.input-group>.custom-file {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after {
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.custom-file:not(:first-child) .custom-file-label {
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0
}

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

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

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

.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn {
    margin-left: 0
}

.input-group-prepend {
    margin-right: 0
}

.input-group-append {
    margin-left: 0
}

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

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

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

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

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

.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    -webkit-border-radius: .2rem;
    border-radius: .2rem
}

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

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

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

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

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

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

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

.custom-control-input:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.25)
}

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

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

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

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

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

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

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

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

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

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

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

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(213,75,64,0.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(213,75,64,0.5)
}

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

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

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(213,75,64,0.5)
}

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

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

.custom-switch .custom-control-label::after {
    top: .25rem;
    left: -2.25rem;
    width: 1rem;
    height: 1rem;
    background-color: #adb5bd;
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
    -webkit-transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    -o-transition: transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none
    }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    -ms-transform: translateX(.75rem);
    transform: translateX(.75rem)
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(213,75,64,0.5)
}

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

.custom-select:focus {
    border-color: #ecada9;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.25)
}

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

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

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

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

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

.custom-select-sm {
    height: -webkit-calc(1.5em + .5rem);
    height: calc(1.5em + .5rem);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

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

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

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

.custom-file-input:focus ~ .custom-file-label {
    border-color: #ecada9;
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.25)
}

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

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

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

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: -webkit-calc(1.5em + .75rem);
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 0 solid #ced4da;
    -webkit-border-radius: .25rem;
    border-radius: .25rem
}

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

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

.custom-range:focus {
    outline: none
}

.custom-range:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff,0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 1px #fff,0 0 0 0 rgba(213,75,64,0.25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 0 rgba(213,75,64,0.25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 0 rgba(213,75,64,0.25)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:hover,.navbar-brand:focus {
    text-decoration: none
}

.navbar-nav {
     display: flex;
  justify-content: space-evenly; /* Розміщує елементи рівномірно по всій панелі */
  width: 100%; /* Встановлює ширину на 100% */
  padding: 0;
  margin: 0;
list-style-type: none;
}



/* Початковий стан для мобільних пристроїв */
@media (max-width: 768px) {
  .navbar-nav {
    display: block; /* Меню стає вертикальним */
    width: 100%;
    background-color: #333; /* Фон для мобільного меню */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; /* Щоб меню було поверх інших елементів */
    height: 100vh; /* Меню займає весь екран */
    overflow-y: auto; /* Прокручування, якщо елементів більше */
    padding: 0;
    margin-top: 100px; /* Відступ для правильного відображення */
  }
  
 /* Стилі для кнопки закриття */
  .navbar-toggler-close {
    position: absolute;
    top: 10px; /* Відступ від верхнього краю */
    right: 10px; /* Відступ від правого краю */
    font-size: 30px;
    color: #fff;
    background: transparent;
    border: none;
  }
}

  
  /* Стилі для кнопки меню */
  .navbar-toggler {
    display: block; /* Кнопка для мобільної версії */
  }

  .navbar-toggler-icon {
    background-color: #fff; /* Колір іконки меню */
  }
}







.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none
}














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

.navbar-collapse {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 0 solid transparent;
    -webkit-border-radius: .25rem;
    border-radius: .25rem
}

.navbar-toggler:hover,.navbar-toggler:focus {
    text-decoration: none
}

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

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

@media (min-width: 576px) {
    .navbar-expand-sm {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }







    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

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

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

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

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

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

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

@media (min-width: 768px) {
    .navbar-expand-md {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

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

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

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

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

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

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

@media (min-width: 992px) {
    .navbar-expand-lg {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

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

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

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

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

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

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

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

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

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

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

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

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

.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

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

.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/"
}

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

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

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

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

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: 0;
    line-height: 1.25;
    color: #c1c1c1;
    background-color: #fff;
    border: 0 solid #dee2e6
}

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

.page-link:focus {
    z-index: 3;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(213,75,64,0.25);
    box-shadow: 0 0 0 0 rgba(213,75,64,0.25)
}

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

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

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

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

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

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

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

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

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

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

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 0 solid transparent;
    -webkit-border-radius: .25rem;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

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

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-primary {
    color: #6f2721;
    background-color: #f7dbd9;
    border-color: #f3cdca
}

.alert-primary hr {
    border-top-color: #eeb9b5
}

.alert-primary .alert-link {
    color: #481915
}

.alert-secondary {
    color: #733a36;
    background-color: #f8e2e1;
    border-color: #f6d7d4
}

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

.alert-secondary .alert-link {
    color: #502826
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-open {
    overflow: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #303030;
    background-clip: padding-box;
    border: 0 solid rgba(0,0,0,0.2);
    -webkit-border-radius: .3rem;
    border-radius: .3rem;
    outline: 0
}

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

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 0 solid #dee2e6;
    -webkit-border-top-left-radius: .3rem;
    border-top-left-radius: .3rem;
    -webkit-border-top-right-radius: .3rem;
    border-top-right-radius: .3rem
}

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

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

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

.modal-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 0 solid #dee2e6;
    -webkit-border-bottom-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
    -webkit-border-bottom-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.modal-footer>* {
    margin: .25rem
}

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

@media (min-width: 576px) {
    .modal-dialog {
        max-width:500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: -webkit-calc(100% - 3.5rem);
        max-height: calc(100% - 3.5rem)
    }

    .modal-dialog-scrollable .modal-content {
        max-height: -webkit-calc(100vh - 3.5rem);
        max-height: calc(100vh - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: -webkit-calc(100% - 3.5rem);
        min-height: calc(100% - 3.5rem)
    }

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

    .modal-sm {
        max-width: 300px
    }
}

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

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

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

.tooltip.show {
    opacity: .9
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

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

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

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

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

.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 .4rem
}

.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

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

.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"] {
    padding: .4rem 0
}

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

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

.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 .4rem
}

.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

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

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    -webkit-border-radius: .25rem;
    border-radius: .25rem
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #D54B40 !important
}

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

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

a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus {
    background-color: #d5493d !important
}

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

a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus {
    background-color: #1e7e34 !important
}

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

a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus {
    background-color: #117a8b !important
}

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

a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus {
    background-color: #bd2130 !important
}

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

a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus {
    background-color: #1d2124 !important
}

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

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

.border {
    border: 0 solid #dee2e6 !important
}

.border-top {
    border-top: 0 solid #dee2e6 !important
}

.border-right {
    border-right: 0 solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 0 solid #dee2e6 !important
}

.border-left {
    border-left: 0 solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

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

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

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

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

.border-primary {
    border-color: #D54B40 !important
}

.border-secondary {
    border-color: #DE7067 !important
}

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

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

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

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    -webkit-border-radius: .2rem !important;
    border-radius: .2rem !important
}

.rounded {
    -webkit-border-radius: .25rem !important;
    border-radius: .25rem !important
}

.rounded-top {
    -webkit-border-top-left-radius: .25rem !important;
    border-top-left-radius: .25rem !important;
    -webkit-border-top-right-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    -webkit-border-top-right-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
    -webkit-border-bottom-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    -webkit-border-bottom-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
    -webkit-border-bottom-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    -webkit-border-top-left-radius: .25rem !important;
    border-top-left-radius: .25rem !important;
    -webkit-border-bottom-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-lg {
    -webkit-border-radius: .3rem !important;
    border-radius: .3rem !important
}

.rounded-circle {
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important
}

.rounded-pill {
    -webkit-border-radius: 50rem !important;
    border-radius: 50rem !important
}

.rounded-0 {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width: 576px) {
    .d-sm-none {
        display:none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display:none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display:none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display:none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

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

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

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

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient:horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width: 576px) {
    .float-sm-left {
        float:left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float:left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float:left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float:left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.m-0 {
    margin: 0 !important
}

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

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

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

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

.m-1 {
    margin: .25rem !important
}

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

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

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

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

.m-2 {
    margin: .5rem !important
}

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

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

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

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

.m-3 {
    margin: 1rem !important
}

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

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

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

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

.m-4 {
    margin: 1.5rem !important
}

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

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

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

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

.m-5 {
    margin: 3rem !important
}

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

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

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

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

.p-0 {
    padding: 0 !important
}

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

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

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

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

.p-1 {
    padding: .25rem !important
}

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

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

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

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

.p-2 {
    padding: .5rem !important
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-auto {
    margin: auto !important
}

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

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

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

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

@media (min-width: 576px) {
    .m-sm-0 {
        margin:0 !important
    }

    .mt-sm-0,.my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,.mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,.my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,.mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,.my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,.mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,.my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,.mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,.my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,.mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,.my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,.mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,.my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,.mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,.my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,.mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,.my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,.mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,.my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,.mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

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

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

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

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

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

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

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

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

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

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,.py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,.px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,.py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,.px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,.py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,.px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,.py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,.px-sm-2 {
        padding-left: .5rem !important
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1,.my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1,.mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1,.my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1,.mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2,.my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2,.mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2,.my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2,.mx-sm-n2 {
        margin-left: -.5rem !important
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
    .m-md-0 {
        margin:0 !important
    }

    .mt-md-0,.my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,.mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,.my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,.mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,.my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,.mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,.my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,.mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,.my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,.mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,.my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,.mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,.my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,.mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,.my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,.mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,.my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,.mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,.my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,.mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

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

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

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

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

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

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

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

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

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

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,.py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,.px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,.py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,.px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,.py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,.px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,.py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,.px-md-2 {
        padding-left: .5rem !important
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1,.my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1,.mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1,.my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1,.mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2,.my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2,.mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2,.my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2,.mx-md-n2 {
        margin-left: -.5rem !important
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .m-lg-0 {
        margin:0 !important
    }

    .mt-lg-0,.my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,.mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,.my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,.mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,.my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,.mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,.my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,.mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,.my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,.mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,.my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,.mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,.my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,.mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,.my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,.mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,.my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,.mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,.my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,.mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

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

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

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

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

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

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

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

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

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

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,.py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,.px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,.py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,.px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,.py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,.px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,.py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,.px-lg-2 {
        padding-left: .5rem !important
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1,.my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1,.mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1,.my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1,.mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2,.my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2,.mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2,.my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2,.mx-lg-n2 {
        margin-left: -.5rem !important
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
    .m-xl-0 {
        margin:0 !important
    }

    .mt-xl-0,.my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,.mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,.my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,.mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,.my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,.mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,.my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,.mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,.my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,.mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,.my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,.mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,.my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,.mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,.my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,.mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,.my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,.mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,.my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,.mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

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

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

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

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

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

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

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

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

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

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,.py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,.px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,.py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,.px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,.py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,.px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,.py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,.px-xl-2 {
        padding-left: .5rem !important
    }

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

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

    .pr-xl-3,.px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,.py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,.px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,.py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,.px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,.py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,.px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,.py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,.px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,.py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,.px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1,.my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1,.mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1,.my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1,.mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2,.my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2,.mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2,.my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2,.mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3,.my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,.mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,.my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,.mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4,.my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,.mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,.my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,.mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5,.my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,.mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,.my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,.mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,.my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,.mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,.my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,.mx-xl-auto {
        margin-left: auto !important
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0)
}

.text-monospace {
    font-family: 'Lato', sans-serif;
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align:left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align:left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align:left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align:left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #D54B40 !important
}

a.text-primary:hover,a.text-primary:focus {
    color: #a42e24 !important
}

.text-secondary {
    color: #DE7067 !important
}

a.text-secondary:hover,a.text-secondary:focus {
    color: #cc382c !important
}

.text-success {
    color: #28a745 !important
}

a.text-success:hover,a.text-success:focus {
    color: #19692c !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:hover,a.text-info:focus {
    color: #0f6674 !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:hover,a.text-warning:focus {
    color: #ba8b00 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:hover,a.text-danger:focus {
    color: #a71d2a !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:hover,a.text-light:focus {
    color: #cbd3da !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:hover,a.text-dark:focus {
    color: #121416 !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,0.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}





.bi-alarm:before {
    content: "\e900"
}

.bi-alarm-fill:before {
    content: "\e901"
}

.bi-alt:before {
    content: "\e902"
}

.bi-app:before {
    content: "\e903"
}

.bi-app-indicator:before {
    content: "\e904"
}

.bi-archive:before {
    content: "\e905"
}

.bi-archive-fill:before {
    content: "\e906"
}

.bi-arrow-90deg-down:before {
    content: "\e907"
}

.bi-arrow-90deg-left:before {
    content: "\e908"
}

.bi-arrow-90deg-right:before {
    content: "\e909"
}

.bi-arrow-90deg-up:before {
    content: "\e90a"
}

.bi-arrow-bar-down:before {
    content: "\e90b"
}

.bi-arrow-bar-left:before {
    content: "\e90c"
}

.bi-arrow-bar-right:before {
    content: "\e90d"
}

.bi-arrow-bar-up:before {
    content: "\e90e"
}

.bi-arrow-clockwise:before {
    content: "\e90f"
}

.bi-arrow-counterclockwise:before {
    content: "\e910"
}

.bi-arrow-down:before {
    content: "\e911"
}

.bi-arrow-down-circle:before {
    content: "\e912"
}

.bi-arrow-down-circle-fill:before {
    content: "\e913"
}

.bi-arrow-down-left:before {
    content: "\e914"
}

.bi-arrow-down-left-circle:before {
    content: "\e915"
}

.bi-arrow-down-left-circle-fill:before {
    content: "\e916"
}

.bi-arrow-down-left-square:before {
    content: "\e917"
}

.bi-arrow-down-left-square-fill:before {
    content: "\e918"
}

.bi-arrow-down-right:before {
    content: "\e919"
}

.bi-arrow-down-right-circle:before {
    content: "\e91a"
}

.bi-arrow-down-right-circle-fill:before {
    content: "\e91b"
}

.bi-arrow-down-right-square:before {
    content: "\e91c"
}

.bi-arrow-down-right-square-fill:before {
    content: "\e91d"
}

.bi-arrow-down-short:before {
    content: "\e91e"
}

.bi-arrow-down-square:before {
    content: "\e91f"
}

.bi-arrow-down-square-fill:before {
    content: "\e920"
}

.bi-arrow-down-up:before {
    content: "\e921"
}

.bi-arrow-left:before {
    content: "\e922"
}

.bi-arrow-left-circle:before {
    content: "\e923"
}

.bi-arrow-left-circle-fill:before {
    content: "\e924"
}

.bi-arrow-left-right:before {
    content: "\e925"
}

.bi-arrow-left-short:before {
    content: "\e926"
}

.bi-arrow-left-square:before {
    content: "\e927"
}

.bi-arrow-left-square-fill:before {
    content: "\e928"
}

.bi-arrow-repeat:before {
    content: "\e929"
}

.bi-arrow-return-left:before {
    content: "\e92a"
}

.bi-arrow-return-right:before {
    content: "\e92b"
}

.bi-arrow-right:before {
    content: "\e92c"
}

.bi-arrow-right-circle:before {
    content: "\e92d"
}

.bi-arrow-right-circle-fill:before {
    content: "\e92e"
}

.bi-arrow-right-short:before {
    content: "\e92f"
}

.bi-arrow-right-square:before {
    content: "\e930"
}

.bi-arrow-right-square-fill:before {
    content: "\e931"
}

.bi-arrow-up:before {
    content: "\e932"
}

.bi-arrow-up-circle:before {
    content: "\e933"
}

.bi-arrow-up-circle-fill:before {
    content: "\e934"
}

.bi-arrow-up-left:before {
    content: "\e935"
}

.bi-arrow-up-left-circle:before {
    content: "\e936"
}

.bi-arrow-up-left-circle-fill:before {
    content: "\e937"
}

.bi-arrow-up-left-square:before {
    content: "\e938"
}

.bi-arrow-up-left-square-fill:before {
    content: "\e939"
}

.bi-arrow-up-right:before {
    content: "\e93a"
}

.bi-arrow-up-right-circle:before {
    content: "\e93b"
}

.bi-arrow-up-right-circle-fill:before {
    content: "\e93c"
}

.bi-arrow-up-right-square:before {
    content: "\e93d"
}

.bi-arrow-up-right-square-fill:before {
    content: "\e93e"
}

.bi-arrow-up-short:before {
    content: "\e93f"
}

.bi-arrow-up-square:before {
    content: "\e940"
}

.bi-arrow-up-square-fill:before {
    content: "\e941"
}

.bi-arrows-angle-contract:before {
    content: "\e942"
}

.bi-arrows-angle-expand:before {
    content: "\e943"
}

.bi-arrows-collapse:before {
    content: "\e944"
}

.bi-arrows-expand:before {
    content: "\e945"
}

.bi-arrows-fullscreen:before {
    content: "\e946"
}

.bi-arrows-move:before {
    content: "\e947"
}

.bi-aspect-ratio:before {
    content: "\e948"
}

.bi-aspect-ratio-fill:before {
    content: "\e949"
}

.bi-asterisk:before {
    content: "\e94a"
}

.bi-at:before {
    content: "\e94b"
}

.bi-award:before {
    content: "\e94c"
}

.bi-award-fill:before {
    content: "\e94d"
}

.bi-backspace:before {
    content: "\e94e"
}

.bi-backspace-fill:before {
    content: "\e94f"
}

.bi-backspace-reverse:before {
    content: "\e950"
}

.bi-backspace-reverse-fill:before {
    content: "\e951"
}

.bi-bag:before {
    content: "\e952"
}

.bi-bag-check:before {
    content: "\e953"
}

.bi-bag-dash:before {
    content: "\e954"
}

.bi-bag-fill:before {
    content: "\e955"
}

.bi-bag-plus:before {
    content: "\e956"
}

.bi-bar-chart:before {
    content: "\e957"
}

.bi-bar-chart-fill:before {
    content: "\e958"
}

.bi-basket:before {
    content: "\e959"
}

.bi-basket-fill:before {
    content: "\e95a"
}

.bi-basket2:before {
    content: "\e95b"
}

.bi-basket2-fill:before {
    content: "\e95c"
}

.bi-basket3:before {
    content: "\e95d"
}

.bi-basket3-fill:before {
    content: "\e95e"
}

.bi-battery:before {
    content: "\e95f"
}

.bi-battery-charging:before {
    content: "\e960"
}

.bi-battery-full:before {
    content: "\e961"
}

.bi-battery-half:before {
    content: "\e962"
}

.bi-bell:before {
    content: "\e963"
}

.bi-bell-fill:before {
    content: "\e964"
}

.bi-blockquote-left:before {
    content: "\e965"
}

.bi-blockquote-right:before {
    content: "\e966"
}

.bi-book:before {
    content: "\e967"
}

.bi-book-half:before {
    content: "\e968"
}

.bi-bookmark:before {
    content: "\e969"
}

.bi-bookmark-check:before {
    content: "\e96a"
}

.bi-bookmark-dash:before {
    content: "\e96b"
}

.bi-bookmark-fill:before {
    content: "\e96c"
}

.bi-bookmark-plus:before {
    content: "\e96d"
}

.bi-bookmarks:before {
    content: "\e96e"
}

.bi-bookmarks-fill:before {
    content: "\e96f"
}

.bi-bootstrap:before {
    content: "\e970"
}

.bi-bootstrap-fill:before {
    content: "\e971"
}

.bi-bootstrap-reboot:before {
    content: "\e972"
}

.bi-bounding-box:before {
    content: "\e973"
}

.bi-bounding-box-circles:before {
    content: "\e974"
}

.bi-box:before {
    content: "\e975"
}

.bi-box-arrow-down:before {
    content: "\e976"
}

.bi-box-arrow-down-left:before {
    content: "\e977"
}

.bi-box-arrow-down-right:before {
    content: "\e978"
}

.bi-box-arrow-in-down:before {
    content: "\e979"
}

.bi-box-arrow-in-down-left:before {
    content: "\e97a"
}

.bi-box-arrow-in-down-right:before {
    content: "\e97b"
}

.bi-box-arrow-in-left:before {
    content: "\e97c"
}

.bi-box-arrow-in-right:before {
    content: "\e97d"
}

.bi-box-arrow-in-up:before {
    content: "\e97e"
}

.bi-box-arrow-in-up-left:before {
    content: "\e97f"
}

.bi-box-arrow-in-up-right:before {
    content: "\e980"
}

.bi-box-arrow-left:before {
    content: "\e981"
}

.bi-box-arrow-right:before {
    content: "\e982"
}

.bi-box-arrow-up:before {
    content: "\e983"
}

.bi-box-arrow-up-left:before {
    content: "\e984"
}

.bi-box-arrow-up-right:before {
    content: "\e985"
}

.bi-box-seam:before {
    content: "\e986"
}

.bi-braces:before {
    content: "\e987"
}

.bi-briefcase:before {
    content: "\e988"
}

.bi-briefcase-fill:before {
    content: "\e989"
}

.bi-brightness-alt-high:before {
    content: "\e98a"
}

.bi-brightness-alt-high-fill:before {
    content: "\e98b"
}

.bi-brightness-alt-low:before {
    content: "\e98c"
}

.bi-brightness-alt-low-fill:before {
    content: "\e98d"
}

.bi-brightness-high:before {
    content: "\e98e"
}

.bi-brightness-high-fill:before {
    content: "\e98f"
}

.bi-brightness-low:before {
    content: "\e990"
}

.bi-brightness-low-fill:before {
    content: "\e991"
}

.bi-brush:before {
    content: "\e992"
}

.bi-bucket:before {
    content: "\e993"
}

.bi-bucket-fill:before {
    content: "\e994"
}

.bi-building:before {
    content: "\e995"
}

.bi-bullseye:before {
    content: "\e996"
}

.bi-calendar:before {
    content: "\e997"
}

.bi-calendar-check:before {
    content: "\e998"
}

.bi-calendar-check-fill:before {
    content: "\e999"
}

.bi-calendar-date:before {
    content: "\e99a"
}

.bi-calendar-date-fill:before {
    content: "\e99b"
}

.bi-calendar-day:before {
    content: "\e99c"
}

.bi-calendar-day-fill:before {
    content: "\e99d"
}

.bi-calendar-fill:before {
    content: "\e99e"
}

.bi-calendar-minus:before {
    content: "\e99f"
}

.bi-calendar-minus-fill:before {
    content: "\e9a0"
}

.bi-calendar-month:before {
    content: "\e9a1"
}

.bi-calendar-month-fill:before {
    content: "\e9a2"
}

.bi-calendar-plus:before {
    content: "\e9a3"
}

.bi-calendar-plus-fill:before {
    content: "\e9a4"
}

.bi-calendar2:before {
    content: "\e9a5"
}

.bi-calendar2-check:before {
    content: "\e9a6"
}

.bi-calendar2-check-fill:before {
    content: "\e9a7"
}

.bi-calendar2-date:before {
    content: "\e9a8"
}

.bi-calendar2-date-fill:before {
    content: "\e9a9"
}

.bi-calendar2-day:before {
    content: "\e9aa"
}

.bi-calendar2-day-fill:before {
    content: "\e9ab"
}

.bi-calendar2-fill:before {
    content: "\e9ac"
}

.bi-calendar2-minus:before {
    content: "\e9ad"
}

.bi-calendar2-minus-fill:before {
    content: "\e9ae"
}

.bi-calendar2-month:before {
    content: "\e9af"
}

.bi-calendar2-month-fill:before {
    content: "\e9b0"
}

.bi-calendar2-plus:before {
    content: "\e9b1"
}

.bi-calendar2-plus-fill:before {
    content: "\e9b2"
}

.bi-calendar3:before {
    content: "\e9b3"
}

.bi-calendar3-fill:before {
    content: "\e9b4"
}

.bi-calendar4:before {
    content: "\e9b5"
}

.bi-camera:before {
    content: "\e9b6"
}

.bi-camera-video:before {
    content: "\e9b7"
}

.bi-camera-video-fill:before {
    content: "\e9b8"
}

.bi-camera-video-off:before {
    content: "\e9b9"
}

.bi-camera-video-off-fill:before {
    content: "\e9ba"
}

.bi-capslock:before {
    content: "\e9bb"
}

.bi-capslock-fill:before {
    content: "\e9bc"
}

.bi-card-checklist:before {
    content: "\e9bd"
}

.bi-card-heading:before {
    content: "\e9be"
}

.bi-card-image:before {
    content: "\e9bf"
}

.bi-card-list:before {
    content: "\e9c0"
}

.bi-card-text:before {
    content: "\e9c1"
}

.bi-caret-down:before {
    content: "\e9c2"
}

.bi-caret-down-fill:before {
    content: "\e9c3"
}

.bi-caret-down-square:before {
    content: "\e9c4"
}

.bi-caret-down-square-fill:before {
    content: "\e9c5"
}

.bi-caret-left:before {
    content: "\e9c6"
}

.bi-caret-left-fill:before {
    content: "\e9c7"
}

.bi-caret-left-square:before {
    content: "\e9c8"
}

.bi-caret-left-square-fill:before {
    content: "\e9c9"
}

.bi-caret-right:before {
    content: "\e9ca"
}

.bi-caret-right-fill:before {
    content: "\e9cb"
}

.bi-caret-right-square:before {
    content: "\e9cc"
}

.bi-caret-right-square-fill:before {
    content: "\e9cd"
}

.bi-caret-up:before {
    content: "\e9ce"
}

.bi-caret-up-fill:before {
    content: "\e9cf"
}

.bi-caret-up-square:before {
    content: "\e9d0"
}

.bi-caret-up-square-fill:before {
    content: "\e9d1"
}

.bi-cart:before {
    content: "\e9d2"
}

.bi-cart-check:before {
    content: "\e9d3"
}

.bi-cart-dash:before {
    content: "\e9d4"
}

.bi-cart-fill:before {
    content: "\e9d5"
}

.bi-cart-plus:before {
    content: "\e9d6"
}

.bi-cart2:before {
    content: "\e9d7"
}

.bi-cart3:before {
    content: "\e9d8"
}

.bi-cart4:before {
    content: "\e9d9"
}

.bi-chat:before {
    content: "\e9da"
}

.bi-chat-dots:before {
    content: "\e9db"
}

.bi-chat-dots-fill:before {
    content: "\e9dc"
}

.bi-chat-fill:before {
    content: "\e9dd"
}

.bi-chat-quote:before {
    content: "\e9de"
}

.bi-chat-quote-fill:before {
    content: "\e9df"
}

.bi-chat-square:before {
    content: "\e9e0"
}

.bi-chat-square-dots:before {
    content: "\e9e1"
}

.bi-chat-square-dots-fill:before {
    content: "\e9e2"
}

.bi-chat-square-fill:before {
    content: "\e9e3"
}

.bi-chat-square-quote:before {
    content: "\e9e4"
}

.bi-chat-square-quote-fill:before {
    content: "\e9e5"
}

.bi-check:before {
    content: "\e9e6"
}

.bi-check-all:before {
    content: "\e9e7"
}

.bi-check-circle:before {
    content: "\e9e8"
}

.bi-check-circle-fill:before {
    content: "\e9e9"
}

.bi-check-square:before {
    content: "\e9ea"
}

.bi-check-square-fill:before {
    content: "\e9eb"
}

.bi-check2:before {
    content: "\e9ec"
}

.bi-check2-all:before {
    content: "\e9ed"
}

.bi-check2-circle:before {
    content: "\e9ee"
}

.bi-check2-square:before {
    content: "\e9ef"
}

.bi-chevron-bar-contract:before {
    content: "\e9f0"
}

.bi-chevron-bar-down:before {
    content: "\e9f1"
}

.bi-chevron-bar-expand:before {
    content: "\e9f2"
}

.bi-chevron-bar-left:before {
    content: "\e9f3"
}

.bi-chevron-bar-right:before {
    content: "\e9f4"
}

.bi-chevron-bar-up:before {
    content: "\e9f5"
}

.bi-chevron-compact-down:before {
    content: "\e9f6"
}

.bi-chevron-compact-left:before {
    content: "\e9f7"
}

.bi-chevron-compact-right:before {
    content: "\e9f8"
}

.bi-chevron-compact-up:before {
    content: "\e9f9"
}

.bi-chevron-contract:before {
    content: "\e9fa"
}

.bi-chevron-double-down:before {
    content: "\e9fb"
}

.bi-chevron-double-left:before {
    content: "\e9fc"
}

.bi-chevron-double-right:before {
    content: "\e9fd"
}

.bi-chevron-double-up:before {
    content: "\e9fe"
}

.bi-chevron-down:before {
    content: "\e9ff"
}

.bi-chevron-expand:before {
    content: "\ea00"
}

.bi-chevron-left:before {
    content: "\ea01"
}

.bi-chevron-right:before {
    content: "\ea02"
}

.bi-chevron-up:before {
    content: "\ea03"
}

.bi-circle:before {
    content: "\ea04"
}

.bi-circle-fill:before {
    content: "\ea05"
}

.bi-circle-half:before {
    content: "\ea06"
}

.bi-circle-square:before {
    content: "\ea07"
}

.bi-clipboard:before {
    content: "\ea08"
}

.bi-clipboard-data:before {
    content: "\ea09"
}

.bi-clock:before {
    content: "\ea0a"
}

.bi-clock-fill:before {
    content: "\ea0b"
}

.bi-clock-history:before {
    content: "\ea0c"
}

.bi-cloud:before {
    content: "\ea0d"
}

.bi-cloud-download:before {
    content: "\ea0e"
}

.bi-cloud-fill:before {
    content: "\ea0f"
}

.bi-cloud-slash:before {
    content: "\ea10"
}

.bi-cloud-slash-fill:before {
    content: "\ea11"
}

.bi-cloud-upload:before {
    content: "\ea12"
}

.bi-code:before {
    content: "\ea13"
}

.bi-code-slash:before {
    content: "\ea14"
}

.bi-collection:before {
    content: "\ea15"
}

.bi-collection-fill:before {
    content: "\ea16"
}

.bi-collection-play:before {
    content: "\ea17"
}

.bi-collection-play-fill:before {
    content: "\ea18"
}

.bi-columns:before {
    content: "\ea19"
}

.bi-columns-gap:before {
    content: "\ea1a"
}

.bi-command:before {
    content: "\ea1b"
}

.bi-compass:before {
    content: "\ea1c"
}

.bi-cone:before {
    content: "\ea1d"
}

.bi-cone-striped:before {
    content: "\ea1e"
}

.bi-controller:before {
    content: "\ea1f"
}

.bi-credit-card:before {
    content: "\ea20"
}

.bi-crop:before {
    content: "\ea21"
}

.bi-cup:before {
    content: "\ea22"
}

.bi-cursor:before {
    content: "\ea23"
}

.bi-cursor-fill:before {
    content: "\ea24"
}

.bi-cursor-text:before {
    content: "\ea25"
}

.bi-dash:before {
    content: "\ea26"
}

.bi-dash-circle:before {
    content: "\ea27"
}

.bi-dash-circle-fill:before {
    content: "\ea28"
}

.bi-dash-square:before {
    content: "\ea29"
}

.bi-dash-square-fill:before {
    content: "\ea2a"
}

.bi-diamond:before {
    content: "\ea2b"
}

.bi-diamond-fill:before {
    content: "\ea2c"
}

.bi-diamond-half:before {
    content: "\ea2d"
}

.bi-display:before {
    content: "\ea2e"
}

.bi-display-fill:before {
    content: "\ea2f"
}

.bi-door-closed:before {
    content: "\ea30"
}

.bi-door-closed-fill:before {
    content: "\ea31"
}

.bi-dot:before {
    content: "\ea32"
}

.bi-download:before {
    content: "\ea33"
}

.bi-droplet:before {
    content: "\ea34"
}

.bi-droplet-fill:before {
    content: "\ea35"
}

.bi-droplet-half:before {
    content: "\ea36"
}

.bi-egg:before {
    content: "\ea37"
}

.bi-egg-fill:before {
    content: "\ea38"
}

.bi-egg-fried:before {
    content: "\ea39"
}

.bi-eject:before {
    content: "\ea3a"
}

.bi-eject-fill:before {
    content: "\ea3b"
}

.bi-emoji-angry:before {
    content: "\ea3c"
}

.bi-emoji-dizzy:before {
    content: "\ea3d"
}

.bi-emoji-frown:before {
    content: "\ea3e"
}

.bi-emoji-laughing:before {
    content: "\ea3f"
}

.bi-emoji-neutral:before {
    content: "\ea40"
}

.bi-emoji-smile:before {
    content: "\ea41"
}

.bi-emoji-smile-upside-down:before {
    content: "\ea42"
}

.bi-emoji-sunglasses:before {
    content: "\ea43"
}

.bi-envelope:before {
    content: "\ea44"
}

.bi-envelope-fill:before {
    content: "\ea45"
}

.bi-envelope-open:before {
    content: "\ea46"
}

.bi-envelope-open-fill:before {
    content: "\ea47"
}

.bi-exclamation:before {
    content: "\ea48"
}

.bi-exclamation-circle:before {
    content: "\ea49"
}

.bi-exclamation-circle-fill:before {
    content: "\ea4a"
}

.bi-exclamation-diamond:before {
    content: "\ea4b"
}

.bi-exclamation-diamond-fill:before {
    content: "\ea4c"
}

.bi-exclamation-octagon:before {
    content: "\ea4d"
}

.bi-exclamation-octagon-fill:before {
    content: "\ea4e"
}

.bi-exclamation-square:before {
    content: "\ea4f"
}

.bi-exclamation-square-fill:before {
    content: "\ea50"
}

.bi-exclamation-triangle:before {
    content: "\ea51"
}

.bi-exclamation-triangle-fill:before {
    content: "\ea52"
}

.bi-exclude:before {
    content: "\ea53"
}

.bi-eye:before {
    content: "\ea54"
}

.bi-eye-fill:before {
    content: "\ea55"
}

.bi-eye-slash:before {
    content: "\ea56"
}

.bi-eye-slash-fill:before {
    content: "\ea57"
}

.bi-file:before {
    content: "\ea58"
}

.bi-file-arrow-down:before {
    content: "\ea59"
}

.bi-file-arrow-up:before {
    content: "\ea5a"
}

.bi-file-break:before {
    content: "\ea5b"
}

.bi-file-check:before {
    content: "\ea5c"
}

.bi-file-code:before {
    content: "\ea5d"
}

.bi-file-diff:before {
    content: "\ea5e"
}

.bi-file-earmark:before {
    content: "\ea5f"
}

.bi-file-earmark-arrow-down:before {
    content: "\ea60"
}

.bi-file-earmark-arrow-up:before {
    content: "\ea61"
}

.bi-file-earmark-break:before {
    content: "\ea62"
}

.bi-file-earmark-check:before {
    content: "\ea63"
}

.bi-file-earmark-code:before {
    content: "\ea64"
}

.bi-file-earmark-diff:before {
    content: "\ea65"
}

.bi-file-earmark-minus:before {
    content: "\ea66"
}

.bi-file-earmark-plus:before {
    content: "\ea67"
}

.bi-file-earmark-ruled:before {
    content: "\ea68"
}

.bi-file-earmark-spreadsheet:before {
    content: "\ea69"
}

.bi-file-earmark-text:before {
    content: "\ea6a"
}

.bi-file-earmark-zip:before {
    content: "\ea6b"
}

.bi-file-minus:before {
    content: "\ea6c"
}

.bi-file-plus:before {
    content: "\ea6d"
}

.bi-file-post:before {
    content: "\ea6e"
}

.bi-file-richtext:before {
    content: "\ea6f"
}

.bi-file-ruled:before {
    content: "\ea70"
}

.bi-file-spreadsheet:before {
    content: "\ea71"
}

.bi-file-text:before {
    content: "\ea72"
}

.bi-file-zip:before {
    content: "\ea73"
}

.bi-files:before {
    content: "\ea74"
}

.bi-files-alt:before {
    content: "\ea75"
}

.bi-film:before {
    content: "\ea76"
}

.bi-filter:before {
    content: "\ea77"
}

.bi-filter-left:before {
    content: "\ea78"
}

.bi-filter-right:before {
    content: "\ea79"
}

.bi-flag:before {
    content: "\ea7a"
}

.bi-flag-fill:before {
    content: "\ea7b"
}

.bi-folder:before {
    content: "\ea7c"
}

.bi-folder-check:before {
    content: "\ea7d"
}

.bi-folder-fill:before {
    content: "\ea7e"
}

.bi-folder-minus:before {
    content: "\ea7f"
}

.bi-folder-plus:before {
    content: "\ea80"
}

.bi-folder-symlink:before {
    content: "\ea81"
}

.bi-folder-symlink-fill:before {
    content: "\ea82"
}

.bi-fonts:before {
    content: "\ea83"
}

.bi-forward:before {
    content: "\ea84"
}

.bi-forward-fill:before {
    content: "\ea85"
}

.bi-fullscreen:before {
    content: "\ea86"
}

.bi-fullscreen-exit:before {
    content: "\ea87"
}

.bi-funnel:before {
    content: "\ea88"
}

.bi-funnel-fill:before {
    content: "\ea89"
}

.bi-gear:before {
    content: "\ea8a"
}

.bi-gear-fill:before {
    content: "\ea8b"
}

.bi-gear-wide:before {
    content: "\ea8c"
}

.bi-gear-wide-connected:before {
    content: "\ea8d"
}

.bi-gem:before {
    content: "\ea8e"
}

.bi-geo:before {
    content: "\ea8f"
}

.bi-geo-alt:before {
    content: "\ea90"
}

.bi-gift:before {
    content: "\ea91"
}

.bi-gift-fill:before {
    content: "\ea92"
}

.bi-graph-down:before {
    content: "\ea93"
}

.bi-graph-up:before {
    content: "\ea94"
}

.bi-grid:before {
    content: "\ea95"
}

.bi-grid-1x2:before {
    content: "\ea96"
}

.bi-grid-1x2-fill:before {
    content: "\ea97"
}

.bi-grid-3x2:before {
    content: "\ea98"
}

.bi-grid-3x2-gap:before {
    content: "\ea99"
}

.bi-grid-3x2-gap-fill:before {
    content: "\ea9a"
}

.bi-grid-3x3:before {
    content: "\ea9b"
}

.bi-grid-3x3-gap:before {
    content: "\ea9c"
}

.bi-grid-3x3-gap-fill:before {
    content: "\ea9d"
}

.bi-grid-fill:before {
    content: "\ea9e"
}

.bi-grip-horizontal:before {
    content: "\ea9f"
}

.bi-grip-vertical:before {
    content: "\eaa0"
}

.bi-hammer:before {
    content: "\eaa1"
}

.bi-hand-index:before {
    content: "\eaa2"
}

.bi-hand-index-thumb:before {
    content: "\eaa3"
}

.bi-hand-thumbs-down:before {
    content: "\eaa4"
}

.bi-hand-thumbs-up:before {
    content: "\eaa5"
}

.bi-handbag:before {
    content: "\eaa6"
}

.bi-handbag-fill:before {
    content: "\eaa7"
}

.bi-hash:before {
    content: "\eaa8"
}

.bi-headphones:before {
    content: "\eaa9"
}

.bi-heart:before {
    content: "\eaaa"
}

.bi-heart-fill:before {
    content: "\eaab"
}

.bi-heart-half:before {
    content: "\eaac"
}

.bi-hexagon:before {
    content: "\eaad"
}

.bi-hexagon-fill:before {
    content: "\eaae"
}

.bi-hexagon-half:before {
    content: "\eaaf"
}

.bi-house:before {
    content: "\eab0"
}

.bi-house-door:before {
    content: "\eab1"
}

.bi-house-door-fill:before {
    content: "\eab2"
}

.bi-house-fill:before {
    content: "\eab3"
}

.bi-hr:before {
    content: "\eab4"
}

.bi-image:before {
    content: "\eab5"
}

.bi-image-alt:before {
    content: "\eab6"
}

.bi-image-fill:before {
    content: "\eab7"
}

.bi-images:before {
    content: "\eab8"
}

.bi-inbox:before {
    content: "\eab9"
}

.bi-inbox-fill:before {
    content: "\eaba"
}

.bi-inboxes:before {
    content: "\eabb"
}

.bi-inboxes-fill:before {
    content: "\eabc"
}

.bi-info:before {
    content: "\eabd"
}

.bi-info-circle:before {
    content: "\eabe"
}

.bi-info-circle-fill:before {
    content: "\eabf"
}

.bi-info-square:before {
    content: "\eac0"
}

.bi-info-square-fill:before {
    content: "\eac1"
}

.bi-intersect:before {
    content: "\eac2"
}

.bi-justify:before {
    content: "\eac3"
}

.bi-justify-left:before {
    content: "\eac4"
}

.bi-justify-right:before {
    content: "\eac5"
}

.bi-kanban:before {
    content: "\eac6"
}

.bi-kanban-fill:before {
    content: "\eac7"
}

.bi-laptop:before {
    content: "\eac8"
}

.bi-layers:before {
    content: "\eac9"
}

.bi-layers-fill:before {
    content: "\eaca"
}

.bi-layers-half:before {
    content: "\eacb"
}

.bi-layout-sidebar:before {
    content: "\eacc"
}

.bi-layout-sidebar-inset:before {
    content: "\eacd"
}

.bi-layout-sidebar-inset-reverse:before {
    content: "\eace"
}

.bi-layout-sidebar-reverse:before {
    content: "\eacf"
}

.bi-layout-split:before {
    content: "\ead0"
}

.bi-layout-text-sidebar:before {
    content: "\ead1"
}

.bi-layout-text-sidebar-reverse:before {
    content: "\ead2"
}

.bi-layout-text-window:before {
    content: "\ead3"
}

.bi-layout-text-window-reverse:before {
    content: "\ead4"
}

.bi-layout-three-columns:before {
    content: "\ead5"
}

.bi-layout-wtf:before {
    content: "\ead6"
}

.bi-life-preserver:before {
    content: "\ead7"
}

.bi-lightning:before {
    content: "\ead8"
}

.bi-lightning-fill:before {
    content: "\ead9"
}

.bi-link:before {
    content: "\eada"
}

.bi-link-45deg:before {
    content: "\eadb"
}

.bi-list:before {
    content: "\eadc"
}

.bi-list-check:before {
    content: "\eadd"
}

.bi-list-nested:before {
    content: "\eade"
}

.bi-list-ol:before {
    content: "\eadf"
}

.bi-list-task:before {
    content: "\eae0"
}

.bi-list-ul:before {
    content: "\eae1"
}

.bi-lock:before {
    content: "\eae2"
}

.bi-lock-fill:before {
    content: "\eae3"
}

.bi-map:before {
    content: "\eae4"
}

.bi-mic:before {
    content: "\eae5"
}

.bi-mic-fill:before {
    content: "\eae6"
}

.bi-mic-mute:before {
    content: "\eae7"
}

.bi-mic-mute-fill:before {
    content: "\eae8"
}

.bi-minecart:before {
    content: "\eae9"
}

.bi-minecart-loaded:before {
    content: "\eaea"
}

.bi-moon:before {
    content: "\eaeb"
}

.bi-music-note:before {
    content: "\eaec"
}

.bi-music-note-beamed:before {
    content: "\eaed"
}

.bi-music-note-list:before {
    content: "\eaee"
}

.bi-music-player:before {
    content: "\eaef"
}

.bi-music-player-fill:before {
    content: "\eaf0"
}

.bi-newspaper:before {
    content: "\eaf1"
}

.bi-octagon:before {
    content: "\eaf2"
}

.bi-octagon-fill:before {
    content: "\eaf3"
}

.bi-octagon-half:before {
    content: "\eaf4"
}

.bi-option:before {
    content: "\eaf5"
}

.bi-outlet:before {
    content: "\eaf6"
}

.bi-paperclip:before {
    content: "\eaf7"
}

.bi-pause:before {
    content: "\eaf8"
}

.bi-pause-fill:before {
    content: "\eaf9"
}

.bi-pen:before {
    content: "\eafa"
}

.bi-pencil:before {
    content: "\eafb"
}

.bi-pencil-square:before {
    content: "\eafc"
}

.bi-pentagon:before {
    content: "\eafd"
}

.bi-pentagon-fill:before {
    content: "\eafe"
}

.bi-pentagon-half:before {
    content: "\eaff"
}

.bi-people:before {
    content: "\eb00"
}

.bi-people-fill:before {
    content: "\eb01"
}

.bi-person:before {
    content: "\eb02"
}

.bi-person-bounding-box:before {
    content: "\eb03"
}

.bi-person-check:before {
    content: "\eb04"
}

.bi-person-check-fill:before {
    content: "\eb05"
}

.bi-person-circle:before {
    content: "\eb06"
}

.bi-person-dash:before {
    content: "\eb07"
}

.bi-person-dash-fill:before {
    content: "\eb08"
}

.bi-person-fill:before {
    content: "\eb09"
}

.bi-person-lines-fill:before {
    content: "\eb0a"
}

.bi-person-plus:before {
    content: "\eb0b"
}

.bi-person-plus-fill:before {
    content: "\eb0c"
}

.bi-person-square:before {
    content: "\eb0d"
}

.bi-phone:before {
    content: "\eb0e"
}

.bi-phone-landscape:before {
    content: "\eb0f"
}

.bi-pie-chart:before {
    content: "\eb10"
}

.bi-pie-chart-fill:before {
    content: "\eb11"
}

.bi-pip:before {
    content: "\eb12"
}

.bi-pip-fill:before {
    content: "\eb13"
}

.bi-play:before {
    content: "\eb14"
}

.bi-play-fill:before {
    content: "\eb15"
}

.bi-plug:before {
    content: "\eb16"
}

.bi-plus:before {
    content: "\eb17"
}

.bi-plus-circle:before {
    content: "\eb18"
}

.bi-plus-circle-fill:before {
    content: "\eb19"
}

.bi-plus-square:before {
    content: "\eb1a"
}

.bi-plus-square-fill:before {
    content: "\eb1b"
}

.bi-power:before {
    content: "\eb1c"
}

.bi-puzzle:before {
    content: "\eb1d"
}

.bi-puzzle-fill:before {
    content: "\eb1e"
}

.bi-question:before {
    content: "\eb1f"
}

.bi-question-circle:before {
    content: "\eb20"
}

.bi-question-circle-fill:before {
    content: "\eb21"
}

.bi-question-diamond:before {
    content: "\eb22"
}

.bi-question-diamond-fill:before {
    content: "\eb23"
}

.bi-question-octagon:before {
    content: "\eb24"
}

.bi-question-octagon-fill:before {
    content: "\eb25"
}

.bi-question-square:before {
    content: "\eb26"
}

.bi-question-square-fill:before {
    content: "\eb27"
}

.bi-receipt:before {
    content: "\eb28"
}

.bi-receipt-cutoff:before {
    content: "\eb29"
}

.bi-reply:before {
    content: "\eb2a"
}

.bi-reply-all:before {
    content: "\eb2b"
}

.bi-reply-all-fill:before {
    content: "\eb2c"
}

.bi-reply-fill:before {
    content: "\eb2d"
}

.bi-screwdriver:before {
    content: "\eb2e"
}

.bi-search:before {
    content: "\eb2f"
}

.bi-server:before {
    content: "\eb30"
}

.bi-shield:before {
    content: "\eb31"
}

.bi-shield-fill:before {
    content: "\eb32"
}

.bi-shield-lock:before {
    content: "\eb33"
}

.bi-shield-lock-fill:before {
    content: "\eb34"
}

.bi-shield-shaded:before {
    content: "\eb35"
}

.bi-shield-slash:before {
    content: "\eb36"
}

.bi-shield-slash-fill:before {
    content: "\eb37"
}

.bi-shift:before {
    content: "\eb38"
}

.bi-shift-fill:before {
    content: "\eb39"
}

.bi-shop:before {
    content: "\eb3a"
}

.bi-shop-window:before {
    content: "\eb3b"
}

.bi-shuffle:before {
    content: "\eb3c"
}

.bi-skip-backward:before {
    content: "\eb3d"
}

.bi-skip-backward-fill:before {
    content: "\eb3e"
}

.bi-skip-end:before {
    content: "\eb3f"
}

.bi-skip-end-fill:before {
    content: "\eb40"
}

.bi-skip-forward:before {
    content: "\eb41"
}

.bi-skip-forward-fill:before {
    content: "\eb42"
}

.bi-skip-start:before {
    content: "\eb43"
}

.bi-skip-start-fill:before {
    content: "\eb44"
}

.bi-slash:before {
    content: "\eb45"
}

.bi-slash-circle:before {
    content: "\eb46"
}

.bi-slash-circle-fill:before {
    content: "\eb47"
}

.bi-slash-square:before {
    content: "\eb48"
}

.bi-slash-square-fill:before {
    content: "\eb49"
}

.bi-sliders:before {
    content: "\eb4a"
}

.bi-soundwave:before {
    content: "\eb4b"
}

.bi-speaker:before {
    content: "\eb4c"
}

.bi-square:before {
    content: "\eb4d"
}

.bi-square-fill:before {
    content: "\eb4e"
}

.bi-square-half:before {
    content: "\eb4f"
}

.bi-star:before {
    content: "\eb50"
}

.bi-star-fill:before {
    content: "\eb51"
}

.bi-star-half:before {
    content: "\eb52"
}

.bi-stop:before {
    content: "\eb53"
}

.bi-stop-fill:before {
    content: "\eb54"
}

.bi-stopwatch:before {
    content: "\eb55"
}

.bi-stopwatch-fill:before {
    content: "\eb56"
}

.bi-subtract:before {
    content: "\eb57"
}

.bi-sun:before {
    content: "\eb58"
}

.bi-table:before {
    content: "\eb59"
}

.bi-tablet:before {
    content: "\eb5a"
}

.bi-tablet-landscape:before {
    content: "\eb5b"
}

.bi-tag:before {
    content: "\eb5c"
}

.bi-tag-fill:before {
    content: "\eb5d"
}

.bi-terminal:before {
    content: "\eb5e"
}

.bi-terminal-fill:before {
    content: "\eb5f"
}

.bi-text-center:before {
    content: "\eb60"
}

.bi-text-indent-left:before {
    content: "\eb61"
}

.bi-text-indent-right:before {
    content: "\eb62"
}

.bi-text-left:before {
    content: "\eb63"
}

.bi-text-right:before {
    content: "\eb64"
}

.bi-textarea:before {
    content: "\eb65"
}

.bi-textarea-t:before {
    content: "\eb66"
}

.bi-three-dots:before {
    content: "\eb67"
}

.bi-three-dots-vertical:before {
    content: "\eb68"
}

.bi-toggle-off:before {
    content: "\eb69"
}

.bi-toggle-on:before {
    content: "\eb6a"
}

.bi-toggles:before {
    content: "\eb6b"
}

.bi-tools:before {
    content: "\eb6c"
}

.bi-trash:before {
    content: "\eb6d"
}

.bi-trash-fill:before {
    content: "\eb6e"
}

.bi-trash2:before {
    content: "\eb6f"
}

.bi-trash2-fill:before {
    content: "\eb70"
}

.bi-triangle:before {
    content: "\eb71"
}

.bi-triangle-fill:before {
    content: "\eb72"
}

.bi-triangle-half:before {
    content: "\eb73"
}

.bi-trophy:before {
    content: "\eb74"
}

.bi-truck:before {
    content: "\eb75"
}

.bi-truck-flatbed:before {
    content: "\eb76"
}

.bi-tv:before {
    content: "\eb77"
}

.bi-tv-fill:before {
    content: "\eb78"
}

.bi-type:before {
    content: "\eb79"
}

.bi-type-bold:before {
    content: "\eb7a"
}

.bi-type-h1:before {
    content: "\eb7b"
}

.bi-type-h2:before {
    content: "\eb7c"
}

.bi-type-h3:before {
    content: "\eb7d"
}

.bi-type-italic:before {
    content: "\eb7e"
}

.bi-type-strikethrough:before {
    content: "\eb7f"
}

.bi-type-underline:before {
    content: "\eb80"
}

.bi-union:before {
    content: "\eb81"
}

.bi-unlock:before {
    content: "\eb82"
}

.bi-unlock-fill:before {
    content: "\eb83"
}

.bi-upc:before {
    content: "\eb84"
}

.bi-upc-scan:before {
    content: "\eb85"
}

.bi-upload:before {
    content: "\eb86"
}

.bi-view-list:before {
    content: "\eb87"
}

.bi-view-stacked:before {
    content: "\eb88"
}

.bi-volume-down:before {
    content: "\eb89"
}

.bi-volume-down-fill:before {
    content: "\eb8a"
}

.bi-volume-mute:before {
    content: "\eb8b"
}

.bi-volume-mute-fill:before {
    content: "\eb8c"
}

.bi-volume-off:before {
    content: "\eb8d"
}

.bi-volume-off-fill:before {
    content: "\eb8e"
}

.bi-volume-up:before {
    content: "\eb8f"
}

.bi-volume-up-fill:before {
    content: "\eb90"
}

.bi-vr:before {
    content: "\eb91"
}

.bi-wallet:before {
    content: "\eb92"
}

.bi-wallet2:before {
    content: "\eb93"
}

.bi-watch:before {
    content: "\eb94"
}

.bi-wifi:before {
    content: "\eb95"
}

.bi-window:before {
    content: "\eb96"
}

.bi-wrench:before {
    content: "\eb97"
}

.bi-x:before {
    content: "\eb98"
}

.bi-x-circle:before {
    content: "\eb99"
}

.bi-x-circle-fill:before {
    content: "\eb9a"
}

.bi-x-diamond:before {
    content: "\eb9b"
}

.bi-x-diamond-fill:before {
    content: "\eb9c"
}

.bi-x-octagon:before {
    content: "\eb9d"
}

.bi-x-octagon-fill:before {
    content: "\eb9e"
}

.bi-x-square:before {
    content: "\eb9f"
}

.bi-x-square-fill:before {
    content: "\eba0"
}

@media print {
    *,*::before,*::after {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    pre,blockquote {
        border: 0 solid #adb5bd;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,img {
        page-break-inside: avoid
    }

    p,h2,h3 {
        orphans: 3;
        widows: 3
    }

    h2,h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 0 solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,.table th {
        background-color: #fff !important
    }

    .table-bordered th,.table-bordered td {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

    .table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody {
        border-color: #dee2e6
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6
    }
}

.stellarnav {
    position: relative;
    width: 100%;
    z-index: 99
}

.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center
}

.stellarnav ul ul {
    top: auto;
    width: 220px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #ddd
}

.stellarnav ul ul ul {
    top: 0;
    left: 220px
}

.stellarnav li {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: normal;
    vertical-align: middle
}

.stellarnav li a {
    padding: 15px;
    display: block;
    text-decoration: none
}

.stellarnav li.has-sub>a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FFF;
    display: inline-block
}

.stellarnav li li {
    display: block
}

.stellarnav li li.has-sub>a:after {
    margin-left: 10px;
    float: right;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #FFF;
    position: relative;
    top: 4px
}

.stellarnav>ul>li {
    display: inline-block
}

.stellarnav>ul>li>a {
    padding: 20px 40px
}

.stellarnav>ul>li:hover>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 0
}

.stellarnav .menu-toggle {
    display: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.stellarnav .menu-toggle span.bars {
    display: inline-block;
    margin-right: 7px;
    position: relative;
    top: 3px
}

.stellarnav .menu-toggle span.bars span {
    display: block;
    width: 15px;
    height: 2px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: #777;
    margin: 0 0 3px
}

.stellarnav .close-menu {
    display: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.stellarnav .dd-toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    z-index: 9999;
    border: 0
}

.stellarnav a.dd-toggle .icon-plus {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 12px;
    height: 100%;
    position: relative;
    vertical-align: middle;
    display: inline-block
}

.stellarnav a.dd-toggle .icon-plus:before {
    content: '';
    display: block;
    width: 12px;
    height: 0px;
    border-bottom: solid 3px #777;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s
}

.stellarnav a.dd-toggle .icon-plus:after {
    content: '';
    display: block;
    width: 12px;
    height: 0px;
    top: 50%;
    border-bottom: solid 3px #777;
    position: absolute
}

.stellarnav li.open>a.dd-toggle .icon-plus {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.stellarnav .icon-close {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block
}

.stellarnav .icon-close:before {
    content: '';
    display: block;
    width: 12px;
    height: 0px;
    border-bottom: solid 3px #777;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.stellarnav .icon-close:after {
    content: '';
    display: block;
    width: 12px;
    height: 0px;
    top: 50%;
    border-bottom: solid 3px #777;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.stellarnav.mobile {
    position: static
}

.stellarnav.mobile>ul {
    border-top: 1px solid rgba(255,255,255,0.15)
}

.stellarnav.mobile>ul>li {
    display: block
}

.stellarnav.mobile>ul>li>a.dd-toggle {
    padding: 0
}

.stellarnav.mobile>ul>li>a {
    padding: 15px
}

.stellarnav.mobile ul {
    position: relative;
    display: none;
    text-align: left;
    background: #ddd
}

.stellarnav.mobile ul ul {
    position: relative;
    opacity: 1;
    visibility: visible;
    width: auto;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.stellarnav.mobile ul ul ul {
    left: auto;
    top: auto
}

.stellarnav.mobile li a {
    border-bottom: 1px solid rgba(255,255,255,0.15)
}

.stellarnav.mobile li a.dd-toggle {
    border: 0
}

.stellarnav.mobile li li.has-sub>a:after {
    display: none
}

.stellarnav.mobile .menu-toggle {
    display: inline-block
}

.stellarnav.mobile .dd-toggle {
    display: inline-block
}

.stellarnav.mobile .close-menu {
    display: inline-block
}

.stellarnav.mobile li.has-sub>a:after {
    display: none
}

.stellarnav.mobile.active {
    padding-bottom: 0
}

.stellarnav.mobile.active>ul {
    display: block
}

/*!
 * Magnific Popup CSS
 */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .7;
    filter: alpha(opacity=70)
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #CCC
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close,button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: 'Lato', sans-serif;
}

.mfp-close:hover,.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:hover,.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent
}

.mfp-arrow:after,.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before,.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after,.mfp-arrow-left .mfp-a {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before,.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after,.mfp-arrow-right .mfp-a {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before,.mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.6);
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
    background: #0b0b0b
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.6);
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
    background: #444
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left:0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0,0,0,0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0,0,0,0.6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform:scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -o-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;
    -o-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
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block
}

.slick-track:after,.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir="rtl"] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.mCustomScrollbar {
    -ms-touch-action: pinch-zoom;
    touch-action: pinch-zoom
}

.mCustomScrollbar.mCS_no_scrollbar,.mCustomScrollbar.mCS_touch_action {
    -ms-touch-action: auto;
    touch-action: auto
}

.mCustomScrollBox {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr
}

.mCSB_container {
    overflow: hidden;
    width: auto;
    height: auto
}

.mCSB_scrollTools {
    position: absolute;
    width: .7rem;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0
}

.mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: .7rem;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 2rem;
    border-radius: 2rem;
    background-color: #E5E5E5
}

.mCSB_scrollTools .mCSB_dragger {
    cursor: pointer;
    width: 100%;
    height: 10rem;
    z-index: 1
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: .7rem;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 2rem;
    border-radius: 2rem;
    text-align: center;
    background-color: #c8c8c8
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #c8c8c8
}

.jcf-select {
    display: inline-block;
    vertical-align: top;
    position: relative;
    border: 1px solid #707070;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #fff;
    padding: .8rem 2.7rem .8rem 1rem;
    min-width: 25.5rem
}

.jcf-select select {
    z-index: 1;
    left: 0;
    top: 0
}

.jcf-select .jcf-select-opener {
    position: absolute;
    text-align: center;
    background: transparent;
    width: 40px;
    bottom: 0;
    right: 0;
    top: 0
}

.jcf-select .jcf-select-opener:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 8px solid #4a4a4a;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.jcf-select.jcf-drop-active .jcf-select-opener:before {
    border-top: 0;
    border-bottom: 8px solid #4a4a4a;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.jcf-select .jcf-select-text {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #4a4a4a;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

body>.jcf-select-drop {
    position: absolute;
    margin: -1px 0 0;
    z-index: 9999
}

.jcf-select .jcf-select-drop {
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: -1px;
    right: -1px
}

.jcf-select .jcf-drop-flipped {
    bottom: 100%;
    top: auto
}

.jcf-select-drop .jcf-select-drop-content {
    border: 1px solid #707070;
    overflow: hidden
}

.jcf-list-box {
    overflow: hidden;
    display: inline-block;
    border: 1px solid #b8c3c9;
    min-width: 200px;
    margin: 0 15px
}

.jcf-list,.jcf-list .jcf-list-content {
    vertical-align: top;
    display: inline-block;
    width: 100%
}

.jcf-list {
    position: relative;
    background: #fff;
    line-height: 14px;
    font-size: 12px;
    padding: .7rem 0
}

.jcf-list .jcf-list-content {
    overflow: auto
}

.jcf-list ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.jcf-list .jcf-option,.jcf-list ul li {
    overflow: hidden;
    display: block
}

.jcf-list .jcf-overflow {
    overflow: auto
}

.jcf-list .jcf-option {
    position: relative;
    white-space: nowrap;
    cursor: default;
    padding: 10px;
    color: #4a4a4a;
    font-size: 14px
}

.jcf-list .jcf-disabled {
    background: #fff !important;
    color: #aaa !important
}

.jcf-list-box .jcf-selected,.jcf-select-drop .jcf-hover {
    background: #e6e6e6;
    color: #000
}

.jcf-list .jcf-optgroup-caption {
    white-space: nowrap;
    font-weight: 700;
    display: block;
    padding: 5px 9px;
    cursor: default;
    color: #000
}

.jcf-list .jcf-optgroup .jcf-option {
    padding-left: 30px
}

.ui-slider {
    position: relative;
    text-align: left
}

.ui-slider:before {
    content: "";
    width: -webkit-calc(100% + 1rem);
    width: calc(100% + 1rem);
    height: .2rem;
    background: #c0c1c1;
    position: absolute;
    top: 0;
    left: 0
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.4rem;
    height: 1.4rem;
    -ms-touch-action: none;
    touch-action: none;
    background-color: #D54B40;
    background-repeat: no-repeat;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range {
    -webkit-filter: inherit;
    filter: inherit
}

.ui-slider-horizontal {
    height: .2rem
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.6rem;
    margin-left: 0;
    outline: none
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.ui-widget-header {
    background: #8D8E8E
}



.has-icon:after,.has-icon:before,[class^="icon-"],[class*=" icon-"],.slick-prev:before,.slick-next:before {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-close:before {
    content: "\e900"
}

.icon-20:before {
    content: "\e901"
}

.icon-arrow-left:before {
    content: "\e902"
}

.icon-arrow-right:before {
    content: "\e903"
}

.icon-check:before {
    content: "\e904"
}

.icon-factory:before {
    content: "\e905"
}

.icon-map:before {
    content: "\e906"
}

.icon-folder:before {
    content: "\e907"
}

.icon-user:before {
    content: "\e908"
}



.icon-video:before {
    content: "\e90a"
}



 

.brand-facebook:before {
    content: "\e900";
    color: #1877f2
}

.brand-googlehangouts:before {
    content: "\e901";
    color: #0c9d58
}

.brand-instagram:before {
    content: "\e902";
    color: #e4405f
}

.brand-linkedin:before {
    content: "\e903";
    color: #0077b5
}

.brand-messenger:before {
    content: "\e904";
    color: #00b2ff
}

.brand-odnoklassniki:before {
    content: "\e905";
    color: #f4731c
}

.brand-skype:before {
    content: "\e906";
    color: #00aff0
}

.brand-telegram:before {
    content: "\e907";
    color: #2ca5e0
}

.brand-twitter:before {
    content: "\e908";
    color: #1da1f2
}

.brand-viber:before {
    content: "\e909";
    color: #665cac
}

.brand-vk:before {
    content: "\e90a";
    color: #4680c2
}

.brand-whatsapp:before {
    content: "\e90b";
    color: #25d366
}

.brand-youtube:before {
    content: "\e90c";
    color: #f00
}

::-moz-selection {
    background: #D54B40;
    text-shadow: none;
    color: #fff
}

::selection {
    background: #D54B40;
    text-shadow: none;
    color: #fff
}

.browserupgrade {
    background: #DE7067;
    color: #23303B;
    padding: 1.5rem;
    margin-bottom: 0;
    text-align: center
}

.outdated {
    position: fixed;
    top: 30%;
    left: 50%;
    margin-left: -22.5rem;
    z-index: 9999
}

.outdated:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7)
}

* {
    -webkit-locale: auto;
    white-space: normal
}

html {
    font-size: 62.5%
}

html.is-fullscreen,html.is-fullscreen body {
    height: 100%
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #fff;
    background-color: #fff;
        
   
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    -webkit-font-smoothing: antialiased !important
}

a,a:before,a:after,button,button:before,button:after {
    color: #c1c1c1
}

a,button {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-tap-highlight-color: rgba(255,255,255,0)
}

a:before,a:after,button:before,button:after {
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

a:focus,button:focus {
    color: #D54B40;
    text-decoration: none
}

a:focus:not(:focus-visible),button:focus:not(:focus-visible) {
    outline: none
}

a[disabled=""],a[disabled=""]:hover,a[disabled="disabled"],a[disabled="disabled"]:hover,a[disabled=""]:focus,a[disabled="disabled"]:focus,button[disabled=""],button[disabled=""]:hover,button[disabled="disabled"],button[disabled="disabled"]:hover,button[disabled=""]:focus,button[disabled="disabled"]:focus {
    color: #fff !important;
    background-color: #A6A5A5 !important;
    cursor: not-allowed
}

a {
    text-decoration: none
}

a:hover {
    color: #A6A5A5;
    text-decoration: none
}

hr {
    clear: both;
    border-color: #4d4d4d
}

.container-fluid,.container-sm,.container-md,.container-lg,.container-xl {
    max-width: 192rem
}

.flex-fullscreen {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.flex-fullscreen .c-stretch {
    width: -webkit-calc(100% - 6rem);
    width: calc(100% - 6rem);
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.flex-fullscreen .c-stretch:after {
    content: "\00a0";
    display: block;
    height: 0rem;
    visibility: hidden
}

.flex-fullscreen .header,.flex-fullscreen .footer {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

.is-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    z-index: 100
}

.is-sticky:before,.is-sticky:after {
    content: '';
    display: table
}

.is-sticky-clone {
    display: none !important
}

.no-csspositionsticky .sticky {
    position: relative !important
}

@media only screen and (min-width: 992px) {
    .is-sticky-clone {
        display:block !important
    }
}

.no-flexbox.no-flexwrap .flex .flex-stretch {
    min-height: 100%
}

strong,thead th {
    font-family: 'Lato', sans-serif;
    font-weight: 900
}

i,em {
    font-family: 'Lato', sans-serif;
    font-style: italic
}

strong>em,em>strong {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-style: italic
}

dt {
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}

iframe {
    border: 0
}

blockquote {
    border-left: 0.3rem solid #D54B40;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    padding-left: 2.5rem;
    margin: 2rem 0
}

button {
    outline: none
}

button:hover,button:focus {
    outline: none
}

.entry-content {
    position: relative;
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    line-height: 2.1rem;
    color: #000;
    margin-top: 2rem;
    overflow: hidden
}

@media only screen and (min-width: 768px) {
    .entry-content {
        font-size:1.6rem;
        line-height: 2.1rem
    }
}

.entry-content p {
    margin-bottom: 1.5rem
}

.entry-content p:last-of-type {
    margin-bottom: 0
}

.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6 {
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.27
}

.entry-content h1 {
    font-size: 3rem
}

.entry-content h2 {
    font-size: 2.6rem
}

.entry-content h3 {
    font-size: 2.2rem
}

.entry-content h4 {
    font-size: 2rem
}

.entry-content h5 {
    font-size: 1.8rem
}

.entry-content h6 {
    font-size: 1.6rem
}

.entry-content a {
    color: #ccac5f;
}

.entry-content a:hover {
    color: #4d4d4d
}

.entry-content iframe {
    margin: 1.5rem 0
}

.entry-content ol,.entry-content ul {
    margin-left: 0;
    padding-left: 1.8rem;
    margin-bottom: 1.5rem
}

.entry-content ol li,.entry-content ul li {
    margin-bottom: 0;
    position: relative
}

.entry-content ol {
    padding-left: 0;
    list-style: none;
    counter-reset: li;
    list-style-position: inside
}

.entry-content ol li {
    counter-increment: li
}

.entry-content ol li:before {
    content: counter(li);
    color: #c1c1c1;
    display: inline-block;
    width: 1.5rem;
    margin-right: 1.2rem;
    text-align: right;
    direction: rtl
}

.entry-content ul {
    list-style: none
}

.entry-content ul li:before {
    content: "\2022";
    color: #c1c1c1;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    display: inline-block;
    width: 1.6rem;
    margin-left: -1.6rem
}

.entry-content .media-gallery {
    padding: 0;
    margin-left: -1.5rem
}

.entry-content .media-gallery li {
    padding: 0
}

.entry-content table {
    width: 100%;
    margin: 2.5rem 0
}

.entry-content td,.entry-content thead th {
    border: 0.1rem solid #707070;
}

.entry-content img {
    max-width: 100%
}

@media only screen and (max-width: 991px) {
    .entry-content img {
        display:block;
        float: none !important;
        margin-left: auto;
        margin-right: auto
    }
}

@media only screen and (min-width: 992px) {
    .entry-content img {
        display:inline-block
    }

    .entry-content img.alignleft,.entry-content img.alignright,.entry-content img[style*="left"],.entry-content img[style*="right"] {
        float: left;
        margin-top: .6rem;
        margin-right: 2rem
    }

    .entry-content img.alignright,.entry-content img[style*="right"] {
        float: right;
        margin-right: 0;
        margin-left: 2rem
    }
}

.entry-content:after {
    content: "";
    display: block;
    clear: both
}

.entry-content_light {
    color: #fff
}

.entry-content_light h1,.entry-content_light h2,.entry-content_light h3,.entry-content_light h4,.entry-content_light h5,.entry-content_light h6 {
    color: #fff
}

.section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    overflow: hidden
}

.section-heading-text {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 2.1rem;
    line-height: 2.5rem;
    color: #000;
    text-transform: uppercase;
    padding: 0 2rem
}

.section-heading-text span {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1
}

.section-heading-text:before,.section-heading-text:after {
    content: "";
    position: absolute;
    bottom: 1.2rem;
    width: 200rem;
    height: .1rem;
    background-color: #dc3545;
}

.section-heading-text:before {
    right: 100%
}

.section-heading-text:after {
    left: 100%
}

@media only screen and (min-width: 480px) {
    .section-heading-text {
        font-size:2.8rem;
        line-height: 3.2rem
    }

    .section-heading-text span {
        font-size: 2.1rem
    }
}

.section-heading_alt {
    text-align: left;
    margin-bottom: 2.1rem
}

.section-heading_alt .section-heading-text {
    display: block;
    font-size: 2.4rem;
    line-height: 3rem;
    text-transform: none;
    border-bottom: .1rem solid #707070;
    padding: 0;
    padding-bottom: 1.1rem
}

.section-heading_alt .section-heading-text:before,.section-heading_alt .section-heading-text:after {
    display: none
}

.page-title {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
    color: #000;
   
}


@media only screen and (min-width: 576px) {
    .page-title {
        font-size:2.5rem;
        letter-spacing: 2px;
        line-height: 4rem
    }
}

.lh1 {
    line-height: 1 !important
}

.lh1_1 {
    line-height: 1.1 !important
}

.lh1_2 {
    line-height: 1.2 !important
}

.lh1_3 {
    line-height: 1.3 !important
}

.lh1_4 {
    line-height: 1.4 !important
}

.lh1_5 {
    line-height: 1.5 !important
}

.lh1_6 {
    line-height: 1.6 !important
}

.img-responsive {
    margin: 0 auto
}

.btn-disabled {
    opacity: .3
}

.is-checked {
    font-family: 'Lato', sans-serif;
}

.full-height {
    height: 100%
}

.fullwidth-media {
    display: block;
    width: 100%
}

.nofloat {
    overflow: hidden;
    zoom:1}

.iframe-full {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0
}

.iframe-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.iframe-block iframe {
    display: block;
    width: 100%
}

.text-underline {
    text-decoration: underline !important
}

.text-underline:hover {
    text-decoration: none !important
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 2.5rem;
    height: 0
}

.video-container iframe,.video-container object,.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.text-primary,.text-primary a {
    color: #23303B !important
}

.text-accent,.text-accent a {
    color: #D54B40 !important
}

.text-accent2,.text-accent2 a {
    color: #DE7067 !important
}

.text-accent3,.text-accent3 a {
    color: #A6A5A5 !important
}

.text-accent4,.text-accent4 a {
    color: #444547 !important
}

.text-muted,.text-muted a {
    color: #ABABAB !important
}

.text-light,.text-light a {
    color: #fff !important
}

.text-dark,.text-dark a {
    color: #343a40 !important
}

.text-success,.text-success a {
    color: #28a849 !important
}

.text-error,.text-error a {
    color: #d92622 !important
}

.bg-primary {
    background-color: #D54B40
}

.bg-accent {
    background-color: #D54B40 !important
}

.bg-muted {
    background-color: #F6F6F6 !important;
    border-top: .1rem solid #CECECE;
    border-bottom: .1rem solid #CECECE
}

.bg-muted-light {
    background-color: #F6F6F6 !important
}

.bg-light {
    color: #343a40;
    background-color: #f8f9fa !important
}

.bg-dark {
    background-color: #343a40 !important
}

.bg-success {
    background-color: #28a849 !important
}

.bg-error {
    background-color: #d92622 !important
}

.bg-theme {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.bg-theme_position-tr,.bg-theme_position-tl,.bg-theme_position-br,.bg-theme_position-bl {
    background-size: auto
}

.bg-theme_position-tr {
    background-position: top right
}

.bg-theme_position-tl {
    background-position: top left
}

.bg-theme_position-br {
    background-position: bottom right
}

.bg-theme_position-bl {
    background-position: bottom left
}

.bg-theme_fixed {
    background-attachment: fixed
}

.bg-theme_overlay-accent:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,84,8,0.96)
}

.bg-theme_overlay-dark:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1A1A1A;
    mix-blend-mode: multiply;
    opacity: .84
}

.bg-theme_overlay-light:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8)
}

.font-light {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important
}

.font-regular {
    font-family: 'Lato', sans-serif !important
}

.font-italic {
    font-family: 'Lato', sans-serif !important;
    font-style: italic !important
}

.font-bold {
    font-family: 'Lato', sans-serif !important;
    font-weight: 600 !important
}

.font-bold-italic {
    font-family: 'Lato', sans-serif !important;
    font-weight: 600 !important;
    font-style: italic !important
}

.flex-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.index-n1 {
    z-index: -1 !important
}

.index-auto {
    z-index: auto !important
}

.index-2 {
    z-index: 2 !important
}

.index-4 {
    z-index: 4 !important
}

.index-6 {
    z-index: 6 !important
}

.index-8 {
    z-index: 8 !important
}

.index-10 {
    z-index: 10 !important
}

.index-99 {
    z-index: 99 !important
}

.index-100 {
    z-index: 100 !important
}

.index-101 {
    z-index: 101 !important
}

.index-200 {
    z-index: 200 !important
}

.index-201 {
    z-index: 201 !important
}

.no-flexbox .entry-content ol,.no-flexbox .entry-content ul {
    margin-left: 1rem
}

::-webkit-input-placeholder {
    color: #ABABAB !important
}

:-ms-input-placeholder {
    color: #ABABAB !important
}

::-moz-placeholder {
    color: #ABABAB !important;
    opacity: 1
}

:-moz-placeholder {
    color: #ABABAB !important;
    opacity: 1
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem
}

.form-control {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    color: #23303B;
    background-color: #fff;
    border: .1rem solid #ABABAB;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 4.2rem;
    line-height: 1
}

.form-control:focus {
    color: #23303B;
    background-color: #fff
}



@media(max-width: 75em) {
    
}



textarea.form-control {
    min-height: 10rem;
    padding-top: 1rem;
    resize: none
}

.checkbox {
    margin: 0 -.5rem;
    font-size: 1.4rem;
    color: #707070
}

.checkbox label {
    margin-bottom: 0
}

.checkbox a {
    color: #707070;
    text-decoration: underline
}

.checkbox a:hover {
    text-decoration: none
}

input[type="checkbox"] {
    position: relative;
    top: .3rem;
    margin: 0 .5rem;
    -webkit-appearance: none;
    border: .1rem solid #707070;
    padding: .8rem;
    display: inline-block;
    position: relative
}

input[type="checkbox"][aria-invalid="true"] {
    border-color: #D54B40;
    background-color: #ffc2c2
}

input[type="checkbox"]:focus,input[type="checkbox"]:checked:focus {
    outline: none
}

input[type="checkbox"]:checked {
    background-color: #D54B40;
    border: 0.1rem solid #D54B40;
    color: #fff
}

input[type="checkbox"]:checked:after {
    content: '\e9ec';
    font-size: 1.6rem;
    font-family: 'Bootstrap Icons';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    line-height: 1
}

.radio-button {
    position: relative;
    padding-left: 2.8rem;
    margin-bottom: 1.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.6rem;
    line-height: 1.4
}

.radio-button input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.radio-button-inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.radio-button-inline .radio-button {
    margin-right: 2.5rem
}

.radio-button-inline .radio-button:last-child {
    margin-right: 0
}

.radio-button-text {
    color: #707070
}

.radio-button-checkmark {
    position: absolute;
    top: .5rem;
    left: 0;
    height: 1.4rem;
    width: 1.4rem;
    border: 1px solid #949494;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.radio-button-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #D54B40
}

.radio-button input:checked ~ .radio-button-checkmark {
    background-color: #fff
}

.radio-button input:checked ~ .radio-button-checkmark:after {
    display: block
}

.radio-button input:checked ~ .radio-button-text {
    color: #23303B
}

.radio-button:after {
    content: "";
    position: absolute;
    display: none
}

.error {
    border-color: #d92622
}

.error-message {
    color: #d92622;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 48%;
    right: 1.5rem;
    line-height: 0
}

.error-message:before {
    content: "\ea27";
    font-family: 'Bootstrap Icons';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1.5rem;
    color: #c1c1c1
}



label+.error-message:before {
    display: none
}

.btn {
    position: relative;
    -webkit-border-radius: 3rem;
    border-radius: 3rem;
    padding: 1.2rem 2.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    border: none
}

.btn:hover,.btn:focus,.btn:active {
    border: none;
    color: #fff
}

.btn.has-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.btn.has-icon i {
    margin-right: .7rem
}

.btn.has-icon_right span {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.btn.has-icon_right i {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0;
    margin-left: .7rem
}

.btn.btn-lg {
    padding: 1.6rem 3.5rem 1.8rem;
    font-size: 1.8rem
}

.btn.btn-lg.has-icon i {
    font-size: 2.4rem;
    margin-right: 1.3rem
}

.btn.btn-lg.has-icon_right i {
    margin-left: 1.3rem;
    margin-right: 0
}

.btn.btn-sm {
    padding: 1.1rem 1.2rem 1.1rem;
    font-size: 1rem;
    text-transform: uppercase
}

.btn.btn-primary {
    background-color: #000
}

.btn.btn-primary:hover,.btn.btn-primary:active {
    background-color: #DE7067
}

.btn.btn-secondary {
    background-color: #23303B;
    color: #fff
}

.btn.btn-secondary:hover,.btn.btn-secondary:active {
    background-color: #444547
}

.btn.btn-outline-primary {
    border: 0.2rem solid #000;
    background: #000;
    color: #fff;
    padding: 32px 24px; 
    font-size: 2rem;
}

.btn.btn-outline-primary:hover,.btn.btn-outline-primary:active {
    color: #000;
    background: #fff;
}

.btn.btn-outline-secondary {
    border: 0.2rem solid #23303B;
    color: #23303B
}

.btn.btn-outline-secondary:hover,.btn.btn-outline-secondary:active {
    color: #fff;
    background-color: #23303B
}

.btn.btn-outline-light {
    border: .2rem solid #fff;
    color: #fff
}

.btn.btn-outline-light:hover,.btn.btn-outline-light:active {
    background-color: #fff;
    color: #D54B40
}

.btn.btn-light {
    background-color: #fff;
    color: #c1c1c1;
}

.btn.btn-light:hover,.btn.btn-light:active {
    background-color: #D54B40;
    color: #fff
}

.btn.btn-link {
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4rem;
    color: #fff;
    padding: 0;
    padding-right: 2.5rem
}


.btn.btn-link:hover,.btn.btn-link:active {
    color: #DE7067;
    text-decoration: none
}

.btn.btn-link:hover:after,.btn.btn-link:active:after {
    color: #DE7067
}

.btn.btn-link:focus {
    text-decoration: none
}

.btn.btn-error {
    background-color: #d92622;
    color: #fff
}

.btn.btn-error:hover,.btn.btn-error:active {
    color: #d92622;
    background-color: #fff
}

.btn.btn-success {
    background-color: #28a849;
    color: #fff
}

.btn.btn-success:hover,.btn.btn-success:active {
    color: #28a849;
    background-color: #fff
}

.product-single-button .btn,.modal-body .btn {
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
    font-size: 1.6rem;
}

@media only screen and (min-width: 576px) {
    .product-single-button .btn,.modal-body .btn {
        font-size:2rem;
        padding: 1.7rem 7rem
    }
}

.product-video-button .btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.1rem
}

.product-video-button .btn.has-icon i {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 2.8rem
}

.product-video-button .btn:after {
    display: none
}

@media only screen and (min-width: 480px) {
    .product-video-button .btn {
        font-size:1.4rem
    }

    .product-video-button .btn .has-icon i {
        margin-bottom: 1.3rem;
        font-size: 3.4rem
    }
}

@media only screen and (min-width: 992px) {
    .product-video-button .btn {
        font-size:1.6rem
    }
}

.filter-price .btn {
    width: 5.2rem;
    padding-left: 0;
    padding-right: 0;
    -webkit-border-radius: 0;
    border-radius: 0
}

.dropdown-toggle {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #928e8c;
    padding-right: 1.5rem
}

.dropdown-toggle:before,.dropdown-toggle:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.dropdown-toggle:after {
    content: "\e9ff";
    font-family: 'Bootstrap Icons';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    top: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4A4A4A;
    margin: 0;
    margin-left: .9rem;
    padding: 0;
    border: 0
}

.show .dropdown-toggle {
    color: #c1c1c1
}

.show .dropdown-toggle:before,.show .dropdown-toggle:after {
    color: #c1c1c1
}

.show .dropdown-toggle:after {
    content: "\ea03"
}

.main-navigation .show .dropdown-toggle:after {
    content: "\e9ff";
    color: #4A4A4A
}

.search-dropdown .dropdown-toggle {
    padding-right: 0;
    color: #fff
}

.search-dropdown .dropdown-toggle i {
    font-size: 2.8rem
}

.search-dropdown .dropdown-toggle:after {
    display: none
}

@media only screen and (min-width: 768px) {
    .search-dropdown .dropdown-toggle {
        display:none
    }
}

.show.search-dropdown .dropdown-toggle i {
    color: #fff
}

.main-navigation .dropdown-toggle[aria-expanded="true"]:after {
    content: "\ea03";
    color: #c1c1c1;
}

.dropdown-menu {
    font-size: 1.6rem;
    line-height: 2.4rem;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 1.5rem 2.5rem;
    -webkit-box-shadow: 0 .5rem 1rem #00000029;
    box-shadow: 0 .5rem 1rem #00000029;
    background-color: #fff;
    margin-top: 1rem
}

.search-dropdown .dropdown-menu {
    padding: 1rem;
    width: 100%;
    z-index: 98
}

@media only screen and (min-width: 768px) {
    .search-dropdown .dropdown-menu {
        margin-top:1.3rem;
        display: block;
        -webkit-box-shadow: none;
        box-shadow: none;
        position: relative;
        width: auto;
        min-width: auto;
        float: none;
        margin: 0;
        padding: 0;
        border: none;
        background-color: transparent
    }
}

.main-navigation .dropdown-menu {
    border-top: .1rem solid #CECECE;
    margin-top: 0;
    padding-top: .7rem;
    padding-bottom: .7rem;
    -webkit-box-shadow: none;
    box-shadow: none
}

@media only screen and (min-width: 992px) {
    .main-navigation .dropdown-menu {
        border-top-color:#e5e5e5;
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
        min-width: 23rem;
        -webkit-box-shadow: 0 .5rem 1rem #00000029;
        box-shadow: 0 .5rem 1rem #00000029
    }
}

@media only screen and (max-width: 991px) {
    .main-navigation .dropdown-menu.show {
        display:block !important
    }
}

.dropdown-item {
    border-bottom: .1rem solid #e5e5e5;
    padding: .9rem 0
}

.dropdown-item.active {
    background-color: transparent;
    color: #c1c1c1
}

.dropdown-item:hover,.dropdown-item:focus {
    color: #c1c1c1;
    background-color: transparent
}

.dropdown-item:last-child {
    border-bottom-color: transparent
}

.main-navigation .dropdown-item {
    text-align: right;
    border-bottom: none;
    padding: .7rem 0
}

@media only screen and (min-width: 992px) {
    .main-navigation .dropdown-item {
        padding:.9rem 0;
        text-align: left;
        border-bottom: .1rem solid #e5e5e5
    }

    .main-navigation .dropdown-item:last-child {
        border-bottom: none
    }
}

.pagination {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-bottom: 0
}

.pagination-wrapper {
    margin: 5rem 0 2.5rem;
    text-align: center
}

.page-item {
    margin: 0 .3rem
}

.page-item.active .page-link {
    background-color: transparent;
    color: #C0C0C0;
}

.page-link {
    padding: 0;
    font-size: 2.1rem;
    font-weight: 500;
    color: #808080;
    background-color: transparent;
    line-height: 4rem;
    min-width: 4rem
}

.page-link:hover {
    color: #000;
    background-color: transparent
}

.page-link:focus {
    color: #23303B
}

.accordion {
    margin-top: -1.2rem
}

.accordion-item {
    position: relative;
    margin: 1.2rem 0 0
}

.accordion-header {
    position: relative;
    font-size: 1.5rem;
    color: #40444E;
    text-transform: uppercase;
    border: none;
    border-bottom: .2rem solid #E5E7EB;
    cursor: pointer;
    background-color: transparent;
    margin: 0;
    padding: 0;
    padding: 0 0 .8rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: left
}

.accordion-header:after {
    content: "\eb17";
    font-family: 'Bootstrap Icons';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 2.1rem;
    font-weight: 700;
    color: #707582;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.accordion-header[aria-expanded="true"],.accordion-header[aria-expanded="true"]:focus {
    color: #909091
}

.accordion-header[aria-expanded="true"]:after,.accordion-header[aria-expanded="true"]:focus:after {
    content: "\ea26";
    color: #909091
}

.accordion-header:focus {
    color: #40444E
}

.accordion-header:hover {
    color: #8c8e94
}

.accordion-header:hover:after {
    color: #8c8e94
}

.accordion.accordion-catalog {
    margin-top: 0
}

.catalog-dropdown .accordion .accordion-item {
    padding: 0 1.8rem
}

.catalog-dropdown .accordion .accordion-item:last-child .accordion-header {
    border-bottom: none;
    margin-bottom: .5rem
}

.catalog-dropdown .accordion .accordion-header {
    padding: 0 0 .6rem;
    margin-bottom: .8rem
}

.catalog-dropdown .accordion .accordion-header:after {
    display: none
}

@media only screen and (min-width: 1200px) {
    .catalog-dropdown .accordion .accordion-body {
        position:absolute;
        left: 100%;
        top: -2.2rem;
        background: #F3F3F3;
        -webkit-box-shadow: .1rem .3rem .6rem #00000029;
        box-shadow: .1rem .3rem .6rem #00000029;
        width: 30rem;
        padding: 1.8rem 2.2rem;
        z-index: 1
    }
}

@media only screen and (max-width: 1199px) {
    .modal-lg.modal-dialog {
        max-width:100%;
        margin: .5rem
    }
}

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 2rem;
    -webkit-border-radius: 0;
    border-radius: 0
}

.modal-header .close {
    padding: 0;
    margin: 0;
    font-size: 2.4rem;
    height: 2.4rem;
    color: #D54B40;
    text-shadow: none;
    opacity: 1
}

.is-ie .modal-header {
    display: block
}

.is-ie .modal-header .close {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2rem
}

@media only screen and (min-width: 768px) {
    .modal-header {
    
    }
}

.modal-title {
    font-size: 2.1rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-align: left;
    margin: 0;
    -webkit-border-radius: 0;
    border-radius: 0
}

.modal-content {
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #303030;
}

.modal-body {
    padding: 1rem 2rem 3.5rem
}

@media only screen and (min-width: 768px) {
    .modal-body {
        padding-left:4rem;
        padding-right: 4rem
    }
}

.modal-gallery .modal-dialog {
    max-width: 95rem
}

@media only screen and (min-height: 890px) {
    .modal-gallery .modal-dialog {
        max-width:123rem
    }
}

.modal-gallery .modal-content {
    background: #FFFFFF;
    -webkit-box-shadow: 0 .3rem 1.8rem #00000029;
    box-shadow: 0 .3rem 1.8rem #00000029;
    -webkit-border-radius: 1rem;
    border-radius: 1rem
}

.modal-gallery .modal-body {
    padding: 2.5rem 1.5rem
}

.modal-gallery .modal-header {
    position: absolute;
    display: block;
    padding: 0;
    top: 2rem;
    right: 2rem;
    width: 2.4rem;
    height: 2.4rem;
    z-index: 1
}

.modal-gallery-title {
    font-size: 2.1rem;
    line-height: 2.5rem;
    font-weight: 400;
    color: #252531;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5rem
}

.modal-gallery-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.modal-gallery-zoom:after {
    content: "";
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #F3F3F3;
    background-image: url("../images/zoom-in.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 2rem
}

@media only screen and (min-width: 768px) {
    .modal-gallery .modal-body {
        padding:4rem
    }

    .modal-gallery-title {
        margin-bottom: 4rem
    }

    .modal-gallery-zoom {
        display: none
    }
}

.breadcrumb {
    display: none;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.breadcrumb-item {
    font-size: 1.2rem
}

.breadcrumb-item a,.breadcrumb-item.active {
    color: #8A8A8A
}

.breadcrumb-item a:hover,.breadcrumb-item.active:hover {
    color: #DE7067
}

.breadcrumb-item+.breadcrumb-item:before {
    content: ">";
    color: #8A8A8A
}

@media only screen and (min-width: 768px) {
    .breadcrumb {
        display:-webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

.tooltip {
    font-size: 1.2rem
}

.tooltip-inner {
    background-color: #3B3C3C;
    padding: .3rem .8rem .4rem
}

.bs-tooltip-top .arrow:before,.bs-tooltip-auto[x-placement^="top"] .arrow:before,.bs-tooltip-auto[x-placement^="top"] .arrow:before {
    border-top-color: #3B3C3C
}

.bs-tooltip-left .arrow:before,.bs-tooltip-auto[x-placement^="left"] .arrow:before,.bs-tooltip-auto[x-placement^="left"] .arrow:before {
    border-left-color: #3B3C3C
}

.bs-tooltip-right .arrow:before,.bs-tooltip-auto[x-placement^="right"] .arrow:before,.bs-tooltip-auto[x-placement^="right"] .arrow:before {
    border-right-color: #3B3C3C
}

.bs-tooltip-bottom .arrow:before,.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,.bs-tooltip-auto[x-placement^="bottom"] .arrow:before {
    border-bottom-color: #3B3C3C
}

.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"],.bs-tooltip-auto[x-placement^="top"] {
    margin-bottom: .7rem
}

.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"],.bs-tooltip-auto[x-placement^="right"] {
    margin-left: .7rem
}

.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"],.bs-tooltip-auto[x-placement^="left"] {
    margin-right: .7rem
}

.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"],.bs-tooltip-auto[x-placement^="bottom"] {
    margin-top: .7rem
}

.nav-pills {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: .2rem solid #ddd
}

.nav-pills .nav-item {
    margin: 0 .8rem
}

.nav-pills .nav-item:first-child {
    margin-left: 0
}

.nav-pills .nav-link {
    border-bottom: .3rem solid transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: .6rem 0;
    color: #23303B
}

.nav-pills .nav-link.active {
    color: #c1c1c1;
    background-color: transparent;
    border-bottom-color: #c1c1c1
}

.product-single .nav-pills .nav-item {
    margin: 0 .4rem
}

.nav-item {
  flex-grow: 1; /* Змушує елементи меню розтягуватися на всю ширину */
  text-align: center; /* Центрує текст в кожному елементі меню */
}




.product-single .nav-pills .nav-item:first-child {
    margin-left: 0
}

.product-single .nav-pills .nav-item:last-child {
    margin-right: 0
}

.product-single .nav-pills .nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: none;
    padding-left: .5rem;
    padding-right: .5rem
}

.product-single .nav-pills .nav-link.active {
    color: #23303B
}

@media only screen and (min-width: 768px) {
    .nav-pills .nav-item {
        margin:0 1.5rem
    }

    .nav-pills .nav-link {
        border-bottom-width: .4rem;
        font-size: 1.4rem;
        padding: .6rem .2rem
    }

    .product-single .nav-pills .nav-item {
        margin: 0 2rem
    }
}

@media only screen and (min-width: 1440px) {
    .product-single .nav-pills .nav-item {
        margin:0 3rem
    }

    .product-single .nav-pills .nav-link {
        font-size: 2rem;
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.tab-content {
    padding: 3.7rem 0
}

.product-single .tab-content {
    padding: 3rem 0
}

.tab-pills-to-accordion {
    display: none
}

@media only screen and (min-width: 1200px) {
    .tab-pills-to-accordion {
        display:-webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media only screen and (max-width: 1199px) {
    .tab-content-to-accordion {
        padding-top:0 !important
    }

    .tab-content-to-accordion .tab-pane {
        display: block !important;
        opacity: 1;
        margin-bottom: 1.5rem
    }
}

@media only screen and (min-width: 1200px) {
    .tab-content-to-accordion .collapse {
        display:block
    }
}

.card {
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0
}

.card-header,.card-footer {
    padding-left: 0;
    padding-right: 0
}

.card-header {
    border-bottom: none;
    background-color: transparent;
    padding: 0;
    padding: 1rem 0 0
}

@media only screen and (min-width: 768px) {
    .card-header {
        padding:1.5rem 0 0
    }
}

.card-body {
    background-color: #F3F3F3;
    padding: 2rem 1rem
}

.social-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    padding: 0;
    line-height: 1
}

.social-icons_right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.social-icons a {
    position: relative;
    margin: 0 .7rem;
    width: 2.6rem;
    height: 2.6rem;
    text-decoration: none
}

.social-icons a:last-child {
    margin-right: 0
}

.social-icons a:first-child {
    margin-left: 0
}

.social-icons a i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.social-icons a i:before {
    font-size: 2.6rem;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.social-icons a:hover i:before {
    color: #ABABAB
}

.social-icons_light a i:before {
    color: #fff
}

.social-icons_light a:hover i:before {
    color: #DE7067
}

.ie10 .social-icons a {
    display: inline-block
}

.w-icon-text {
    display: inline-table;
    position: relative;
    padding: 0;
    margin: 0 auto;
    min-width: 16rem;
    list-style-type: none;
    padding-left: 3.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.2rem;
    text-align: left
}

.w-icon-text>i {
    font-size: 2.4rem;
    position: absolute;
    top: .5rem;
    left: 0;
    color: #D54B40
}

.w-icon-text a {
    color: #23303B
}

.w-icon-text a:hover {
    color: #4d4d4d
}

.w-icon-text-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .4rem
}

.wtitle-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: .4rem
}

.w-icon-text_noicon {
    padding-left: 0
}

.w-icon-text_noicon>i {
    display: none
}

.w-feature {
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}



.w-feature-icon {
    position: relative;
    font-size: 9rem;
    max-height: 9rem;
    color: #d33c34;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.w-feature-icon img {
    height: 7rem
}

.w-feature-title {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #000;
    margin-top: 2rem;
    -webkit-transition: -webkit-transform .25s;
    transition: -webkit-transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
    transition: transform .25s, -webkit-transform .25s
}

@media only screen and (min-width: 1200px) {
    
}

.w-article {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: .1rem solid #707070;
    padding: 2rem;
    margin-bottom: 2rem
}

.w-article-date {
    position: absolute;
    top: 0;
    background-color: rgba(255,255,255,0.74);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5rem;
    padding: 1rem 1.5rem
}

.w-article-media {
    display: block;
    width: 34rem;
    position: relative;
    margin: 0 auto;
    margin-bottom: 1.8rem
}

.w-article-media a {
    display: block
}

.w-article-media img {
    max-width: 100%
}

.w-article-body {
    width: 100%
}

.w-article-title {
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 500;
    color: #23303B;
    padding-bottom: 1.2rem;
    margin-bottom: 1.3rem;
    border-bottom: .1rem solid #707070
}

.w-article-title a {
    display: block;
    color: #23303B
}

.w-article-title a:hover {
    color: #D54B40
}

.w-article-excerpt {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #23303B
}

.w-article-button {
    margin-top: 1.7rem
}

@media only screen and (min-width: 768px) {
    .w-article-media {
        width:24rem;
        height: 24rem;
        margin-bottom: 0
    }

    .w-article-media a,.w-article-media img {
        width: 100%;
        height: 100%
    }

    .w-article-media img {
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover"
    }

    .w-article-body {
        width: -webkit-calc(100% - 24rem);
        width: calc(100% - 24rem);
        padding-left: 3rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .w-article-title {
        font-size: 2.4rem;
        line-height: 3rem
    }

    .w-article-excerpt {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.w-article_alt {
    display: block;
    border: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
    padding-bottom: 2rem
}

.w-article_alt:after {
    content: "";
    width: 12rem;
    height: .1rem;
    background-color: #707070;
    position: absolute;
    bottom: 0;
    left: 0
}

.w-article_alt .w-article-title {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border: none
}

.w-article_alt .w-article-excerpt {
    font-size: 1.2rem;
    line-height: 1.6rem
}

.w-portfolio {
    text-align: center
}

.w-portfolio-title {
    font-size: 1.6rem;
    line-height: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: #000;
}

.w-portfolio-media a {
    display: block
}

.w-portfolio-media img {
    max-width: 100%
}

.w-portfolio-text {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-top: 1.8rem;
    color: #000;
}

.grid-view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding:4rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-right: -.5rem;
    margin-left: -.5rem
}

.grid-view .grid-item {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    padding-right: .5rem;
    padding-left: .5rem
}

@media only screen and (min-width: 480px) {
    .grid-view .grid-item {
        width:90%;
        max-width: 90%
    }
}

@media only screen and (min-width: 768px) {
    .grid-view .grid-item {
        width:99.333%;
        max-width: .333%
    }
}

@media only screen and (min-width: 992px) {
    .grid-view .grid-item {
        width:25%;
        max-width: 25%
    }
}

@media only screen and (min-width: 992px) {
    .grid-view {
        margin-right:-1.5rem;
        margin-left: -1.5rem
    }

    .grid-view .grid-item {
        margin-bottom: 3rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem
    }
}

.grid-view.no-gaps {
    margin-right: 0;
    margin-left: 0
}

.grid-view.no-gaps .grid-item {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0
}

.grid-view.gaps-sm {
    margin-right: -.5rem;
    margin-left: -.5rem
}

.grid-view.gaps-sm .grid-item {
    margin-bottom: 1rem;
    padding-right: .5rem;
    padding-left: .5rem
}

.grid-view.gaps-md {
    margin-right: -1rem;
    margin-left: -1rem
}

.grid-view.gaps-md .grid-item {
    margin-bottom: 2rem;
    padding-right: 1rem;
    padding-left: 1rem
}

.grid-view.grid-columns-1 .grid-item,.grid-view.grid-columns-2 .grid-item,.grid-view.grid-columns-3 .grid-item,.grid-view.grid-columns-4 .grid-item,.grid-view.grid-columns-5 .grid-item,.grid-view.grid-columns-6 .grid-item {
    width: 100%;
    max-width: 100%
}

@media only screen and (max-width: 575px) {
    .grid-view {
        display: grid;
        grid-template-columns: 1fr; /* Один стовпчик у рядку */
        justify-items: center; /* Центрування елементів по горизонталі */
    }

    .grid-view .grid-item {
        width: 90% !important;
margin: 0 auto 1.5rem auto !important;

        margin-bottom: 1.5rem;
    }
}


    .grid-view.grid-columns-xs-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .grid-view.grid-columns-xs-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .grid-view.grid-columns-xs-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .grid-view.grid-columns-xs-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .grid-view.grid-columns-xs-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .grid-view.grid-columns-sm-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .grid-view.grid-columns-sm-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .grid-view.grid-columns-sm-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .grid-view.grid-columns-sm-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .grid-view.grid-columns-sm-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .grid-view.grid-columns-sm-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .grid-view.grid-columns-md-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .grid-view.grid-columns-md-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .grid-view.grid-columns-md-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .grid-view.grid-columns-md-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .grid-view.grid-columns-md-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .grid-view.grid-columns-md-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .grid-view.grid-columns-lg-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .grid-view.grid-columns-lg-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .grid-view.grid-columns-lg-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .grid-view.grid-columns-lg-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .grid-view.grid-columns-lg-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .grid-view.grid-columns-lg-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .grid-view.grid-columns-xl-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .grid-view.grid-columns-xl-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .grid-view.grid-columns-xl-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .grid-view.grid-columns-xl-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .grid-view.grid-columns-xl-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .grid-view.grid-columns-xl-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 480px) {
    .grid-view.grid-columns-2 .grid-item,.grid-view.grid-columns-3 .grid-item,.grid-view.grid-columns-4 .grid-item,.grid-view.grid-columns-5 .grid-item,.grid-view.grid-columns-6 .grid-item {
        width:50%;
        max-width: 50%
    }
}

@media only screen and (min-width: 992px) {
    .grid-view.grid-columns-3 .grid-item,.grid-view.grid-columns-5 .grid-item,.grid-view.grid-columns-6 .grid-item {
        width:33.333%;
        max-width: 33.333%
    }
}

@media only screen and (min-width: 1200px) {
    .grid-view.grid-columns-1 .grid-item {
        width:100%;
        max-width: 100%
    }

    .grid-view.grid-columns-2 .grid-item {
        width: 50%;
        max-width: 50%
    }

    .grid-view.grid-columns-3 .grid-item {
        width: 33.333%;
        max-width: 33.333%
    }

    .grid-view.grid-columns-4 .grid-item {
        width: 25%;
        max-width: 25%
    }

    .grid-view.grid-columns-5 .grid-item {
        width: 20%;
        max-width: 20%
    }

    .grid-view.grid-columns-6 .grid-item {
        width: 16.66%;
        max-width: 16.66%
    }
}

.grid-view .grid-item {
    position: relative;
    margin-bottom: 1.5rem
}

@media only screen and (min-width: 992px) {
    .grid-view .grid-item {
        margin-bottom:3rem
    }
}

.grid-view.grid-art-img .grid-item {
    margin-bottom: 6.6rem
}

.grid-view.grid-stones .grid-item {
    margin-bottom: 4.1rem
}

.grid-item {
    position: relative
}

.grid-item-media {
    display: block;
    position: relative
}

.grid-item-media img {
    display: block;
    width: 100%
}

.list-view {
    margin: 0;
    padding: 0;
    list-style: none
}

.list-view .list-item {
    margin-bottom: 3rem
}

.list-view .list-item:last-child {
    margin-bottom: 0
}

.media-gallery {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.media-gallery a,.media-gallery img {
    display: block
}

.media-gallery img {
    width: 100%;
    margin: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s
}

.media-gallery img:hover {
    opacity: .8
}


















.main-slider {
    height: 64rem;
    background: #F6F6F6
}

.main-slider-slide {
    padding: 0 1.5rem;
    padding-top: 4rem;
    background-size: contain;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
   
}

.main-slider-media {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    z-index: -1
}

.main-slider-media img {
    max-width: 200%
}

.main-slider-body {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    text-align: center
}

.main-slider-button {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 3rem;
    opacity: 0
}

.slick-active .main-slider-button {
    -webkit-animation-name: fadeInToRightShort;
    animation-name: fadeInToRightShort;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-delay: 250ms;
    animation-delay: 250ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.main-slider-title {
    font-size: 2.2rem;
    line-height: 1.46;
    color: #23303B;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    opacity: 0
}

.slick-active .main-slider-title {
    -webkit-animation-name: fadeInToRightShort;
    animation-name: fadeInToRightShort;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.main-slider-text {
    display: none;
    font-size: 2.1rem;
    line-height: 2.5rem;
    color: #23303B;
    margin-bottom: 3.8rem;
    opacity: 0
}

.slick-active .main-slider-text {
    -webkit-animation-name: fadeInToRightShort;
    animation-name: fadeInToRightShort;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-delay: 150ms;
    animation-delay: 150ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@media only screen and (min-width: 480px) {
    .main-slider-title {
        font-size:2.4rem
    }
}

@media only screen and (min-width: 768px) {
    .main-slider {
        height:90rem
    }

    .main-slider-slide {
        padding: 0 5rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .main-slider-media {
        max-width: 43rem;
        background-size: cover;
    }

    .main-slider-title {
        font-size: 4rem;
        line-height: 1.25;
        margin-bottom: 2rem
    }

    .main-slider-text {
        display: block
    }

    .main-slider-button {
        margin-top: 2.5rem
    }
}

@media only screen and (min-width: 992px) {
    .main-slider {
        height:70rem
    }

    .main-slider-slide {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0;
        padding-left: 1.5rem
    }

    .main-slider-media {
        position: absolute;
        top: 50%;
        width: 130%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .slick-active .main-slider-title {
        -webkit-animation-name: fadeInToRightLong;
        animation-name: fadeInToRightLong;
        -webkit-animation-duration: 1000ms;
        animation-duration: 1000ms
    }

    .slick-active .main-slider-text {
        -webkit-animation-name: fadeInToBottom;
        animation-name: fadeInToBottom;
        -webkit-animation-duration: 2000ms;
        animation-duration: 2000ms;
        -webkit-animation-delay: 150ms;
        animation-delay: 150ms
    }

    .main-slider-body {
        max-width: 60rem;
        text-align: right;
        position: absolute;
        left: 600px;
    }

    .main-slider-button {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .slick-active .main-slider-button {
        -webkit-animation-name: fadeInToTop;
        animation-name: fadeInToTop;
        -webkit-animation-duration: 1200ms;
        animation-duration: 1200ms;
        -webkit-animation-delay: 200ms;
        animation-delay: 200ms
    }
}

.main-slider-slide_full {
    max-width: none;
    padding: 0;
    display: block;
    height: 100%
}

.main-slider-slide_full .main-slider-media {
    width: 120%;
    height: 120%;
    max-width: none;
    z-index: auto;
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.main-slider-slide_full .main-slider-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
     background-size:cover;
   
}

@-webkit-keyframes fadeInToRightLong {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15rem);
        transform: translateX(-15rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInToRightLong {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15rem);
        transform: translateX(-15rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInToRightShort {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-5rem);
        transform: translateX(-5rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInToRightShort {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-5rem);
        transform: translateX(-5rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInToBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-3rem);
        transform: translateY(-3rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInToBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-3rem);
        transform: translateY(-3rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInToTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(7rem);
        transform: translateY(7rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInToTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(7rem);
        transform: translateY(7rem)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.list-branches {
    -webkit-columns: auto 2;
    -moz-columns: auto 2;
    columns: auto 2;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem
}

.list-branches .item-branch {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    line-height: 2.2rem
}

.list-branches a.item-branch:hover {
    color: #ABABAB
}

@media only screen and (min-width: 480px) {
    .list-branches {
        -webkit-columns:auto 4;
        -moz-columns: auto 4;
        columns: auto 4
    }
}

.widget {
    border: .1rem solid #707070;
    padding: 2.3rem 2rem 2.5rem;
    margin-bottom: 3.5rem;
}

.widget-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: #000;
    padding-bottom: 1.2rem;
    margin-bottom: 1.7rem;
    border-bottom: .1rem solid #707070
}

.widget-text {
    font-size: 1.6rem
}

.widget-text p:last-of-type {
    margin-bottom: 0;
color: #000;
}

.post-single-media {
    display: block;
    margin: 0 auto;
    margin-bottom: 3rem;
    width: 34rem
}

.post-single-media img {
    max-width: 100%
}

.post-single:after {
    content: "";
    display: block;
    clear: both
}

@media only screen and (min-width: 992px) {
    .post-single-media {
        display:block;
        -webkit-transform: translateY(0.7rem);
        -ms-transform: translateY(0.7rem);
        transform: translateY(0.7rem);
        margin: 0;
        margin-bottom: 3rem;
        margin-right: 3rem;
        float: left
    }
}

.scroll-section {
    height: 50rem
}

.iframe-wrapper {
    position: relative;
    margin: 0
}

.iframe-wrapper iframe {
    width: 100%;
    height: 50rem;
    display: block
}

.no-flexbox .grid-view,.no-flexbox .grid-gallery {
    display: block
}

.no-flexbox .grid-view .grid-item,.no-flexbox .grid-gallery .grid-item {
    float: left
}

.no-flexbox .grid-view.grid-columns-2 .grid-item:nth-child(2n+1),.no-flexbox .grid-view.grid-columns-3 .grid-item:nth-child(3n+1),.no-flexbox .grid-view.grid-columns-4 .grid-item:nth-child(4n+1),.no-flexbox .grid-view.grid-columns-5 .grid-item:nth-child(5n+1),.no-flexbox .grid-view.grid-columns-6 .grid-item:nth-child(6n+1),.no-flexbox .grid-gallery.grid-columns-2 .grid-item:nth-child(2n+1),.no-flexbox .grid-gallery.grid-columns-3 .grid-item:nth-child(3n+1),.no-flexbox .grid-gallery.grid-columns-4 .grid-item:nth-child(4n+1),.no-flexbox .grid-gallery.grid-columns-5 .grid-item:nth-child(5n+1),.no-flexbox .grid-gallery.grid-columns-6 .grid-item:nth-child(6n+1) {
    clear: both
}

.no-flexbox .grid-view:after,.no-flexbox .grid-gallery:after {
    content: "";
    display: block;
    clear: both
}

.header {
    position: relative;
    height: 9.5rem
}

@media only screen and (max-width: 991px) {
    .header {
        max-width:100%;
        padding-right: 10rem
    }
}

.header-wrapper {
    position: relative;
    background: linear-gradient(#ffff, #fff );
}

.header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 120%;
}

.header-logo a,.header-logo img {
    display: block;
}

.header-logo img {
    max-width: 100%;
    max-height: 100%
}



.header-phones {
    display: none;
    font-size: 1.8rem;
    line-height: 3.4rem;
    font-weight: 500;
    color: #000
}

.header-phones a {
    color: #000;
}

.header-phones a:hover {
    color: #e2e2e2
}

@media only screen and (min-width: 380px) {
    .header-logo {
        width:21rem
    }
}

@media only screen and (min-width: 576px) {
    .header {
        height:12.5rem
    }

    .header-logo {
        width: 25rem
    }
}

@media only screen and (min-width: 768px) {
    .header {
        display:-webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .header-logo {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

   
}

@media only screen and (min-width: 992px) {
    .header-phones {
        display:block
    }
}

@media only screen and (min-width: 1200px) {
    
}

@media only screen and (max-width: 991px) {
    .collapsing {
        height:auto !important
    }

    .main-navigation .collapse:not(.show) {
        opacity: 0;
        display: block;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%)
    }
}

.navbar {
    padding: 0;
    justify-content: space-between;
}

.navbar-wrapper {
    position: absolute;
    top: 0;
    right: 2.3rem;
    height: 9.5rem
}

.navbar-wrapper .container,.navbar-wrapper .main-navigation {
    height: 100%;
    padding: 0
}

@media only screen and (min-width: 576px) {
    .navbar-wrapper {
        height:12.5rem
    }
}

@media only screen and (min-width: 992px) {
    .navbar-wrapper {
        position:relative;
        top: auto;
        right: auto;
        height: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background-color: #000;
        border-top: .1rem solid #000;
        border-bottom: .1rem solid #000
    }
}

.navbar-collapse {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
    min-width: 20rem;
    margin-top: .7rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    border: 0.2rem solid #DE7067;
    padding: 1.5rem 0;
    -webkit-box-shadow: 0 .3rem .6rem #00000029;
    box-shadow: 0 .3rem .6rem #00000029;
    background-color: rgba(255,255,255,0.9)
}

@media only screen and (max-width: 991px) {
    .main-navigation .navbar-collapse {
        z-index:99;
        position: fixed;
        left: auto;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: opacity .25s, -webkit-transform .25s;
        transition: opacity .25s, -webkit-transform .25s;
        -o-transition: transform .25s, opacity .25s;
        transition: transform .25s, opacity .25s;
        transition: transform .25s, opacity .25s, -webkit-transform .25s;
        width: 28rem;
        text-align: right;
        -webkit-box-shadow: 0 .3rem 1.7rem #00000029;
        box-shadow: 0 .3rem 1.7rem #00000029;
        background-color: #535353;
        margin-top: 0;
        padding: 12rem 0 1.5rem 2.5rem;
        border: none;
        -webkit-border-radius: 0;
        border-radius: 0
    }
}

@media only screen and (min-width: 992px) {
    .navbar-collapse {
        -webkit-transform:none;
        -ms-transform: none;
        transform: none;
        position: relative;
        top: auto;
        left: auto;
        border: none;
        background-color: transparent;
        min-width: auto;
        margin-top: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-expand-lg .navbar-collapse {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.main-navigation .navbar-nav .nav-item {
    position: relative;
}

.main-navigation .navbar-nav .nav-item.active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.5rem;
    background-color: #F8B8B3
}

.main-navigation .navbar-nav .nav-item.active .nav-link {
    border-right: 0.5rem solid #CCAC5F;
    color: #c1c1c1;
    z-index: 1
}

.main-navigation .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: .1rem solid #535353
}

.main-navigation .navbar-nav .nav-item:last-child .nav-link:after {
    display: none;
color: #c1c1c1;
}

@media only screen and (min-width: 992px) {
    .main-navigation .navbar-nav .nav-item:last-child .nav-link {
        border-bottom:none
    }
}

@media only screen and (min-width: 992px) {
    .main-navigation .navbar-nav .nav-item.active:after {
        display:none
    }

    .main-navigation .navbar-nav .nav-item.active .nav-link {
        z-index: auto;
        border-right: none
    }
}

.main-navigation .navbar-nav .nav-link {
    position: relative;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffff;
    text-align: right;
    text-transform: uppercase;
    margin: 0;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
    border-top: .1rem solid #535353
}

@media only screen and (min-width: 992px) {
    .main-navigation .navbar-nav .nav-link {
        text-align:center;
        font-size: 1.3rem;
        line-height: 7rem;
        white-space: nowrap;
        border: none;
        padding: 0
    }

    .main-navigation .navbar-nav .nav-link:after {
        content: "";
        position: absolute;
        top: 50%;
        color: #c1c1c1;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: .1rem;
        height: 3.2rem;
        background-color: #e5e5e5
    }

    .main-navigation .navbar-nav .nav-link:after {
        right: 0
    }

    .main-navigation .navbar-nav .nav-link.active,.main-navigation .navbar-nav .nav-link:hover {
        color: #c1c1c1;
    }
}

.main-navigation .navbar-nav .show .nav-link {
    color: #fff;
    background: #606060;
}

@media only screen and (min-width: 992px) {
    .main-navigation .navbar-nav .show .nav-link {
        background:#606060;
        color: #fff;
    }
}

@media only screen and (min-width: 992px) {
    .main-navigation.navbar-expand-lg .navbar-nav .nav-link {
        padding-right:1.5rem;
        padding-left: 1.5rem
    }
}

@media only screen and (min-width: 1200px) {
    .main-navigation.navbar-expand-lg .navbar-nav .nav-link {
        padding-right:2.9rem;
        padding-left: 2.9rem
    }
}

.navbar-toggler {
    padding: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: 3rem;
    height: 2.6rem;
    position: relative;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
    cursor: pointer;
    z-index: 100
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: .4rem;
    width: 100%;
    background: #000;
    -webkit-border-radius: .3rem;
    border-radius: .3rem;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    margin: 0
}

.navbar-toggler span:nth-child(1) {
    top: 0
}

.navbar-toggler span:nth-child(2) {
    top: 1.1rem
}

.navbar-toggler span:nth-child(3) {
    top: 2.2rem
}

.navbar-toggler[aria-expanded="true"] span {
    background-color: #D54B40
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    top: 1rem;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    left: -4rem
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    top: 1rem;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.nav-list {
    padding: 0px 0px 0px;
    position: relative;
    vertical-align: middle
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-overflow-scrolling: touch
}

.nav-list-item {
    margin: 0 2.5rem
}

.nav-list-item:first-child {
    margin-left: 0
}

.nav-list-item:last-child {
    margin-right: 0
}

.nav-list-link {
    display: block;
    position: relative;
    font-size: 1.6rem;
    line-height: 5rem;
    color: #23303B;
    white-space: nowrap
}



.w-category {
    display: block;
    padding: 2.2rem 1.7rem;
    background: #87CEEB;
    height: 100%
}

.w-category:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #535353;
    -webkit-box-shadow: 0 0 2rem #535353;
    box-shadow: 0 0 2rem #535353;
    opacity: 0;
    z-index: -1
}



.nav-list-link.active {
    font-weight: 500;
    color: #000;
}

.pr-price{
    color: #ff0000;
    font-size: 43px;
    letter-spacing: 2px;
    font-weight: bold;
  
}




.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4rem; /* Відступ для ПК */
    justify-content: flex-start; /* Вирівнювання по лівому краю на ПК */
}

.catalog-grid .grid-item {
    position: relative;
    width: 50%; /* Для двох карток в ряд на ПК */
    max-width: 50%;
    margin-bottom: 3rem;
    padding-right: 0.6rem;
    padding-left: 0.6rem;
    box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
    .catalog-grid .grid-item {
        width: 33.333%; /* Для трьох карток в ряд на великих екранах */
        max-width: 33.333%;
    }
}

@media only screen and (max-width: 767px) {
    .catalog-grid {
        margin-left: 0; /* Видаляємо зайвий відступ на мобільних */
        justify-content: center; /* Центруємо картки по горизонталі */
    }

    .catalog-grid .grid-item {
        width: auto; /* Дозволяємо картці займати природну ширину */
        max-width: 100%; /* Максимальна ширина 100% */
        padding: 0; /* Забираємо зайві відступи */
    }
}






@media only screen and (min-width: 992px) {
    .catalog-grid .grid-item {
        width:25%;
        max-width: 25%
    }
    .nav-list {
    padding: 0px 0px 0px;
    position: relative;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-overflow-scrolling: touch
}
}

@media only screen and (min-width: 1200px) {
    .catalog-grid .grid-item {
        width:25%;
        max-width: 25%
    }
    
}

@media only screen and (min-width: 1200px) {
    .catalog-grid {
        margin-right:-1.5rem;
        margin-left: -1.5rem
    }

    .catalog-grid .grid-item {
        margin-bottom: 5rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem
    }
}

.catalog-grid.no-gaps {
    margin-right: 0;
    margin-left: 0
}

.catalog-grid.no-gaps .grid-item {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0
}

.catalog-grid.gaps-sm {
    margin-right: -.5rem;
    margin-left: -.5rem
}

.catalog-grid.gaps-sm .grid-item {
    margin-bottom: 1rem;
    padding-right: .5rem;
    padding-left: .5rem
}

.catalog-grid.gaps-md {
    margin-right: -1rem;
    margin-left: -1rem
}

.catalog-grid.gaps-md .grid-item {
    margin-bottom: 2rem;
    padding-right: 1rem;
    padding-left: 1rem
}

.catalog-grid.grid-columns-1 .grid-item,.catalog-grid.grid-columns-2 .grid-item,.catalog-grid.grid-columns-3 .grid-item,.catalog-grid.grid-columns-4 .grid-item,.catalog-grid.grid-columns-5 .grid-item,.catalog-grid.grid-columns-6 .grid-item {
    width: 100%;
    max-width: 100%
}

@media only screen and (max-width: 575px) {
    .catalog-grid.grid-columns-xs-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .catalog-grid.grid-columns-xs-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .catalog-grid.grid-columns-xs-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .catalog-grid.grid-columns-xs-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .catalog-grid.grid-columns-xs-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .catalog-grid.grid-columns-xs-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .catalog-grid.grid-columns-sm-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .catalog-grid.grid-columns-sm-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .catalog-grid.grid-columns-sm-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .catalog-grid.grid-columns-sm-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .catalog-grid.grid-columns-sm-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .catalog-grid.grid-columns-sm-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .catalog-grid.grid-columns-md-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .catalog-grid.grid-columns-md-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .catalog-grid.grid-columns-md-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .catalog-grid.grid-columns-md-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .catalog-grid.grid-columns-md-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .catalog-grid.grid-columns-md-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .catalog-grid.grid-columns-lg-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .catalog-grid.grid-columns-lg-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .catalog-grid.grid-columns-lg-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .catalog-grid.grid-columns-lg-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .catalog-grid.grid-columns-lg-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .catalog-grid.grid-columns-lg-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .catalog-grid.grid-columns-xl-1 .grid-item {
        width:100% !important;
        max-width: 100% !important
    }

    .catalog-grid.grid-columns-xl-2 .grid-item {
        width: 50% !important;
        max-width: 50% !important
    }

    .catalog-grid.grid-columns-xl-3 .grid-item {
        width: 33.333% !important;
        max-width: 33.333% !important
    }

    .catalog-grid.grid-columns-xl-4 .grid-item {
        width: 25% !important;
        max-width: 25% !important
    }

    .catalog-grid.grid-columns-xl-5 .grid-item {
        width: 20% !important;
        max-width: 20% !important
    }

    .catalog-grid.grid-columns-xl-6 .grid-item {
        width: 16.66% !important;
        max-width: 16.66% !important
    }
}

@media only screen and (min-width: 480px) {
    .catalog-grid.grid-columns-2 .grid-item,.catalog-grid.grid-columns-3 .grid-item,.catalog-grid.grid-columns-4 .grid-item,.catalog-grid.grid-columns-5 .grid-item,.catalog-grid.grid-columns-6 .grid-item {
        width:50%;
        max-width: 50%
    }
}

@media only screen and (min-width: 992px) {
    .catalog-grid.grid-columns-3 .grid-item,.catalog-grid.grid-columns-5 .grid-item,.catalog-grid.grid-columns-6 .grid-item {
        width:33.333%;
        max-width: 33.333%
    }
}

@media only screen and (min-width: 1200px) {
    .catalog-grid.grid-columns-1 .grid-item {
        width:100%;
        max-width: 100%
    }

    .catalog-grid.grid-columns-2 .grid-item {
        width: 50%;
        max-width: 50%
    }

    .catalog-grid.grid-columns-3 .grid-item {
        width: 33.333%;
        max-width: 33.333%
    }

    .catalog-grid.grid-columns-4 .grid-item {
        width: 25%;
        max-width: 25%
    }

    .catalog-grid.grid-columns-5 .grid-item {
        width: 20%;
        max-width: 20%
    }

    .catalog-grid.grid-columns-6 .grid-item {
        width: 16.66%;
        max-width: 16.66%
    }
}

.catalog-grid .grid-item {
    margin-bottom: 4rem;
}

@media only screen and (min-width: 1200px) {
    .catalog-grid .grid-item {
        margin-bottom:4rem;
    }
}

.w-category {
    display: block;
    padding: 2.2rem 1.7rem;
    background: #fff;
    height: 100%
}
.w-category:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #808080;
    -webkit-box-shadow: 0 0 2rem #D9D9D9;
    box-shadow: 0 0 2rem #D9D9D9;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    opacity: 0;
    z-index: -1
}



.w-category-media {
    text-align: center;
    height: 22.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.w-category-media img {
    max-width: 100%;
    max-height: 100%
}

.w-category-title {
    margin-top: 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #ffff;
    text-transform: uppercase;
    text-align: center
}

.w-category-title span {
    display: block;
    font-weight: 600;
    color: #000
}

.w-category-text {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: center;
    color: #C0C0C0
}



@media only screen and (min-width: 992px) {
    .w-category-title,.w-category-text {
        text-align:left
    }
}

.product {
    position: relative;
    height: 105%;
   
    margin:2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
   border: none;
    border-radius:3px;
    padding: 2rem .8rem;
    -webkit-transition: border-color .2s;
    -o-transition: border-color .2s;
    transition: border-color .2s
}



.product-got {
    position: relative;
   width:100%;
   
    margin:2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #232323;
   border: none;
    border-radius:3px;
    padding: 2rem .8rem;
    -webkit-transition: border-color .2s;
    -o-transition: border-color .2s;
    transition: border-color .2s
}
    
}



.product-label {
    font-weight: 500;
    font-size: 1.2rem;
    padding: .2rem 1.1rem;
    top: -.5rem;
    position: absolute;
    right: 0;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    -webkit-border-radius: 2rem;
    border-radius: 2rem;
    z-index: 1
}

.product-media {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom:  20px;
    max-height: 5rem;
    position: relative;
    display: block;
    z-index: 0
}

.product-media a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.product-media img {
    position: relative;
    margin-top: 8px;
    max-width: 100%;
    max-height: 100%;
    border: none;
    border-radius: 3px;
   box-shadow: inset 0 0 12px #000;
}

.product-body {
    padding-top: 4.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.product-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    font-size: 1.5rem;
    line-height: 1.9rem;
    font-weight: 400;
    color: #23303B;
   
}

.product-title a {
    display: block;
    color: #000;
    font-family:Montserrat, sans-serif;;
    line-height: 1.9rem;
    font-size:16px;
}

.product-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.product-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  height: 50px; /* Фіксована висота */
  line-height: 50px; /* Висота тексту дорівнює висоті кнопки */
  text-align: center;
}

.product-button span {
  display: inline-block; /* Дозволяє керувати вирівнюванням */
  vertical-align: middle; /* Вертикальне вирівнювання тексту */
  line-height: normal;
}



// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



@media only screen and (min-width: 480px) {
    .product-meta {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .product-button {
        margin-top: -100px;
    }
}

@media only screen and (min-width: 576px) {
   
}

@media only screen and (min-width: 1200px) {
    .product:hover {
        border-color:transparent
    }

    .product:hover:after {
        opacity: 1;
        -webkit-transform: scaleX(1.07) scaleY(1.05);
        -ms-transform: scaleX(1.07) scaleY(1.05);
        transform: scaleX(1.07) scaleY(1.05)
    }

    .product:hover .product-title a {
        color: #D54B40
    }
}

.carousel-catalog .product {
    border: none;
    padding: 0
}

.carousel-catalog .product-label {
    font-size: 1.1rem;
    padding: 0 .8rem;
    top: 0;
    font-weight: 400
}

.carousel-catalog .product-media {
    max-height: none;
    height: 19.5rem
}

.carousel-catalog .product-body {
    padding-top: 1.rem
}

@media only screen and (min-width: 1200px) {
    .carousel-catalog .product:hover:after {
        -webkit-transform:scaleX(1.18) scaleY(1.15);
        -ms-transform: scaleX(1.18) scaleY(1.15);
        transform: scaleX(1.18) scaleY(1.15)
    }
}

.product-single .product-label {
    top: 0;
    right: 3rem;
    padding: .5rem 2.2rem
}

.is-ie .product {
    display: block
}

.is-ie .product-body {
    display: block
}

.product-price {
    position: relative;
    word-spacing: 5px;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    word-spacing: 5px;
    line-height: 2.5rem;
    white-space: nowrap

}

.product-price-old {
    display: block;
    font-size: 1.6rem;
    line-height: 1.9rem;
    font-weight: 400;
    color: #A6A5A5;
    text-decoration: line-through;
    margin-bottom: .1rem
}

.product-price-sale {
    display: block;
    color: #000;
    position: relative;
    letter-spacing: 1.5px;
   margin-bottom: 50px;
margin-left: 13px;
    font-family:Montserrat, sans-serif;; 
    font-size: 30px;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.product-single .product-price {
    font-size: 3rem
}

.product-single .product-price-old {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem
}

.sorting {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4rem;
    font-size: 1.6rem
}

.sorting-item {
    margin-bottom: 2rem
}

.sorting-item:last-child {
    margin-bottom: 0
}

.sorting-item-title {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #ABABAB;
    margin-bottom: 1.4rem
}

@media only screen and (min-width: 768px) {
    .sorting {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-left: -1.5rem;
        margin-right: -1.5rem
    }

    .sorting-item {
        margin: 0 1.5rem
    }
}

@media only screen and (min-width: 992px) {
    .sorting {
        margin-bottom:5rem
    }
}

.filter-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.filter-price-input {
    width: 18rem
}

.filter-price-button {
    margin-left: 2.3rem
}

.range-module-slider {
    margin-right: 1rem;
    z-index: 0
}

.range-module-results {
    margin-bottom: 1.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.range-module-results input {
    width: 8rem;
    height: 2.5rem;
    padding: .5rem
}

.gallery-scroll {
    height: 28rem
}

@media only screen and (min-width: 480px) {
    .gallery-scroll {
        height:36.5rem
    }
}

@media only screen and (min-width: 768px) {
    .gallery-scroll {
        height:40rem
    }
}

.product-gallery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product-gallery-thumbs {
    width: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.product-gallery-thumbs-item {
    width: 5.5rem !important;
    height: 5.5rem !important;
    position: absolute;
    bottom: 5%;
    display: block;
    margin: .6rem 0
}

.product-gallery-thumbs-item img {
    border: .1rem solid transparent;
    -webkit-transition: border-color .25s;
    -o-transition: border-color .25s;
    transition: border-color .25s
}

.product-gallery-thumbs-item.slick-current img {
    border-color: #caccf5;
}

.product-gallery-main {
    position: relative;
    width: -webkit-calc(100% - 7.5rem);
    width: calc(100% - 7.5rem);
    height: 30rem
}

.product-gallery-main a {
    display: block;
    height: 100%;
    text-align: center
}

.product-gallery-main a img {
    max-width: 100%;
    max-height: 100%
}

@media only screen and (min-width: 480px) {
    .product-gallery-thumbs {
        width:10rem
    }

    .product-gallery-thumbs-item {
        width: 7.5rem !important;
        height: 7.5rem !important
    }

    .product-gallery-main {
        width: -webkit-calc(100% - 10rem);
        width: calc(100% - 10rem);
        height: 40rem
    }
}

@media only screen and (min-width: 768px) {
    .product-gallery-thumbs {
        width:15.5rem
    }

    .product-gallery-thumbs-item {
        width: 8rem !important;
        height: 8rem !important
    }

    .product-gallery-main {
        width: -webkit-calc(100% - 15.5rem);
        width: calc(100% - 15.5rem);
        height: 50rem
    }
}

@media only screen and (min-width: 992px) {
    .product-gallery-thumbs {
        width:11rem
    }

    .product-gallery-thumbs-item {
        width: 9rem !important;
        height: 9rem !important
    }

    .product-gallery-main {
        padding-left: 1.5rem;
        width: -webkit-calc(100% - 11rem);
        width: calc(100% - 11rem);
        height: 44.5rem
    }
}

@media only screen and (min-width: 1200px) {
    .product-gallery-main {
        padding-left:3.5rem
    }
}

.product-single {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 0
}

.product-single-media {
    width: 100%
}

.product-single-media a {
    display: block;
    height: 100%;
    text-align: center
}

.product-single-media img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.product-single-body {
    width: 100%;
    margin-top: 5rem
}

.product-single-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem
}

.product-single-button {
    margin-top: 3rem
}

.product-single .product-video-button {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    text-align: center
}

@media only screen and (min-width: 576px) {
    .product-single-meta {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left
    }

    .product-single-button {
        margin-top: 0;
        position:absolute;
    }

    .product-single .product-video-button {
        margin-top: 3.5rem
    }
}

@media only screen and (min-width: 768px) {
    .product-single-meta {
        margin-bottom:1rem
    }

    .product-single-body {
        margin-top: 3rem
    }
}

@media only screen and (min-width: 992px) {
    .product-single {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .product-single-media {
        width: 50rem
    }

    .product-single-body {
        width: -webkit-calc(100% - 50rem);
        width: calc(100% - 50rem);
        margin-top: 0;
        padding-left: 3rem
    }
}

@media only screen and (min-width: 1200px) {
    .product-single-media {
        width:63.5rem
    }

    .product-single-body {
        width: -webkit-calc(100% - 63.5rem);
        width: calc(100% - 63.5rem)
    }
}

.footer {
    padding-top: 2.5rem;
    padding-bottom: 3rem;

}

.footer-wrapper {
    background: linear-gradient(#0f0f0f, #303030 )
    margin-top: 5rem;

}

.footer-meta {
    margin-top: 3.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-phones {
    font-size: 1.5rem;
    color: #000;
    line-height: 2.7rem;
}

.footer-phones a {
    color: #000
}

.footer-phones a:hover {
    color: #000
}

.footer-logo img {
    width: 16rem
}

.footer-copyrights {
    border-top: 0.1rem solid rgba(000,000,000,0.6);
    padding: 1.2rem 0;
    color: #000;
    background-color: #333333;
}

.footer-copyrights small {
    font-size: 1.2rem
}

@media only screen and (min-width: 380px) {
    .footer-phones {
        font-size:1.6rem;
        line-height: 2.9rem
    }

    .footer-logo img {
        width: 18rem
    }
}

@media only screen and (min-width: 992px) {
    .footer-meta {
        display:block;
        text-align: center;
        margin-top: 0
    }

    .footer-logo {
        position: relative;
        bottom: 20px;
    }
}

.body-overlay {
    -webkit-animation: fade-in .35s;
    animation: fade-in .35s;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 900;
    opacity: .55
}

@media only screen and (min-width: 992px) {
    .body-overlay {
        display:none
    }
}

.carousel-init:not(.slick-initialized) div,.carousel-init:not(.slick-initialized) a {
    display: none
}

.carousel-init:not(.slick-initialized) div:first-child,.carousel-init:not(.slick-initialized) a:first-child {
    display: block;
    overflow: hidden
}

.slick-slider {
    position: relative;
    margin: 0;
    padding: 0 3rem
}

.slick-slider:not(.slick-initialized) div,.slick-slider:not(.slick-initialized) a {
    display: none
}

.slick-slider:not(.slick-initialized) div:first-child,.slick-slider:not(.slick-initialized) a:first-child {
    display: block;
    -webkit-border-radius: 2rem;
    border-radius: 2rem;
    overflow: hidden
}

.slick-slider.main-slider,.product-gallery .slick-slider {
    padding: 0
}

.slick-slider.carousel-catalog {
    padding: 0 1.5rem
}

.product-gallery-main .slick-slider {
    height: 100%
}

.product-gallery-thumbs .slick-slider {
    padding: 1.5rem 0
}

.opis{
    border: 1rem #adadad;
}
.slick-list {
    padding: 0
}

@media only screen and (min-width: 480px) {
    .carousel-catalog .slick-list {
        padding:0 1.5rem
    }
}

.main-slider .slick-list,.product-gallery .slick-list,.main-slider .slick-track,.product-gallery .slick-track {
    height: 100%
}

.slick-initialized .slick-slide {
    outline: none
}

.slick-slide {
    position: relative;
    padding: 0 1.5rem
}

.main-slider .slick-slide,.product-gallery-main .slick-slide {
    padding: 0
}

.product-gallery-main .slick-slide {
    text-align: center
}

.product-gallery-main .slick-slide img {
    display: inline-block
}

.product-gallery-thumbs .slick-slide {
    padding: 0;
}

.product-gallery .slick-slide:hover {
    cursor: pointer
}

.carousel-catalog .slick-slide {
    padding: 4.5rem .5rem
}

@media only screen and (min-width: 480px) {
    .carousel-catalog .slick-slide {
        padding:4.5rem 1.5rem
    }
}

.carousel-single-product .slick-slide {
    margin-bottom: 3rem;
    text-align: center
}

.carousel-single-product .slick-slide img {
    width: 100%;
    height: 100%;
    max-height: 45rem;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain"
}

.slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    background: none;
    z-index: 1;
    line-height: 1;
    cursor: pointer
}

.slick-arrow:before {
    font-size: 4.5rem;
    color: #356997;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.slick-arrow:hover:before {
    color: #D54B40
}

.slick-arrow.slick-prev {
    left: 0
}

.slick-arrow.slick-prev:before {
    content: "\e902"
}

.slick-arrow.slick-next {
    right: 0
}

.slick-arrow.slick-next:before {
    content: "\e903"
}

.product-gallery-thumbs .slick-arrow {
    top: auto;
    left: .5rem;
    width: 4.5rem;
    height: 4.5rem;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.product-gallery-thumbs .slick-arrow.slick-prev {
    top: -1.6rem
}

.product-gallery-thumbs .slick-arrow.slick-next {
    bottom: -1.6rem
}

@media only screen and (min-width: 480px) {
    .product-gallery-thumbs .slick-arrow {
        left:1.5rem
    }
}

@media only screen and (min-width: 768px) {
    .product-gallery-thumbs .slick-arrow {
        left:1.8rem
    }
}

@media only screen and (min-width: 992px) {
    .product-gallery-thumbs .slick-arrow {
        left:2.3rem
    }
}

.arrows_light .slick-arrow:before {
    color: #fff
}

.arrows_light .slick-arrow:hover:before {
    color: #DE7067
}

.carousel-single-product .slick-arrow {
    margin-top: -3.7rem
}

.carousel-single-product .slick-arrow:before {
    color: #D54B40
}

.carousel-single-product .slick-arrow:hover:before {
    color: #23303B
}

.carousel-single-product .slick-arrow.slick-disabled {
    display: none !important
}

.slick-dots {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.slick-dots li {
    width: 1rem;
    height: 1rem;
    margin: 0 .5rem
}

.slick-dots li.slick-active button {
    opacity: 1
}

.slick-dots li button {
    opacity: .5;
    border: none;
    padding: 0;
    margin: 0;
    width: 1rem;
    height: 1rem;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 0.2rem solid #D54B40;
    background-color: transparent;
    text-indent: -999rem
}

.slick-dots li button:hover {
    background-color: #D54B40
}

.main-slider .slick-dots {
    bottom: 4rem
}

.carousel-single-product .slick-dots {
    margin-top: 3rem
}

.scroll-top {
    cursor: pointer;
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1.5rem;
    width: 4rem;
    height: 3.8rem;
    text-align: center;
    z-index: 99;
    opacity: .4
}

.scroll-top:before {
    content: "";
    display: block;
    position: relative;
    top: 1.6rem;
    left: 1.4rem;
    color: #fff;
    width: 1.2rem;
    height: 1.2rem;
    border-right: .2rem solid #fff;
    border-bottom: .2rem solid #fff;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.scroll-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #A6A5A5;
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    z-index: -1;
    -webkit-transition: background-color .25s;
    -o-transition: background-color .25s;
    transition: background-color .25s
}

.scroll-top:hover:after {
    background-color: #cccbcb
}

@media only screen and (min-width: 1200px) {
    .scroll-top {
        bottom:2rem;
        right: 8rem
    }
}

.not-clickable-item {
    cursor: default
}

.lazy {
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.lazy_show {
    opacity: 1
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: .55
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: .55
    }
}

@-webkit-keyframes scale-in {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-in {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scale-out {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes scale-out {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

.ml-auto {
    margin-left: auto !important
}

.ml-0 {
    margin-left: 0 !important
}

.ml-5 {
    margin-left: 5px !important
}

.ml-10 {
    margin-left: 10px !important
}

.ml-15 {
    margin-left: 15px !important
}

.ml-20 {
    margin-left: 20px !important
}

.ml-25 {
    margin-left: 25px !important
}

.ml-30 {
    margin-left: 30px !important
}

.ml-35 {
    margin-left: 35px !important
}

.ml-40 {
    margin-left: 40px !important
}

.ml-45 {
    margin-left: 45px !important
}

.ml-50 {
    margin-left: 50px !important
}

.ml-60 {
    margin-left: 60px !important
}

.ml-70 {
    margin-left: 70px !important
}

.ml-80 {
    margin-left: 80px !important
}

.ml-90 {
    margin-left: 90px !important
}

.ml-100 {
    margin-left: 100px !important
}

.ml-110 {
    margin-left: 110px !important
}

.ml-120 {
    margin-left: 120px !important
}

.ml-130 {
    margin-left: 130px !important
}

.ml-140 {
    margin-left: 140px !important
}

.ml-150 {
    margin-left: 150px !important
}

.ml-200 {
    margin-left: 200px !important
}

.mr-auto {
    margin-right: auto !important
}

.mr-0 {
    margin-right: 0 !important
}

.mr-5 {
    margin-right: 5px !important
}

.mr-10 {
    margin-right: 10px !important
}

.mr-15 {
    margin-right: 15px !important
}

.mr-20 {
    margin-right: 20px !important
}

.mr-25 {
    margin-right: 25px !important
}

.mr-30 {
    margin-right: 30px !important
}

.mr-35 {
    margin-right: 35px !important
}

.mr-40 {
    margin-right: 40px !important
}

.mr-45 {
    margin-right: 45px !important
}

.mr-50 {
    margin-right: 50px !important
}

.mr-60 {
    margin-right: 60px !important
}

.mr-70 {
    margin-right: 70px !important
}

.mr-80 {
    margin-right: 80px !important
}

.mr-90 {
    margin-right: 90px !important
}

.mr-100 {
    margin-right: 100px !important
}

.mr-110 {
    margin-right: 110px !important
}

.mr-120 {
    margin-right: 120px !important
}

.mr-130 {
    margin-right: 130px !important
}

.mr-140 {
    margin-right: 140px !important
}

.mr-150 {
    margin-right: 150px !important
}

.mr-200 {
    margin-right: 200px !important
}

.mt-auto {
    margin-top: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-5 {
    margin-top: 5px !important
}

.mt-10 {
    margin-top: 10px !important
}

.mt-15 {
    margin-top: 15px !important
}

.mt-20 {
    margin-top: 20px !important
}

.mt-25 {
    margin-top: 25px !important
}

.mt-30 {
    margin-top: 30px !important
}

.mt-35 {
    margin-top: 35px !important
}

.mt-40 {
    margin-top: 40px !important
}

.mt-45 {
    margin-top: 45px !important
}

.mt-50 {
    margin-top: 50px !important
}

.mt-56 {
    margin-top: 56px !important
}

.mt-60 {
    margin-top: 60px !important
}

.mt-70 {
    margin-top: 70px !important
}

.mt-80 {
    margin-top: 80px !important
}

.mt-90 {
    margin-top: 90px !important
}

.mt-100 {
    margin-top: 100px !important
}

.mt-110 {
    margin-top: 110px !important
}

.mt-120 {
    margin-top: 120px !important
}

.mt-130 {
    margin-top: 130px !important
}

.mt-140 {
    margin-top: 140px !important
}

.mt-150 {
    margin-top: 150px !important
}

.mt-200 {
    margin-top: 200px !important
}

.mt-250 {
    margin-top: 250px !important
}

.mt-300 {
    margin-top: 300px !important
}

.mb-auto {
    margin-bottom: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-5 {
    margin-bottom: 5px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-15 {
    margin-bottom: 15px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-25 {
    margin-bottom: 25px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-35 {
    margin-bottom: 35px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-45 {
    margin-bottom: 45px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-70 {
    margin-bottom: 70px !important
}

.mb-80 {
    margin-bottom: 80px !important
}

.mb-90 {
    margin-bottom: 90px !important
}

.mb-100 {
    margin-bottom: 100px !important
}

.mb-110 {
    margin-bottom: 110px !important
}

.mb-120 {
    margin-bottom: 120px !important
}

.mb-130 {
    margin-bottom: 130px !important
}

.mb-140 {
    margin-bottom: 140px !important
}

.mb-150 {
    margin-bottom: 150px !important
}

.mb-200 {
    margin-bottom: 200px !important
}

.mb-250 {
    margin-bottom: 250px !important
}

.mb-300 {
    margin-bottom: 300px !important
}

.mnl-10 {
    margin-left: -10px !important
}

.mnl-15 {
    margin-left: -15px !important
}

.mnl-20 {
    margin-left: -20px !important
}

.mnl-30 {
    margin-left: -30px !important
}

.mnl-40 {
    margin-left: -40px !important
}

.mnl-50 {
    margin-left: -50px !important
}

.mnl-60 {
    margin-left: -60px !important
}

.mnl-70 {
    margin-left: -70px !important
}

.mnl-80 {
    margin-left: -80px !important
}

.mnl-90 {
    margin-left: -90px !important
}

.mnl-100 {
    margin-left: -100px !important
}

.mnl-110 {
    margin-left: -110px !important
}

.mnl-120 {
    margin-left: -120px !important
}

.mnl-130 {
    margin-left: -130px !important
}

.mnl-140 {
    margin-left: -140px !important
}

.mnl-150 {
    margin-left: -150px !important
}

.mnl-200 {
    margin-left: -200px !important
}

.mnl-250 {
    margin-left: -250px !important
}

.mnl-300 {
    margin-left: -300px !important
}

.mnl-350 {
    margin-left: -350px !important
}

.mnr-10 {
    margin-right: -10px !important
}

.mnr-15 {
    margin-right: -15px !important
}

.mnr-20 {
    margin-right: -20px !important
}

.mnr-30 {
    margin-right: -30px !important
}

.mnr-40 {
    margin-right: -40px !important
}

.mnr-50 {
    margin-right: -50px !important
}

.mnr-60 {
    margin-right: -60px !important
}

.mnr-70 {
    margin-right: -70px !important
}

.mnr-80 {
    margin-right: -80px !important
}

.mnr-90 {
    margin-right: -90px !important
}

.mnr-100 {
    margin-right: -100px !important
}

.mnr-110 {
    margin-right: -110px !important
}

.mnr-120 {
    margin-right: -120px !important
}

.mnr-130 {
    margin-right: -130px !important
}

.mnr-140 {
    margin-right: -140px !important
}

.mnr-150 {
    margin-right: -150px !important
}

.mnr-200 {
    margin-right: -200px !important
}

.mnr-250 {
    margin-right: -250px !important
}

.mnr-300 {
    margin-right: -300px !important
}

.mnr-350 {
    margin-right: -350px !important
}

.mnt-5 {
    margin-top: -5px !important
}

.mnt-10 {
    margin-top: -10px !important
}

.mnt-20 {
    margin-top: -20px !important
}

.mnt-30 {
    margin-top: -30px !important
}

.mnt-40 {
    margin-top: -40px !important
}

.mnt-50 {
    margin-top: -50px !important
}

.mnt-60 {
    margin-top: -60px !important
}

.mnt-70 {
    margin-top: -70px !important
}

.mnt-80 {
    margin-top: -80px !important
}

.mnt-90 {
    margin-top: -90px !important
}

.mnt-100 {
    margin-top: -100px !important
}

.mnt-110 {
    margin-top: -110px !important
}

.mnt-120 {
    margin-top: -120px !important
}

.mnt-130 {
    margin-top: -130px !important
}

.mnt-140 {
    margin-top: -140px !important
}

.mnt-150 {
    margin-top: -150px !important
}

.mnt-160 {
    margin-top: -160px !important
}

.mnt-170 {
    margin-top: -170px !important
}

.mnt-180 {
    margin-top: -180px !important
}

.mnt-190 {
    margin-top: -190px !important
}

.mnt-200 {
    margin-top: -200px !important
}

.mnt-150 {
    margin-top: -150px !important
}

.mnt-200 {
    margin-top: -200px !important
}

.mnt-250 {
    margin-top: -250px !important
}

.mnt-300 {
    margin-top: -300px !important
}

.mnt-350 {
    margin-top: -350px !important
}

.mnb-10 {
    margin-bottom: -10px !important
}

.mnb-20 {
    margin-bottom: -20px !important
}

.mnb-30 {
    margin-bottom: -30px !important
}

.mnb-40 {
    margin-bottom: -40px !important
}

.mnb-50 {
    margin-bottom: -50px !important
}

.mnb-60 {
    margin-bottom: -60px !important
}

.mnb-70 {
    margin-bottom: -70px !important
}

.mnb-80 {
    margin-bottom: -80px !important
}

.mnb-90 {
    margin-bottom: -90px !important
}

.mnb-100 {
    margin-bottom: -100px !important
}

.mnb-110 {
    margin-bottom: -110px !important
}

.mnb-120 {
    margin-bottom: -120px !important
}

.mnb-130 {
    margin-bottom: -130px !important
}

.mnb-140 {
    margin-bottom: -140px !important
}

.mnb-150 {
    margin-bottom: -150px !important
}

.mnb-200 {
    margin-bottom: -200px !important
}

.mnb-250 {
    margin-bottom: -250px !important
}

.mnb-300 {
    margin-bottom: -300px !important
}

.mnb-350 {
    margin-bottom: -350px !important
}

.pl-0 {
    padding-left: 0 !important
}

.pl-5 {
    padding-left: 5px !important
}

.pl-10 {
    padding-left: 10px !important
}

.pl-15 {
    padding-left: 15px !important
}

.pl-20 {
    padding-left: 20px !important
}

.pl-25 {
    padding-left: 25px !important
}

.pl-30 {
    padding-left: 30px !important
}

.pl-35 {
    padding-left: 35px !important
}

.pl-40 {
    padding-left: 40px !important
}

.pl-45 {
    padding-left: 45px !important
}

.pl-50 {
    padding-left: 50px !important
}

.pl-55 {
    padding-left: 55px !important
}

.pl-60 {
    padding-left: 60px !important
}

.pl-70 {
    padding-left: 70px !important
}

.pl-80 {
    padding-left: 80px !important
}

.pl-90 {
    padding-left: 90px !important
}

.pl-100 {
    padding-left: 100px !important
}

.pl-110 {
    padding-left: 110px !important
}

.pl-120 {
    padding-left: 120px !important
}

.pl-130 {
    padding-left: 130px !important
}

.pl-140 {
    padding-left: 140px !important
}

.pl-150 {
    padding-left: 150px !important
}

.pl-160 {
    padding-left: 160px !important
}

.pl-170 {
    padding-left: 170px !important
}

.pl-180 {
    padding-left: 180px !important
}

.pl-190 {
    padding-left: 190px !important
}

.pl-200 {
    padding-left: 200px !important
}

.pr-0 {
    padding-right: 0 !important
}

.pr-5 {
    padding-right: 5px !important
}

.pr-10 {
    padding-right: 10px !important
}

.pr-15 {
    padding-right: 15px !important
}

.pr-20 {
    padding-right: 20px !important
}

.pr-25 {
    padding-right: 25px !important
}

.pr-30 {
    padding-right: 30px !important
}

.pr-35 {
    padding-right: 35px !important
}

.pr-40 {
    padding-right: 40px !important
}

.pr-45 {
    padding-right: 45px !important
}

.pr-50 {
    padding-right: 50px !important
}

.pr-55 {
    padding-right: 55px !important
}

.pr-60 {
    padding-right: 60px !important
}

.pr-70 {
    padding-right: 70px !important
}

.pr-80 {
    padding-right: 80px !important
}

.pr-90 {
    padding-right: 90px !important
}

.pr-100 {
    padding-right: 100px !important
}

.pr-110 {
    padding-right: 110px !important
}

.pr-120 {
    padding-right: 120px !important
}

.pr-130 {
    padding-right: 130px !important
}

.pr-140 {
    padding-right: 140px !important
}

.pr-150 {
    padding-right: 150px !important
}

.pr-160 {
    padding-right: 160px !important
}

.pr-170 {
    padding-right: 170px !important
}

.pr-180 {
    padding-right: 180px !important
}

.pr-190 {
    padding-right: 190px !important
}

.pr-200 {
    padding-right: 200px !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-5 {
    padding-top: 5px !important
}

.pt-10 {
    padding-top: 10px !important
}

.pt-15 {
    padding-top: 15px !important
}

.pt-20 {
    padding-top: 20px !important
}

.pt-25 {
    padding-top: 25px !important
}

.pt-30 {
    padding-top: 30px !important
}

.pt-35 {
    padding-top: 35px !important
}

.pt-40 {
    padding-top: 40px !important
}

.pt-45 {
    padding-top: 45px !important
}

.pt-50 {
    padding-top: 50px !important
}

.pt-55 {
    padding-top: 55px !important
}

.pt-60 {
    padding-top: 60px !important
}

.pt-70 {
    padding-top: 70px !important
}

.pt-80 {
    padding-top: 80px !important
}

.pt-90 {
    padding-top: 90px !important
}

.pt-100 {
    padding-top: 100px !important
}

.pt-110 {
    padding-top: 110px !important
}

.pt-120 {
    padding-top: 120px !important
}

.pt-130 {
    padding-top: 130px !important
}

.pt-140 {
    padding-top: 140px !important
}

.pt-150 {
    padding-top: 150px !important
}

.pt-160 {
    padding-top: 160px !important
}

.pt-170 {
    padding-top: 170px !important
}

.pt-180 {
    padding-top: 180px !important
}

.pt-190 {
    padding-top: 190px !important
}

.pt-200 {
    padding-top: 200px !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: 1px !important
}

.pb-2 {
    padding-bottom: 2px !important
}

.pb-3 {
    padding-bottom: 3px !important
}

.pb-4 {
    padding-bottom: 4px !important
}

.pb-5 {
    padding-bottom: 5px !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.pb-15 {
    padding-bottom: 15px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.pb-25 {
    padding-bottom: 25px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.pb-35 {
    padding-bottom: 35px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.pb-45 {
    padding-bottom: 45px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.pb-55 {
    padding-bottom: 55px !important
}

.pb-60 {
    padding-bottom: 60px !important
}

.pb-70 {
    padding-bottom: 70px !important
}

.pb-80 {
    padding-bottom: 80px !important
}

.pb-90 {
    padding-bottom: 90px !important
}

.pb-100 {
    padding-bottom: 100px !important
}

.pb-110 {
    padding-bottom: 110px !important
}

.pb-120 {
    padding-bottom: 120px !important
}

.pb-130 {
    padding-bottom: 130px !important
}

.pb-140 {
    padding-bottom: 140px !important
}

.pb-150 {
    padding-bottom: 150px !important
}

.pb-160 {
    padding-bottom: 160px !important
}

.pb-170 {
    padding-bottom: 170px !important
}

.pb-180 {
    padding-bottom: 180px !important
}

.pb-190 {
    padding-bottom: 190px !important
}

.pb-200 {
    padding-bottom: 200px !important
}

.fs-9 {
    font-size: 9px !important
}

.fs-11 {
    font-size: 11px !important
}

.fs-12 {
    font-size: 12px !important
}

.fs-13 {
    font-size: 13px !important
}

.fs-14 {
    font-size: 14px !important
}

.fs-15 {
    font-size: 15px !important
}

.fs-16 {
    font-size: 16px !important
}

.fs-17 {
    font-size: 17px !important
}

.fs-18 {
    font-size: 18px !important
}

.fs-20 {
    font-size: 20px !important
}

.fs-22 {
    font-size: 22px !important
}

.fs-24 {
    font-size: 24px !important
}

.fs-26 {
    font-size: 26px !important
}

.fs-28 {
    font-size: 28px !important
}

.fs-30 {
    font-size: 30px !important
}

.fs-32 {
    font-size: 32px !important
}

.fs-34 {
    font-size: 34px !important
}

.fs-36 {
    font-size: 36px !important
}

.fs-38 {
    font-size: 38px !important
}

.fs-40 {
    font-size: 40px !important
}

.fs-42 {
    font-size: 42px !important
}

.fs-44 {
    font-size: 44px !important
}

.fs-46 {
    font-size: 46px !important
}

.fs-48 {
    font-size: 48px !important
}

.fs-50 {
    font-size: 50px !important
}

.fs-52 {
    font-size: 52px !important
}

.fs-54 {
    font-size: 54px !important
}

.fs-56 {
    font-size: 56px !important
}

.fs-58 {
    font-size: 58px !important
}

.fs-60 {
    font-size: 60px !important
}

.fs-62 {
    font-size: 62px !important
}

.fs-64 {
    font-size: 64px !important
}

.fs-66 {
    font-size: 66px !important
}

.fs-68 {
    font-size: 68px !important
}

.fs-70 {
    font-size: 70px !important
}

.fs-72 {
    font-size: 72px !important
}

.fs-74 {
    font-size: 74px !important
}

.fs-76 {
    font-size: 76px !important
}

.fs-78 {
    font-size: 78px !important
}

.fs-80 {
    font-size: 80px !important
}

.fs-100 {
    font-size: 100px !important
}

.fs-120 {
    font-size: 120px !important
}

.fs-150 {
    font-size: 150px !important
}

.fs-200 {
    font-size: 200px !important
}

.w-5 {
    width: 5% !important
}

.w-10 {
    width: 10% !important
}

.w-15 {
    width: 15% !important
}

.w-16 {
    width: 16.66% !important
}

.w-20 {
    width: 20% !important
}

.w-25 {
    width: 25% !important
}

.w-30 {
    width: 30% !important
}

.w-33 {
    width: 33.333% !important
}

.w-35 {
    width: 35% !important
}

.w-40 {
    width: 40% !important
}

.w-45 {
    width: 45% !important
}

.w-50 {
    width: 50% !important
}

.w-55 {
    width: 55% !important
}

.w-60 {
    width: 60% !important
}

.w-65 {
    width: 65% !important
}

.w-70 {
    width: 70% !important
}

.w-75 {
    width: 75% !important
}

.w-80 {
    width: 80% !important
}

.w-85 {
    width: 85% !important
}

.w-90 {
    width: 90% !important
}

.w-95 {
    width: 95% !important
}

.w-100 {
    width: 100% !important
}

.h-5 {
    height: 5% !important
}

.h-10 {
    height: 10% !important
}

.h-15 {
    height: 15% !important
}

.h-20 {
    height: 20% !important
}

.h-25 {
    height: 25% !important
}

.h-30 {
    height: 30% !important
}

.h-35 {
    height: 35% !important
}

.h-40 {
    height: 40% !important
}

.h-45 {
    height: 45% !important
}

.h-50 {
    height: 50% !important
}

.h-55 {
    height: 55% !important
}

.h-60 {
    height: 60% !important
}

.h-65 {
    height: 65% !important
}

.h-70 {
    height: 70% !important
}

.h-75 {
    height: 75% !important
}

.h-80 {
    height: 80% !important
}

.h-85 {
    height: 85% !important
}

.h-90 {
    height: 90% !important
}

.h-95 {
    height: 95% !important
}

.h-100 {
    height: 100% !important
}

.w-auto {
    width: auto !important
}

.w-0 {
    width: 0 !important
}

.w-50px {
    width: 50px !important
}

.w-100px {
    width: 100px !important
}

.w-150px {
    width: 150px !important
}

.w-200px {
    width: 200px !important
}

.w-250px {
    width: 250px !important
}

.w-300px {
    width: 300px !important
}

.w-350px {
    width: 350px !important
}

.w-400px {
    width: 400px !important
}

.w-450px {
    width: 450px !important
}

.w-500px {
    width: 500px !important
}

.w-550px {
    width: 550px !important
}

.w-600px {
    width: 600px !important
}

.w-650px {
    width: 650px !important
}

.w-700px {
    width: 700px !important
}

.w-750px {
    width: 750px !important
}

.w-800px {
    width: 800px !important
}

.w-850px {
    width: 850px !important
}

.w-900px {
    width: 900px !important
}

.w-950px {
    width: 950px !important
}

.w-1000px {
    width: 1000px !important
}

.h-auto {
    height: auto !important
}

.h-0 {
    height: 0 !important
}

.h-25px {
    height: 25px !important
}

.h-50px {
    height: 50px !important
}

.h-100px {
    height: 100px !important
}

.h-150px {
    height: 150px !important
}

.h-200px {
    height: 200px !important
}

.h-250px {
    height: 250px !important
}

.h-300px {
    height: 300px !important
}

.h-350px {
    height: 350px !important
}

.h-400px {
    height: 400px !important
}

.h-450px {
    height: 450px !important
}

.h-500px {
    height: 500px !important
}

.h-550px {
    height: 550px !important
}

.h-600px {
    height: 600px !important
}

.h-650px {
    height: 650px !important
}

.h-700px {
    height: 700px !important
}

.h-750px {
    height: 750px !important
}

.h-800px {
    height: 800px !important
}

.h-850px {
    height: 850px !important
}

.h-900px {
    height: 900px !important
}

.h-950px {
    height: 950px !important
}

.h-1000px {
    height: 1000px !important
}

.min-w-50px {
    min-width: 50px !important
}

.min-w-100px {
    min-width: 100px !important
}

.min-w-150px {
    min-width: 150px !important
}

.min-w-200px {
    min-width: 200px !important
}

.min-w-250px {
    min-width: 250px !important
}

.min-w-300px {
    min-width: 300px !important
}

.min-w-350px {
    min-width: 350px !important
}

.min-w-400px {
    min-width: 400px !important
}

.min-w-450px {
    min-width: 450px !important
}

.min-w-500px {
    min-width: 500px !important
}

.min-w-550px {
    min-width: 550px !important
}

.min-w-600px {
    min-width: 600px !important
}

.min-w-650px {
    min-width: 650px !important
}

.min-w-700px {
    min-width: 700px !important
}

.min-w-750px {
    min-width: 750px !important
}

.min-w-800px {
    min-width: 800px !important
}

.min-w-850px {
    min-width: 850px !important
}

.min-w-900px {
    min-width: 900px !important
}

.min-w-950px {
    min-width: 950px !important
}

.min-w-1000px {
    min-width: 1000px !important
}

.min-h-50px {
    min-height: 50px !important
}

.min-h-100px {
    min-height: 100px !important
}

.min-h-150px {
    min-height: 150px !important
}

.min-h-200px {
    min-height: 200px !important
}

.min-h-250px {
    min-height: 250px !important
}

.min-h-300px {
    min-height: 300px !important
}

.min-h-350px {
    min-height: 350px !important
}

.min-h-400px {
    min-height: 400px !important
}

.min-h-450px {
    min-height: 450px !important
}

.min-h-500px {
    min-height: 500px !important
}

.min-h-550px {
    min-height: 550px !important
}

.min-h-600px {
    min-height: 600px !important
}

.min-h-650px {
    min-height: 650px !important
}

.min-h-700px {
    min-height: 700px !important
}

.min-h-750px {
    min-height: 750px !important
}

.min-h-800px {
    min-height: 800px !important
}

.min-h-850px {
    min-height: 850px !important
}

.min-h-900px {
    min-height: 900px !important
}

.min-h-950px {
    min-height: 950px !important
}

.min-h-1000px {
    min-height: 1000px !important
}

.min-w-none {
    min-width: none !important
}

.max-w-none {
    max-width: none !important
}

.min-h-none {
    min-height: none !important
}

.max-h-none {
    max-height: none !important
}

.pull-none {
    float: none !important
}

.cleft {
    clear: left
}

.cright {
    clear: right
}

.cboth {
    clear: both
}

.text-left {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-right {
    text-align: right !important
}

.display-none {
    display: none !important
}

.display-block {
    display: block !important
}

.display-iblock {
    display: inline-block !important
}

.display-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.display-iflex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

.pos-a {
    position: absolute !important
}

.pos-r {
    position: relative !important
}

.pos-s {
    position: static !important
}

.z-0 {
    z-index: 0
}

.z-1 {
    z-index: 1
}

.z-10 {
    z-index: 10
}

.z-100 {
    z-index: 100
}

.z-1000 {
    z-index: 1000
}

.o-hidden {
    overflow: hidden !important
}

.o-hidden-x {
    overflow-x: hidden !important
}

.o-hidden-y {
    overflow-y: hidden !important
}

.flex-grow-1 {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media only screen and (min-width: 576px) {
    .ml-sm-auto {
        margin-left:auto !important
    }

    .ml-sm-0 {
        margin-left: 0 !important
    }

    .ml-sm-5 {
        margin-left: 5px !important
    }

    .ml-sm-10 {
        margin-left: 10px !important
    }

    .ml-sm-15 {
        margin-left: 15px !important
    }

    .ml-sm-20 {
        margin-left: 20px !important
    }

    .ml-sm-25 {
        margin-left: 25px !important
    }

    .ml-sm-30 {
        margin-left: 30px !important
    }

    .ml-sm-35 {
        margin-left: 35px !important
    }

    .ml-sm-40 {
        margin-left: 40px !important
    }

    .ml-sm-45 {
        margin-left: 45px !important
    }

    .ml-sm-50 {
        margin-left: 50px !important
    }

    .ml-sm-60 {
        margin-left: 60px !important
    }

    .ml-sm-70 {
        margin-left: 70px !important
    }

    .ml-sm-80 {
        margin-left: 80px !important
    }

    .ml-sm-90 {
        margin-left: 90px !important
    }

    .ml-sm-100 {
        margin-left: 100px !important
    }

    .ml-sm-110 {
        margin-left: 110px !important
    }

    .ml-sm-120 {
        margin-left: 120px !important
    }

    .ml-sm-130 {
        margin-left: 130px !important
    }

    .ml-sm-140 {
        margin-left: 140px !important
    }

    .ml-sm-150 {
        margin-left: 150px !important
    }

    .mr-sm-auto {
        margin-right: auto !important
    }

    .mr-sm-0 {
        margin-right: 0 !important
    }

    .mr-sm-5 {
        margin-right: 5px !important
    }

    .mr-sm-10 {
        margin-right: 10px !important
    }

    .mr-sm-15 {
        margin-right: 15px !important
    }

    .mr-sm-20 {
        margin-right: 20px !important
    }

    .mr-sm-25 {
        margin-right: 25px !important
    }

    .mr-sm-30 {
        margin-right: 30px !important
    }

    .mr-sm-35 {
        margin-right: 35px !important
    }

    .mr-sm-40 {
        margin-right: 40px !important
    }

    .mr-sm-45 {
        margin-right: 45px !important
    }

    .mr-sm-50 {
        margin-right: 50px !important
    }

    .mr-sm-60 {
        margin-right: 60px !important
    }

    .mr-sm-70 {
        margin-right: 70px !important
    }

    .mr-sm-80 {
        margin-right: 80px !important
    }

    .mr-sm-90 {
        margin-right: 90px !important
    }

    .mr-sm-100 {
        margin-right: 100px !important
    }

    .mr-sm-110 {
        margin-right: 110px !important
    }

    .mr-sm-120 {
        margin-right: 120px !important
    }

    .mr-sm-130 {
        margin-right: 130px !important
    }

    .mr-sm-140 {
        margin-right: 140px !important
    }

    .mr-sm-150 {
        margin-right: 150px !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-5 {
        margin-top: 5px !important
    }

    .mt-sm-10 {
        margin-top: 10px !important
    }

    .mt-sm-15 {
        margin-top: 15px !important
    }

    .mt-sm-20 {
        margin-top: 20px !important
    }

    .mt-sm-25 {
        margin-top: 25px !important
    }

    .mt-sm-30 {
        margin-top: 30px !important
    }

    .mt-sm-35 {
        margin-top: 35px !important
    }

    .mt-sm-40 {
        margin-top: 40px !important
    }

    .mt-sm-45 {
        margin-top: 45px !important
    }

    .mt-sm-50 {
        margin-top: 50px !important
    }

    .mt-sm-60 {
        margin-top: 60px !important
    }

    .mt-sm-70 {
        margin-top: 70px !important
    }

    .mt-sm-80 {
        margin-top: 80px !important
    }

    .mt-sm-90 {
        margin-top: 90px !important
    }

    .mt-sm-100 {
        margin-top: 100px !important
    }

    .mt-sm-110 {
        margin-top: 110px !important
    }

    .mt-sm-120 {
        margin-top: 120px !important
    }

    .mt-sm-130 {
        margin-top: 130px !important
    }

    .mt-sm-140 {
        margin-top: 140px !important
    }

    .mt-sm-150 {
        margin-top: 150px !important
    }

    .mt-sm-200 {
        margin-top: 200px !important
    }

    .mt-sm-250 {
        margin-top: 250px !important
    }

    .mb-auto {
        margin-bottom: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-5 {
        margin-bottom: 5px !important
    }

    .mb-sm-10 {
        margin-bottom: 10px !important
    }

    .mb-sm-15 {
        margin-bottom: 15px !important
    }

    .mb-sm-20 {
        margin-bottom: 20px !important
    }

    .mb-sm-25 {
        margin-bottom: 25px !important
    }

    .mb-sm-30 {
        margin-bottom: 30px !important
    }

    .mb-sm-35 {
        margin-bottom: 35px !important
    }

    .mb-sm-40 {
        margin-bottom: 40px !important
    }

    .mb-sm-45 {
        margin-bottom: 45px !important
    }

    .mb-sm-50 {
        margin-bottom: 50px !important
    }

    .mb-sm-60 {
        margin-bottom: 60px !important
    }

    .mb-sm-70 {
        margin-bottom: 70px !important
    }

    .mb-sm-80 {
        margin-bottom: 80px !important
    }

    .mb-sm-90 {
        margin-bottom: 90px !important
    }

    .mb-sm-100 {
        margin-bottom: 100px !important
    }

    .mb-sm-110 {
        margin-bottom: 110px !important
    }

    .mb-sm-120 {
        margin-bottom: 120px !important
    }

    .mb-sm-130 {
        margin-bottom: 130px !important
    }

    .mb-sm-140 {
        margin-bottom: 140px !important
    }

    .mb-sm-150 {
        margin-bottom: 150px !important
    }

    .mb-sm-200 {
        margin-bottom: 200px !important
    }

    .mb-sm-250 {
        margin-bottom: 250px !important
    }

    .mnl-sm-10 {
        margin-left: -10px !important
    }

    .mnl-sm-20 {
        margin-left: -20px !important
    }

    .mnl-sm-30 {
        margin-left: -30px !important
    }

    .mnl-sm-40 {
        margin-left: -40px !important
    }

    .mnl-sm-50 {
        margin-left: -50px !important
    }

    .mnl-sm-60 {
        margin-left: -60px !important
    }

    .mnl-sm-70 {
        margin-left: -70px !important
    }

    .mnl-sm-80 {
        margin-left: -80px !important
    }

    .mnl-sm-90 {
        margin-left: -90px !important
    }

    .mnl-sm-100 {
        margin-left: -100px !important
    }

    .mnl-sm-110 {
        margin-left: -110px !important
    }

    .mnl-sm-120 {
        margin-left: -120px !important
    }

    .mnl-sm-130 {
        margin-left: -130px !important
    }

    .mnl-sm-140 {
        margin-left: -140px !important
    }

    .mnl-sm-150 {
        margin-left: -150px !important
    }

    .mnr-sm-10 {
        margin-right: -10px !important
    }

    .mnr-sm-20 {
        margin-right: -20px !important
    }

    .mnr-sm-30 {
        margin-right: -30px !important
    }

    .mnr-sm-40 {
        margin-right: -40px !important
    }

    .mnr-sm-50 {
        margin-right: -50px !important
    }

    .mnr-sm-60 {
        margin-right: -60px !important
    }

    .mnr-sm-70 {
        margin-right: -70px !important
    }

    .mnr-sm-80 {
        margin-right: -80px !important
    }

    .mnr-sm-90 {
        margin-right: -90px !important
    }

    .mnr-sm-100 {
        margin-right: -100px !important
    }

    .mnr-sm-110 {
        margin-right: -110px !important
    }

    .mnr-sm-120 {
        margin-right: -120px !important
    }

    .mnr-sm-130 {
        margin-right: -130px !important
    }

    .mnr-sm-140 {
        margin-right: -140px !important
    }

    .mnr-sm-150 {
        margin-right: -150px !important
    }

    .mnt-sm-10 {
        margin-top: -10px !important
    }

    .mnt-sm-20 {
        margin-top: -20px !important
    }

    .mnt-sm-30 {
        margin-top: -30px !important
    }

    .mnt-sm-40 {
        margin-top: -40px !important
    }

    .mnt-sm-50 {
        margin-top: -50px !important
    }

    .mnt-sm-60 {
        margin-top: -60px !important
    }

    .mnt-sm-70 {
        margin-top: -70px !important
    }

    .mnt-sm-80 {
        margin-top: -80px !important
    }

    .mnt-sm-90 {
        margin-top: -90px !important
    }

    .mnt-sm-100 {
        margin-top: -100px !important
    }

    .mnt-sm-110 {
        margin-top: -110px !important
    }

    .mnt-sm-120 {
        margin-top: -120px !important
    }

    .mnt-sm-130 {
        margin-top: -130px !important
    }

    .mnt-sm-140 {
        margin-top: -140px !important
    }

    .mnt-sm-150 {
        margin-top: -150px !important
    }

    .mnb-sm-10 {
        margin-bottom: -10px !important
    }

    .mnb-sm-20 {
        margin-bottom: -20px !important
    }

    .mnb-sm-30 {
        margin-bottom: -30px !important
    }

    .mnb-sm-40 {
        margin-bottom: -40px !important
    }

    .mnb-sm-50 {
        margin-bottom: -50px !important
    }

    .mnb-sm-60 {
        margin-bottom: -60px !important
    }

    .mnb-sm-70 {
        margin-bottom: -70px !important
    }

    .mnb-sm-80 {
        margin-bottom: -80px !important
    }

    .mnb-sm-90 {
        margin-bottom: -90px !important
    }

    .mnb-sm-100 {
        margin-bottom: -100px !important
    }

    .mnb-sm-110 {
        margin-bottom: -110px !important
    }

    .mnb-sm-120 {
        margin-bottom: -120px !important
    }

    .mnb-sm-130 {
        margin-bottom: -130px !important
    }

    .mnb-sm-140 {
        margin-bottom: -140px !important
    }

    .mnb-sm-150 {
        margin-bottom: -150px !important
    }

    .pl-sm-0 {
        padding-left: 0 !important
    }

    .pl-sm-5 {
        padding-left: 5px !important
    }

    .pl-sm-10 {
        padding-left: 10px !important
    }

    .pl-sm-15 {
        padding-left: 15px !important
    }

    .pl-sm-20 {
        padding-left: 20px !important
    }

    .pl-sm-25 {
        padding-left: 25px !important
    }

    .pl-sm-30 {
        padding-left: 30px !important
    }

    .pl-sm-35 {
        padding-left: 35px !important
    }

    .pl-sm-40 {
        padding-left: 40px !important
    }

    .pl-sm-45 {
        padding-left: 45px !important
    }

    .pl-sm-50 {
        padding-left: 50px !important
    }

    .pl-sm-60 {
        padding-left: 60px !important
    }

    .pl-sm-70 {
        padding-left: 70px !important
    }

    .pl-sm-80 {
        padding-left: 80px !important
    }

    .pl-sm-90 {
        padding-left: 90px !important
    }

    .pl-sm-100 {
        padding-left: 100px !important
    }

    .pl-sm-110 {
        padding-left: 110px !important
    }

    .pl-sm-120 {
        padding-left: 120px !important
    }

    .pl-sm-130 {
        padding-left: 130px !important
    }

    .pl-sm-140 {
        padding-left: 140px !important
    }

    .pl-sm-150 {
        padding-left: 150px !important
    }

    .pr-sm-0 {
        padding-right: 0 !important
    }

    .pr-sm-5 {
        padding-right: 5px !important
    }

    .pr-sm-10 {
        padding-right: 10px !important
    }

    .pr-sm-15 {
        padding-right: 15px !important
    }

    .pr-sm-20 {
        padding-right: 20px !important
    }

    .pr-sm-25 {
        padding-right: 25px !important
    }

    .pr-sm-30 {
        padding-right: 30px !important
    }

    .pr-sm-35 {
        padding-right: 35px !important
    }

    .pr-sm-40 {
        padding-right: 40px !important
    }

    .pr-sm-45 {
        padding-right: 45px !important
    }

    .pr-sm-50 {
        padding-right: 50px !important
    }

    .pr-sm-60 {
        padding-right: 60px !important
    }

    .pr-sm-70 {
        padding-right: 70px !important
    }

    .pr-sm-80 {
        padding-right: 80px !important
    }

    .pr-sm-90 {
        padding-right: 90px !important
    }

    .pr-sm-100 {
        padding-right: 100px !important
    }

    .pr-sm-110 {
        padding-right: 110px !important
    }

    .pr-sm-120 {
        padding-right: 120px !important
    }

    .pr-sm-130 {
        padding-right: 130px !important
    }

    .pr-sm-140 {
        padding-right: 140px !important
    }

    .pr-sm-150 {
        padding-right: 150px !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-5 {
        padding-top: 5px !important
    }

    .pt-sm-10 {
        padding-top: 10px !important
    }

    .pt-sm-15 {
        padding-top: 15px !important
    }

    .pt-sm-20 {
        padding-top: 20px !important
    }

    .pt-sm-25 {
        padding-top: 25px !important
    }

    .pt-sm-30 {
        padding-top: 30px !important
    }

    .pt-sm-35 {
        padding-top: 35px !important
    }

    .pt-sm-40 {
        padding-top: 40px !important
    }

    .pt-sm-45 {
        padding-top: 45px !important
    }

    .pt-sm-50 {
        padding-top: 50px !important
    }

    .pt-sm-60 {
        padding-top: 60px !important
    }

    .pt-sm-70 {
        padding-top: 70px !important
    }

    .pt-sm-80 {
        padding-top: 80px !important
    }

    .pt-sm-90 {
        padding-top: 90px !important
    }

    .pt-sm-100 {
        padding-top: 100px !important
    }

    .pt-sm-110 {
        padding-top: 110px !important
    }

    .pt-sm-120 {
        padding-top: 120px !important
    }

    .pt-sm-130 {
        padding-top: 130px !important
    }

    .pt-sm-140 {
        padding-top: 140px !important
    }

    .pt-sm-150 {
        padding-top: 150px !important
    }

    .pt-sm-200 {
        padding-top: 200px !important
    }

    .pt-sm-250 {
        padding-top: 250px !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-5 {
        padding-bottom: 5px !important
    }

    .pb-sm-10 {
        padding-bottom: 10px !important
    }

    .pb-sm-15 {
        padding-bottom: 15px !important
    }

    .pb-sm-20 {
        padding-bottom: 20px !important
    }

    .pb-sm-25 {
        padding-bottom: 25px !important
    }

    .pb-sm-30 {
        padding-bottom: 30px !important
    }

    .pb-sm-35 {
        padding-bottom: 35px !important
    }

    .pb-sm-40 {
        padding-bottom: 40px !important
    }

    .pb-sm-45 {
        padding-bottom: 45px !important
    }

    .pb-sm-50 {
        padding-bottom: 50px !important
    }

    .pb-sm-60 {
        padding-bottom: 60px !important
    }

    .pb-sm-70 {
        padding-bottom: 70px !important
    }

    .pb-sm-80 {
        padding-bottom: 80px !important
    }

    .pb-sm-90 {
        padding-bottom: 90px !important
    }

    .pb-sm-100 {
        padding-bottom: 100px !important
    }

    .pb-sm-110 {
        padding-bottom: 110px !important
    }

    .pb-sm-120 {
        padding-bottom: 120px !important
    }

    .pb-sm-130 {
        padding-bottom: 130px !important
    }

    .pb-sm-140 {
        padding-bottom: 140px !important
    }

    .pb-sm-150 {
        padding-bottom: 150px !important
    }

    .pb-sm-200 {
        padding-bottom: 200px !important
    }

    .pb-sm-250 {
        padding-bottom: 250px !important
    }

    .fs-sm-9 {
        font-size: 9px !important
    }

    .fs-sm-11 {
        font-size: 11px !important
    }

    .fs-sm-12 {
        font-size: 12px !important
    }

    .fs-sm-13 {
        font-size: 13px !important
    }

    .fs-sm-14 {
        font-size: 14px !important
    }

    .fs-sm-15 {
        font-size: 15px !important
    }

    .fs-sm-16 {
        font-size: 16px !important
    }

    .fs-sm-17 {
        font-size: 17px !important
    }

    .fs-sm-18 {
        font-size: 18px !important
    }

    .fs-sm-20 {
        font-size: 20px !important
    }

    .fs-sm-22 {
        font-size: 22px !important
    }

    .fs-sm-24 {
        font-size: 24px !important
    }

    .fs-sm-26 {
        font-size: 26px !important
    }

    .fs-sm-28 {
        font-size: 28px !important
    }

    .fs-sm-30 {
        font-size: 30px !important
    }

    .fs-sm-32 {
        font-size: 32px !important
    }

    .fs-sm-34 {
        font-size: 34px !important
    }

    .fs-sm-36 {
        font-size: 36px !important
    }

    .fs-sm-38 {
        font-size: 38px !important
    }

    .fs-sm-40 {
        font-size: 40px !important
    }

    .fs-sm-42 {
        font-size: 42px !important
    }

    .fs-sm-44 {
        font-size: 44px !important
    }

    .fs-sm-46 {
        font-size: 46px !important
    }

    .fs-sm-48 {
        font-size: 48px !important
    }

    .fs-sm-50 {
        font-size: 50px !important
    }

    .fs-sm-52 {
        font-size: 52px !important
    }

    .fs-sm-54 {
        font-size: 54px !important
    }

    .fs-sm-56 {
        font-size: 56px !important
    }

    .fs-sm-58 {
        font-size: 58px !important
    }

    .fs-sm-60 {
        font-size: 60px !important
    }

    .fs-sm-62 {
        font-size: 62px !important
    }

    .fs-sm-64 {
        font-size: 64px !important
    }

    .fs-sm-66 {
        font-size: 66px !important
    }

    .fs-sm-68 {
        font-size: 68px !important
    }

    .fs-sm-70 {
        font-size: 70px !important
    }

    .fs-sm-72 {
        font-size: 72px !important
    }

    .fs-sm-74 {
        font-size: 74px !important
    }

    .fs-sm-76 {
        font-size: 76px !important
    }

    .fs-sm-78 {
        font-size: 78px !important
    }

    .fs-sm-80 {
        font-size: 80px !important
    }

    .fs-sm-100 {
        font-size: 100px !important
    }

    .fs-sm-120 {
        font-size: 120px !important
    }

    .fs-sm-150 {
        font-size: 150px !important
    }

    .fs-sm-200 {
        font-size: 200px !important
    }

    .w-sm-5 {
        width: 5% !important
    }

    .w-sm-10 {
        width: 10% !important
    }

    .w-sm-15 {
        width: 15% !important
    }

    .w-sm-16 {
        width: 16.66% !important
    }

    .w-sm-20 {
        width: 20% !important
    }

    .w-sm-25 {
        width: 25% !important
    }

    .w-sm-30 {
        width: 30% !important
    }

    .w-sm-33 {
        width: 33.333% !important
    }

    .w-sm-35 {
        width: 35% !important
    }

    .w-sm-40 {
        width: 40% !important
    }

    .w-sm-45 {
        width: 45% !important
    }

    .w-sm-50 {
        width: 50% !important
    }

    .w-sm-55 {
        width: 55% !important
    }

    .w-sm-60 {
        width: 60% !important
    }

    .w-sm-65 {
        width: 65% !important
    }

    .w-sm-70 {
        width: 70% !important
    }

    .w-sm-75 {
        width: 75% !important
    }

    .w-sm-80 {
        width: 80% !important
    }

    .w-sm-85 {
        width: 85% !important
    }

    .w-sm-90 {
        width: 90% !important
    }

    .w-sm-95 {
        width: 95% !important
    }

    .w-sm-100 {
        width: 100% !important
    }

    .h-sm-5 {
        height: 5% !important
    }

    .h-sm-10 {
        height: 10% !important
    }

    .h-sm-15 {
        height: 15% !important
    }

    .h-sm-20 {
        height: 20% !important
    }

    .h-sm-25 {
        height: 25% !important
    }

    .h-sm-30 {
        height: 30% !important
    }

    .h-sm-35 {
        height: 35% !important
    }

    .h-sm-40 {
        height: 40% !important
    }

    .h-sm-45 {
        height: 45% !important
    }

    .h-sm-50 {
        height: 50% !important
    }

    .h-sm-55 {
        height: 55% !important
    }

    .h-sm-60 {
        height: 60% !important
    }

    .h-sm-65 {
        height: 65% !important
    }

    .h-sm-70 {
        height: 70% !important
    }

    .h-sm-75 {
        height: 75% !important
    }

    .h-sm-80 {
        height: 80% !important
    }

    .h-sm-85 {
        height: 85% !important
    }

    .h-sm-90 {
        height: 90% !important
    }

    .h-sm-95 {
        height: 95% !important
    }

    .h-sm-100 {
        height: 100% !important
    }

    .w-sm-auto {
        width: auto !important
    }

    .w-sm-0 {
        width: 0 !important
    }

    .w-sm-50px {
        width: 50px !important
    }

    .w-sm-100px {
        width: 100px !important
    }

    .w-sm-150px {
        width: 150px !important
    }

    .w-sm-200px {
        width: 200px !important
    }

    .w-sm-250px {
        width: 250px !important
    }

    .w-sm-300px {
        width: 300px !important
    }

    .w-sm-350px {
        width: 350px !important
    }

    .w-sm-400px {
        width: 400px !important
    }

    .w-sm-450px {
        width: 450px !important
    }

    .w-sm-500px {
        width: 500px !important
    }

    .w-sm-550px {
        width: 550px !important
    }

    .w-sm-600px {
        width: 600px !important
    }

    .w-sm-650px {
        width: 650px !important
    }

    .w-sm-700px {
        width: 700px !important
    }

    .w-sm-750px {
        width: 750px !important
    }

    .w-sm-800px {
        width: 800px !important
    }

    .w-sm-850px {
        width: 850px !important
    }

    .w-sm-900px {
        width: 900px !important
    }

    .w-sm-950px {
        width: 950px !important
    }

    .w-sm-1000px {
        width: 1000px !important
    }

    .h-sm-auto {
        height: auto !important
    }

    .h-sm-0 {
        height: 0 !important
    }

    .h-sm-50px {
        height: 50px !important
    }

    .h-sm-100px {
        height: 100px !important
    }

    .h-sm-150px {
        height: 150px !important
    }

    .h-sm-200px {
        height: 200px !important
    }

    .h-sm-250px {
        height: 250px !important
    }

    .h-sm-300px {
        height: 300px !important
    }

    .h-sm-350px {
        height: 350px !important
    }

    .h-sm-400px {
        height: 400px !important
    }

    .h-sm-450px {
        height: 450px !important
    }

    .h-sm-500px {
        height: 500px !important
    }

    .h-sm-550px {
        height: 550px !important
    }

    .h-sm-600px {
        height: 600px !important
    }

    .h-sm-650px {
        height: 650px !important
    }

    .h-sm-700px {
        height: 700px !important
    }

    .h-sm-750px {
        height: 750px !important
    }

    .h-sm-800px {
        height: 800px !important
    }

    .h-sm-850px {
        height: 850px !important
    }

    .h-sm-900px {
        height: 900px !important
    }

    .h-sm-950px {
        height: 950px !important
    }

    .h-sm-1000px {
        height: 1000px !important
    }

    .min-w-sm-50px {
        min-width: 50px !important
    }

    .min-w-sm-100px {
        min-width: 100px !important
    }

    .min-w-sm-150px {
        min-width: 150px !important
    }

    .min-w-sm-200px {
        min-width: 200px !important
    }

    .min-w-sm-250px {
        min-width: 250px !important
    }

    .min-w-sm-300px {
        min-width: 300px !important
    }

    .min-w-sm-350px {
        min-width: 350px !important
    }

    .min-w-sm-400px {
        min-width: 400px !important
    }

    .min-w-sm-450px {
        min-width: 450px !important
    }

    .min-w-sm-500px {
        min-width: 500px !important
    }

    .min-w-sm-550px {
        min-width: 550px !important
    }

    .min-w-sm-600px {
        min-width: 600px !important
    }

    .min-w-sm-650px {
        min-width: 650px !important
    }

    .min-w-sm-700px {
        min-width: 700px !important
    }

    .min-w-sm-750px {
        min-width: 750px !important
    }

    .min-w-sm-800px {
        min-width: 800px !important
    }

    .min-w-sm-850px {
        min-width: 850px !important
    }

    .min-w-sm-900px {
        min-width: 900px !important
    }

    .min-w-sm-950px {
        min-width: 950px !important
    }

    .min-w-sm-1000px {
        min-width: 1000px !important
    }

    .min-h-sm-50px {
        min-height: 50px !important
    }

    .min-h-sm-100px {
        min-height: 100px !important
    }

    .min-h-sm-150px {
        min-height: 150px !important
    }

    .min-h-sm-200px {
        min-height: 200px !important
    }

    .min-h-sm-250px {
        min-height: 250px !important
    }

    .min-h-sm-300px {
        min-height: 300px !important
    }

    .min-h-sm-350px {
        min-height: 350px !important
    }

    .min-h-sm-400px {
        min-height: 400px !important
    }

    .min-h-sm-450px {
        min-height: 450px !important
    }

    .min-h-sm-500px {
        min-height: 500px !important
    }

    .min-h-sm-550px {
        min-height: 550px !important
    }

    .min-h-sm-600px {
        min-height: 600px !important
    }

    .min-h-sm-650px {
        min-height: 650px !important
    }

    .min-h-sm-700px {
        min-height: 700px !important
    }

    .min-h-sm-750px {
        min-height: 750px !important
    }

    .min-h-sm-800px {
        min-height: 800px !important
    }

    .min-h-sm-850px {
        min-height: 850px !important
    }

    .min-h-sm-900px {
        min-height: 900px !important
    }

    .min-h-sm-950px {
        min-height: 950px !important
    }

    .min-h-sm-1000px {
        min-height: 1000px !important
    }

    .cleft-sm {
        clear: left
    }

    .cright-sm {
        clear: right
    }

    .cboth-sm {
        clear: both
    }

    .pull-none-sm {
        float: none !important
    }

    .display-none-sm {
        display: none !important
    }

    .display-block-sm {
        display: block !important
    }

    .display-iblock-sm {
        display: inline-block !important
    }

    .display-flex-sm {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .display-iflex-sm {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .pos-a-sm {
        position: absolute !important
    }

    .pos-r-sm {
        position: relative !important
    }

    .pos-s-sm {
        position: static !important
    }

    .btn.mid-padding-sm {
        padding: 10px 20px;
        line-height: 1
    }

    .btn.big-padding-sm {
        padding: 12px 23px;
        line-height: 1
    }

    .btn.long-padding-sm {
        padding: 10px 30px
    }

    .text-center-sm {
        text-align: center !important
    }

    .text-left-sm {
        text-align: left !important
    }

    .text-right-sm {
        text-align: right !important
    }
}

@media only screen and (min-width: 768px) {
    .ml-md-auto {
        margin-left:auto !important
    }

    .ml-md-0 {
        margin-left: 0 !important
    }

    .ml-md-5 {
        margin-left: 5px !important
    }

    .ml-md-10 {
        margin-left: 10px !important
    }

    .ml-md-15 {
        margin-left: 15px !important
    }

    .ml-md-20 {
        margin-left: 20px !important
    }

    .ml-md-25 {
        margin-left: 25px !important
    }

    .ml-md-30 {
        margin-left: 30px !important
    }

    .ml-md-35 {
        margin-left: 35px !important
    }

    .ml-md-40 {
        margin-left: 40px !important
    }

    .ml-md-45 {
        margin-left: 45px !important
    }

    .ml-md-50 {
        margin-left: 50px !important
    }

    .ml-md-60 {
        margin-left: 60px !important
    }

    .ml-md-70 {
        margin-left: 70px !important
    }

    .ml-md-80 {
        margin-left: 80px !important
    }

    .ml-md-90 {
        margin-left: 90px !important
    }

    .ml-md-100 {
        margin-left: 100px !important
    }

    .ml-md-110 {
        margin-left: 110px !important
    }

    .ml-md-120 {
        margin-left: 120px !important
    }

    .ml-md-130 {
        margin-left: 130px !important
    }

    .ml-md-140 {
        margin-left: 140px !important
    }

    .ml-md-150 {
        margin-left: 150px !important
    }

    .mr-auto {
        margin-right: auto !important
    }

    .mr-md-0 {
        margin-right: 0 !important
    }

    .mr-md-5 {
        margin-right: 5px !important
    }

    .mr-md-10 {
        margin-right: 10px !important
    }

    .mr-md-15 {
        margin-right: 15px !important
    }

    .mr-md-20 {
        margin-right: 20px !important
    }

    .mr-md-25 {
        margin-right: 25px !important
    }

    .mr-md-30 {
        margin-right: 30px !important
    }

    .mr-md-35 {
        margin-right: 35px !important
    }

    .mr-md-40 {
        margin-right: 40px !important
    }

    .mr-md-45 {
        margin-right: 45px !important
    }

    .mr-md-50 {
        margin-right: 50px !important
    }

    .mr-md-60 {
        margin-right: 60px !important
    }

    .mr-md-70 {
        margin-right: 70px !important
    }

    .mr-md-80 {
        margin-right: 80px !important
    }

    .mr-md-90 {
        margin-right: 90px !important
    }

    .mr-md-100 {
        margin-right: 100px !important
    }

    .mr-md-110 {
        margin-right: 110px !important
    }

    .mr-md-120 {
        margin-right: 120px !important
    }

    .mr-md-130 {
        margin-right: 130px !important
    }

    .mr-md-140 {
        margin-right: 140px !important
    }

    .mr-md-150 {
        margin-right: 150px !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-5 {
        margin-top: 5px !important
    }

    .mt-md-10 {
        margin-top: 10px !important
    }

    .mt-md-15 {
        margin-top: 15px !important
    }

    .mt-md-20 {
        margin-top: 20px !important
    }

    .mt-md-25 {
        margin-top: 25px !important
    }

    .mt-md-30 {
        margin-top: 30px !important
    }

    .mt-md-35 {
        margin-top: 35px !important
    }

    .mt-md-40 {
        margin-top: 40px !important
    }

    .mt-md-45 {
        margin-top: 45px !important
    }

    .mt-md-50 {
        margin-top: 150px !important
    }

    .mt-md-60 {
        margin-top: 60px !important
    }

    .mt-md-70 {
        margin-top: 70px !important
    }

    .mt-md-80 {
        margin-top: 80px !important
    }

    .mt-md-90 {
        margin-top: 90px !important
    }

    .mt-md-100 {
        margin-top: 100px !important
    }

    .mt-md-110 {
        margin-top: 110px !important
    }

    .mt-md-120 {
        margin-top: 120px !important
    }

    .mt-md-130 {
        margin-top: 130px !important
    }

    .mt-md-140 {
        margin-top: 140px !important
    }

    .mt-md-150 {
        margin-top: 150px !important
    }

    .mt-md-200 {
        margin-top: 200px !important
    }

    .mt-md-250 {
        margin-top: 250px !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-5 {
        margin-bottom: 5px !important
    }

    .mb-md-10 {
        margin-bottom: 10px !important
    }

    .mb-md-15 {
        margin-bottom: 15px !important
    }

    .mb-md-20 {
        margin-bottom: 20px !important
    }

    .mb-md-25 {
        margin-bottom: 25px !important
    }

    .mb-md-30 {
        margin-bottom: 30px !important
    }

    .mb-md-35 {
        margin-bottom: 35px !important
    }

    .mb-md-40 {
        margin-bottom: 40px !important
    }

    .mb-md-45 {
        margin-bottom: 45px !important
    }

    .mb-md-50 {
        margin-bottom: 50px !important
    }

    .mb-md-60 {
        margin-bottom: 60px !important
    }

    .mb-md-70 {
        margin-bottom: 70px !important
    }

    .mb-md-80 {
        margin-bottom: 80px !important
    }

    .mb-md-90 {
        margin-bottom: 90px !important
    }

    .mb-md-100 {
        margin-bottom: 100px !important
    }

    .mb-md-110 {
        margin-bottom: 110px !important
    }

    .mb-md-120 {
        margin-bottom: 120px !important
    }

    .mb-md-130 {
        margin-bottom: 130px !important
    }

    .mb-md-140 {
        margin-bottom: 140px !important
    }

    .mb-md-150 {
        margin-bottom: 150px !important
    }

    .mb-md-200 {
        margin-bottom: 200px !important
    }

    .mb-md-250 {
        margin-bottom: 250px !important
    }

    .mnl-md-10 {
        margin-left: -10px !important
    }

    .mnl-md-20 {
        margin-left: -20px !important
    }

    .mnl-md-30 {
        margin-left: -30px !important
    }

    .mnl-md-40 {
        margin-left: -40px !important
    }

    .mnl-md-50 {
        margin-left: -50px !important
    }

    .mnl-md-60 {
        margin-left: -60px !important
    }

    .mnl-md-70 {
        margin-left: -70px !important
    }

    .mnl-md-80 {
        margin-left: -80px !important
    }

    .mnl-md-90 {
        margin-left: -90px !important
    }

    .mnl-md-100 {
        margin-left: -100px !important
    }

    .mnl-md-110 {
        margin-left: -110px !important
    }

    .mnl-md-120 {
        margin-left: -120px !important
    }

    .mnl-md-130 {
        margin-left: -130px !important
    }

    .mnl-md-140 {
        margin-left: -140px !important
    }

    .mnl-md-150 {
        margin-left: -150px !important
    }

    .mnr-md-10 {
        margin-right: -10px !important
    }

    .mnr-md-20 {
        margin-right: -20px !important
    }

    .mnr-md-30 {
        margin-right: -30px !important
    }

    .mnr-md-40 {
        margin-right: -40px !important
    }

    .mnr-md-50 {
        margin-right: -50px !important
    }

    .mnr-md-60 {
        margin-right: -60px !important
    }

    .mnr-md-70 {
        margin-right: -70px !important
    }

    .mnr-md-80 {
        margin-right: -80px !important
    }

    .mnr-md-90 {
        margin-right: -90px !important
    }

    .mnr-md-100 {
        margin-right: -100px !important
    }

    .mnr-md-110 {
        margin-right: -110px !important
    }

    .mnr-md-120 {
        margin-right: -120px !important
    }

    .mnr-md-130 {
        margin-right: -130px !important
    }

    .mnr-md-140 {
        margin-right: -140px !important
    }

    .mnr-md-150 {
        margin-right: -150px !important
    }

    .mnt-md-10 {
        margin-top: -10px !important
    }

    .mnt-md-20 {
        margin-top: -20px !important
    }

    .mnt-md-30 {
        margin-top: -30px !important
    }

    .mnt-md-40 {
        margin-top: -40px !important
    }

    .mnt-md-50 {
        margin-top: -50px !important
    }

    .mnt-md-60 {
        margin-top: -60px !important
    }

    .mnt-md-70 {
        margin-top: -70px !important
    }

    .mnt-md-80 {
        margin-top: -80px !important
    }

    .mnt-md-90 {
        margin-top: -90px !important
    }

    .mnt-md-100 {
        margin-top: -100px !important
    }

    .mnt-md-110 {
        margin-top: -110px !important
    }

    .mnt-md-120 {
        margin-top: -120px !important
    }

    .mnt-md-130 {
        margin-top: -130px !important
    }

    .mnt-md-140 {
        margin-top: -140px !important
    }

    .mnt-md-150 {
        margin-top: -150px !important
    }

    .mnb-md-10 {
        margin-bottom: -10px !important
    }

    .mnb-md-20 {
        margin-bottom: -20px !important
    }

    .mnb-md-30 {
        margin-bottom: -30px !important
    }

    .mnb-md-40 {
        margin-bottom: -40px !important
    }

    .mnb-md-50 {
        margin-bottom: -50px !important
    }

    .mnb-md-60 {
        margin-bottom: -60px !important
    }

    .mnb-md-70 {
        margin-bottom: -70px !important
    }

    .mnb-md-80 {
        margin-bottom: -80px !important
    }

    .mnb-md-90 {
        margin-bottom: -90px !important
    }

    .mnb-md-100 {
        margin-bottom: -100px !important
    }

    .mnb-md-110 {
        margin-bottom: -110px !important
    }

    .mnb-md-120 {
        margin-bottom: -120px !important
    }

    .mnb-md-130 {
        margin-bottom: -130px !important
    }

    .mnb-md-140 {
        margin-bottom: -140px !important
    }

    .mnb-md-150 {
        margin-bottom: -150px !important
    }

    .pl-md-0 {
        padding-left: 0 !important
    }

    .pl-md-5 {
        padding-left: 5px !important
    }

    .pl-md-10 {
        padding-left: 10px !important
    }

    .pl-md-15 {
        padding-left: 15px !important
    }

    .pl-md-20 {
        padding-left: 20px !important
    }

    .pl-md-25 {
        padding-left: 25px !important
    }

    .pl-md-30 {
        padding-left: 30px !important
    }

    .pl-md-35 {
        padding-left: 35px !important
    }

    .pl-md-40 {
        padding-left: 40px !important
    }

    .pl-md-45 {
        padding-left: 45px !important
    }

    .pl-md-50 {
        padding-left: 50px !important
    }

    .pl-md-60 {
        padding-left: 60px !important
    }

    .pl-md-70 {
        padding-left: 70px !important
    }

    .pl-md-80 {
        padding-left: 80px !important
    }

    .pl-md-90 {
        padding-left: 90px !important
    }

    .pl-md-100 {
        padding-left: 100px !important
    }

    .pl-md-110 {
        padding-left: 110px !important
    }

    .pl-md-120 {
        padding-left: 120px !important
    }

    .pl-md-130 {
        padding-left: 130px !important
    }

    .pl-md-140 {
        padding-left: 140px !important
    }

    .pl-md-150 {
        padding-left: 150px !important
    }

    .pr-md-0 {
        padding-right: 0 !important
    }

    .pr-md-5 {
        padding-right: 5px !important
    }

    .pr-md-10 {
        padding-right: 10px !important
    }

    .pr-md-15 {
        padding-right: 15px !important
    }

    .pr-md-20 {
        padding-right: 20px !important
    }

    .pr-md-25 {
        padding-right: 25px !important
    }

    .pr-md-30 {
        padding-right: 30px !important
    }

    .pr-md-35 {
        padding-right: 35px !important
    }

    .pr-md-40 {
        padding-right: 40px !important
    }

    .pr-md-45 {
        padding-right: 45px !important
    }

    .pr-md-50 {
        padding-right: 50px !important
    }

    .pr-md-60 {
        padding-right: 60px !important
    }

    .pr-md-70 {
        padding-right: 70px !important
    }

    .pr-md-80 {
        padding-right: 80px !important
    }

    .pr-md-90 {
        padding-right: 90px !important
    }

    .pr-md-100 {
        padding-right: 100px !important
    }

    .pr-md-110 {
        padding-right: 110px !important
    }

    .pr-md-120 {
        padding-right: 120px !important
    }

    .pr-md-130 {
        padding-right: 130px !important
    }

    .pr-md-140 {
        padding-right: 140px !important
    }

    .pr-md-150 {
        padding-right: 150px !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-5 {
        padding-top: 5px !important
    }

    .pt-md-10 {
        padding-top: 10px !important
    }

    .pt-md-15 {
        padding-top: 15px !important
    }

    .pt-md-20 {
        padding-top: 20px !important
    }

    .pt-md-25 {
        padding-top: 25px !important
    }

    .pt-md-30 {
        padding-top: 30px !important
    }

    .pt-md-35 {
        padding-top: 35px !important
    }

    .pt-md-40 {
        padding-top: 40px !important
    }

    .pt-md-45 {
        padding-top: 45px !important
    }

    .pt-md-50 {
        padding-top: 50px !important
    }

    .pt-md-60 {
        padding-top: 60px !important
    }

    .pt-md-70 {
        padding-top: 70px !important
    }

    .pt-md-80 {
        padding-top: 80px !important
    }

    .pt-md-90 {
        padding-top: 90px !important
    }

    .pt-md-100 {
        padding-top: 100px !important
    }

    .pt-md-110 {
        padding-top: 110px !important
    }

    .pt-md-120 {
        padding-top: 120px !important
    }

    .pt-md-130 {
        padding-top: 130px !important
    }

    .pt-md-140 {
        padding-top: 140px !important
    }

    .pt-md-150 {
        padding-top: 150px !important
    }

    .pt-md-200 {
        padding-top: 200px !important
    }

    .pt-md-250 {
        padding-top: 250px !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-5 {
        padding-bottom: 5px !important
    }

    .pb-md-10 {
        padding-bottom: 10px !important
    }

    .pb-md-15 {
        padding-bottom: 15px !important
    }

    .pb-md-20 {
        padding-bottom: 20px !important
    }

    .pb-md-25 {
        padding-bottom: 25px !important
    }

    .pb-md-30 {
        padding-bottom: 30px !important
    }

    .pb-md-35 {
        padding-bottom: 35px !important
    }

    .pb-md-40 {
        padding-bottom: 40px !important
    }

    .pb-md-45 {
        padding-bottom: 45px !important
    }

    .pb-md-50 {
        padding-bottom: 50px !important
    }

    .pb-md-60 {
        padding-bottom: 60px !important
    }

    .pb-md-70 {
        padding-bottom: 70px !important
    }

    .pb-md-80 {
        padding-bottom: 80px !important
    }

    .pb-md-90 {
        padding-bottom: 90px !important
    }

    .pb-md-100 {
        padding-bottom: 100px !important
    }

    .pb-md-110 {
        padding-bottom: 110px !important
    }

    .pb-md-120 {
        padding-bottom: 120px !important
    }

    .pb-md-130 {
        padding-bottom: 130px !important
    }

    .pb-md-140 {
        padding-bottom: 140px !important
    }

    .pb-md-150 {
        padding-bottom: 150px !important
    }

    .pb-md-200 {
        padding-bottom: 200px !important
    }

    .pb-md-250 {
        padding-bottom: 250px !important
    }

    .fs-md-9 {
        font-size: 9px !important
    }

    .fs-md-11 {
        font-size: 11px !important
    }

    .fs-md-12 {
        font-size: 12px !important
    }

    .fs-md-13 {
        font-size: 13px !important
    }

    .fs-md-14 {
        font-size: 14px !important
    }

    .fs-md-15 {
        font-size: 15px !important
    }

    .fs-md-16 {
        font-size: 16px !important
    }

    .fs-md-17 {
        font-size: 17px !important
    }

    .fs-md-18 {
        font-size: 18px !important
    }

    .fs-md-20 {
        font-size: 20px !important
    }

    .fs-md-22 {
        font-size: 22px !important
    }

    .fs-md-24 {
        font-size: 24px !important
    }

    .fs-md-26 {
        font-size: 26px !important
    }

    .fs-md-28 {
        font-size: 28px !important
    }

    .fs-md-30 {
        font-size: 30px !important
    }

    .fs-md-32 {
        font-size: 32px !important
    }

    .fs-md-34 {
        font-size: 34px !important
    }

    .fs-md-36 {
        font-size: 36px !important
    }

    .fs-md-38 {
        font-size: 38px !important
    }

    .fs-md-40 {
        font-size: 40px !important
    }

    .fs-md-42 {
        font-size: 42px !important
    }

    .fs-md-44 {
        font-size: 44px !important
    }

    .fs-md-46 {
        font-size: 46px !important
    }

    .fs-md-48 {
        font-size: 48px !important
    }

    .fs-md-50 {
        font-size: 50px !important
    }

    .fs-md-52 {
        font-size: 52px !important
    }

    .fs-md-54 {
        font-size: 54px !important
    }

    .fs-md-56 {
        font-size: 56px !important
    }

    .fs-md-58 {
        font-size: 58px !important
    }

    .fs-md-60 {
        font-size: 60px !important
    }

    .fs-md-62 {
        font-size: 62px !important
    }

    .fs-md-64 {
        font-size: 64px !important
    }

    .fs-md-66 {
        font-size: 66px !important
    }

    .fs-md-68 {
        font-size: 68px !important
    }

    .fs-md-70 {
        font-size: 70px !important
    }

    .fs-md-72 {
        font-size: 72px !important
    }

    .fs-md-74 {
        font-size: 74px !important
    }

    .fs-md-76 {
        font-size: 76px !important
    }

    .fs-md-78 {
        font-size: 78px !important
    }

    .fs-md-80 {
        font-size: 80px !important
    }

    .fs-md-100 {
        font-size: 100px !important
    }

    .fs-md-120 {
        font-size: 120px !important
    }

    .fs-md-150 {
        font-size: 150px !important
    }

    .fs-md-200 {
        font-size: 200px !important
    }

    .w-md-5 {
        width: 5% !important
    }

    .w-md-10 {
        width: 10% !important
    }

    .w-md-15 {
        width: 15% !important
    }

    .w-md-16 {
        width: 16.66% !important
    }

    .w-md-20 {
        width: 20% !important
    }

    .w-md-25 {
        width: 25% !important
    }

    .w-md-30 {
        width: 30% !important
    }

    .w-md-33 {
        width: 33.333% !important
    }

    .w-md-35 {
        width: 35% !important
    }

    .w-md-40 {
        width: 40% !important
    }

    .w-md-45 {
        width: 45% !important
    }

    .w-md-50 {
        width: 50% !important
    }

    .w-md-55 {
        width: 55% !important
    }

    .w-md-60 {
        width: 60% !important
    }

    .w-md-65 {
        width: 65% !important
    }

    .w-md-70 {
        width: 70% !important
    }

    .w-md-75 {
        width: 75% !important
    }

    .w-md-80 {
        width: 80% !important
    }

    .w-md-85 {
        width: 85% !important
    }

    .w-md-90 {
        width: 90% !important
    }

    .w-md-95 {
        width: 95% !important
    }

    .w-md-100 {
        width: 100% !important
    }

    .h-md-5 {
        height: 5% !important
    }

    .h-md-10 {
        height: 10% !important
    }

    .h-md-15 {
        height: 15% !important
    }

    .h-md-20 {
        height: 20% !important
    }

    .h-md-25 {
        height: 25% !important
    }

    .h-md-30 {
        height: 30% !important
    }

    .h-md-35 {
        height: 35% !important
    }

    .h-md-40 {
        height: 40% !important
    }

    .h-md-45 {
        height: 45% !important
    }

    .h-md-50 {
        height: 50% !important
    }

    .h-md-55 {
        height: 55% !important
    }

    .h-md-60 {
        height: 60% !important
    }

    .h-md-65 {
        height: 65% !important
    }

    .h-md-70 {
        height: 70% !important
    }

    .h-md-75 {
        height: 75% !important
    }

    .h-md-80 {
        height: 80% !important
    }

    .h-md-85 {
        height: 85% !important
    }

    .h-md-90 {
        height: 90% !important
    }

    .h-md-95 {
        height: 95% !important
    }

    .h-md-100 {
        height: 100% !important
    }

    .w-md-auto {
        width: auto !important
    }

    .w-md-0 {
        width: 0 !important
    }

    .w-md-50px {
        width: 50px !important
    }

    .w-md-100px {
        width: 100px !important
    }

    .w-md-150px {
        width: 150px !important
    }

    .w-md-200px {
        width: 200px !important
    }

    .w-md-250px {
        width: 250px !important
    }

    .w-md-300px {
        width: 300px !important
    }

    .w-md-350px {
        width: 350px !important
    }

    .w-md-400px {
        width: 400px !important
    }

    .w-md-450px {
        width: 450px !important
    }

    .w-md-500px {
        width: 500px !important
    }

    .w-md-550px {
        width: 550px !important
    }

    .w-md-600px {
        width: 600px !important
    }

    .w-md-650px {
        width: 650px !important
    }

    .w-md-700px {
        width: 700px !important
    }

    .w-md-750px {
        width: 750px !important
    }

    .w-md-800px {
        width: 800px !important
    }

    .w-md-850px {
        width: 850px !important
    }

    .w-md-900px {
        width: 900px !important
    }

    .w-md-950px {
        width: 950px !important
    }

    .w-md-1000px {
        width: 1000px !important
    }

    .h-md-auto {
        height: auto !important
    }

    .h-md-0 {
        height: 0 !important
    }

    .h-md-50px {
        height: 50px !important
    }

    .h-md-100px {
        height: 100px !important
    }

    .h-md-150px {
        height: 150px !important
    }

    .h-md-200px {
        height: 200px !important
    }

    .h-md-250px {
        height: 250px !important
    }

    .h-md-300px {
        height: 300px !important
    }

    .h-md-350px {
        height: 350px !important
    }

    .h-md-400px {
        height: 400px !important
    }

    .h-md-450px {
        height: 450px !important
    }

    .h-md-500px {
        height: 500px !important
    }

    .h-md-550px {
        height: 550px !important
    }

    .h-md-600px {
        height: 600px !important
    }

    .h-md-650px {
        height: 650px !important
    }

    .h-md-700px {
        height: 700px !important
    }

    .h-md-750px {
        height: 750px !important
    }

    .h-md-800px {
        height: 800px !important
    }

    .h-md-850px {
        height: 850px !important
    }

    .h-md-900px {
        height: 900px !important
    }

    .h-md-950px {
        height: 950px !important
    }

    .h-md-1000px {
        height: 1000px !important
    }

    .min-w-md-50px {
        min-width: 50px !important
    }

    .min-w-md-100px {
        min-width: 100px !important
    }

    .min-w-md-150px {
        min-width: 150px !important
    }

    .min-w-md-200px {
        min-width: 200px !important
    }

    .min-w-md-250px {
        min-width: 250px !important
    }

    .min-w-md-300px {
        min-width: 300px !important
    }

    .min-w-md-350px {
        min-width: 350px !important
    }

    .min-w-md-400px {
        min-width: 400px !important
    }

    .min-w-md-450px {
        min-width: 450px !important
    }

    .min-w-md-500px {
        min-width: 500px !important
    }

    .min-w-md-550px {
        min-width: 550px !important
    }

    .min-w-md-600px {
        min-width: 600px !important
    }

    .min-w-md-650px {
        min-width: 650px !important
    }

    .min-w-md-700px {
        min-width: 700px !important
    }

    .min-w-md-750px {
        min-width: 750px !important
    }

    .min-w-md-800px {
        min-width: 800px !important
    }

    .min-w-md-850px {
        min-width: 850px !important
    }

    .min-w-md-900px {
        min-width: 900px !important
    }

    .min-w-md-950px {
        min-width: 950px !important
    }

    .min-w-md-1000px {
        min-width: 1000px !important
    }

    .min-h-md-50px {
        min-height: 50px !important
    }

    .min-h-md-100px {
        min-height: 100px !important
    }

    .min-h-md-150px {
        min-height: 150px !important
    }

    .min-h-md-200px {
        min-height: 200px !important
    }

    .min-h-md-250px {
        min-height: 250px !important
    }

    .min-h-md-300px {
        min-height: 300px !important
    }

    .min-h-md-350px {
        min-height: 350px !important
    }

    .min-h-md-400px {
        min-height: 400px !important
    }

    .min-h-md-450px {
        min-height: 450px !important
    }

    .min-h-md-500px {
        min-height: 500px !important
    }

    .min-h-md-550px {
        min-height: 550px !important
    }

    .min-h-md-600px {
        min-height: 600px !important
    }

    .min-h-md-650px {
        min-height: 650px !important
    }

    .min-h-md-700px {
        min-height: 700px !important
    }

    .min-h-md-750px {
        min-height: 750px !important
    }

    .min-h-md-800px {
        min-height: 800px !important
    }

    .min-h-md-850px {
        min-height: 850px !important
    }

    .min-h-md-900px {
        min-height: 900px !important
    }

    .min-h-md-950px {
        min-height: 950px !important
    }

    .min-h-md-1000px {
        min-height: 1000px !important
    }

    .cleft-md {
        clear: left
    }

    .cright-md {
        clear: right
    }

    .cboth-md {
        clear: both
    }

    .pull-none-md {
        float: none !important
    }

    .display-none-md {
        display: none !important
    }

    .display-block-md {
        display: block !important
    }

    .display-iblock-md {
        display: inline-block !important
    }

    .display-flex-md {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .display-iflex-md {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .pos-a-md {
        position: absolute !important
    }

    .pos-r-md {
        position: relative !important
    }

    .pos-s-md {
        position: static !important
    }

    .btn.mid-padding-md {
        padding: 10px 20px;
        line-height: 1
    }

    .btn.big-padding-md {
        padding: 15px 30px;
        line-height: 1
    }

    .btn.long-padding-md {
        padding-left: 30px;
        padding-right: 30px
    }

    .text-center-md {
        text-align: center !important
    }

    .text-left-md {
        text-align: left !important
    }

    .text-right-md {
        text-align: right !important
    }
}

@media only screen and (min-width: 992px) {
    .ml-lg-auto {
        margin-left:auto !important
    }

    .ml-lg-0 {
        margin-left: 0 !important
    }

    .ml-lg-5 {
        margin-left: 5px !important
    }

    .ml-lg-10 {
        margin-left: 10px !important
    }

    .ml-lg-15 {
        margin-left: 15px !important
    }

    .ml-lg-20 {
        margin-left: 20px !important
    }

    .ml-lg-25 {
        margin-left: 25px !important
    }

    .ml-lg-30 {
        margin-left: 30px !important
    }

    .ml-lg-35 {
        margin-left: 35px !important
    }

    .ml-lg-40 {
        margin-left: 40px !important
    }

    .ml-lg-45 {
        margin-left: 45px !important
    }

    .ml-lg-50 {
        margin-left: 50px !important
    }

    .ml-lg-60 {
        margin-left: 60px !important
    }

    .ml-lg-70 {
        margin-left: 70px !important
    }

    .ml-lg-80 {
        margin-left: 80px !important
    }

    .ml-lg-90 {
        margin-left: 90px !important
    }

    .ml-lg-100 {
        margin-left: 100px !important
    }

    .ml-lg-110 {
        margin-left: 110px !important
    }

    .ml-lg-120 {
        margin-left: 120px !important
    }

    .ml-lg-130 {
        margin-left: 130px !important
    }

    .ml-lg-140 {
        margin-left: 140px !important
    }

    .ml-lg-150 {
        margin-left: 150px !important
    }

    .mr-lg-auto {
        margin-right: auto !important
    }

    .mr-lg-0 {
        margin-right: 0 !important
    }

    .mr-lg-5 {
        margin-right: 5px !important
    }

    .mr-lg-10 {
        margin-right: 10px !important
    }

    .mr-lg-15 {
        margin-right: 15px !important
    }

    .mr-lg-20 {
        margin-right: 20px !important
    }

    .mr-lg-25 {
        margin-right: 25px !important
    }

    .mr-lg-30 {
        margin-right: 30px !important
    }

    .mr-lg-35 {
        margin-right: 35px !important
    }

    .mr-lg-40 {
        margin-right: 40px !important
    }

    .mr-lg-45 {
        margin-right: 45px !important
    }

    .mr-lg-50 {
        margin-right: 50px !important
    }

    .mr-lg-60 {
        margin-right: 60px !important
    }

    .mr-lg-70 {
        margin-right: 70px !important
    }

    .mr-lg-80 {
        margin-right: 80px !important
    }

    .mr-lg-90 {
        margin-right: 90px !important
    }

    .mr-lg-100 {
        margin-right: 100px !important
    }

    .mr-lg-110 {
        margin-right: 110px !important
    }

    .mr-lg-120 {
        margin-right: 120px !important
    }

    .mr-lg-130 {
        margin-right: 130px !important
    }

    .mr-lg-140 {
        margin-right: 140px !important
    }

    .mr-lg-150 {
        margin-right: 150px !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-5 {
        margin-top: 5px !important
    }

    .mt-lg-10 {
        margin-top: 10px !important
    }

    .mt-lg-15 {
        margin-top: 15px !important
    }

    .mt-lg-20 {
        margin-top: 20px !important
    }

    .mt-lg-25 {
        margin-top: 25px !important
    }

    .mt-lg-30 {
        margin-top: 30px !important
    }

    .mt-lg-35 {
        margin-top: 35px !important
    }

    .mt-lg-40 {
        margin-top: 40px !important
    }

    .mt-lg-45 {
        margin-top: 45px !important
    }

    .mt-lg-50 {
        margin-top: 50px !important
    }

    .mt-lg-60 {
        margin-top: 60px !important
    }

    .mt-lg-70 {
        margin-top: 70px !important
    }

    .mt-lg-80 {
        margin-top: 80px !important
    }

    .mt-lg-90 {
        margin-top: 90px !important
    }

    .mt-lg-100 {
        margin-top: 100px !important
    }

    .mt-lg-110 {
        margin-top: 110px !important
    }

    .mt-lg-120 {
        margin-top: 120px !important
    }

    .mt-lg-130 {
        margin-top: 130px !important
    }

    .mt-lg-140 {
        margin-top: 140px !important
    }

    .mt-lg-150 {
        margin-top: 150px !important
    }

    .mt-lg-200 {
        margin-top: 200px !important
    }

    .mt-lg-250 {
        margin-top: 250px !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-5 {
        margin-bottom: 5px !important
    }

    .mb-lg-10 {
        margin-bottom: 10px !important
    }

    .mb-lg-15 {
        margin-bottom: 15px !important
    }

    .mb-lg-20 {
        margin-bottom: 20px !important
    }

    .mb-lg-25 {
        margin-bottom: 25px !important
    }

    .mb-lg-30 {
        margin-bottom: 30px !important
    }

    .mb-lg-35 {
        margin-bottom: 35px !important
    }

    .mb-lg-40 {
        margin-bottom: 40px !important
    }

    .mb-lg-45 {
        margin-bottom: 45px !important
    }

    .mb-lg-50 {
        margin-bottom: 50px !important
    }

    .mb-lg-60 {
        margin-bottom: 60px !important
    }

    .mb-lg-70 {
        margin-bottom: 70px !important
    }

    .mb-lg-80 {
        margin-bottom: 80px !important
    }

    .mb-lg-90 {
        margin-bottom: 90px !important
    }

    .mb-lg-100 {
        margin-bottom: 100px !important
    }

    .mb-lg-110 {
        margin-bottom: 110px !important
    }

    .mb-lg-120 {
        margin-bottom: 120px !important
    }

    .mb-lg-130 {
        margin-bottom: 130px !important
    }

    .mb-lg-140 {
        margin-bottom: 140px !important
    }

    .mb-lg-150 {
        margin-bottom: 150px !important
    }

    .mb-lg-200 {
        margin-bottom: 200px !important
    }

    .mb-lg-250 {
        margin-bottom: 250px !important
    }

    .mnl-lg-10 {
        margin-left: -10px !important
    }

    .mnl-lg-20 {
        margin-left: -20px !important
    }

    .mnl-lg-30 {
        margin-left: -30px !important
    }

    .mnl-lg-40 {
        margin-left: -40px !important
    }

    .mnl-lg-50 {
        margin-left: -50px !important
    }

    .mnl-lg-60 {
        margin-left: -60px !important
    }

    .mnl-lg-70 {
        margin-left: -70px !important
    }

    .mnl-lg-80 {
        margin-left: -80px !important
    }

    .mnl-lg-90 {
        margin-left: -90px !important
    }

    .mnl-lg-100 {
        margin-left: -100px !important
    }

    .mnl-lg-110 {
        margin-left: -110px !important
    }

    .mnl-lg-120 {
        margin-left: -120px !important
    }

    .mnl-lg-130 {
        margin-left: -130px !important
    }

    .mnl-lg-140 {
        margin-left: -140px !important
    }

    .mnl-lg-150 {
        margin-left: -150px !important
    }

    .mnr-lg-10 {
        margin-right: -10px !important
    }

    .mnr-lg-20 {
        margin-right: -20px !important
    }

    .mnr-lg-30 {
        margin-right: -30px !important
    }

    .mnr-lg-40 {
        margin-right: -40px !important
    }

    .mnr-lg-50 {
        margin-right: -50px !important
    }

    .mnr-lg-60 {
        margin-right: -60px !important
    }

    .mnr-lg-70 {
        margin-right: -70px !important
    }

    .mnr-lg-80 {
        margin-right: -80px !important
    }

    .mnr-lg-90 {
        margin-right: -90px !important
    }

    .mnr-lg-100 {
        margin-right: -100px !important
    }

    .mnr-lg-110 {
        margin-right: -110px !important
    }

    .mnr-lg-120 {
        margin-right: -120px !important
    }

    .mnr-lg-130 {
        margin-right: -130px !important
    }

    .mnr-lg-140 {
        margin-right: -140px !important
    }

    .mnr-lg-150 {
        margin-right: -150px !important
    }

    .mnt-lg-10 {
        margin-top: -10px !important
    }

    .mnt-lg-20 {
        margin-top: -20px !important
    }

    .mnt-lg-30 {
        margin-top: -30px !important
    }

    .mnt-lg-40 {
        margin-top: -40px !important
    }

    .mnt-lg-50 {
        margin-top: -50px !important
    }

    .mnt-lg-60 {
        margin-top: -60px !important
    }

    .mnt-lg-70 {
        margin-top: -70px !important
    }

    .mnt-lg-80 {
        margin-top: -80px !important
    }

    .mnt-lg-90 {
        margin-top: -90px !important
    }

    .mnt-lg-100 {
        margin-top: -100px !important
    }

    .mnt-lg-110 {
        margin-top: -110px !important
    }

    .mnt-lg-120 {
        margin-top: -120px !important
    }

    .mnt-lg-130 {
        margin-top: -130px !important
    }

    .mnt-lg-140 {
        margin-top: -140px !important
    }

    .mnt-lg-150 {
        margin-top: -150px !important
    }

    .mnb-lg-10 {
        margin-bottom: -10px !important
    }

    .mnb-lg-20 {
        margin-bottom: -20px !important
    }

    .mnb-lg-30 {
        margin-bottom: -30px !important
    }

    .mnb-lg-40 {
        margin-bottom: -40px !important
    }

    .mnb-lg-50 {
        margin-bottom: -50px !important
    }

    .mnb-lg-60 {
        margin-bottom: -60px !important
    }

    .mnb-lg-70 {
        margin-bottom: -70px !important
    }

    .mnb-lg-80 {
        margin-bottom: -80px !important
    }

    .mnb-lg-90 {
        margin-bottom: -90px !important
    }

    .mnb-lg-100 {
        margin-bottom: -100px !important
    }

    .mnb-lg-110 {
        margin-bottom: -110px !important
    }

    .mnb-lg-120 {
        margin-bottom: -120px !important
    }

    .mnb-lg-130 {
        margin-bottom: -130px !important
    }

    .mnb-lg-140 {
        margin-bottom: -140px !important
    }

    .mnb-lg-150 {
        margin-bottom: -150px !important
    }

    .pl-lg-0 {
        padding-left: 0 !important
    }

    .pl-lg-5 {
        padding-left: 5px !important
    }

    .pl-lg-10 {
        padding-left: 10px !important
    }

    .pl-lg-15 {
        padding-left: 15px !important
    }

    .pl-lg-20 {
        padding-left: 20px !important
    }

    .pl-lg-25 {
        padding-left: 25px !important
    }

    .pl-lg-30 {
        padding-left: 30px !important
    }

    .pl-lg-35 {
        padding-left: 35px !important
    }

    .pl-lg-40 {
        padding-left: 40px !important
    }

    .pl-lg-45 {
        padding-left: 45px !important
    }

    .pl-lg-50 {
        padding-left: 50px !important
    }

    .pl-lg-60 {
        padding-left: 60px !important
    }

    .pl-lg-70 {
        padding-left: 70px !important
    }

    .pl-lg-80 {
        padding-left: 80px !important
    }

    .pl-lg-90 {
        padding-left: 90px !important
    }

    .pl-lg-100 {
        padding-left: 100px !important
    }

    .pl-lg-110 {
        padding-left: 110px !important
    }

    .pl-lg-120 {
        padding-left: 120px !important
    }

    .pl-lg-130 {
        padding-left: 130px !important
    }

    .pl-lg-140 {
        padding-left: 140px !important
    }

    .pl-lg-150 {
        padding-left: 150px !important
    }

    .pr-lg-0 {
        padding-right: 0 !important
    }

    .pr-lg-5 {
        padding-right: 5px !important
    }

    .pr-lg-10 {
        padding-right: 10px !important
    }

    .pr-lg-15 {
        padding-right: 15px !important
    }

    .pr-lg-20 {
        padding-right: 20px !important
    }

    .pr-lg-25 {
        padding-right: 25px !important
    }

    .pr-lg-30 {
        padding-right: 30px !important
    }

    .pr-lg-35 {
        padding-right: 35px !important
    }

    .pr-lg-40 {
        padding-right: 40px !important
    }

    .pr-lg-45 {
        padding-right: 45px !important
    }

    .pr-lg-50 {
        padding-right: 50px !important
    }

    .pr-lg-60 {
        padding-right: 60px !important
    }

    .pr-lg-70 {
        padding-right: 70px !important
    }

    .pr-lg-80 {
        padding-right: 80px !important
    }

    .pr-lg-90 {
        padding-right: 90px !important
    }

    .pr-lg-100 {
        padding-right: 100px !important
    }

    .pr-lg-110 {
        padding-right: 110px !important
    }

    .pr-lg-120 {
        padding-right: 120px !important
    }

    .pr-lg-130 {
        padding-right: 130px !important
    }

    .pr-lg-140 {
        padding-right: 140px !important
    }

    .pr-lg-150 {
        padding-right: 150px !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-5 {
        padding-top: 5px !important
    }

    .pt-lg-10 {
        padding-top: 10px !important
    }

    .pt-lg-15 {
        padding-top: 15px !important
    }

    .pt-lg-20 {
        padding-top: 20px !important
    }

    .pt-lg-25 {
        padding-top: 25px !important
    }

    .pt-lg-30 {
        padding-top: 30px !important
    }

    .pt-lg-35 {
        padding-top: 35px !important
    }

    .pt-lg-40 {
        padding-top: 40px !important
    }

    .pt-lg-45 {
        padding-top: 45px !important
    }

    .pt-lg-50 {
        padding-top: 50px !important
    }

    .pt-lg-60 {
        padding-top: 60px !important
    }

    .pt-lg-70 {
        padding-top: 70px !important
    }

    .pt-lg-80 {
        padding-top: 80px !important
    }

    .pt-lg-90 {
        padding-top: 90px !important
    }

    .pt-lg-100 {
        padding-top: 100px !important
    }

    .pt-lg-110 {
        padding-top: 110px !important
    }

    .pt-lg-120 {
        padding-top: 120px !important
    }

    .pt-lg-130 {
        padding-top: 130px !important
    }

    .pt-lg-140 {
        padding-top: 140px !important
    }

    .pt-lg-150 {
        padding-top: 150px !important
    }

    .pt-lg-200 {
        padding-top: 200px !important
    }

    .pt-lg-250 {
        padding-top: 250px !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-5 {
        padding-bottom: 5px !important
    }

    .pb-lg-10 {
        padding-bottom: 10px !important
    }

    .pb-lg-15 {
        padding-bottom: 15px !important
    }

    .pb-lg-20 {
        padding-bottom: 20px !important
    }

    .pb-lg-25 {
        padding-bottom: 25px !important
    }

    .pb-lg-30 {
        padding-bottom: 30px !important
    }

    .pb-lg-35 {
        padding-bottom: 35px !important
    }

    .pb-lg-40 {
        padding-bottom: 40px !important
    }

    .pb-lg-45 {
        padding-bottom: 45px !important
    }

    .pb-lg-50 {
        padding-bottom: 50px !important
    }

    .pb-lg-60 {
        padding-bottom: 60px !important
    }

    .pb-lg-70 {
        padding-bottom: 70px !important
    }

    .pb-lg-80 {
        padding-bottom: 80px !important
    }

    .pb-lg-90 {
        padding-bottom: 90px !important
    }

    .pb-lg-100 {
        padding-bottom: 100px !important
    }

    .pb-lg-110 {
        padding-bottom: 110px !important
    }

    .pb-lg-120 {
        padding-bottom: 120px !important
    }

    .pb-lg-130 {
        padding-bottom: 130px !important
    }

    .pb-lg-140 {
        padding-bottom: 140px !important
    }

    .pb-lg-150 {
        padding-bottom: 150px !important
    }

    .pb-lg-200 {
        padding-bottom: 200px !important
    }

    .pb-lg-250 {
        padding-bottom: 250px !important
    }

    .fs-lg-9 {
        font-size: 9px !important
    }

    .fs-lg-11 {
        font-size: 11px !important
    }

    .fs-lg-12 {
        font-size: 12px !important
    }

    .fs-lg-13 {
        font-size: 13px !important
    }

    .fs-lg-14 {
        font-size: 14px !important
    }

    .fs-lg-15 {
        font-size: 15px !important
    }

    .fs-lg-16 {
        font-size: 16px !important
    }

    .fs-lg-17 {
        font-size: 17px !important
    }

    .fs-lg-18 {
        font-size: 18px !important
    }

    .fs-lg-20 {
        font-size: 20px !important
    }

    .fs-lg-22 {
        font-size: 22px !important
    }

    .fs-lg-24 {
        font-size: 24px !important
    }

    .fs-lg-26 {
        font-size: 26px !important
    }

    .fs-lg-28 {
        font-size: 28px !important
    }

    .fs-lg-30 {
        font-size: 30px !important
    }

    .fs-lg-32 {
        font-size: 32px !important
    }

    .fs-lg-34 {
        font-size: 34px !important
    }

    .fs-lg-36 {
        font-size: 36px !important
    }

    .fs-lg-38 {
        font-size: 38px !important
    }

    .fs-lg-40 {
        font-size: 40px !important
    }

    .fs-lg-42 {
        font-size: 42px !important
    }

    .fs-lg-44 {
        font-size: 44px !important
    }

    .fs-lg-46 {
        font-size: 46px !important
    }

    .fs-lg-48 {
        font-size: 48px !important
    }

    .fs-lg-50 {
        font-size: 50px !important
    }

    .fs-lg-52 {
        font-size: 52px !important
    }

    .fs-lg-54 {
        font-size: 54px !important
    }

    .fs-lg-56 {
        font-size: 56px !important
    }

    .fs-lg-58 {
        font-size: 58px !important
    }

    .fs-lg-60 {
        font-size: 60px !important
    }

    .fs-lg-62 {
        font-size: 62px !important
    }

    .fs-lg-64 {
        font-size: 64px !important
    }

    .fs-lg-66 {
        font-size: 66px !important
    }

    .fs-lg-68 {
        font-size: 68px !important
    }

    .fs-lg-70 {
        font-size: 70px !important
    }

    .fs-lg-72 {
        font-size: 72px !important
    }

    .fs-lg-74 {
        font-size: 74px !important
    }

    .fs-lg-76 {
        font-size: 76px !important
    }

    .fs-lg-78 {
        font-size: 78px !important
    }

    .fs-lg-80 {
        font-size: 80px !important
    }

    .fs-lg-100 {
        font-size: 100px !important
    }

    .fs-lg-120 {
        font-size: 120px !important
    }

    .fs-lg-150 {
        font-size: 150px !important
    }

    .fs-lg-200 {
        font-size: 200px !important
    }

    .cleft-lg {
        clear: left
    }

    .cright-lg {
        clear: right
    }

    .cboth-lg {
        clear: both
    }

    .pull-none-lg {
        float: none !important
    }

    .display-none-lg {
        display: none !important
    }

    .display-block-lg {
        display: block !important
    }

    .display-iblock-lg {
        display: inline-block !important
    }

    .display-flex-lg {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .display-iflex-lg {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .pos-a-lg {
        position: absolute !important
    }

    .pos-r-lg {
        position: relative !important
    }

    .pos-s-lg {
        position: static !important
    }

    .w-lg-5 {
        width: 5% !important
    }

    .w-lg-10 {
        width: 10% !important
    }

    .w-lg-15 {
        width: 15% !important
    }

    .w-lg-16 {
        width: 16.66% !important
    }

    .w-lg-20 {
        width: 20% !important
    }

    .w-lg-25 {
        width: 25% !important
    }

    .w-lg-30 {
        width: 30% !important
    }

    .w-lg-33 {
        width: 33.333% !important
    }

    .w-lg-35 {
        width: 35% !important
    }

    .w-lg-40 {
        width: 40% !important
    }

    .w-lg-45 {
        width: 45% !important
    }

    .w-lg-50 {
        width: 50% !important
    }

    .w-lg-55 {
        width: 55% !important
    }

    .w-lg-60 {
        width: 60% !important
    }

    .w-lg-65 {
        width: 65% !important
    }

    .w-lg-70 {
        width: 70% !important
    }

    .w-lg-75 {
        width: 75% !important
    }

    .w-lg-80 {
        width: 80% !important
    }

    .w-lg-85 {
        width: 85% !important
    }

    .w-lg-90 {
        width: 90% !important
    }

    .w-lg-95 {
        width: 95% !important
    }

    .w-lg-100 {
        width: 100% !important
    }

    .h-lg-5 {
        height: 5% !important
    }

    .h-lg-10 {
        height: 10% !important
    }

    .h-lg-15 {
        height: 15% !important
    }

    .h-lg-20 {
        height: 20% !important
    }

    .h-lg-25 {
        height: 25% !important
    }

    .h-lg-30 {
        height: 30% !important
    }

    .h-lg-35 {
        height: 35% !important
    }

    .h-lg-40 {
        height: 40% !important
    }

    .h-lg-45 {
        height: 45% !important
    }

    .h-lg-50 {
        height: 50% !important
    }

    .h-lg-55 {
        height: 55% !important
    }

    .h-lg-60 {
        height: 60% !important
    }

    .h-lg-65 {
        height: 65% !important
    }

    .h-lg-70 {
        height: 70% !important
    }

    .h-lg-75 {
        height: 75% !important
    }

    .h-lg-80 {
        height: 80% !important
    }

    .h-lg-85 {
        height: 85% !important
    }

    .h-lg-90 {
        height: 90% !important
    }

    .h-lg-95 {
        height: 95% !important
    }

    .h-lg-100 {
        height: 100% !important
    }

    .w-lg-auto {
        width: auto !important
    }

    .w-lg-0 {
        width: 0 !important
    }

    .w-lg-50px {
        width: 50px !important
    }

    .w-lg-100px {
        width: 100px !important
    }

    .w-lg-150px {
        width: 150px !important
    }

    .w-lg-200px {
        width: 200px !important
    }

    .w-lg-250px {
        width: 250px !important
    }

    .w-lg-300px {
        width: 300px !important
    }

    .w-lg-350px {
        width: 350px !important
    }

    .w-lg-400px {
        width: 400px !important
    }

    .w-lg-450px {
        width: 450px !important
    }

    .w-lg-500px {
        width: 500px !important
    }

    .w-lg-550px {
        width: 550px !important
    }

    .w-lg-600px {
        width: 600px !important
    }

    .w-lg-650px {
        width: 650px !important
    }

    .w-lg-700px {
        width: 700px !important
    }

    .w-lg-750px {
        width: 750px !important
    }

    .w-lg-800px {
        width: 800px !important
    }

    .w-lg-850px {
        width: 850px !important
    }

    .w-lg-900px {
        width: 900px !important
    }

    .w-lg-950px {
        width: 950px !important
    }

    .w-lg-1000px {
        width: 1000px !important
    }

    .h-lg-auto {
        height: auto !important
    }

    .h-lg-0 {
        height: 0 !important
    }

    .h-lg-50px {
        height: 50px !important
    }

    .h-lg-100px {
        height: 100px !important
    }

    .h-lg-150px {
        height: 150px !important
    }

    .h-lg-200px {
        height: 200px !important
    }

    .h-lg-250px {
        height: 250px !important
    }

    .h-lg-300px {
        height: 300px !important
    }

    .h-lg-350px {
        height: 350px !important
    }

    .h-lg-400px {
        height: 400px !important
    }

    .h-lg-450px {
        height: 450px !important
    }

    .h-lg-500px {
        height: 500px !important
    }

    .h-lg-550px {
        height: 550px !important
    }

    .h-lg-600px {
        height: 600px !important
    }

    .h-lg-650px {
        height: 650px !important
    }

    .h-lg-700px {
        height: 700px !important
    }

    .h-lg-750px {
        height: 750px !important
    }

    .h-lg-800px {
        height: 800px !important
    }

    .h-lg-850px {
        height: 850px !important
    }

    .h-lg-900px {
        height: 900px !important
    }

    .h-lg-950px {
        height: 950px !important
    }

    .h-lg-1000px {
        height: 1000px !important
    }

    .min-w-lg-50px {
        min-width: 50px !important
    }

    .min-w-lg-100px {
        min-width: 100px !important
    }

    .min-w-lg-150px {
        min-width: 150px !important
    }

    .min-w-lg-200px {
        min-width: 200px !important
    }

    .min-w-lg-250px {
        min-width: 250px !important
    }

    .min-w-lg-300px {
        min-width: 300px !important
    }

    .min-w-lg-350px {
        min-width: 350px !important
    }

    .min-w-lg-400px {
        min-width: 400px !important
    }

    .min-w-lg-450px {
        min-width: 450px !important
    }

    .min-w-lg-500px {
        min-width: 500px !important
    }

    .min-w-lg-550px {
        min-width: 550px !important
    }

    .min-w-lg-600px {
        min-width: 600px !important
    }

    .min-w-lg-650px {
        min-width: 650px !important
    }

    .min-w-lg-700px {
        min-width: 700px !important
    }

    .min-w-lg-750px {
        min-width: 750px !important
    }

    .min-w-lg-800px {
        min-width: 800px !important
    }

    .min-w-lg-850px {
        min-width: 850px !important
    }

    .min-w-lg-900px {
        min-width: 900px !important
    }

    .min-w-lg-950px {
        min-width: 950px !important
    }

    .min-w-lg-1000px {
        min-width: 1000px !important
    }

    .min-h-lg-50px {
        min-height: 50px !important
    }

    .min-h-lg-100px {
        min-height: 100px !important
    }

    .min-h-lg-150px {
        min-height: 150px !important
    }

    .min-h-lg-200px {
        min-height: 200px !important
    }

    .min-h-lg-250px {
        min-height: 250px !important
    }

    .min-h-lg-300px {
        min-height: 300px !important
    }

    .min-h-lg-350px {
        min-height: 350px !important
    }

    .min-h-lg-400px {
        min-height: 400px !important
    }

    .min-h-lg-450px {
        min-height: 450px !important
    }

    .min-h-lg-500px {
        min-height: 500px !important
    }

    .min-h-lg-550px {
        min-height: 550px !important
    }

    .min-h-lg-600px {
        min-height: 600px !important
    }

    .min-h-lg-650px {
        min-height: 650px !important
    }

    .min-h-lg-700px {
        min-height: 700px !important
    }

    .min-h-lg-750px {
        min-height: 750px !important
    }

    .min-h-lg-800px {
        min-height: 800px !important
    }

    .min-h-lg-850px {
        min-height: 850px !important
    }

    .min-h-lg-900px {
        min-height: 900px !important
    }

    .min-h-lg-950px {
        min-height: 950px !important
    }

    .min-h-lg-1000px {
        min-height: 1000px !important
    }

    .text-center-lg {
        text-align: center !important
    }

    .text-left-lg {
        text-align: left !important
    }

    .text-right-lg {
        text-align: right !important
    }
}

@media only screen and (min-width: 1200px) {
    .ml-xl-auto {
        margin-left:auto !important
    }

    .ml-xl-0 {
        margin-left: 0 !important
    }

    .ml-xl-5 {
        margin-left: 5px !important
    }

    .ml-xl-10 {
        margin-left: 10px !important
    }

    .ml-xl-15 {
        margin-left: 15px !important
    }

    .ml-xl-20 {
        margin-left: 20px !important
    }

    .ml-xl-25 {
        margin-left: 25px !important
    }

    .ml-xl-30 {
        margin-left: 30px !important
    }

    .ml-xl-35 {
        margin-left: 35px !important
    }

    .ml-xl-40 {
        margin-left: 40px !important
    }

    .ml-xl-45 {
        margin-left: 45px !important
    }

    .ml-xl-50 {
        margin-left: 50px !important
    }

    .ml-xl-60 {
        margin-left: 60px !important
    }

    .ml-xl-70 {
        margin-left: 70px !important
    }

    .ml-xl-80 {
        margin-left: 80px !important
    }

    .ml-xl-90 {
        margin-left: 90px !important
    }

    .ml-xl-100 {
        margin-left: 100px !important
    }

    .ml-xl-110 {
        margin-left: 110px !important
    }

    .ml-xl-120 {
        margin-left: 120px !important
    }

    .ml-xl-130 {
        margin-left: 130px !important
    }

    .ml-xl-140 {
        margin-left: 140px !important
    }

    .ml-xl-150 {
        margin-left: 150px !important
    }

    .mr-xl-auto {
        margin-right: auto !important
    }

    .mr-xl-0 {
        margin-right: 0 !important
    }

    .mr-xl-5 {
        margin-right: 5px !important
    }

    .mr-xl-10 {
        margin-right: 10px !important
    }

    .mr-xl-15 {
        margin-right: 15px !important
    }

    .mr-xl-20 {
        margin-right: 20px !important
    }

    .mr-xl-25 {
        margin-right: 25px !important
    }

    .mr-xl-30 {
        margin-right: 30px !important
    }

    .mr-xl-35 {
        margin-right: 35px !important
    }

    .mr-xl-40 {
        margin-right: 40px !important
    }

    .mr-xl-45 {
        margin-right: 45px !important
    }

    .mr-xl-50 {
        margin-right: 50px !important
    }

    .mr-xl-60 {
        margin-right: 60px !important
    }

    .mr-xl-70 {
        margin-right: 70px !important
    }

    .mr-xl-80 {
        margin-right: 80px !important
    }

    .mr-xl-90 {
        margin-right: 90px !important
    }

    .mr-xl-100 {
        margin-right: 100px !important
    }

    .mr-xl-110 {
        margin-right: 110px !important
    }

    .mr-xl-120 {
        margin-right: 120px !important
    }

    .mr-xl-130 {
        margin-right: 130px !important
    }

    .mr-xl-140 {
        margin-right: 140px !important
    }

    .mr-xl-150 {
        margin-right: 150px !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-5 {
        margin-top: 5px !important
    }

    .mt-xl-10 {
        margin-top: 10px !important
    }

    .mt-xl-15 {
        margin-top: 15px !important
    }

    .mt-xl-20 {
        margin-top: 20px !important
    }

    .mt-xl-25 {
        margin-top: 25px !important
    }

    .mt-xl-30 {
        margin-top: 30px !important
    }

    .mt-xl-35 {
        margin-top: 35px !important
    }

    .mt-xl-40 {
        margin-top: 40px !important
    }

    .mt-xl-45 {
        margin-top: 45px !important
    }

    .mt-xl-50 {
        margin-top: 50px !important
    }

    .mt-xl-60 {
        margin-top: 60px !important
    }

    .mt-xl-70 {
        margin-top: 70px !important
    }

    .mt-xl-80 {
        margin-top: 80px !important
    }

    .mt-xl-90 {
        margin-top: 90px !important
    }

    .mt-xl-100 {
        margin-top: 100px !important
    }

    .mt-xl-110 {
        margin-top: 110px !important
    }

    .mt-xl-120 {
        margin-top: 120px !important
    }

    .mt-xl-130 {
        margin-top: 130px !important
    }

    .mt-xl-140 {
        margin-top: 140px !important
    }

    .mt-xl-150 {
        margin-top: 150px !important
    }

    .mt-xl-200 {
        margin-top: 200px !important
    }

    .mt-xl-250 {
        margin-top: 250px !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-5 {
        margin-bottom: 5px !important
    }

    .mb-xl-10 {
        margin-bottom: 10px !important
    }

    .mb-xl-15 {
        margin-bottom: 15px !important
    }

    .mb-xl-20 {
        margin-bottom: 20px !important
    }

    .mb-xl-25 {
        margin-bottom: 25px !important
    }

    .mb-xl-30 {
        margin-bottom: 30px !important
    }

    .mb-xl-35 {
        margin-bottom: 35px !important
    }

    .mb-xl-40 {
        margin-bottom: 40px !important
    }

    .mb-xl-45 {
        margin-bottom: 45px !important
    }

    .mb-xl-50 {
        margin-bottom: 50px !important
    }

    .mb-xl-60 {
        margin-bottom: 60px !important
    }

    .mb-xl-70 {
        margin-bottom: 70px !important
    }

    .mb-xl-80 {
        margin-bottom: 80px !important
    }

    .mb-xl-90 {
        margin-bottom: 90px !important
    }

    .mb-xl-100 {
        margin-bottom: 100px !important
    }

    .mb-xl-110 {
        margin-bottom: 110px !important
    }

    .mb-xl-120 {
        margin-bottom: 120px !important
    }

    .mb-xl-130 {
        margin-bottom: 130px !important
    }

    .mb-xl-140 {
        margin-bottom: 140px !important
    }

    .mb-xl-150 {
        margin-bottom: 150px !important
    }

    .mb-xl-200 {
        margin-bottom: 200px !important
    }

    .mb-xl-250 {
        margin-bottom: 250px !important
    }

    .mnl-xl-10 {
        margin-left: -10px !important
    }

    .mnl-xl-20 {
        margin-left: -20px !important
    }

    .mnl-xl-30 {
        margin-left: -30px !important
    }

    .mnl-xl-40 {
        margin-left: -40px !important
    }

    .mnl-xl-50 {
        margin-left: -50px !important
    }

    .mnl-xl-60 {
        margin-left: -60px !important
    }

    .mnl-xl-70 {
        margin-left: -70px !important
    }

    .mnl-xl-80 {
        margin-left: -80px !important
    }

    .mnl-xl-90 {
        margin-left: -90px !important
    }

    .mnl-xl-100 {
        margin-left: -100px !important
    }

    .mnl-xl-110 {
        margin-left: -110px !important
    }

    .mnl-xl-120 {
        margin-left: -120px !important
    }

    .mnl-xl-130 {
        margin-left: -130px !important
    }

    .mnl-xl-140 {
        margin-left: -140px !important
    }

    .mnl-xl-150 {
        margin-left: -150px !important
    }

    .mnr-xl-10 {
        margin-right: -10px !important
    }

    .mnr-xl-20 {
        margin-right: -20px !important
    }

    .mnr-xl-30 {
        margin-right: -30px !important
    }

    .mnr-xl-40 {
        margin-right: -40px !important
    }

    .mnr-xl-50 {
        margin-right: -50px !important
    }

    .mnr-xl-60 {
        margin-right: -60px !important
    }

    .mnr-xl-70 {
        margin-right: -70px !important
    }

    .mnr-xl-80 {
        margin-right: -80px !important
    }

    .mnr-xl-90 {
        margin-right: -90px !important
    }

    .mnr-xl-100 {
        margin-right: -100px !important
    }

    .mnr-xl-110 {
        margin-right: -110px !important
    }

    .mnr-xl-120 {
        margin-right: -120px !important
    }

    .mnr-xl-130 {
        margin-right: -130px !important
    }

    .mnr-xl-140 {
        margin-right: -140px !important
    }

    .mnr-xl-150 {
        margin-right: -150px !important
    }

    .mnt-xl-10 {
        margin-top: -10px !important
    }

    .mnt-xl-20 {
        margin-top: -20px !important
    }

    .mnt-xl-30 {
        margin-top: -30px !important
    }

    .mnt-xl-40 {
        margin-top: -40px !important
    }

    .mnt-xl-50 {
        margin-top: -50px !important
    }

    .mnt-xl-60 {
        margin-top: -60px !important
    }

    .mnt-xl-70 {
        margin-top: -70px !important
    }

    .mnt-xl-80 {
        margin-top: -80px !important
    }

    .mnt-xl-90 {
        margin-top: -90px !important
    }

    .mnt-xl-100 {
        margin-top: -100px !important
    }

    .mnt-xl-110 {
        margin-top: -110px !important
    }

    .mnt-xl-120 {
        margin-top: -120px !important
    }

    .mnt-xl-130 {
        margin-top: -130px !important
    }

    .mnt-xl-140 {
        margin-top: -140px !important
    }

    .mnt-xl-150 {
        margin-top: -150px !important
    }

    .mnb-xl-10 {
        margin-bottom: -10px !important
    }

    .mnb-xl-20 {
        margin-bottom: -20px !important
    }

    .mnb-xl-30 {
        margin-bottom: -30px !important
    }

    .mnb-xl-40 {
        margin-bottom: -40px !important
    }

    .mnb-xl-50 {
        margin-bottom: -50px !important
    }

    .mnb-xl-60 {
        margin-bottom: -60px !important
    }

    .mnb-xl-70 {
        margin-bottom: -70px !important
    }

    .mnb-xl-80 {
        margin-bottom: -80px !important
    }

    .mnb-xl-90 {
        margin-bottom: -90px !important
    }

    .mnb-xl-100 {
        margin-bottom: -100px !important
    }

    .mnb-xl-110 {
        margin-bottom: -110px !important
    }

    .mnb-xl-120 {
        margin-bottom: -120px !important
    }

    .mnb-xl-130 {
        margin-bottom: -130px !important
    }

    .mnb-xl-140 {
        margin-bottom: -140px !important
    }

    .mnb-xl-150 {
        margin-bottom: -150px !important
    }

    .pl-xl-0 {
        padding-left: 0 !important
    }

    .pl-xl-5 {
        padding-left: 5px !important
    }

    .pl-xl-10 {
        padding-left: 10px !important
    }

    .pl-xl-15 {
        padding-left: 15px !important
    }

    .pl-xl-20 {
        padding-left: 20px !important
    }

    .pl-xl-25 {
        padding-left: 25px !important
    }

    .pl-xl-30 {
        padding-left: 30px !important
    }

    .pl-xl-35 {
        padding-left: 35px !important
    }

    .pl-xl-40 {
        padding-left: 40px !important
    }

    .pl-xl-45 {
        padding-left: 45px !important
    }

    .pl-xl-50 {
        padding-left: 50px !important
    }

    .pl-xl-60 {
        padding-left: 60px !important
    }

    .pl-xl-70 {
        padding-left: 70px !important
    }

    .pl-xl-80 {
        padding-left: 80px !important
    }

    .pl-xl-90 {
        padding-left: 90px !important
    }

    .pl-xl-100 {
        padding-left: 100px !important
    }

    .pl-xl-110 {
        padding-left: 110px !important
    }

    .pl-xl-120 {
        padding-left: 120px !important
    }

    .pl-xl-130 {
        padding-left: 130px !important
    }

    .pl-xl-140 {
        padding-left: 140px !important
    }

    .pl-xl-150 {
        padding-left: 150px !important
    }

    .pr-xl-0 {
        padding-right: 0 !important
    }

    .pr-xl-5 {
        padding-right: 5px !important
    }

    .pr-xl-10 {
        padding-right: 10px !important
    }

    .pr-xl-15 {
        padding-right: 15px !important
    }

    .pr-xl-20 {
        padding-right: 20px !important
    }

    .pr-xl-25 {
        padding-right: 25px !important
    }

    .pr-xl-30 {
        padding-right: 30px !important
    }

    .pr-xl-35 {
        padding-right: 35px !important
    }

    .pr-xl-40 {
        padding-right: 40px !important
    }

    .pr-xl-45 {
        padding-right: 45px !important
    }

    .pr-xl-50 {
        padding-right: 50px !important
    }

    .pr-xl-60 {
        padding-right: 60px !important
    }

    .pr-xl-70 {
        padding-right: 70px !important
    }

    .pr-xl-80 {
        padding-right: 80px !important
    }

    .pr-xl-90 {
        padding-right: 90px !important
    }

    .pr-xl-100 {
        padding-right: 100px !important
    }

    .pr-xl-110 {
        padding-right: 110px !important
    }

    .pr-xl-120 {
        padding-right: 120px !important
    }

    .pr-xl-130 {
        padding-right: 130px !important
    }

    .pr-xl-140 {
        padding-right: 140px !important
    }

    .pr-xl-150 {
        padding-right: 150px !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-5 {
        padding-top: 5px !important
    }

    .pt-xl-10 {
        padding-top: 10px !important
    }

    .pt-xl-15 {
        padding-top: 15px !important
    }

    .pt-xl-20 {
        padding-top: 20px !important
    }

    .pt-xl-25 {
        padding-top: 25px !important
    }

    .pt-xl-30 {
        padding-top: 30px !important
    }

    .pt-xl-35 {
        padding-top: 35px !important
    }

    .pt-xl-40 {
        padding-top: 40px !important
    }

    .pt-xl-45 {
        padding-top: 45px !important
    }

    .pt-xl-50 {
        padding-top: 50px !important
    }

    .pt-xl-60 {
        padding-top: 60px !important
    }

    .pt-xl-70 {
        padding-top: 70px !important
    }

    .pt-xl-80 {
        padding-top: 80px !important
    }

    .pt-xl-90 {
        padding-top: 90px !important
    }

    .pt-xl-100 {
        padding-top: 100px !important
    }

    .pt-xl-110 {
        padding-top: 110px !important
    }

    .pt-xl-120 {
        padding-top: 120px !important
    }

    .pt-xl-130 {
        padding-top: 130px !important
    }

    .pt-xl-140 {
        padding-top: 140px !important
    }

    .pt-xl-150 {
        padding-top: 150px !important
    }

    .pt-xl-200 {
        padding-top: 200px !important
    }

    .pt-xl-250 {
        padding-top: 250px !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-5 {
        padding-bottom: 5px !important
    }

    .pb-xl-10 {
        padding-bottom: 10px !important
    }

    .pb-xl-15 {
        padding-bottom: 15px !important
    }

    .pb-xl-20 {
        padding-bottom: 20px !important
    }

    .pb-xl-25 {
        padding-bottom: 25px !important
    }

    .pb-xl-30 {
        padding-bottom: 30px !important
    }

    .pb-xl-35 {
        padding-bottom: 35px !important
    }

    .pb-xl-40 {
        padding-bottom: 40px !important
    }

    .pb-xl-45 {
        padding-bottom: 45px !important
    }

    .pb-xl-50 {
        padding-bottom: 50px !important
    }

    .pb-xl-60 {
        padding-bottom: 60px !important
    }

    .pb-xl-70 {
        padding-bottom: 70px !important
    }

    .pb-xl-80 {
        padding-bottom: 80px !important
    }

    .pb-xl-90 {
        padding-bottom: 90px !important
    }

    .pb-xl-100 {
        padding-bottom: 100px !important
    }

    .pb-xl-110 {
        padding-bottom: 110px !important
    }

    .pb-xl-120 {
        padding-bottom: 120px !important
    }

    .pb-xl-130 {
        padding-bottom: 130px !important
    }

    .pb-xl-140 {
        padding-bottom: 140px !important
    }

    .pb-xl-150 {
        padding-bottom: 150px !important
    }

    .pb-xl-200 {
        padding-bottom: 200px !important
    }

    .pb-xl-250 {
        padding-bottom: 250px !important
    }

    .fs-xl-9 {
        font-size: 9px !important
    }

    .fs-xl-11 {
        font-size: 11px !important
    }

    .fs-xl-12 {
        font-size: 12px !important
    }

    .fs-xl-13 {
        font-size: 13px !important
    }

    .fs-xl-14 {
        font-size: 14px !important
    }

    .fs-xl-15 {
        font-size: 15px !important
    }

    .fs-xl-16 {
        font-size: 16px !important
    }

    .fs-xl-17 {
        font-size: 17px !important
    }

    .fs-xl-18 {
        font-size: 18px !important
    }

    .fs-xl-20 {
        font-size: 20px !important
    }

    .fs-xl-22 {
        font-size: 22px !important
    }

    .fs-xl-24 {
        font-size: 24px !important
    }

    .fs-xl-26 {
        font-size: 26px !important
    }

    .fs-xl-28 {
        font-size: 28px !important
    }

    .fs-xl-30 {
        font-size: 30px !important
    }

    .fs-xl-32 {
        font-size: 32px !important
    }

    .fs-xl-34 {
        font-size: 34px !important
    }

    .fs-xl-36 {
        font-size: 36px !important
    }

    .fs-xl-38 {
        font-size: 38px !important
    }

    .fs-xl-40 {
        font-size: 40px !important
    }

    .fs-xl-42 {
        font-size: 42px !important
    }

    .fs-xl-44 {
        font-size: 44px !important
    }

    .fs-xl-46 {
        font-size: 46px !important
    }

    .fs-xl-48 {
        font-size: 48px !important
    }

    .fs-xl-50 {
        font-size: 50px !important
    }

    .fs-xl-52 {
        font-size: 52px !important
    }

    .fs-xl-54 {
        font-size: 54px !important
    }

    .fs-xl-56 {
        font-size: 56px !important
    }

    .fs-xl-58 {
        font-size: 58px !important
    }

    .fs-xl-60 {
        font-size: 60px !important
    }

    .fs-xl-62 {
        font-size: 62px !important
    }

    .fs-xl-64 {
        font-size: 64px !important
    }

    .fs-xl-66 {
        font-size: 66px !important
    }

    .fs-xl-68 {
        font-size: 68px !important
    }

    .fs-xl-70 {
        font-size: 70px !important
    }

    .fs-xl-72 {
        font-size: 72px !important
    }

    .fs-xl-74 {
        font-size: 74px !important
    }

    .fs-xl-76 {
        font-size: 76px !important
    }

    .fs-xl-78 {
        font-size: 78px !important
    }

    .fs-xl-80 {
        font-size: 80px !important
    }

    .fs-xl-100 {
        font-size: 100px !important
    }

    .fs-xl-120 {
        font-size: 120px !important
    }

    .fs-xl-150 {
        font-size: 150px !important
    }

    .fs-xl-200 {
        font-size: 200px !important
    }

    .cleft-xl {
        clear: left
    }

    .cright-xl {
        clear: right
    }

    .cboth-xl {
        clear: both
    }

    .pull-none-xl {
        float: none !important
    }

    .display-none-xl {
        display: none !important
    }

    .display-block-xl {
        display: block !important
    }

    .display-iblock-xl {
        display: inline-block !important
    }

    .display-flex-xl {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .display-iflex-xl {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .pos-a-xl {
        position: absolute !important
    }

    .pos-r-xl {
        position: relative !important
    }

    .pos-s-xl {
        position: static !important
    }

    .w-xl-5 {
        width: 5% !important
    }

    .w-xl-10 {
        width: 10% !important
    }

    .w-xl-15 {
        width: 15% !important
    }

    .w-xl-16 {
        width: 16.66% !important
    }

    .w-xl-20 {
        width: 20% !important
    }

    .w-xl-25 {
        width: 25% !important
    }

    .w-xl-30 {
        width: 30% !important
    }

    .w-xl-33 {
        width: 33.333% !important
    }

    .w-xl-35 {
        width: 35% !important
    }

    .w-xl-40 {
        width: 40% !important
    }

    .w-xl-45 {
        width: 45% !important
    }

    .w-xl-50 {
        width: 50% !important
    }

    .w-xl-55 {
        width: 55% !important
    }

    .w-xl-60 {
        width: 60% !important
    }

    .w-xl-65 {
        width: 65% !important
    }

    .w-xl-70 {
        width: 70% !important
    }

    .w-xl-75 {
        width: 75% !important
    }

    .w-xl-80 {
        width: 80% !important
    }

    .w-xl-85 {
        width: 85% !important
    }

    .w-xl-90 {
        width: 90% !important
    }

    .w-xl-95 {
        width: 95% !important
    }

    .w-xl-100 {
        width: 100% !important
    }

    .h-xl-5 {
        height: 5% !important
    }

    .h-xl-10 {
        height: 10% !important
    }

    .h-xl-15 {
        height: 15% !important
    }

    .h-xl-20 {
        height: 20% !important
    }

    .h-xl-25 {
        height: 25% !important
    }

    .h-xl-30 {
        height: 30% !important
    }

    .h-xl-35 {
        height: 35% !important
    }

    .h-xl-40 {
        height: 40% !important
    }

    .h-xl-45 {
        height: 45% !important
    }

    .h-xl-50 {
        height: 50% !important
    }

    .h-xl-55 {
        height: 55% !important
    }

    .h-xl-60 {
        height: 60% !important
    }

    .h-xl-65 {
        height: 65% !important
    }

    .h-xl-70 {
        height: 70% !important
    }

    .h-xl-75 {
        height: 75% !important
    }

    .h-xl-80 {
        height: 80% !important
    }

    .h-xl-85 {
        height: 85% !important
    }

    .h-xl-90 {
        height: 90% !important
    }

    .h-xl-95 {
        height: 95% !important
    }

    .h-xl-100 {
        height: 100% !important
    }

    .w-xl-auto {
        width: auto !important
    }

    .w-xl-0 {
        width: 0 !important
    }

    .w-xl-50px {
        width: 50px !important
    }

    .w-xl-100px {
        width: 100px !important
    }

    .w-xl-150px {
        width: 150px !important
    }

    .w-xl-200px {
        width: 200px !important
    }

    .w-xl-250px {
        width: 250px !important
    }

    .w-xl-300px {
        width: 300px !important
    }

    .w-xl-350px {
        width: 350px !important
    }

    .w-xl-400px {
        width: 400px !important
    }

    .w-xl-450px {
        width: 450px !important
    }

    .w-xl-500px {
        width: 500px !important
    }

    .w-xl-550px {
        width: 550px !important
    }

    .w-xl-600px {
        width: 600px !important
    }

    .w-xl-650px {
        width: 650px !important
    }

    .w-xl-700px {
        width: 700px !important
    }

    .w-xl-750px {
        width: 750px !important
    }

    .w-xl-800px {
        width: 800px !important
    }

    .w-xl-850px {
        width: 850px !important
    }

    .w-xl-900px {
        width: 900px !important
    }

    .w-xl-950px {
        width: 950px !important
    }

    .w-xl-1000px {
        width: 1000px !important
    }

    .h-xl-auto {
        height: auto !important
    }

    .h-xl-0 {
        height: 0 !important
    }

    .h-xl-50px {
        height: 50px !important
    }

    .h-xl-100px {
        height: 100px !important
    }

    .h-xl-150px {
        height: 150px !important
    }

    .h-xl-200px {
        height: 200px !important
    }

    .h-xl-250px {
        height: 250px !important
    }

    .h-xl-300px {
        height: 300px !important
    }

    .h-xl-350px {
        height: 350px !important
    }

    .h-xl-400px {
        height: 400px !important
    }

    .h-xl-450px {
        height: 450px !important
    }

    .h-xl-500px {
        height: 500px !important
    }

    .h-xl-550px {
        height: 550px !important
    }

    .h-xl-600px {
        height: 600px !important
    }

    .h-xl-650px {
        height: 650px !important
    }

    .h-xl-700px {
        height: 700px !important
    }

    .h-xl-750px {
        height: 750px !important
    }

    .h-xl-800px {
        height: 800px !important
    }

    .h-xl-850px {
        height: 850px !important
    }

    .h-xl-900px {
        height: 900px !important
    }

    .h-xl-950px {
        height: 950px !important
    }

    .h-xl-1000px {
        height: 1000px !important
    }

    .min-w-xl-50px {
        min-width: 50px !important
    }

    .min-w-xl-100px {
        min-width: 100px !important
    }

    .min-w-xl-150px {
        min-width: 150px !important
    }

    .min-w-xl-200px {
        min-width: 200px !important
    }

    .min-w-xl-250px {
        min-width: 250px !important
    }

    .min-w-xl-300px {
        min-width: 300px !important
    }

    .min-w-xl-350px {
        min-width: 350px !important
    }

    .min-w-xl-400px {
        min-width: 400px !important
    }

    .min-w-xl-450px {
        min-width: 450px !important
    }

    .min-w-xl-500px {
        min-width: 500px !important
    }

    .min-w-xl-550px {
        min-width: 550px !important
    }

    .min-w-xl-600px {
        min-width: 600px !important
    }

    .min-w-xl-650px {
        min-width: 650px !important
    }

    .min-w-xl-700px {
        min-width: 700px !important
    }

    .min-w-xl-750px {
        min-width: 750px !important
    }

    .min-w-xl-800px {
        min-width: 800px !important
    }

    .min-w-xl-850px {
        min-width: 850px !important
    }

    .min-w-xl-900px {
        min-width: 900px !important
    }

    .min-w-xl-950px {
        min-width: 950px !important
    }

    .min-w-xl-1000px {
        min-width: 1000px !important
    }

    .min-h-xl-50px {
        min-height: 50px !important
    }

    .min-h-xl-100px {
        min-height: 100px !important
    }

    .min-h-xl-150px {
        min-height: 150px !important
    }

    .min-h-xl-200px {
        min-height: 200px !important
    }

    .min-h-xl-250px {
        min-height: 250px !important
    }

    .min-h-xl-300px {
        min-height: 300px !important
    }

    .min-h-xl-350px {
        min-height: 350px !important
    }

    .min-h-xl-400px {
        min-height: 400px !important
    }

    .min-h-xl-450px {
        min-height: 450px !important
    }

    .min-h-xl-500px {
        min-height: 500px !important
    }

    .min-h-xl-550px {
        min-height: 550px !important
    }

    .min-h-xl-600px {
        min-height: 600px !important
    }

    .min-h-xl-650px {
        min-height: 650px !important
    }

    .min-h-xl-700px {
        min-height: 700px !important
    }

    .min-h-xl-750px {
        min-height: 750px !important
    }

    .min-h-xl-800px {
        min-height: 800px !important
    }

    .min-h-xl-850px {
        min-height: 850px !important
    }

    .min-h-xl-900px {
        min-height: 900px !important
    }

    .min-h-xl-950px {
        min-height: 950px !important
    }

    .min-h-xl-1000px {
        min-height: 1000px !important
    }

    .text-center-xl {
        text-align: center !important
    }

    .text-left-xl {
        text-align: left !important
    }

    .text-right-xl {
        text-align: right !important
    }
}





.js-order-product {
  display: block; /* Кнопка займатиме повну ширину в мобільній версії */
  width: 100%; /* Максимальна ширина кнопки */
  max-width: 300px; /* Обмеження ширини, якщо потрібно */
  margin: 10px auto; /* Центрування кнопки (горизонтально) */
  padding: 10px 20px; /* Внутрішні відступи для кращої читабельності */
  text-align: center; /* Текст по центру */
  font-size: 16px; /* Розмір тексту */
}

@media (max-width: 768px) {
  .js-order-product {
    width: 90%; /* Зменшення ширини в мобільній версії */
  }
}




@media only screen and (max-width: 1199px) {
    .w-less-xl-100 {
        width:100% !important
    }
}

@media only screen and (max-width: 991px) {
    .w-less-lg-100 {
        width:100% !important
    }

    .w-less-lg-auto {
        width: auto !important
    }
}

@media only screen and (max-width: 767px) {
    .w-less-md-100 {
        width:100% !important
    }
}

@media only screen and (max-width: 575px) {
    .w-less-sm-100 {
        width:100% !important
    }

    .main-photo {
        content: url("../images/golm1.jpg");
    }
    .photf {
        display: none;
    }
    
    
    
    
    .btn.btn-outline-primary {
    border: 0.2rem solid #000;
    padding: 22px 24px; 
    bottom:10px;
   
    background: #000;
    color: #fff;
}

    
    .product-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  height: 50px; /* Фіксована висота */
  line-height: 50px; /* Висота тексту дорівнює висоті кнопки */
  text-align: center;
}
    
}

