@keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}.notyf{position:fixed;top:0;left:0;height:100%;width:100%;color:#fff;z-index:9999;display:flex;flex-direction:column;align-items:flex-end;justify-content:flex-end;pointer-events:none;box-sizing:border-box;padding:20px}.notyf__icon--error,.notyf__icon--success{height:21px;width:21px;background:#fff;border-radius:50%;display:block;margin:0 auto;position:relative}.notyf__icon--error:after,.notyf__icon--error:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px;left:9px;height:12px;top:5px}.notyf__icon--error:after{transform:rotate(-45deg)}.notyf__icon--error:before{transform:rotate(45deg)}.notyf__icon--success:after,.notyf__icon--success:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px}.notyf__icon--success:after{height:6px;transform:rotate(-45deg);top:9px;left:6px}.notyf__icon--success:before{height:11px;transform:rotate(45deg);top:5px;left:10px}.notyf__toast{display:block;overflow:hidden;pointer-events:auto;animation:notyf-fadeinup .3s ease-in forwards;box-shadow:0 3px 7px 0 rgba(0,0,0,.25);position:relative;padding:0 15px;border-radius:2px;max-width:300px;transform:translateY(25%);box-sizing:border-box;flex-shrink:0}.notyf__toast--disappear{transform:translateY(0);animation:notyf-fadeoutdown .3s forwards;animation-delay:.25s}.notyf__toast--disappear .notyf__icon,.notyf__toast--disappear .notyf__message{animation:notyf-fadeoutdown .3s forwards;opacity:1;transform:translateY(0)}.notyf__toast--disappear .notyf__dismiss{animation:notyf-fadeoutright .3s forwards;opacity:1;transform:translateX(0)}.notyf__toast--disappear .notyf__message{animation-delay:.05s}.notyf__toast--upper{margin-bottom:20px}.notyf__toast--lower{margin-top:20px}.notyf__toast--dismissible .notyf__wrapper{padding-right:30px}.notyf__ripple{height:400px;width:400px;position:absolute;transform-origin:bottom right;right:0;top:0;border-radius:50%;transform:scale(0) translateY(-51%) translateX(13%);z-index:5;animation:ripple .4s ease-out forwards}.notyf__wrapper{display:flex;align-items:center;padding-top:17px;padding-bottom:17px;padding-right:15px;border-radius:3px;position:relative;z-index:10}.notyf__icon{width:22px;text-align:center;font-size:1.3em;opacity:0;animation:notyf-fadeinup .3s forwards;animation-delay:.3s;margin-right:13px}.notyf__dismiss{position:absolute;top:0;right:0;height:100%;width:26px;margin-right:-15px;animation:notyf-fadeinleft .3s forwards;animation-delay:.35s;opacity:0}.notyf__dismiss-btn{background-color:rgba(0,0,0,.25);border:none;cursor:pointer;transition:opacity .2s ease,background-color .2s ease;outline:none;opacity:.35;height:100%;width:100%}.notyf__dismiss-btn:after,.notyf__dismiss-btn:before{content:"";background:#fff;height:12px;width:2px;border-radius:3px;position:absolute;left:calc(50% - 1px);top:calc(50% - 5px)}.notyf__dismiss-btn:after{transform:rotate(-45deg)}.notyf__dismiss-btn:before{transform:rotate(45deg)}.notyf__dismiss-btn:hover{opacity:.7;background-color:rgba(0,0,0,.15)}.notyf__dismiss-btn:active{opacity:.8}.notyf__message{vertical-align:middle;position:relative;opacity:0;animation:notyf-fadeinup .3s forwards;animation-delay:.25s;line-height:1.5em}@media only screen and (max-width:480px){.notyf{padding:0}.notyf__ripple{height:600px;width:600px;animation-duration:.5s}.notyf__toast{max-width:none;border-radius:0;box-shadow:0 -2px 7px 0 rgba(0,0,0,.13);width:100%}.notyf__dismiss{width:56px}}
@charset "UTF-8";
/*

CSS FILE STRUCTURE

The css is organized in multiple files following this structure:

sass/ 
| 
|– base/ 				# the boilerplate of the project (typography, colors, normalize, etc.)
| 
|– components/			# all kind of small modules that appear across the site
| 
|– helpers/ 			# all Sass tools and helpers like variables, mixins, functions, etc.
| 
|– pages/				# page-specific styles
| 
|– vendors/				# all the CSS files from external libraries and frameworks
| 
 – app.scss				# primary Sass file 

for more info check https://www.sitepoint.com/architecture-sass-project/

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

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

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

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1470px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-last {
    order: 13;
  }

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

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

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

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

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

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

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-last {
    order: 13;
  }

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

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

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

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

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

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

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1470px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-last {
    order: 13;
  }

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

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

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

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

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

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

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

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

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

.d-flex {
  display: flex !important;
}

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

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

  .d-sm-inline {
    display: inline !important;
  }

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

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

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

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

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

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

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 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: flex !important;
  }

  .d-md-inline-flex {
    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: flex !important;
  }

  .d-lg-inline-flex {
    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: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1470px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1470px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

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

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

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

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

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

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

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

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

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

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

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

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

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

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

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

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

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

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

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

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

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

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

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

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

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

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

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

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

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

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

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

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

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

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

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

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

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

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

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

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

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

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

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

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

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

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

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

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1470px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.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: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.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: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

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

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

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

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

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

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

textarea.form-control {
  height: auto;
}

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

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

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

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

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

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

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

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

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

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

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

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

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

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

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

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

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

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

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

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

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

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

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

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

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

.fade {
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}

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

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

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

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

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

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

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

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

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

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

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

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

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

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

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

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

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

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

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

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

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

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

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

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

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

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

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

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

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

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

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

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

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

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

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

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

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

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

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

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

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

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

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

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

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

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

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

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

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

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

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1470px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

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

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

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

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

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

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

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

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

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

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

/*
This is an example to show how you can import just the bootstrap styles that you need
In this example we load the bootstrap grid + modal + carousel

@import "../../node_modules/bootstrap/scss/bootstrap-grid";
@import "../../node_modules/bootstrap/scss/mixins/transition";
@import "../../node_modules/bootstrap/scss/mixins/border-radius";
@import "../../node_modules/bootstrap/scss/mixins/hover";
@import "../../node_modules/bootstrap/scss/mixins/box-shadow";
@import "../../node_modules/bootstrap/scss/mixins/caret";
@import "../../node_modules/bootstrap/scss/modal";
@import "../../node_modules/bootstrap/scss/carousel";
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url(/images/vendor/slick-carousel/slick/ajax-loader.gif?fb6f3c230cb846e25247dfaa1da94d8f) center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url(/fonts/vendor/slick-carousel/slick/slick.eot?a4e97f5a2a64f0ab132323fbeb33ae29);
  src: url(/fonts/vendor/slick-carousel/slick/slick.eot?a4e97f5a2a64f0ab132323fbeb33ae29) format("embedded-opentype"), url(/fonts/vendor/slick-carousel/slick/slick.woff?295183786cd8a138986521d9f388a286) format("woff"), url(/fonts/vendor/slick-carousel/slick/slick.ttf?c94f7671dcc99dce43e22a89f486f7c2) format("truetype"), url(/fonts/vendor/slick-carousel/slick/slick.svg?2630a3e3eab21c607e21576571b95b9d) format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
.ph-item {
  direction: ltr;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 15px 15px 15px;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}
.ph-item, .ph-item *,
.ph-item ::after, .ph-item ::before {
  box-sizing: border-box;
}
.ph-item::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 500%;
  margin-left: -250%;
  animation: phAnimation 0.8s linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 54%) 50% 50%;
}
.ph-item > * {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column;
  padding-right: 15px;
  padding-left: 15px;
}

.ph-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7.5px;
}
.ph-row div {
  height: 10px;
  margin-bottom: 7.5px;
  background-color: #ced4da;
}
.ph-row .big, .ph-row.big div {
  height: 20px;
  margin-bottom: 15px;
}
.ph-row .empty {
  background-color: rgba(255, 255, 255, 0);
}

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

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

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

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

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

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

.ph-avatar {
  position: relative;
  width: 100%;
  min-width: 60px;
  background-color: #ced4da;
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
}
.ph-avatar::before {
  content: " ";
  display: block;
  padding-top: 100%;
}

.ph-picture {
  width: 100%;
  height: 120px;
  background-color: #ced4da;
  margin-bottom: 15px;
}

@keyframes phAnimation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  100% {
    transform: translate3d(30%, 0, 0);
  }
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

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

.hidden {
  display: none;
}

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

.gutters-sm {
  margin-right: -3px;
  margin-left: -3px;
}
.gutters-sm > .col,
.gutters-sm > [class*=col-] {
  padding-right: 3px;
  padding-left: 3px;
}

.gutters-md {
  margin-right: -9px;
  margin-left: -9px;
}
.gutters-md > .col,
.gutters-md > [class*=col-] {
  padding-right: 9px;
  padding-left: 9px;
}

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

.page-content-row {
  flex-grow: 1;
}

.animation_hide {
  opacity: 0;
}

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

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

.arrow-animated img {
  transition: 0.3s ease-in-out transform;
}
.arrow-animated:hover img {
  transform: translateX(5px);
}

.green {
  color: #219653;
}

.red {
  color: #D62828;
}

.text-black {
  color: #000 !important;
}

.text-punch {
  color: #D62828 !important;
}

.text-telegram {
  color: #13A1E7 !important;
}

.user-avatar {
  height: 88px;
  width: 88px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
}
.user-avatar img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#nprogress .bar {
  background: #fd7e14 !important;
}
#nprogress .spinner {
  display: none !important;
}

.text-blue {
  color: #2D9CDB !important;
}

.text-green {
  color: #219653 !important;
}

.text-red {
  color: #D62828 !important;
}

.text-abbey {
  color: #4B4E53 !important;
}

.custom-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.custom-scroll::-webkit-scrollbar {
  height: 5px;
  background-color: #ececec;
}
.custom-scroll::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ccc;
}

.no-word-wrap {
  white-space: nowrap;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

[class^=icon-]:before, [class*=" icon-"]:before {
  margin: 0;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body {
  background-color: #fff;
  font-family: "Circe", "Arial", sans-serif;
  font-weight: 400;
  color: #000;
}
body.oh {
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Circe", "Arial", sans-serif;
  margin: 0;
}

a {
  color: #F77F00;
}
a:hover {
  text-decoration: none;
  color: #c46500;
}

h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 47px;
  line-height: 120.3%;
  color: #000;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  h1 {
    font-size: 36px !important;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 28px !important;
  }
}

h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 120.3%;
  color: #000000;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 24px !important;
  }
}

.ql-align-center {
  text-align: center;
}

.ql-align-left {
  text-align: left;
}

.ql-align-right {
  text-align: right;
}

pre {
  display: block;
  font-family: monospace;
  white-space: pre-wrap;
  margin: 1em 0;
}

button {
  cursor: pointer;
}

[data-fancybox]:hover {
  cursor: pointer;
}

blockquote {
  background-color: #FFFAF2;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2C2D2F;
  padding: 40px;
  margin: 0px 30px;
}
@media (max-width: 991.98px) {
  blockquote {
    padding: 40px;
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767.98px) {
  blockquote {
    padding: 25px;
    font-size: 15px;
    line-height: 1.4;
    margin: 0px;
  }
}
blockquote + blockquote {
  margin-top: 20px;
}

.button {
  height: 68px;
  border: 1px solid #F77F00;
  background-color: #F77F00;
  color: #fff;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  display: inline-flex;
  align-items: center;
  padding: 0px 30px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  outline: 0px;
  transition: 0.3s ease-in-out all;
  transition-property: color, background-color, border-color;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .button {
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .button {
    height: 55px;
    padding: 0px 20px;
  }
}
@media (max-width: 767.98px) {
  .button {
    height: 50px;
    padding: 0% 15px;
    font-size: 15px;
  }
}
.button img {
  margin-left: 22px;
}
@media (max-width: 767.98px) {
  .button img {
    margin-left: 15px;
  }
}
.button:hover {
  background-color: #de7200;
  border-color: #de7200;
  color: #fff;
}
.button:focus {
  background-color: #c46500;
  border-color: #c46500;
  color: #fff;
}
.button--outline {
  background-color: transparent;
  color: #F77F00;
}
.button--outline:hover {
  background-color: transparent;
  border-color: #de7200;
  color: #de7200;
}
.button--outline:focus {
  background-color: transparent;
  border-color: #c46500;
  color: #c46500;
}
.button--arrow-animated img {
  transition: 0.3s ease-in-out transform;
}
.button--arrow-animated:hover img {
  transform: translateX(5px);
}
.button--text-large {
  font-size: 21px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .button--text-large {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .button--text-large {
    font-size: 16px;
  }
}
.button--small {
  height: 40px;
  font-size: 13px;
}
.button--medium {
  height: 50px;
  padding: 0px 22px;
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .button--medium {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .button--medium {
    font-size: 14px;
  }
}
.button--transparent {
  background-color: transparent !important;
  border-color: transparent !important;
}
.button--transparent:hover {
  color: #de7200;
  background-color: transparent;
  border-color: transparent;
}
.button--transparent:focus {
  color: #c46500;
  background-color: transparent;
  border-color: transparent;
}
.button--red {
  border-color: #D62828;
  background-color: #D62828;
  color: #fff;
}
.button--red:hover {
  background-color: #c12424;
  border-color: #c12424;
  color: #fff;
}
.button--red:focus {
  background-color: #ab2020;
  border-color: #ab2020;
  color: #fff;
}
.button--red.button--outline {
  background-color: transparent;
  color: #D62828;
}
.button--red.button--outline:hover {
  color: #c12424;
  border-color: #c12424;
}
.button--red.button--outline:focus {
  color: #ab2020;
  border-color: #ab2020;
}
.button--manatee {
  border-color: #8E94A7;
  background-color: #8E94A7;
  color: #fff;
}
.button--manatee:hover {
  background-color: #717991;
  border-color: #717991;
  color: #fff;
}
.button--manatee:focus {
  background-color: #5b6174;
  border-color: #5b6174;
  color: #fff;
}
.button--manatee.button--outline {
  background-color: transparent;
  color: #8E94A7;
}
.button--manatee.button--outline:hover {
  color: #717991;
  border-color: #717991;
}
.button--manatee.button--outline:focus {
  color: #5b6174;
  border-color: #5b6174;
}
.button[disabled] {
  opacity: 0.3;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.button-addproject {
  color: #2C2D2F;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.02em;
  background-color: transparent;
  border-color: transparent;
  height: 50px;
  white-space: nowrap;
  padding: 0px 15px;
}
.button-addproject img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-left: 0px;
  margin-top: -2px;
  transition: 0.3s ease-in-out;
}
.button-addproject:focus, .button-addproject:hover {
  background-color: transparent;
  border-color: transparent;
  color: #454649;
}
.button-addproject:focus img, .button-addproject:hover img {
  transform: translateX(-5px);
}
.button-addproject[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.button-auth {
  height: 50px;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 0px 15px;
}
.button-auth img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-left: 0px;
  margin-top: -2px;
}

.arrow-link {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #F77F00;
}
.arrow-link img {
  margin-left: 17px;
}

.button-repost {
  color: #8E94A7;
  border-radius: 3px;
  border: 0px;
  background-color: transparent;
  font-weight: normal;
  font-size: 15px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 34px;
  padding: 0px 10px;
  transition: 0.3s ease border-color;
  outline: 0px;
  line-height: 1;
}
.button-repost img {
  margin-right: 5px;
  width: 22px;
  margin-top: -3px;
}

.button-link {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 120.3%;
  color: #F77F00;
  border: 0px;
  background-color: transparent;
  padding: 0;
  height: 40px;
  display: inline-flex;
  align-items: center;
  outline: 0px;
}
.button-link:hover {
  color: #de7200;
}
.button-link:focus {
  color: #c46500;
}
.button-link.collapsed .if-not-collapsed {
  display: none;
}
.button-link:not(.collapsed) .if-collapsed {
  display: none;
}

.cta-button {
  height: 74px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 30px;
  font-weight: normal;
  font-size: 19px;
  line-height: 1;
  color: #F77F00;
  background-color: #FFF5EA;
  border-radius: 3px;
  border: 0px;
  outline: 0px;
  transition: 0.3s ease background-color;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .cta-button {
    font-size: 15px;
    height: 60px;
    justify-content: center;
  }
}
.cta-button:hover {
  background-color: #fff0e0;
  color: #F77F00;
}
.cta-button img,
.cta-button svg,
.cta-button .svg {
  margin-right: 5px;
}
@media (max-width: 991.98px) {
  .cta-button img,
.cta-button svg,
.cta-button .svg {
    width: 24px;
    height: 24px;
  }
}

.button-stripes {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.button-stripes:after {
  position: absolute;
  content: "";
  left: -46px;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease opacity;
  background: -webkit-repeating-linear-gradient(145deg, #f8e9db 1px, #fff5ed 2px, #fff5ed 11px, #f8e9db 12px, #f8e9db 20px);
  background: repeating-linear-gradient(-55deg, #f8e9db 1px, #fff5ed 2px, #fff5ed 11px, #f8e9db 12px, #f8e9db 20px);
  -webkit-animation-name: MOVE-BG;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-name: MOVE-BG;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.button-stripes_visible:after {
  opacity: 1;
}
@keyframes MOVE-BG {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(46px);
  }
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text], input[type=email], input[type=password] {
  background-color: #FEFEFE;
  border: 1px solid #DADADA;
  border-radius: 5px;
  padding: 0px 25px;
  color: #ABABAB;
  height: 58px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  transition: 0.3s ease-in-out all;
  transition-property: border-color, color;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  input[type=text], input[type=email], input[type=password] {
    font-size: 16px !important;
  }
}
@media (max-width: 767.98px) {
  input[type=text], input[type=email], input[type=password] {
    font-size: 15px;
  }
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
  outline: 0px;
  border-color: #8E94A7 !important;
  color: #8E94A7 !important;
}
input[type=text]:focus::placeholder, input[type=email]:focus::placeholder, input[type=password]:focus::placeholder {
  color: #8E94A7 !important;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder {
  color: #ABABAB;
}
input[type=text].input-error, input[type=email].input-error, input[type=password].input-error {
  border-color: #EB5757;
  color: #EB5757;
}
input[type=text].input-success, input[type=email].input-success, input[type=password].input-success {
  border-color: #219653;
  color: #219653;
}

.radio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.radio-row .radio-rating + .radio-rating {
  margin-left: 5px;
}

.radio-rating {
  position: relative;
}
.radio-rating input {
  width: 1px;
  opacity: 0;
  position: absolute;
}
.radio-rating input:checked + label {
  border-color: #333;
  font-weight: 900;
}
.radio-rating label {
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 120.3%;
  color: #000000;
  transition: 0.3s ease border-color;
}
.radio-rating label:hover {
  border-color: #b7b7b7;
}
.radio-rating label span {
  background: url("/assets/images/svg/black-star.svg") no-repeat;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  margin-left: 2px;
}

.avatar-uploader {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.avatar-uploader .user-avatar {
  margin-right: 15px;
}
@media (max-width: 767.98px) {
  .avatar-uploader .user-avatar {
    width: 60px;
    height: 60px;
  }
}

.file-input-label {
  cursor: pointer;
  color: #4B4E53;
  margin: 0 0 10px;
  padding: 10px 15px;
  text-decoration: none;
  background-color: transparent;
  border: 1px dashed #4B4E53;
  border-radius: 5px;
  font-size: 13px;
  transition: 0.3s ease all;
  transition-property: color, border-color;
}
.file-input-label:hover {
  color: #1b1c1d;
  border-color: #4B4E53;
  color: #4B4E53;
}
.file-input-label input {
  display: none;
}
.file-input-label span.withFile:after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTA5OEU0M0REOUIwMTFFMzg4Q0VDNDEwMTU1QkU0MUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTA5OEU0M0VEOUIwMTFFMzg4Q0VDNDEwMTU1QkU0MUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMDk4RTQzQkQ5QjAxMUUzODhDRUM0MTAxNTVCRTQxQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMDk4RTQzQ0Q5QjAxMUUzODhDRUM0MTAxNTVCRTQxQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PolX3bIAAADWSURBVHjadNHNCkFBFMDxSYq9UsoCC4/gZqFEiXLZSKy8nJ2Pja6FB1A8i/KRuEjXfzSXY3DqV3Nnzpx7TqOCIMhjgAkSUJYkRugjG1VKFeGiBgdz9RmOObvgWWEWvOOMlqiu1745u2OsN9No42YOLqigbNbhXgMp2WsdW5NwE8kbVMM8e8ASrlaLjsyJWAPG1HfEP77+DOiLlo6m3VdLOXRFK3qOAoo4iAIdZPQFT/R8ktXQFH/VMVXmlfVL7qzkkIs9hujpl16G42D9Y+gVFvD0+iHAAMR9gu9PEii4AAAAAElFTkSuQmCC");
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.input-title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #000000 !important;
}
.input-title::placeholder {
  font-weight: normal !important;
}

textarea {
  resize: vertical;
  color: #ABABAB;
  width: 100%;
  background-color: #FEFEFE;
  border: 1px solid #DADADA;
  border-radius: 5px;
  padding: 25px;
  transition: 0.3s ease-in-out all;
  transition-property: border-color, color;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767.98px) {
  textarea {
    font-size: 15px !important;
  }
}
textarea:focus {
  outline: 0px;
  border-color: #8E94A7 !important;
  color: #8E94A7 !important;
}
textarea:focus::placeholder {
  color: #8E94A7 !important;
}
textarea::placeholder {
  color: #ABABAB;
}
textarea.textarea-error {
  border-color: #EB5757;
  color: #EB5757;
}
textarea.textarea-success {
  border-color: #219653;
  color: #219653;
}

.auth-form__social {
  margin-top: 22px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.auth-form__social a {
  text-decoration: none;
  background-color: #F2F3F6;
  border-radius: 5px;
  height: 36px;
  width: 36px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease background-color;
}
.auth-form__social a + a {
  margin-left: 8px;
}
.auth-form__social a:hover {
  background-color: #e3e5ec;
}
.auth-form__message {
  margin-top: 33px;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 120.3%;
  color: #ABABAB;
}
.auth-form__message a {
  text-decoration: none;
}
.auth-form__action {
  margin-top: 29px;
}
.auth-form__action .button {
  font-size: 17px;
}
@media (max-width: 767.98px) {
  .auth-form__action .button {
    font-size: 15px;
  }
}
.auth-form__action .button--transparent {
  color: #8E94A7;
}
.auth-form__action .button--transparent:hover {
  color: #545457;
}
.auth-form__action .button--transparent:focus {
  color: #3b3b3d;
}

.form .grecaptcha-badge {
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.form__action {
  display: flex;
  flex-direction: row;
}
.form__action .button + .button {
  margin-left: 6px;
}
.form__group {
  position: relative;
}
.form__group .eye-show {
  position: absolute;
  top: 0px;
  right: 15px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s ease opacity;
}
.form__group .eye-show:hover, .form__group .eye-show.active {
  opacity: 1;
}
.form__group + .form__group {
  margin-top: 15px;
}
.form__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 120.3%;
  color: #161D27;
}
.form__title_green {
  color: #219653;
}
.form fieldset {
  padding: 0px;
  border: 0px;
  min-inline-size: 100%;
  position: relative;
}
.form fieldset + fieldset {
  margin-top: 37px;
}
.form fieldset legend {
  font-weight: bold;
  font-size: 20px;
  line-height: 120.3%;
  color: #161D27;
  display: block;
  margin-bottom: 18px;
}
.add-resource-form__cost + fieldset {
  margin-top: 37px;
}
.add-resource-form__total {
  margin-top: 40px;
}
.add-resource-form .switch-box__label {
  font-size: 17px;
}
.add-resource-form .total-price__text {
  padding-right: 25px;
}
.add-resource-form .total-price__title {
  margin-bottom: 10px;
}
.add-resource-form .total-price__description {
  font-size: 16px;
  line-height: 130%;
  color: #ABABAB;
}
.add-resource-form .total-price__value {
  font-weight: bold;
  font-size: 37px;
  line-height: 120.3%;
  color: #000000;
  text-align: right;
}
.add-resource-form button[type=submit] {
  margin-top: 40px;
}
@media (max-width: 991.98px) {
  .add-resource-form button[type=submit] {
    margin-top: 20px;
  }
}
.add-resource-form__description {
  font-size: 18px;
  line-height: 140%;
  color: #ABABAB;
  margin-bottom: 25px;
}
.add-resource-form__placements {
  margin-bottom: 40px;
}
.add-resource-form__placements .checkbox-card {
  height: 100%;
}
@media (max-width: 767.98px) {
  .add-resource-form__placements .checkbox-card {
    margin: 5px 0px;
    height: auto;
  }
}

.checkbox input[type=checkbox] {
  -webkit-appearance: none;
  width: 1px;
  height: 1px;
  pointer-events: none;
  background-color: transparent;
  opacity: 0;
}
.checkbox input[type=checkbox]:checked + label:before {
  border-color: #F77F00;
  box-shadow: 0 0 0 3px rgba(255, 184, 109, 0.52);
}
.checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.checkbox input[type=checkbox]:disabled + label {
  opacity: 0.4;
  pointer-events: none;
}
.checkbox label {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding-left: 32px;
}
.checkbox label:before {
  border: 1px solid #ABABAB;
  border-radius: 4px;
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 19px;
  height: 19px;
}
.checkbox label:after {
  background: url("/assets/images/svg/checkbox_tick.svg") 50% 50% no-repeat;
  height: 17px;
  width: 17px;
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  opacity: 0;
  transition: 0.3s ease opacity;
}
.checkbox label:hover {
  cursor: pointer;
}
.checkbox label a {
  color: #4B4E53;
  text-decoration: underline;
}
.checkbox label a:hover {
  text-decoration: none;
}

select,
.nice-select {
  border-radius: 5px;
  height: 58px;
  padding: 0px 25px;
  padding-right: 28px;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  line-height: 120.3%;
  color: #ABABAB;
  border: 1px solid #DDDDDD;
  outline: 0px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease border-color;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:after,
.nice-select:after {
  border: 0px;
  background: url("/assets/images/svg/eva_arrow-ios-downward-fill.svg") no-repeat;
  width: 14px;
  height: 14px;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  margin-top: -6px;
  right: 8px;
}
select.open,
.nice-select.open {
  color: #8E94A7;
}
select.open:after,
.nice-select.open:after {
  transform: rotate(180deg);
}
select .list,
.nice-select .list {
  background-color: #fff;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
}
select .option:hover, select .option:focus, select .option.selected.focus,
.nice-select .option:hover,
.nice-select .option:focus,
.nice-select .option.selected.focus {
  background-color: #f9f9f9;
}
select.input-error,
.nice-select.input-error {
  border-color: #EB5757;
  color: #EB5757;
}
select.input-success,
.nice-select.input-success {
  border-color: #219653;
  color: #219653;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #F77F00;
}
.switch input:checked + .slider:before {
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dedede;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 26px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
}
.switch-red input + .slider, .switch-red input:checked + .slider {
  background-color: #D62828;
}
.switch-green input + .slider, .switch-green input:checked + .slider {
  background-color: #219653;
}

.switch-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .switch-box {
    align-items: flex-start;
  }
}
.switch-box__switch {
  margin-right: 15px;
}
.switch-box__label {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #4B4E53;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .switch-box__label {
    font-size: 16px !important;
    line-height: 1.3;
  }
}

.icon-repost {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #F77F00;
}
.icon-repost img {
  width: 10px;
  height: 10px;
}
.icon-repost_blue {
  background-color: #2D9CDB;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table thead {
  padding-bottom: 30px;
}
.table thead th {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #7E7E80;
  height: 55px;
  text-align-last: left;
  background-color: #F7F7F8;
  padding-left: 10px;
  padding-right: 10px;
}
.table thead th:first-of-type {
  padding-left: 42px;
  border-radius: 5px 0px 0px 5px;
}
.table thead th:last-of-type {
  border-radius: 0px 5px 5px 0px;
  padding-right: 42px;
}
.table tbody {
  position: relative;
}
.table tbody::before {
  content: "";
  display: block;
  height: 15px;
}
.table td {
  font-size: 16px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
.table td:first-of-type {
  padding-left: 42px;
  border-radius: 5px 0px 0px 5px;
}
.table td:last-of-type {
  padding-right: 42px;
  border-radius: 0px 5px 5px 0px;
}
.table_striped tr:nth-of-type(even) td {
  background-color: #fbfbfb;
}

@media (max-width: 991.98px) {
  pre {
    word-break: break-word;
  }
}
pre.token {
  border-radius: 3px;
  background-color: rgba(247, 127, 0, 0.3);
  display: inline-block;
  padding: 5px 10px;
  color: #ab5800;
  font-size: 13px;
}

.default-list {
  padding: 0;
  list-style: none;
}
.default-list li + li {
  margin-top: 20px;
}
.default-list ul {
  padding-left: 25px;
  margin-top: 15px;
  list-style-type: square;
}
.default-list ul li + li {
  margin-top: 15px;
}
.default-list strong {
  color: #000;
}

.chip {
  height: 36px;
  left: 0px;
  top: 0px;
  background-color: #FBFCFE;
  border-radius: 24px;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  color: #8E94A7;
  padding: 0px 16px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  transition: 0.3s ease-in all;
  transition-property: background-color, color;
}
.chip_purple {
  color: #9B51E0;
  background-color: rgba(155, 81, 224, 0.07);
}

.chip-checkbox {
  position: relative;
}
.chip-checkbox input {
  width: 1px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip-checkbox input:checked + .chip {
  background-color: #dae3fc;
  color: #8E94A7;
}
.chip-checkbox label {
  cursor: pointer;
}

.feature-box {
  text-align: center;
  margin: 25px 0px;
}
.feature-box:hover .feature-box__icon:after {
  transform: translate(-80%, -70%);
}
.feature-box__icon {
  position: relative;
  margin-bottom: 26px;
}
.feature-box__icon:after {
  width: 112px;
  height: 112px;
  background-color: #FBFAF2;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  transition: 0.3s ease-in-out transform;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .feature-box__icon:after {
    transform: translate(0%, -50%);
  }
}
.feature-box__title {
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 120.3%;
  color: #000000;
  margin-bottom: 22px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .feature-box__title {
    margin-bottom: 13px;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .feature-box__title {
    font-size: 19px;
    margin-bottom: 12px;
  }
}
.feature-box__description {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 120.3%;
  color: #C0C0C0;
  margin-bottom: 31px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .feature-box__description {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .feature-box__description {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.feature-box__action a {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 120.3%;
  color: #F77F00;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease color;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .feature-box__action a {
    font-size: 12px;
  }
}
.feature-box__action a img {
  margin-left: 10px;
}
.feature-box__action a:hover {
  color: #c46500;
}
.feature-box_textleft {
  text-align: left;
}
@media (max-width: 767.98px) {
  .feature-box_textleft {
    text-align: center;
  }
}
.feature-box_textleft .feature-box__icon:after {
  left: 10%;
}
@media (max-width: 767.98px) {
  .feature-box_textleft .feature-box__icon:after {
    left: 50%;
  }
}

.form-success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #219653;
  background-color: rgba(33, 150, 83, 0.07);
  border-radius: 3px;
  padding: 65px;
}
.form-success-box svg {
  height: 144px;
  margin-bottom: 43px;
}
.form-success-box__title {
  font-weight: 350;
  font-size: 29px;
  line-height: 140%;
  margin-bottom: 10px;
}
.form-success-box__message {
  font-style: normal;
  font-weight: 350;
  font-size: 19px;
  line-height: 140%;
}

.checkbox-price-card {
  position: relative;
  max-width: 330px;
}
.checkbox-price-card input[type=radio], .checkbox-price-card input[type=checkbox] {
  width: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.checkbox-price-card input[type=radio]:checked + .checkbox-price-card__label, .checkbox-price-card input[type=checkbox]:checked + .checkbox-price-card__label {
  border-color: #5665F1;
}
.checkbox-price-card input[type=radio]:checked + .checkbox-price-card__label:before, .checkbox-price-card input[type=checkbox]:checked + .checkbox-price-card__label:before {
  border-color: #5665F1;
}
.checkbox-price-card input[type=radio]:checked + .checkbox-price-card__label:after, .checkbox-price-card input[type=checkbox]:checked + .checkbox-price-card__label:after {
  opacity: 1;
}
.checkbox-price-card input[type=radio]:checked + .checkbox-price-card__label .checkbox-price-card__price, .checkbox-price-card input[type=checkbox]:checked + .checkbox-price-card__label .checkbox-price-card__price {
  color: #5665F1;
}
.checkbox-price-card__label {
  border: 2px solid rgba(142, 148, 167, 0.5);
  border-radius: 15px;
  padding: 27px 61px 20px 30px;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease-in border-color;
}
.checkbox-price-card__label:before {
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #8E94A7;
  content: "";
  right: 30px;
  bottom: 20px;
  transition: 0.2s ease-in border-color;
}
.checkbox-price-card__label:after {
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  right: 36px;
  bottom: 26px;
  background-color: #5665F1;
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s ease-in opacity;
}
.checkbox-price-card__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #2C2D2F;
  margin-bottom: 20px;
}
.checkbox-price-card__price {
  font-style: normal;
  font-weight: bold;
  font-size: 27px;
  line-height: 120.3%;
  color: #8E94A7;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.2s ease-in color;
}
.checkbox-price-card__price span {
  margin-left: 14px;
  display: inline-block;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
}

.checkbox-card {
  position: relative;
}
.checkbox-card input[type=radio], .checkbox-card input[type=checkbox] {
  width: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.checkbox-card input[type=radio]:checked + .checkbox-card__label:before, .checkbox-card input[type=checkbox]:checked + .checkbox-card__label:before {
  border-width: 9px;
}
.checkbox-card_selected_green input[type=radio]:checked + .checkbox-card__label, .checkbox-card_selected_green input[type=checkbox]:checked + .checkbox-card__label {
  border-color: rgba(33, 150, 83, 0.5);
}
.checkbox-card_selected_green input[type=radio]:checked + .checkbox-card__label:before, .checkbox-card_selected_green input[type=checkbox]:checked + .checkbox-card__label:before {
  border-color: #219653;
}
.checkbox-card__label {
  display: block;
  padding: 27px 28px 31px 81px;
  position: relative;
  cursor: pointer;
  height: 100%;
  border: 2px solid rgba(142, 148, 167, 0.5);
  background-color: #fff;
  border-radius: 15px;
}
.checkbox-card__label:before {
  width: 28px;
  height: 28px;
  border: 1px solid #8E94A7;
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  content: "";
  transition: 0.3s ease-in all;
  transition-property: border-color, border-width;
}
.checkbox-card__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
  margin-bottom: 7px;
}
.checkbox-card__description {
  font-size: 15px;
  line-height: 130%;
  color: #8E94A7;
}

@media (max-width: 767.98px) {
  .collapse-block {
    display: none;
  }
}
.collapse-block_showed {
  display: block;
}
@media (max-width: 767.98px) {
  .collapse-block:not(.collapse-block_showed) {
    margin-top: 0px;
  }
}

.collapse-button {
  display: none;
}
@media (max-width: 767.98px) {
  .collapse-button {
    display: block;
  }
}
.collapse-button_toggled .if-not-toggled {
  display: none;
}
.collapse-button:not(.collapse-button_toggled) .if-toggled {
  display: none;
}

.badge {
  font-size: 11px;
  padding: 0px 5px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  line-height: 1;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  color: #ABABAB;
  margin-left: 5px;
}

.nav {
  margin: 0;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
}
.nav a[disabled] {
  color: #ABABAB;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

@media (max-width: 767.98px) {
  .widget {
    margin: 10px 0px;
  }
}
.widget__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .widget__header {
    flex-direction: column;
    align-items: baseline;
  }
}
.widget__title h2 {
  font-size: 24px;
}
@media (max-width: 767.98px) {
  .widget__title h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1469.98px) {
  .widget__actions {
    margin-top: 10px;
  }
}
.widget__action {
  margin-top: 17px;
}
.widget__content {
  margin: 0px -15px;
}

.telegram-widget {
  margin-left: 75px;
}
@media (max-width: 1469.98px) {
  .telegram-widget {
    margin-left: 30px;
  }
}
@media (max-width: 1199.98px) {
  .telegram-widget {
    margin-left: 0px;
  }
}
.telegram-widget__posts {
  height: 600px;
  overflow-x: auto;
  padding-right: 4px;
  padding-bottom: 1px;
}
.telegram-widget__posts::-webkit-scrollbar {
  width: 3px;
  background-color: #ececec;
}
.telegram-widget__posts::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ccc;
}
@media (max-width: 1469.98px) {
  .telegram-widget__posts .channel-announce__header {
    flex-direction: column;
    align-items: baseline;
  }
}
@media (max-width: 1469.98px) {
  .telegram-widget__posts .channel-announce__title {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.telegram-widget__posts .channel-announce + .channel-announce {
  margin-top: 15px;
}

.pgrowth-widget__header {
  margin-bottom: 15px;
}
.pgrowth-widget__action {
  margin-top: 17px;
}
.pgrowth-widget__link {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 120.3%;
  text-transform: uppercase;
  color: #F77F00;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .pgrowth-widget__link {
    font-size: 12px;
  }
}
.pgrowth-widget__link img {
  margin-left: 15px;
  margin-top: -3px;
}

.writing-widget .short-comment + .short-comment {
  margin-top: 40px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .news-widget {
    margin-bottom: 30px;
  }
}

.post-navigation-widget {
  position: sticky;
  top: 15px;
}
.post-navigation-widget .post-widget__content {
  margin-top: 10px;
}

.widget-block__title {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 120.3%;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .widget-block__title {
    margin-bottom: 18px;
    font-size: 22px;
  }
}
.widget-block__nofound {
  color: #ABABAB;
  font-weight: 400;
  font-weight: normal;
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .widget-block__nofound {
    font-size: 18px;
  }
}

.tabnav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .tabnav {
    overflow-x: auto;
  }
}
.tabnav li + li {
  margin-left: 16px;
}
.tabnav li a {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
  text-decoration: none;
  white-space: nowrap;
  padding: 0px;
  display: inline-block;
  border-bottom: 1px dashed transparent;
  transition: 0.3s ease all;
  transition-property: color, border-color;
  padding-bottom: 2px;
}
@media (max-width: 767.98px) {
  .tabnav li a {
    font-size: 14px;
  }
}
.tabnav li a.active {
  color: #F77F00;
  border-bottom: 1px dashed #F77F00;
  pointer-events: none;
}
.tabnav li a.active .badge {
  background-color: #ffa241;
  color: #fff;
}
.tabnav li a[disabled] {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.5;
}
.tabnav_rounded {
  position: relative;
}
.tabnav_rounded li + li {
  margin-left: 8px;
}
.tabnav_rounded li a {
  height: 36px;
  padding: 0px 20px;
  border-radius: 18px;
  border: 1px solid #EDEDED !important;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.tabnav_rounded li a.active {
  background-color: #F77F00;
  border-color: #F77F00 !important;
  color: #fff !important;
}
.tabnav_rounded li a.disabled, .tabnav_rounded li a[disabled] {
  opacity: 0.3;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.line-tabnav {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #E4E4E4;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 1px;
}
@media (max-width: 767.98px) {
  .line-tabnav {
    overflow-x: auto;
  }
}
.line-tabnav li {
  display: inline-flex;
}
.line-tabnav li + li {
  margin-left: 40px;
}
@media (max-width: 767.98px) {
  .line-tabnav li + li {
    margin-left: 20px;
  }
}
.line-tabnav li a {
  line-height: 40px;
  display: block;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #ABABAB;
  text-decoration: none;
  padding: 0;
  position: relative;
  transition: 0.3s ease-in-out color;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .line-tabnav li a {
    font-size: 14px;
  }
}
.line-tabnav li a span {
  font-size: 14px;
}
.line-tabnav li a span.count {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 1;
  font-size: 12px;
  background-color: #F2F3F6;
}
.line-tabnav li a:after {
  opacity: 0;
  content: "";
  bottom: -1px;
  width: 100%;
  left: 0px;
  background-color: #F77F00;
  position: absolute;
  height: 1px;
  transition: 0.3s ease-in-out opacity;
}
.line-tabnav li a.active {
  color: black;
}
.line-tabnav li a.active:after {
  opacity: 1;
}

.share {
  position: relative;
  width: auto;
  display: inline-flex;
}
.share__button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: 0px;
  outline: 0px;
  cursor: pointer;
}
.share__button .svg path {
  transition: 0.3s ease-in-out stroke;
}
.share__button:hover .svg path {
  stroke: #717991;
}
.share__button[aria-opened=true] + .share__popup {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0px);
}
.share__popup {
  background-color: #FFFFFF;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  position: absolute;
  z-index: 3;
  right: -10px;
  width: 125px;
  top: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.3s ease-in-out all;
  transition-property: opacity, transform;
}
.share__list {
  padding: 13px 0px;
  margin: 0;
  list-style: none;
}
.share__list li {
  text-align: left;
}
.share__list li:first-of-type {
  color: #4B4E53;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  padding: 0px 15px;
  padding-bottom: 5px;
}
.share__list li:first-of-type + li {
  border-top: 0px;
}
.share__list li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 15px;
  height: 40px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #4B4E53;
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s ease background-color;
}
.share__list li a:hover {
  background-color: #F2F3F6;
}
.share__list li a img {
  margin-right: 8px;
}
.share__list li + li {
  border-top: 1px solid #F2F3F6;
}

.modal-content {
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
  border: 0px;
  border-radius: 15px;
  padding: 58px;
  position: relative;
}
@media (max-width: 767.98px) {
  .modal-content {
    padding: 40px 30px;
  }
}
.modal-content .contact-box {
  margin-top: 20px;
}

.modal-description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #4B4E53;
  margin-top: 10px;
  margin-bottom: 20px;
}
.modal-description a {
  text-decoration: none;
}

.modal-title {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 120.3%;
  color: #000000;
  width: 100%;
}
@media (max-width: 767.98px) {
  .modal-title {
    font-size: 22px;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.modal-close button {
  background-color: transparent;
  padding: 10px;
  margin: 0;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease opacity;
}
.modal-close button:hover {
  opacity: 1;
}

.modal-header {
  padding: 0;
  border: 0px;
  flex-direction: column;
}

.modal-body {
  padding: 0;
}
@media (max-width: 767.98px) {
  .modal-body {
    margin-top: 20px;
  }
}

.modal-message {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 120.3%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #4B4E53;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .modal-message {
    font-size: 16px;
    margin-top: 15px;
  }
}

.modal-action {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .modal-action {
    margin-top: 15px;
  }
}

.auth-modal__actionmsg {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #4B4E53;
  margin-top: 10px;
}
.auth-modal__actionmsg a {
  text-decoration: none;
}

.upload-modal .modal-content {
  border-radius: 0px;
}

.alert {
  padding: 22px 40px;
  border: 1px solid #ABABAB;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .alert {
    padding: 25px;
  }
}
.alert__body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.alert__message {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .alert__message {
    font-size: 15px;
  }
}
.alert__icon {
  flex-shrink: 0;
  margin-right: 18px;
}
.alert-info {
  border-color: #2D9CDB;
  background-color: #D0EEFF;
  color: #2D9CDB;
}
.alert-info a {
  color: #2D9CDB;
}
.alert-info a:hover {
  color: #1f7fb6;
}
.alert-success {
  border-color: #219653;
  background-color: #A3F6C6;
  color: #219653;
}
.alert-success a {
  color: #219653;
}
.alert-success a:hover {
  color: #186c3c;
}
.alert-error {
  border-color: #D62828;
  background-color: #FFBDBD;
  color: #D62828;
}
.alert-error a {
  color: #D62828;
}
.alert-error a:hover {
  color: #ab2020;
}
.alert button {
  margin: 0;
  padding: 5px;
  background-color: transparent;
  display: inline-flex;
  flex-direction: row;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  margin-top: 3px;
  margin-left: 10px;
}
.alert + .alert {
  margin-top: 10px;
}

.post-discuss {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 270px;
  text-decoration: none;
  outline: 0;
}
.post-discuss__poster {
  margin-right: 19px;
  border-radius: 50%;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border: 4px solid transparent;
  transition: 0.3s ease border-color;
  flex-shrink: 0;
}
.post-discuss__poster img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.post-discuss__poster .fire {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 13px;
}
.post-discuss__category {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  color: #ABABAB;
}
.post-discuss__comments {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  color: #94907A;
}
.post-discuss__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  color: #000000;
  transition: 0.3s ease color;
}
.post-discuss:hover .post-discuss__title {
  color: #797449;
}
.post-discuss:hover .post-discuss__poster {
  border-color: #d0c992;
}

.post-card {
  position: relative;
  text-decoration: none;
  display: block;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .post-card {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.post-card:after {
  width: calc(100% + 30px);
  height: calc(100% + 40px);
  content: "";
  position: absolute;
  top: -20px;
  left: -15px;
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
  background-color: #FFFAF2;
  transition: 0.3s ease-in-out opacity;
  z-index: -1;
}
.post-card:hover:after {
  opacity: 1;
}
.post-card__poster {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 26px;
}
.post-card__poster img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  display: block;
}
.post-card__header {
  margin-bottom: 6px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__header {
    align-items: baseline;
    flex-direction: column-reverse;
    margin-bottom: 2px;
  }
}
@media (max-width: 767.98px) {
  .post-card__header {
    margin-bottom: 3px;
  }
}
.post-card__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
  transition: 0.3s ease color;
}
.post-card__title img {
  margin-left: 5px;
  margin-top: -1px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__stars {
    margin-bottom: 5px;
  }
}
.post-card__status {
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 3px;
  padding: 0% 16px;
  height: 23px;
  position: absolute;
  top: -38px;
}
.post-card__status--black {
  background-color: #333;
  color: #FFFFFF;
}
.post-card__entry {
  padding: 0px 20px;
  position: relative;
}
.post-card__category {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-bottom: 16px;
}
.post-card__content {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 120.3%;
  color: #2C2D2F;
}
.post-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__footer {
    flex-direction: column;
    align-items: baseline;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__footer img {
    width: 16px !important;
  }
}
.post-card__metas {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__metas {
    display: none;
  }
}
.post-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120.3%;
  color: #ABABAB;
}
.post-card__meta img {
  margin-right: 8px;
  width: 22px;
}
.post-card__meta + .post-card__meta {
  margin-left: 14px;
}
.post-card__action {
  margin-bottom: 19px;
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__action {
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .post-card__action {
    margin-bottom: 10px;
  }
}
.post-card__link {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 120.3%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F77F00;
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card__link {
    font-size: 11px;
  }
}
@media (max-width: 767.98px) {
  .post-card__link {
    font-size: 11px;
  }
}
.post-card__link:after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F77F00;
  margin-left: 8px;
  content: "";
  transition: 0.3s ease all;
  transition-property: background-color, transform;
  margin-top: -3px;
}
.post-card__label {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 120.3%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ABABAB;
  border: 1px solid #ABABAB;
  padding: 0% 15px;
  border-radius: 14px;
  height: 28px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.post-card:hover .post-card__title {
  color: #F77F00;
}
.post-card:hover .post-card__link:after {
  transform: translateX(5px);
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-card .reviews-counter__item + .reviews-counter__item {
    margin-left: 10px;
  }
}
.post-card_promo:after {
  opacity: 1;
  background-color: #F8F1FF;
}
.post-card_promo .post-card__status {
  background-color: #9B51E0;
}
.post-card_promo .post-card__label {
  color: #b47ce8;
  border-color: #b47ce8;
}
.post-card_promo .post-card__title,
.post-card_promo .post-card__link {
  color: #9B51E0;
}
.post-card_promo .post-card__title:after,
.post-card_promo .post-card__link:after {
  background-color: #9B51E0;
}
.post-card_promo .post-card__title:hover,
.post-card_promo .post-card__link:hover {
  color: #8f3bdc;
}
.post-card_promo .post-card__title:hover:after,
.post-card_promo .post-card__link:hover:after {
  background-color: #8f3bdc;
}
.post-card_promo:hover .post-card__title {
  color: #8f3bdc;
}

.short-comment {
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  padding: 24px 22px;
}
.short-comment + .short-comment {
  margin-top: 40px;
}
.short-comment--noborder {
  border: 0px;
  padding: 0px;
}
.short-comment__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px 22px;
}
.short-comment__user {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.short-comment__user:hover .short-comment__name {
  color: #F77F00;
}
.short-comment__avatar {
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
.short-comment__avatar img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  max-width: 100%;
  height: 100%;
}
.short-comment__name {
  color: #000000;
  transition: 0.3s ease color;
}
.short-comment__date {
  color: #ABABAB;
  margin-left: 5px;
  font-weight: normal;
}
.short-comment__type {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  text-align: right;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.short-comment__type img {
  width: 16px;
  margin-right: 8px;
  margin-top: -3px;
}
.short-comment__type--green {
  color: #219653;
}
.short-comment__type--red {
  color: #D62828;
}
.short-comment__content {
  margin-top: 11px;
}
.short-comment__comment {
  background-color: #fbfbfb;
  border-radius: 5px 5px 0px 0px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  display: flex;
  align-items: flex-start;
  color: #4B4E53;
  padding: 19px 22px 19px 22px;
  position: relative;
  justify-content: space-between;
}
.short-comment__comment:before {
  border-radius: 3px;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 32px;
  position: absolute;
  content: "";
  background-color: #fbfbfb;
  transform: rotate(45deg);
}
.short-comment__rating {
  border-radius: 5px;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 25px;
  padding: 0px 7px;
  margin-left: 10px;
}
.short-comment__rating--green {
  color: #27AE60;
  background-color: #ECFBF0;
}
.short-comment__rating--red {
  color: #D62828;
  background-color: #fbecec;
}
.short-comment__footer {
  border-radius: 0px 0px 5px 5px;
  background: #fefefe;
  padding: 17px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.short-comment__footer:hover .short-comment__company__title {
  color: #4B4E53;
}
.short-comment__company {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.short-comment__company__poster {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 9px;
}
.short-comment__company__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.short-comment__company__title {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  color: #000000;
  transition: 0.3s ease-in-out color;
}
.short-comment__company__category {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  color: #ABABAB;
}
.searchbox {
  position: relative;
}
.searchbox button {
  position: absolute;
  padding: 0px 15px;
  left: 15px;
  top: 1px;
  height: calc(100% - 2px);
  border: 0px;
  background-color: transparent;
  cursor: pointer;
}
.searchbox button:focus {
  outline: 0px;
}
.searchbox input {
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 120.3%;
  color: #535353;
  height: 62px;
  width: 100%;
  max-width: 809px;
  background: #F2F3F6;
  border: 1px solid #F2F3F6;
  border-radius: 7px;
  padding-left: 83px;
  transition: 0.3s ease all;
  transition-property: border-color, background-color;
}
.searchbox input:focus {
  border-color: rgba(83, 83, 83, 0.3);
  background-color: #fff;
  outline: 0px;
}

@media (max-width: 767.98px) {
  .active-users {
    margin-top: 30px;
  }
}
.active-users__title {
  margin-bottom: 17px;
}
.active-users__title h2 {
  font-size: 24px;
}
.active-users__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.active-users__list li + li {
  margin-top: 27px;
}
.active-users__action {
  padding-left: 57px;
  margin-top: 26px;
}
.active-users__action a {
  font-size: 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
.active-users__action a img {
  width: 19px;
  margin-left: 6px;
}

.active-user-card {
  display: flex;
  flex-direction: row;
  text-decoration: none;
}
.active-user-card__avatar {
  width: 42px;
  height: 42px;
  margin-right: 15px;
  flex-shrink: 0;
}
.active-user-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.active-user-card__name {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 120.3%;
  color: #000000;
  transition: 0.3s ease color;
}
.active-user-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 120.3%;
  margin-top: 4px;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .active-user-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.active-user-card__meta > div + div {
  position: relative;
}
.active-user-card__meta > div + div:before {
  content: "•";
  margin-right: 6px;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .active-user-card__meta > div + div:before {
    display: none;
  }
}
.active-user-card__reviews {
  color: #ABABAB;
}
.active-user-card__comments {
  color: #ABABAB;
  margin-left: 10px;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .active-user-card__comments {
    margin-left: 0px;
    margin-top: 1px;
  }
}
.active-user-card:hover .active-user-card__name {
  color: #F77F00;
}

.commercial__banner img {
  max-width: 100%;
}
.commercial__description {
  margin-top: 7px;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 120.3%;
  text-align: right;
  color: #ABABAB;
}
.commercial__description a {
  color: #ABABAB;
  text-decoration: none;
}
.commercial__description a:hover {
  color: #F77F00;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .rating-list {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .rating-list {
    margin: 15px 0px;
  }
}
.rating-list__category {
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 140%;
  color: #ABABAB;
  margin-bottom: 35px;
}
@media (max-width: 991.98px) {
  .rating-list__category {
    font-size: 19px;
  }
}
.rating-list__action {
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .rating-list__action {
    margin-top: 30px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .rating-list .rating-post {
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}

.rating-post {
  display: flex;
  flex-direction: row;
  position: relative;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .rating-post {
    align-items: flex-start;
  }
}
.rating-post::before {
  background-color: #fbfbfb;
  border-radius: 5px;
  content: "";
  width: calc(100% + 34px);
  height: calc(100% + 36px);
  position: absolute;
  top: -17px;
  left: -18px;
  opacity: 0;
  transition: 0.3s ease-in-out opacity;
}
.rating-post:hover:before {
  opacity: 1;
}
.rating-post + .rating-post {
  margin-top: 36px;
}
.rating-post__num {
  font-style: normal;
  font-weight: normal;
  font-size: 27px;
  line-height: 120.3%;
  width: 45px;
  text-align: center;
  margin-right: 15px;
  color: #DADADA;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .rating-post__num {
    margin-right: 10px;
    margin-top: 5px;
    font-size: 21px;
  }
}
.rating-post__poster {
  height: 70px;
  width: 70px;
  margin-right: 15px;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .rating-post__poster {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 991.98px) {
  .rating-post__poster {
    height: 48px;
    width: 48px;
  }
}
.rating-post__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.rating-post__content {
  flex-grow: 1;
  position: relative;
}
.rating-post__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .rating-post__title {
    flex-direction: column-reverse;
    align-items: baseline;
  }
}
@media (max-width: 767.98px) {
  .rating-post__title {
    align-items: flex-start;
  }
}
.rating-post__title__name {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
}
@media (max-width: 991.98px) {
  .rating-post__title__name {
    font-size: 16px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .rating-post__stars {
    margin-bottom: 5px;
  }
}
.rating-post__category {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-top: 3px;
  margin-bottom: 13px;
}
@media (max-width: 991.98px) {
  .rating-post__category {
    font-size: 14px;
    margin-top: 4px;
  }
}
.rating-post__reviewscount {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}
.rating-post__subinfo {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  text-align: right;
}
.rating-post--gold {
  margin-top: 50px !important;
}
.rating-post--gold::before {
  background-color: #FFFEEB;
  opacity: 1;
}
.rating-post--gold .rating-post__num {
  color: #F2C94C;
  transition: 0.3s ease color;
}
.rating-post--gold .rating-post__title__name {
  color: #E6B700;
  transition: 0.3s ease color;
}
.rating-post--gold .rating-post__poster::after {
  display: block;
  border-color: #FCBF29;
  transition: 0.3s ease-on-out border-color;
}
.rating-post--gold:hover .rating-post__num,
.rating-post--gold:hover .rating-post__title__name,
.rating-post--gold:hover .rating-post__subinfo {
  color: #e1ae10;
  transition: 0.3s ease color;
}
.rating-post--gold:hover .rating-post__poster::after {
  border-color: #e1ae10;
}
.rating-post--ad .rating-post__num {
  color: rgba(155, 81, 224, 0.25);
}
.rating-post--ad .rating-post__subinfo, .rating-post--ad .rating-post__title__name {
  color: #9B51E0;
  transition: 0.3s ease color;
}
.rating-post--ad .rating-post__subinfo:hover, .rating-post--ad .rating-post__title__name:hover {
  color: #8f3bdc;
}
.rating-post--ad .rating-post__poster::after {
  display: block;
  border-color: #9B51E0;
  transition: 0.3s ease-on-out border-color;
}
.rating-post--ad::before {
  background-color: rgba(155, 81, 224, 0.03);
  opacity: 1;
}
.rating-post--ad:hover .rating-post__title__name,
.rating-post--ad:hover .rating-post__subinfo {
  color: #7523c2;
  transition: 0.3s ease color;
}
.rating-post--ad:hover .rating-post__poster::after {
  border-color: #7523c2;
}
.rating-post--ad:hover:before {
  background-color: rgba(155, 81, 224, 0.05);
}
.rating-post--ad .star-rating > span:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%239B51E0'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%239B51E0'/%3E%3C/svg%3E%0A") !important;
}

@keyframes semicircle {
  0% {
    transform: rotate(-160deg);
  }
  100% {
    transform: rotate(200deg);
  }
}
.reviews-counter {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.reviews-counter__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 120.3%;
}
.reviews-counter__item img {
  margin-right: 8px;
  margin-top: -3px;
}
.reviews-counter__item + .reviews-counter__item {
  margin-left: 23px;
}
@media (max-width: 767.98px) {
  .reviews-counter__item + .reviews-counter__item {
    margin-left: 10px;
  }
}
.reviews-counter__item--green {
  color: #219653;
}
.reviews-counter__item--red {
  color: #D62828;
}
.reviews-counter__item--gray {
  color: #ABABAB;
}

.cookie-notify {
  background-color: #FDFCFA;
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
}
@media (max-width: 767.98px) {
  .cookie-notify {
    font-size: 10px;
  }
}
.cookie-notify--hidden {
  display: none;
}
.cookie-notify__body {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-notify__message {
  color: #B09258;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-notify__button {
  margin-left: 68px;
  color: #219653;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 0px;
  outline: 0px;
  background-color: transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .cookie-notify__button {
    display: none;
  }
}
.cookie-notify__button:hover img {
  transform: translateX(5px);
}
.cookie-notify__button img {
  margin-right: 9px;
  transition: 0.3s ease-in-out transform;
}
.cookie-notify__close {
  padding: 0;
  border: 0px;
  outline: 0px;
  background-color: transparent;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease opacity;
  opacity: 0.7;
}
.cookie-notify__close:hover {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .cookie-notify__close {
    margin-right: -15px;
    margin-left: 10px;
  }
}
@media (max-width: 767.98px) {
  .cookie-notify__close img {
    height: 28px;
  }
}

.news-card {
  background-color: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
}
.news-card + .news-card {
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .news-card + .news-card {
    margin-top: 10px;
  }
}
.news-card__header {
  padding: 45px 41px 29px 41px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .news-card__header {
    flex-direction: column;
    padding: 35px 30px;
    padding-bottom: 15px;
  }
}
.news-card__header__main {
  display: flex;
  flex-direction: column;
  margin-right: 25px;
  flex-grow: 1;
}
@media (max-width: 767.98px) {
  .news-card__header__main {
    margin-right: 0px;
  }
}
.news-card__header + .news-card__content {
  padding-top: 0px;
}
.news-card__permalink {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 120.3%;
  color: #2C2D2F;
  text-decoration: none;
  transition: 0.3s ease color;
}
@media (max-width: 767.98px) {
  .news-card__permalink {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.news-card__permalink:hover {
  color: #F77F00;
}
.news-card__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.news-card__badge {
  margin-right: -21px;
}
@media (max-width: 1199.98px) {
  .news-card__badge {
    display: none !important;
  }
}
.news-card__meta {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 19px;
  color: #ABABAB;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .news-card__meta {
    font-size: 13px;
  }
}
.news-card__type {
  height: 23px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 15px;
  background-color: rgba(44, 45, 47, 0.07);
  border-radius: 3px;
  font-style: normal;
  font-weight: 800;
  font-size: 9px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2C2D2F;
  margin-right: 18px;
  white-space: nowrap;
  margin-top: -5px;
}
.news-card__type--partner {
  color: #F77F00;
  background-color: rgba(247, 127, 0, 0.07);
}
.news-card__type--advertisement {
  color: #9B51E0;
  background-color: rgba(155, 81, 224, 0.07);
}
.news-card__author {
  margin-right: 18px;
}
.news-card__author .news-post__author {
  margin-right: 0px !important;
}
.news-card__author a {
  white-space: nowrap;
  color: #ABABAB !important;
  font-weight: normal !important;
}
.news-card__date {
  white-space: nowrap;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .news-card__poster {
    height: 150px;
  }
}
.news-card__poster img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media (max-width: 767.98px) {
  .news-card__poster img {
    height: 100%;
  }
}
.news-card__content {
  padding: 15px 41px 22px 41px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #4B4E53;
}
@media (max-width: 767.98px) {
  .news-card__content {
    padding: 20px 30px;
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .news-card__content p:first-of-type {
    margin-top: 0px;
  }
}
@media (max-width: 767.98px) {
  .news-card__content p:last-of-type {
    margin-bottom: 0px;
  }
}
.news-card__footer {
  padding: 0px 41px 45px 41px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .news-card__footer {
    padding: 0px 30px 20px 30px;
  }
}
.news-card__metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120.3%;
  color: #ABABAB;
}
@media (max-width: 767.98px) {
  .news-card__metric {
    font-size: 13px;
  }
}
.news-card__metric + .news-card__metric {
  margin-left: 21px;
}
@media (max-width: 767.98px) {
  .news-card__metric + .news-card__metric {
    margin-left: 15px;
  }
}
.news-card__metric img {
  margin-right: 9px;
  width: 22px;
  height: 22px;
}
@media (max-width: 767.98px) {
  .news-card__metric img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 767.98px) {
  .news-widget {
    margin-bottom: 40px;
  }
}
.news-widget__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .news-widget__header {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .news-widget__header {
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 25px;
  }
}
.news-widget__loadmore {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 767.98px) {
  .news-widget__loadmore {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .news-widget__action {
    margin-top: 5px;
  }
}
.news-widget__action a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 120.3%;
  text-transform: uppercase;
  color: #F77F00;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .news-widget__action a {
    font-size: 12px;
  }
}
.news-widget__action a img {
  margin-left: 16px;
}
.news-widget__post + .news-widget__post {
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .news-widget__post + .news-widget__post {
    margin-top: 15px;
  }
}

.star-rating {
  height: 15.8px;
  position: relative;
  width: 79px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.star-rating:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23E7E7E7'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23E7E7E7'/%3E%3C/svg%3E%0A");
  background-repeat: repeat-x;
  background-size: 15.8px;
  bottom: 0;
  content: "";
  display: block;
  height: 15.8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 79px;
}
.star-rating > span, .star-rating > button {
  display: block;
  text-indent: -10000px;
  width: 79px;
  height: 15.8px;
  position: absolute;
  overflow: hidden;
}
.star-rating > span:before, .star-rating > button:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23FED42D'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23FED42D'/%3E%3C/svg%3E%0A");
  background-repeat: repeat-x;
  background-size: 15.8px;
  bottom: 0;
  content: "";
  display: block;
  height: 15.8px;
  left: 0;
  position: absolute;
  right: 0;
  text-indent: 10000px;
  top: 0;
  transition: 0.3s ease opacity;
}
.star-rating > button {
  background-color: transparent;
  border: 0px;
  outline: 0px;
  position: relative;
  height: 15.8px;
  height: 15.8px;
}
.star-rating > button:before {
  opacity: 0;
}
.star-rating > button.active:before {
  opacity: 1;
}
@media (min-width: 768px) {
  .star-rating_large {
    height: 30px;
    width: 150px;
  }
  .star-rating_large:before {
    background-size: 30px;
    height: 30px;
    width: 150px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23E7E7E7'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23E7E7E7'/%3E%3C/svg%3E%0A");
  }
  .star-rating_large > span, .star-rating_large > button {
    height: 30px;
    width: 150px;
  }
  .star-rating_large > span:before, .star-rating_large > button:before {
    height: 30px;
    background-size: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23FED42D'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23FED42D'/%3E%3C/svg%3E%0A");
  }
}
.star-rating_medium {
  height: 22.4px;
  width: 112px;
}
.star-rating_medium:before {
  background-size: 22.4px;
  height: 22.4px;
  width: 112px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23E7E7E7'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23E7E7E7'/%3E%3C/svg%3E%0A");
}
.star-rating_medium > span, .star-rating_medium > button {
  height: 22.4px;
  width: 112px;
}
.star-rating_medium > span:before, .star-rating_medium > button:before {
  height: 22.4px;
  background-size: 22.4px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23FED42D'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23FED42D'/%3E%3C/svg%3E%0A");
}

.star-rating.harambe:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23E7E7E7'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23E7E7E7'/%3E%3C/svg%3E%0A");
}
.star-rating.harambe > span:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7911 6.43385C14.7442 6.28934 14.6193 6.18408 14.469 6.16226L10.2466 5.54864L8.35819 1.72243C8.29096 1.58619 8.15226 1.5 8.00035 1.5C7.84848 1.5 7.70974 1.58619 7.64252 1.72243L5.75404 5.54861L1.53166 6.16226C1.38138 6.18408 1.25645 6.28934 1.20955 6.4338C1.1626 6.5783 1.20176 6.73688 1.31051 6.84287L4.36579 9.82119L3.64464 14.0266C3.61897 14.1764 3.68053 14.3276 3.80341 14.4169C3.92629 14.5062 4.08915 14.518 4.22365 14.4473L8.00033 12.4617L11.7769 14.4473C11.8353 14.478 11.899 14.4931 11.9626 14.4931C12.0453 14.4931 12.1277 14.4674 12.1971 14.4169C12.32 14.3276 12.3816 14.1763 12.3559 14.0266L11.6345 9.82119L14.6901 6.84287C14.7989 6.73686 14.8381 6.57828 14.7911 6.43385Z' fill='%23FED42D'/%3E%3Cpath d='M14.7908 6.43385C14.7439 6.28934 14.619 6.18408 14.4687 6.16226L10.2462 5.54864L8.35783 1.72243C8.29061 1.58619 8.1519 1.5 8 1.5V12.4617L11.7766 14.4473C11.835 14.478 11.8987 14.4931 11.9622 14.4931C12.045 14.4931 12.1273 14.4675 12.1968 14.417C12.3197 14.3277 12.3813 14.1764 12.3556 14.0267L11.6342 9.82119L14.6898 6.84287C14.7986 6.73686 14.8377 6.57828 14.7908 6.43385Z' fill='%23FED42D'/%3E%3C/svg%3E%0A");
}

.post-desc-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  padding: 12px 15px;
  background-color: transparent;
  border-radius: 3px;
  text-decoration: none;
}
.post-desc-card:hover {
  background-color: rgba(255, 152, 0, 0.05);
}
.post-desc-card__poster {
  width: 46px;
  height: 46px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.post-desc-card__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-desc-card__title {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 120.3%;
  display: flex;
  align-items: center;
  color: #000;
}
.post-desc-card__title img {
  margin-left: 5px;
  margin-top: -3px;
}
.post-desc-card__category {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-top: 5px;
}
.post-desc-card__rating {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-end;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 120.3%;
  padding-left: 10px;
}
.post-desc-card__rating span {
  white-space: nowrap;
}
.post-desc-card__rating--green {
  color: #219653;
}
.post-desc-card__rating--red {
  color: #D62828;
}
.post-desc-card__ratingvalue {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 120.3%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-desc-card__ratingvalue img {
  margin-right: 5px;
  margin-top: -3px;
}

.aside-box {
  width: 100%;
}
.aside-box__header {
  margin-bottom: 20px;
}
.aside-box__title h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120.3%;
  color: #000000;
}
.aside-box__footer {
  margin-top: 20px;
}
.aside-box + .aside-box {
  margin-top: 77px;
}
@media (min-width: 768px) {
  .aside-box + .aside-box {
    margin-top: 40px;
  }
}
.aside-box + .aside-box_filters {
  margin-top: 30px;
}

.promo-card {
  background-color: #F2F3F6;
  border-radius: 3px;
  padding: 48px 35px 30px 35px;
  display: flex;
  flex-direction: column;
}
.promo-card + .promo-card {
  margin-top: 15px;
}
.promo-card__title {
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 120.3%;
  color: #2C2D2F;
  margin-bottom: 4px;
}
.promo-card__description {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 120.3%;
  color: #4B4E53;
}
.promo-card__action {
  margin-top: 17px;
}
.promo-card__action a {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #FFFFFF;
  background-color: #8E94A7;
  border-radius: 3px;
  padding: 0px 20px;
  height: 50px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease background-color;
}
.promo-card__action a:hover {
  background-color: #80869c;
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-list + .category-list {
  margin-top: 4px;
}
.category-list li.active a {
  background-color: #F77F00;
  color: #fff;
}
.category-list li.active a span {
  background-color: #F77F00;
  color: #fff;
}
.category-list li.active a:hover {
  background-color: #F77F00;
}
.category-list li + li {
  margin-top: 4px;
}
.category-list li a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
  text-decoration: none;
  margin: 0px -15px;
  padding: 0px 15px;
  border-radius: 3px;
  height: 33px;
  transition: 0.3s ease background-color;
}
.category-list li a span {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 1;
  color: #ABABAB;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #F2F3F6;
  border-radius: 3px;
  height: 22px;
  padding: 0px 10px;
}
.category-list li a:hover {
  background-color: #f7f7f7;
}

.filter__header {
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.filter__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 120.3%;
  color: #2C2D2F;
}
.filter__action button {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0px;
  outline: 0px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #F77F00;
  cursor: pointer;
  transition: 0.3s ease color;
}
.filter__action button:hover {
  color: #de7200;
}
.filter__content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.filter__item {
  display: flex;
  flex-direction: column;
}
.filter__item + .filter__item {
  margin-top: 24px;
}
.filter__item_row {
  flex-direction: row;
  justify-content: space-between;
}
.filter__item_row .filter__controls {
  margin-left: 10px;
}
.filter__item_switch .filter__controls {
  margin-top: -3px;
}
.filter__name {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 120.3%;
  color: #2C2D2F;
  margin-bottom: 8px;
}
.filter__submit {
  margin-top: 20px;
}
.filter .nice-select {
  height: 42px;
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
}

.accordion .card .card-header a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #F2F3F6;
  padding: 20px 36px;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  color: #535B71;
  text-decoration: none;
  transition: 0.3s ease background-color;
}
.accordion .card .card-header a:hover {
  background-color: #e9ebf0;
}
.accordion .card .card-header a img {
  margin-left: 10px;
  transform: rotate(180deg);
  transition: 0.3s ease-in-out transform;
}
.accordion .card .card-header a[aria-expanded=true] img {
  transform: rotate(0deg);
}
.accordion .card .card-body {
  background-color: #FAFAFA;
  padding: 30px 35px 40px 35px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #4B4E53;
}
.accordion .card + .card {
  margin-top: 25px;
}

.review {
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 5px;
  position: relative;
  padding: 28px 26px;
}
@media (max-width: 767.98px) {
  .review {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .review__postrating .star-rating {
    width: 100px;
    height: 20px;
  }
  .review__postrating .star-rating:before {
    background-size: 20px;
    height: 20px;
    width: 100%;
  }
  .review__postrating .star-rating span {
    width: 20px;
    height: 20px;
  }
  .review__postrating .star-rating span::before {
    height: 20px;
    background-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .review__postrating .star-rating {
    width: 70px;
    height: 14px;
  }
  .review__postrating .star-rating:before {
    background-size: 14px;
    height: 14px;
    width: 100%;
  }
  .review__postrating .star-rating span {
    width: 14px;
    height: 14px;
  }
  .review__postrating .star-rating span::before {
    height: 14px;
    background-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .review__postrating {
    margin-bottom: 10px;
  }
}
.review__thumbnails {
  margin-top: 20px;
}
.review__thumbnails__title {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #ABABAB;
  margin-bottom: 8px;
}
.review__thumbnails__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 3px;
}
.review__thumbnails__inner::-webkit-scrollbar {
  height: 5px;
  background-color: #ececec;
}
.review__thumbnails__inner::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ccc;
}
.review__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
@media (max-width: 575.98px) {
  .review__meta {
    flex-direction: column-reverse;
    flex-direction: column-reverse;
    justify-content: initial;
    align-items: baseline;
  }
}
.review__thumbnail {
  width: 160px;
  height: 80px;
  border-radius: 3px;
  flex-shrink: 0;
}
.review__thumbnail + .review__thumbnail {
  margin-left: 5px;
}
.review__thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 5px;
}
.review__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  opacity: 1;
  transition: 0.3s ease opacity;
}
.review__thumbnail img:hover {
  opacity: 0.9;
}
.review_hover > .review__content {
  background-color: rgba(255, 152, 0, 0.05);
  border-color: rgba(255, 152, 0, 0.05);
}
.review__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 375px) {
  .review__header {
    flex-direction: column-reverse;
  }
}
.review__content {
  display: flex;
  flex-direction: column;
  margin-top: 13px;
}
.review__edit {
  background-color: #fbfbfb;
  margin-left: -26px;
  margin-right: -26px;
  padding: 26px;
}
.review__edit__title {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #b7b7b7;
  margin-bottom: 8px;
}
.review__edit .textarea-comment-title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #161D27;
  margin-bottom: 11px;
  height: 44px;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  background-color: #fbfbfb;
  height: 22px;
  resize: none;
}
.review__edit .textarea-comment-title:focus {
  color: #161D27 !important;
}
.review__edit textarea {
  width: 100%;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  height: 300px;
  background-color: #fbfbfb;
  color: #4B4E53;
}
.review__edit textarea:focus {
  color: #4B4E53 !important;
}
.review__edit .button {
  margin-top: 10px;
}
.review__text {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #4B4E53;
  flex-grow: 1;
}
@media (max-width: 767.98px) {
  .review__text {
    font-size: 14px;
    line-height: 1.4;
  }
}
.review__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #161D27;
  margin-bottom: 11px;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .review__title {
    font-size: 15px;
  }
}
.review__votewrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.review__votewrap:hover .review__voteaction {
  opacity: 1;
  pointer-events: all;
}
.review__votes {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.review__voteaction {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 50px);
  transition: 0.3s ease-in-out opacity;
}
.review__voteaction + .review__rating {
  margin-left: 7px !important;
}
.review__voteactionbtn {
  border-radius: 3px;
}
.review__voteactionbtn .svg path {
  transition: 0.3s ease fill;
}
.review__voteactionbtn--red.red {
  background-color: rgba(214, 40, 40, 0.1);
}
.review__voteactionbtn--red.red:hover {
  background-color: transparent;
}
.review__voteactionbtn--red:hover svg path {
  fill: #D62828;
}
.review__voteactionbtn--green.green {
  background-color: rgba(33, 150, 83, 0.1);
}
.review__voteactionbtn--green.green:hover {
  background-color: transparent;
}
.review__voteactionbtn--green:hover svg path {
  fill: #219653;
}
.review__voteaction button {
  padding: 0;
  margin: 0;
  border: 0px;
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease-in-out background-color;
  outline: 0px;
  background-color: transparent;
}
.review__voteaction button[disabled] {
  pointer-events: none;
  opacity: 0.3;
}
.review__voteaction button:focus {
  outline: 0px;
}
.review__voteaction button img {
  width: 16px;
}
.review__voteaction button.red svg path {
  fill: #D62828;
}
.review__voteaction button.green svg path {
  fill: #219653;
}
.review__status {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #8E94A7;
  display: flex;
  flex-direction: row;
  align-items: center;
  -webkit-user-select: none;
          user-select: none;
}
.review__status img {
  width: 24px;
  margin-right: 10px;
}
.review__replypost {
  color: #ABABAB;
  position: relative;
}
.review__replypost:before {
  content: "•";
  margin-left: 8px;
  margin-right: 5px;
}
.review__replypost a {
  text-decoration: none;
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  color: #000000;
}
.review__replypost a:hover {
  color: #F77F00;
}
.review__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 25px;
  border-radius: 5px;
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
}
.review__rating--green {
  color: #219653;
  background-color: #ECFBF0;
}
.review__rating--red {
  color: #D62828;
  background-color: #fbecec;
}
.review__rating + .review__voteaction {
  margin-left: 7px;
}
.review__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .review__footer {
    flex-wrap: wrap;
  }
}
.review__footer__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.review__footer__nav .review__actions {
  margin-left: 15px;
  margin-top: 2px;
}
.review__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.review__actions .review-action {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #8E94A7;
  border: 0px;
  background-color: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease-in-out color;
  outline: 0px;
  margin-right: 15px;
}
.review__actions .review-action:hover {
  color: #5b6174;
}
.review__actions .review-action + .review-action {
  margin-left: 15px;
}
.review__actions .review-action[disabled] {
  pointer-events: none;
  color: rgba(171, 171, 171, 0.6) !important;
}
.review__options {
  position: relative;
}
.review__options > button {
  padding: 0;
  margin: 0;
  border: 0px;
  outline: 0px;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease-in-out opacity;
}
.review__options > button:hover {
  opacity: 1;
}
.review__options > button[aria-opened=true] + .review__options__actions {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: all;
}
.review__options__actions {
  position: absolute;
  padding: 9px 13px;
  list-style: none;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  top: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease-in-out all;
  transition-property: transform, opacity;
  z-index: 2;
  pointer-events: none;
}
.review__options__actions li button {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #585858;
  padding: 5px 0px;
  margin: 0;
  border: 0px;
  background-color: transparent;
  outline: 0px;
  transition: 0.3s ease color;
  cursor: pointer;
}
.review__options__actions li button:hover {
  color: #3f3f3f;
}
.review__date {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: right;
  color: #ABABAB;
  white-space: nowrap;
}
.review__action {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}
.review__action .review-author__photo {
  margin-right: 15px;
}
@media (max-width: 767.98px) {
  .review__action .review-author__photo {
    display: none;
  }
}
.review__action form {
  flex-grow: 1;
  position: relative;
}
.review__action form .review-form__upload {
  top: 15px;
  right: 15px;
}
.review__action textarea {
  min-height: 150px;
  font-size: 15px;
  line-height: 1.3;
}
.review__action button {
  margin-top: 10px;
}
.review__reply {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  color: #4B4E53;
  margin-left: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
  outline: 0px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .review__reply {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0px;
    margin-left: 45px;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .review__reply span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.review__reply img {
  margin-right: 8px;
  margin-top: -3px;
}
.review__showreplies {
  border: 0px;
  background-color: transparent;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #4B4E53;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 0px;
  padding: 0px;
}
@media (max-width: 575.98px) {
  .review__showreplies {
    margin-top: 15px;
  }
}
.review__showreplies:hover {
  color: #333538;
}
.review__showreplies:focus {
  outline: 0px;
}
.review__showreplies img {
  margin-left: 5px;
}
.review + .review {
  margin-top: 20px;
}

.review-author {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .review-author {
    width: 100%;
    flex-wrap: wrap;
  }
}
.review-author__photo {
  margin-right: 12px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .review-author__photo {
    width: 30px;
    height: 30px;
    margin-top: 3px;
  }
}
.review-author__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.review-author__name {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #1A1E2C;
  margin-top: 2px;
  display: inline-flex;
}
.review-author__name img {
  margin-left: 5px;
  margin-top: -2px;
}
.review-author__name a {
  text-decoration: none;
  color: #1A1E2C;
}
.review-author__name a:hover {
  color: #2d344c;
}
.review-author__rating {
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  margin-left: 5px;
  -webkit-user-select: none;
          user-select: none;
  border-radius: 5px;
  padding: 0px 4px;
}
.review-author__rating--green {
  color: #219653;
  background-color: #ECFBF0;
}
.review-author__rating--red {
  color: #D62828;
  background-color: #fbecec;
}
.review-author__role {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  color: #8E94A7;
}
.review-author__status {
  font-weight: 800;
  font-size: 13px;
  line-height: 19px;
  color: #5665F1;
  margin-right: 5px;
  -webkit-user-select: none;
          user-select: none;
}
.review-author__sign {
  margin-top: 12px;
  padding-top: 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  color: #C9C9C9;
  position: relative;
}
.review-author__sign:before {
  width: 100px;
  height: 1px;
  background-color: #E4E4E4;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767.98px) {
  .review-author__content {
    flex-grow: 1;
  }
}

.review-replies {
  padding-left: 5px;
  margin: 20px 0px;
  padding-top: 10px;
  position: relative;
}
@media (max-width: 767.98px) {
  .review-replies {
    padding-top: 0px;
  }
}
.review-replies__item + .review-replies__item {
  margin-top: 10px;
}
.review-replies__line {
  width: 30px;
  height: 100%;
  border-left: 1px dashed #ccc;
  position: absolute;
  left: 0px;
  top: 0px;
  cursor: pointer;
  transition: 0.3s ease-in-out border-color;
  z-index: 2;
}
.review-replies__line:hover {
  border-color: #4B4E53;
}
.review-replies .review {
  padding: 15px;
  padding-right: 0px;
  border: 0px;
  border-radius: 5px;
  background-color: transparent;
}
.review-replies .review__text {
  font-size: 15px;
}
.review-replies .review:last-of-type {
  padding-bottom: 0px;
}
.review-replies .review .review__footer {
  margin-top: 10px;
}

.review-delete {
  color: #D62828 !important;
}
.review-delete:hover {
  color: #ab2020 !important;
}
.review-delete[disabled] {
  pointer-events: none;
  color: rgba(171, 171, 171, 0.6) !important;
}

.review-form {
  margin-bottom: 47px;
}
@media (max-width: 767.98px) {
  .review-form {
    margin-bottom: 25px;
  }
}
.review-form__formgroup input[type=text] {
  border-radius: 2px;
}
.review-form__formgroup + .review-form__formgroup {
  margin-top: 10px;
}
.review-form__switcher {
  margin-bottom: 20px;
}
.review-form__formgroup + .review-form__textarea {
  margin-top: 10px;
}
.review-form__textarea {
  position: relative;
}
.review-form__textarea textarea {
  max-width: 100%;
  width: 100%;
  resize: vertical;
  min-height: 300px;
  height: 300px;
  padding: 26px 64px 64px 26px;
  border-radius: 2px;
  outline: 0px;
  font-size: 16px;
}
.review-form__upload {
  position: absolute;
  top: 26px;
  right: 26px;
}
.review-form__upload__count {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: #219653;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}
.review-form__upload button {
  border: 0px;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #F2F5FE;
  cursor: pointer;
  transition: 0.3s ease-in background-color;
  outline: 0px;
  margin: 0px;
  padding: 0px;
}
.review-form__upload button:hover {
  background-color: #e4eafd;
}
.review-form__upload button:focus {
  background-color: #e4eafd;
}
.review-form__upload button img,
.review-form__upload button .svg {
  display: block;
  width: 16px;
}
.review-form__footer {
  position: absolute;
  background-color: #fff;
  width: calc(100% - 50px);
  margin: 0px -25px;
  padding-bottom: 15px;
  bottom: 10px;
  left: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .review-form__rating .star-rating {
    width: 120px;
    height: 24px;
  }
  .review-form__rating .star-rating:before {
    background-size: 24px;
    height: 24px;
    width: 100%;
  }
  .review-form__rating .star-rating button {
    width: 24px;
    height: 24px;
    padding: 0px;
  }
  .review-form__rating .star-rating button::before {
    height: 24px;
    background-size: 24px;
  }
}
.review-form__counters {
  margin-top: 10px;
}
.review-form__counters__table {
  display: table;
  float: right;
}
.review-form__counter {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  display: table-row;
  color: #AEAEB8;
  transition: 0.3s ease color;
}
.review-form__counter span {
  display: table-cell;
}
.review-form__counter span:first-of-type {
  padding-right: 30px;
}

.label {
  width: auto;
  height: 23px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
  background-color: rgba(44, 45, 47, 0.07);
  border-radius: 3px;
  font-style: normal;
  font-weight: 800;
  font-size: 9px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2C2D2F;
  white-space: nowrap;
}
.label_green {
  background-color: rgba(33, 150, 83, 0.07);
  color: #219653;
}
.label_cornflower {
  background-color: rgba(86, 101, 241, 0.07);
  color: #5665F1;
}
.label--pink {
  background-color: rgba(155, 81, 224, 0.07);
  color: #9B51E0;
}
.label--black {
  background-color: rgba(51, 51, 51, 0.07);
  color: #333;
}
.label--large {
  padding: 0px 20px !important;
  line-height: 1;
}

.breadcrumbs-section {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120.3%;
  color: #ABABAB;
  padding-top: 53px;
}
@media (max-width: 767.98px) {
  .breadcrumbs-section {
    padding-top: 20px;
    line-height: 1.3;
  }
}

.breadcrumbs {
  color: #ABABAB;
}
.breadcrumbs a {
  color: #ABABAB;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #F77F00;
}
.breadcrumbs ul, .breadcrumbs ol {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumbs ul li + li:before, .breadcrumbs ol li + li:before {
  content: "—";
  margin-left: 4px;
}
.breadcrumbs .current {
  pointer-events: none;
}

.card-box {
  background-color: #fff;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.01);
  padding: 57px 51px;
}
@media (max-width: 767.98px) {
  .card-box {
    padding: 50px 25px;
  }
}

.progress-widget__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120.3%;
  color: #8E94A7;
  margin-bottom: 7px;
}
.progress-widget__line {
  height: 14px;
  width: 100%;
  background-color: #ECECEC;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.progress-widget__line span {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5665F1;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .pro-card {
    padding-top: 0px;
  }
}
.pro-card__title {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 120.3%;
  color: #2C2D2F;
  margin-bottom: 27px;
}
.pro-card__progresswrapper + .pro-card__progresswrapper {
  margin-top: 35px;
}
.pro-card__description {
  margin-top: 38px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #8E94A7;
}
.pro-card__description ul {
  padding-left: 13px;
  margin-bottom: 0;
}
.pro-card__description ul li {
  list-style-type: "—";
  padding-left: 10px;
}
.pro-card--marked {
  border: 1px solid #5665F1;
}
.pro-card--marked .pro-card__title {
  color: #5665F1;
}
.pro-card--marked .pro-card__description ul {
  color: #5665F1;
}

.profile__header {
  display: flex;
  flex-direction: row;
}
.profile__user {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.profile__avatar {
  margin-right: 23px;
}
@media (max-width: 767.98px) {
  .profile__avatar {
    margin-right: 10px;
  }
}
.profile__avatar img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .profile__avatar img {
    width: 50px;
    height: 50px;
  }
}
.profile__username {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 120.3%;
  color: #161D27;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .profile__username {
    font-size: 18px;
    white-space: nowrap;
  }
}
.profile__userrating {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-align: center;
  height: 30px;
  border-radius: 5px;
  padding: 0px 10px;
  background-color: #F2F3F6;
  color: #ABABAB;
  margin-left: 12px;
}
@media (max-width: 767.98px) {
  .profile__userrating {
    height: 24px;
    font-size: 12px;
  }
}
.profile__userrating--green {
  color: #27AE60;
  background-color: #ECFBF0;
}
.profile__userrating--red {
  color: #D62828;
  background-color: #fbecec;
}
.profile__userrole {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #8E94A7;
  margin-top: 5px;
}
@media (max-width: 767.98px) {
  .profile__userrole {
    font-size: 13px;
    margin-top: 0px;
  }
}
.profile__userrole .review-author__status {
  margin-left: 10px;
}
.profile__becamepartner {
  font-style: normal;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9B51E0;
  margin-left: 14px;
  padding-top: 2px;
}
.profile__becamepartner img {
  margin-left: 4px;
  margin-top: -2px;
}
.profile__edit {
  margin-left: 30px;
}
@media (max-width: 767.98px) {
  .profile__edit {
    margin-left: 0px;
  }
}
.profile__edit .button img {
  display: none;
  margin: 0;
  width: 24px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .profile__edit .button img {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .profile__edit .button span {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .profile__edit .button {
    height: 40px;
    padding: 0px 10px;
    font-size: 13px;
    border: 0px;
  }
}
.profile__content .nothing-found {
  margin-top: 100px;
  margin-bottom: 50px;
}
.profile__description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-top: 28px;
  margin-bottom: 38px;
}
.profile__navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .profile__navigation {
    flex-direction: column;
    align-items: inherit;
  }
}
@media (max-width: 767.98px) {
  .profile__navigation .nav {
    margin-top: 4px;
    margin-left: 4px;
  }
}
.profile__notifications {
  margin-left: -51px;
  margin-right: -51px;
}
@media (max-width: 767.98px) {
  .profile__notifications {
    margin-right: -25px;
    margin-left: -25px;
  }
}
.profile__notification {
  padding-left: 51px;
  padding-right: 51px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 767.98px) {
  .profile__notification {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.profile__notification--unread {
  background-color: #fbfbfb;
}
.profile__notification .notify {
  background-color: transparent;
}
.profile .review {
  border: 0px;
  padding: 0px;
}
.profile .review + .review {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px #E3E3E3 dashed;
}

.authbox__title,
.authbox h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 120.3%;
  color: #000000;
}
.authbox__title + .auth-form,
.authbox h1 + .auth-form {
  margin-top: 15px;
}
.authbox__subtitle, .authbox__description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #4B4E53;
  margin-top: 5px;
}
.authbox__subtitle a, .authbox__description a {
  text-decoration: none;
}
.authbox__subtitle + .auth-form, .authbox__description + .auth-form {
  margin-top: 15px;
}
.authbox__description {
  margin: 15px 0px;
}

.user-settings {
  overflow: hidden;
}
.user-settings__header h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 120.3%;
  color: #161D27;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .user-settings__header h1 {
    font-size: 26px !important;
  }
}
@media (max-width: 991.98px) {
  .user-settings__header h1 {
    font-size: 22px;
  }
}
.user-settings__header + .alert {
  margin-top: 30px;
}
.user-settings__back {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.user-settings__back a {
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .user-settings__back a {
    font-size: 14px;
  }
}
.user-settings__back a img {
  margin-right: 10px;
  margin-top: -3px;
}
.user-settings__back a:hover img {
  transform: translateX(-10px);
}
.user-settings__content {
  border-top: 1px solid #F0F0F0;
  margin-top: 30px;
  padding: 30px 51px;
  margin-left: -51px;
  margin-right: -51px;
}
.user-settings__content h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 120.3%;
  color: #161D27;
  margin-bottom: 25px;
}
.user-settings__content .checkbox label {
  white-space: nowrap;
}
.user-settings button[type=submit] {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .user-settings button[type=submit] {
    margin-top: 0px;
  }
}

.user-settings-form-group + .user-settings-form-group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #f0f0f0;
}

.fieldset {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .fieldset {
    flex-direction: column;
    align-items: inherit;
  }
}
.fieldset__label {
  width: 20%;
  margin-right: 20px;
  flex-shrink: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #595959;
}
@media (max-width: 767.98px) {
  .fieldset__label {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.fieldset__label--wide {
  width: 40%;
}
@media (max-width: 767.98px) {
  .fieldset__label--wide {
    width: 100%;
  }
}
.fieldset__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .fieldset__field {
    align-items: inherit;
  }
}
.fieldset__field input[type=text], .fieldset__field input[type=email], .fieldset__field input[type=password] {
  max-width: 250px;
  height: 50px;
}
@media (max-width: 767.98px) {
  .fieldset__field input[type=text], .fieldset__field input[type=email], .fieldset__field input[type=password] {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .fieldset__field .form__group {
    width: 100%;
  }
}
.fieldset__field .checkbox {
  margin-right: 40px;
}
@media (max-width: 767.98px) {
  .fieldset__field .checkbox {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 30px;
  }
}
.fieldset__field .checkbox:last-of-type {
  margin-right: 0px;
}
.fieldset__field_wide {
  flex-grow: 1;
}
.fieldset__field_wide input[type=text], .fieldset__field_wide input[type=email], .fieldset__field_wide input[type=password] {
  max-width: 100%;
}

.profile-card {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767.98px) {
  .profile-card {
    margin-right: 15px;
  }
}
.profile-card__item {
  position: relative;
}
@media (max-width: 767.98px) {
  .profile-card__item {
    position: inherit;
  }
}
.profile-card__item + .profile-card__item {
  margin-left: 15px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .profile-card__item + .profile-card__item {
    margin-left: 9px;
  }
}
@media (max-width: 767.98px) {
  .profile-card__item + .profile-card__item {
    margin-left: 9px;
  }
}
.profile-card__user {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .profile-card__user > .profile-card__info {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .profile-card__user > .profile-card__info {
    display: none;
  }
}
.profile-card__user[aria-opened=true] .profile-card__menu {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0px);
}
.profile-card__photo {
  margin-right: 14px;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .profile-card__photo {
    width: 30px;
    height: 30px;
    margin-right: 0px;
  }
}
@media (max-width: 767.98px) {
  .profile-card__photo {
    margin-right: 0px;
    width: 30px;
    height: 30px;
  }
}
.profile-card__photo img {
  border-radius: 50%;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .profile-card__photo img {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .profile-card__photo img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
.profile-card__name {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 22px;
  color: #2C2D2F;
  white-space: nowrap;
}
.profile-card__rating {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.2;
  color: #ABABAB;
}
.profile-card__rating span {
  font-weight: bold;
}
.profile-card__menu {
  position: absolute;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  top: calc(100% + 10px);
  right: 0px;
  list-style: none;
  padding: 15px 0px;
  margin: 0px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.3s ease-in-out all;
  transition-property: opacity, transform;
}
.profile-card__menu__user {
  display: none;
  background-color: #f9f9f9;
  margin-top: -15px;
  padding: 10px 25px;
  margin-bottom: 10px;
}
.profile-card__menu__user .profile-card__name {
  font-size: 13px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .profile-card__menu__user {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .profile-card__menu__user {
    display: block;
  }
}
.profile-card__menu li a,
.profile-card__menu li button {
  padding: 5px 25px;
  background-color: transparent;
  border: 0px;
  outline: 0px;
  font-size: 14px;
  text-decoration: none;
  display: block;
  color: #4B4E53;
  transition: 0.3s ease color;
  white-space: nowrap;
}
.profile-card__menu li a:hover,
.profile-card__menu li button:hover {
  color: #1b1c1d;
}
.profile-card__menu li button {
  color: #D62828;
}
.profile-card__menu li button:hover {
  color: #801818;
}
.profile-card__menu li form {
  margin: 0;
}
.profile-card .user-avatar {
  height: 40px;
  width: 40px;
}
@media (max-width: 1199.98px) {
  .profile-card .user-avatar {
    width: 100%;
    height: 100%;
  }
}

.notify-box {
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  width: 530px;
  top: calc(100% + 10px);
  right: 0px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.3s ease-in-out all;
  transition-property: opacity, transform;
}
@media (max-width: 767.98px) {
  .notify-box {
    width: calc(100vw - 30px);
    right: 15px;
  }
}
.notify-box__content {
  max-height: 400px;
  overflow-y: auto;
}
.notify-box__content::-webkit-scrollbar {
  width: 5px;
  background-color: #ececec;
}
.notify-box__content::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ccc;
}
.notify-box__message {
  text-align: center;
  padding: 25px 0px;
  font-size: 15px;
  color: #ABABAB;
  background-color: #f7f7f7;
}
@media (max-width: 767.98px) {
  .notify-box__message {
    font-size: 13px;
  }
}
.notify-box__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #f9f9f9;
}
.notify-box__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
@media (max-width: 767.98px) {
  .notify-box__title {
    font-size: 15px;
  }
}
.notify-box__action a {
  font-size: 13px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .notify-box__action a {
    font-size: 11px;
  }
}
.notify-box__action a[disabled] {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  color: #ABABAB;
}
.notify-box__footer {
  padding: 15px 30px;
  text-align: center;
  border-top: 1px solid #f9f9f9;
}
.notify-box__footer a {
  text-decoration: none;
  font-size: 13px;
}
.notify-box .notify {
  padding: 15px 30px;
}

.notify {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #fff;
}
.notify--unread {
  background-color: #f7f7f7;
}
.notify__author {
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
}
.notify__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.notify__authorlink {
  color: #000;
  font-weight: bold;
  transition: 0.3s ease color;
}
.notify__icon {
  position: absolute;
  bottom: 2px;
  right: -2px;
}
.notify__growth {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.notify__growth--green {
  background-color: #ECFBF0;
}
.notify__growth--red {
  background-color: #fbecec;
}
.notify__message {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
}
.notify__message__text {
  margin-right: 10px;
}
.notify__message a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease color;
}
.notify__message a:hover {
  color: #F77F00;
}
.notify__message_blue {
  color: #2D9CDB;
}
.notify__message_blue .review__showreplies,
.notify__message_blue .notify__comment_reply .notify__comment__message {
  color: #2D9CDB !important;
}
.notify__message_blue a {
  color: #2D9CDB;
}
.notify__message_blue a:hover {
  color: #1f7fb6;
}
.notify__date {
  color: #ABABAB;
  white-space: nowrap;
}
.notify--showed {
  background-color: #fff;
}
.notify__reply {
  background: #FBFBFB;
  border-radius: 5px;
  padding: 15px 20px;
}
.notify__comment__user {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}
.notify__comment__message {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #4B4E53;
}
.notify .review__showreplies {
  color: #F77F00;
}

.notify-button,
.search-button {
  padding: 5px;
  border: 0px;
  outline: 0px;
  background-color: transparent;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.notify-button__pin,
.search-button__pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D62828;
  position: absolute;
  top: 5px;
  right: 5px;
  pointer-events: none;
}
.notify-button img,
.search-button img {
  pointer-events: none;
}
.notify-button[aria-opened=true] + .notify-box,
.search-button[aria-opened=true] + .notify-box {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0px);
}

.nothing-found__image {
  text-align: center;
}
.nothing-found__image img {
  max-height: 150px;
}
.nothing-found__message {
  margin-top: 20px;
  color: #8E94A7;
  font-family: Circe;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.search-button[aria-opened=true] + .search-box {
  pointer-events: all;
  opacity: 1;
  width: 100%;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .search-button[aria-opened=true] + .search-box {
    width: calc(100% - 50px);
    left: auto;
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .search-button[aria-opened=true] + .search-box {
    width: calc(100vw - 30px);
    transform: translateY(0px);
  }
}

.search-box {
  width: 100%;
  position: relative;
}
.search-box form {
  position: relative;
}
.search-box input[type=text] {
  width: 100%;
  padding-right: 50px;
}
@media (max-width: 767.98px) {
  .search-box input[type=text] {
    font-size: 14px !important;
  }
}
.search-box input[type=text]:focus + button .svg path {
  fill: #8E94A7;
  transition: 0.3s ease fill;
}
.search-box button[type=submit] {
  position: absolute;
  right: 14px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0px;
  outline: 0px;
  top: 0px;
  pointer-events: none;
}
.search-box__result {
  background-color: #FFFFFF;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  margin-top: 10px;
  max-height: 500px;
  overflow-y: auto;
  width: 100%;
  position: absolute !important;
  z-index: 9;
}
.search-box__result::-webkit-scrollbar {
  width: 5px;
  background-color: #ececec;
}
.search-box__result::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ccc;
}
.search-box__result ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-box__result ul li + li {
  border-top: 1px solid #F6F6F6;
}
.search-box .search-item {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  transition: 0.3s ease-in-out background-color;
  padding: 22px 24px;
  cursor: pointer;
}
.search-box .search-item:hover {
  background-color: #fbfbfb;
}
.search-box .search-item__logo {
  flex-shrink: 0;
  margin-right: 22px;
}
@media (max-width: 767.98px) {
  .search-box .search-item__logo {
    margin-right: 15px;
  }
}
.search-box .search-item__logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.search-box .search-item__content {
  flex-grow: 1;
}
.search-box .search-item__category {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-bottom: 9px;
  margin-top: 3px;
}
@media (max-width: 767.98px) {
  .search-box .search-item__category {
    font-size: 13px;
  }
}
.search-box .search-item__title {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
  margin-top: 5px;
}
@media (max-width: 767.98px) {
  .search-box .search-item__title {
    font-size: 16px;
  }
}
.search-box .search-item__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.search-box .search-item__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-box .search-item__icon img {
  transition: 0.3s ease-in-out transform;
}
.search-box .search-item__rating {
  margin-right: 30px;
}
.search-box .search-item:hover .search-item__icon img {
  transform: translateX(5px);
}
.search-box__message {
  padding: 30px;
  color: #ABABAB;
  text-align: center;
  font-size: 15px;
}
.search-box_large {
  max-width: 809px;
}
.search-box_large form input[type=text] {
  font-size: 19px;
}
@media (max-width: 767.98px) {
  .search-box_large form input[type=text] {
    font-size: 15px;
  }
}

.nojs-notify {
  background-color: #D62828;
  padding: 10px 0px;
}
.nojs-notify__message {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.fileupload__drop {
  height: 110px;
  width: 100%;
  border-radius: 3px;
  background-color: #F2F3F6;
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E94A7;
  border: 1px solid #F2F3F6;
  transition: 0.3s ease-in-out border;
}
.fileupload__drop input[type=file] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.fileupload__drop--active {
  border: 1px dashed #8E94A7;
}
.fileupload__preview {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
}
.fileupload__title {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #8E94A7;
  margin-top: 25px;
}
.fileupload__image {
  width: 80px;
  height: 80px;
  border: 1px solid #C7C7CF;
  position: relative;
}
.fileupload__image + .fileupload__image {
  margin-left: 10px;
}
.fileupload__image div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in-out opacity;
}
.fileupload__image button {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  border: 1px solid #C7C7CF;
  background-color: #fff;
  outline: 0px;
  position: absolute;
  top: -13px;
  right: -13px;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out background-color;
}
.fileupload__image button:hover {
  background-color: #C7C7CF;
}
.fileupload__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fileupload__image:hover div {
  opacity: 1;
}
.fileupload__info {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.3;
  color: #AEAEB8;
  margin-bottom: 10px;
}
.fileupload__allowed + .fileupload__allowed {
  margin-top: 5px;
}

.switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.switcher__toggle {
  margin: 0px 10px;
}
.switcher__item {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #8E94A7;
  transition: 0.3s ease color;
}

.subscribe-form {
  background-color: #FBFAF2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 100px;
}
@media (max-width: 767.98px) {
  .subscribe-form {
    padding: 25px 50px;
    text-align: center;
  }
}
.subscribe-form__poster {
  margin-bottom: 34px;
}
@media (max-width: 767.98px) {
  .subscribe-form__poster {
    margin-bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .subscribe-form__poster img {
    max-width: 70%;
  }
}
.subscribe-form__title {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  color: #161D27;
  margin-bottom: 7px;
}
@media (max-width: 767.98px) {
  .subscribe-form__title {
    line-height: 1.3;
    font-size: 20px;
  }
}
.subscribe-form__description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  color: #94907A;
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .subscribe-form__description {
    font-size: 14px;
  }
}
.subscribe-form__input {
  max-width: 100%;
}
.subscribe-form__input .input {
  width: 390px;
  max-width: 100%;
  color: #94907A;
  border-color: #94907A;
}
.subscribe-form__input .input::placeholder {
  color: #94907A;
}
.subscribe-form__input .input:focus {
  border-color: #AB9A39 !important;
  color: #94907A !important;
}
.subscribe-form__input .input:focus::placeholder {
  color: #94907A !important;
}
.subscribe-form__input + .subscribe-form__action {
  margin-top: 20px;
}
.subscribe-form__action .button {
  background-color: #AB9A39;
  border: 0px;
}
.subscribe-form__action .button:hover {
  background-color: #988933;
}
.subscribe-form__action .button:focus {
  background-color: #908230;
}

.campaign-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .campaign-card {
    flex-direction: column;
    align-items: inherit;
    padding: 0px 30px;
  }
}
.campaign-card__logo {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .campaign-card__logo {
    width: 56px;
    height: 56px;
  }
}
.campaign-card__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.campaign-card__content {
  flex-grow: 1;
  margin-left: 15px;
}
@media (max-width: 767.98px) {
  .campaign-card__content {
    margin-left: 0px;
    margin-top: 15px;
  }
}
.campaign-card__title {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .campaign-card__title {
    font-size: 16px;
  }
}
.campaign-card__description {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #8E94A7;
}
@media (max-width: 767.98px) {
  .campaign-card__description {
    font-size: 14px;
  }
}
.campaign-card__meta {
  margin-left: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .campaign-card__meta {
    margin-left: 0px;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
  }
}
.campaign-card__rating {
  margin-bottom: 10px;
}
.company-badge {
  background-color: #fbfbfb;
  border-radius: 3px;
  padding: 17px 15px;
  display: flex;
  flex-direction: row;
  min-width: 193px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.company-badge:hover {
  background-color: #f3f3f3;
}
.company-badge__poster {
  margin-right: 9px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.company-badge__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-badge__title {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  color: #000000;
}
.company-badge__category {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 120.3%;
  color: #ABABAB;
}
.company-badge__rating {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  color: #ABABAB;
}
.company-badge__stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}
.company-badge__stars .star-rating {
  margin-right: 5px;
  margin-top: -3px;
}

@media (max-width: 767.98px) {
  .step {
    margin: 15px 0px;
  }
}
.step__num {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: #4B4E53;
  font-style: normal;
  font-weight: 300;
  font-size: 41px;
  line-height: 140%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 35px;
  z-index: 1;
  -webkit-user-select: none;
          user-select: none;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .step__num {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .step__num {
    width: 60px;
    height: 60px;
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.step__num:before {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  position: absolute;
  top: 10px;
  left: -10px;
  content: "";
  border-radius: 50%;
  z-index: -1;
}
.step__num:after {
  border: 1px solid #B0B0B0;
  border-radius: 50%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.step__description {
  color: #ABABAB;
  font-size: 18px;
  line-height: 140%;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .step__description {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .step__description {
    font-size: 16px;
  }
}

.question-card .card-header {
  padding: 40px 0px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .question-card .card-header {
    padding: 30px 0px;
  }
}
@media (max-width: 767.98px) {
  .question-card .card-header {
    padding: 25px 0px;
  }
}
.question-card .card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 300;
  font-size: 26px;
  line-height: 120.3%;
  color: #000000;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .question-card .card-link {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .question-card .card-link {
    font-size: 18px;
    align-items: flex-start;
    padding-top: 10px;
  }
}
.question-card .card-link img {
  margin-right: 15px;
  transition: 0.3s ease transform;
}
@media (max-width: 767.98px) {
  .question-card .card-link img {
    margin-top: -4px;
    height: 24px;
    width: 24px;
  }
}
.question-card .card-link:not(.collapsed) img {
  transform: rotate(45deg);
}
.question-card .card-body {
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #6A6A6A;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .question-card .card-body {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .question-card .card-body {
    font-size: 16px;
  }
}
.question-card .card-body h3 {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  line-height: 120.3%;
}
@media (max-width: 767.98px) {
  .question-card .card-body h3 {
    font-size: 16px;
  }
}
.question-card .card-body p:first-of-type {
  margin-top: 0px;
}
.question-card .card-body p:last-of-type {
  margin-bottom: 0px;
}
.question-card .card-body img {
  max-width: 100%;
}
.question-card + .question-card {
  border-top: 1px solid #F2F3F6;
}
.question-card:last-of-type {
  border-bottom: 1px solid #F2F3F6;
}

.help-info {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 140%;
  color: #2C2D2F;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .help-info {
    margin-top: 10px;
  }
}
.help-info__image {
  position: relative;
  z-index: 1;
  margin-left: 17px;
  margin-bottom: 20px;
}
.help-info__image:before {
  width: 112px;
  height: 112px;
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #FBFAF2;
  z-index: -1;
  top: 2px;
  right: -8px;
}
.help-info__description {
  position: relative;
  z-index: 2;
  margin-right: 15px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .help-info__description {
    font-size: 16px !important;
    line-height: 1.3;
  }
}
@media (max-width: 767.98px) {
  .help-info__description {
    font-size: 15px !important;
    line-height: 1.3;
  }
}
.help-info__action {
  margin-top: 26px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .help-info__action {
    margin-top: 15px !important;
  }
}
.help-info_horizontal {
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .help-info_horizontal {
    flex-direction: column;
    align-items: baseline;
  }
}
.help-info_horizontal .button {
  white-space: nowrap;
  font-size: 15px;
}
.help-info_horizontal .help-info__image {
  margin: 0px;
  margin-right: 15px;
}
.help-info_horizontal .help-info__image:before {
  top: auto;
  right: auto;
  bottom: -15px;
  left: -48px;
}
.help-info_horizontal .help-info__action {
  margin-top: 0px;
}
.help-info_small .help-info__description {
  font-size: 16px;
  line-height: 140%;
}

.help-nav {
  padding: 35px 30px;
  background-color: #FCFCFC;
  border-radius: 10px;
}
.help-nav__group + .help-nav__group {
  margin-top: 30px;
}
.help-nav__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 120.3%;
  color: #000000;
  margin-bottom: 13px;
}
.help-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.help-nav__list li + li {
  margin-top: 10px;
}
.help-nav__list li a {
  font-size: 15px;
  line-height: 120.3%;
  color: #A0A0A0;
  text-decoration: none;
}
.help-nav__list li a:hover {
  color: #3E3E3E;
}

.burger-menu {
  width: 25px;
  height: 19px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  outline: 0;
  border: 0px;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .burger-menu {
    display: none;
  }
}
.burger-menu span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #2C2D2F;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  pointer-events: none;
  background-repeat: no-repeat;
}
.burger-menu span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
.burger-menu span:nth-child(2) {
  top: 9px;
  transform-origin: left center;
}
.burger-menu span:nth-child(3) {
  top: 18px;
  transform-origin: left center;
}
.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 0px;
}
.burger-menu.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  left: 0px;
}

.promocode {
  background-color: rgba(247, 127, 0, 0.15);
  border: 1px solid #F77F00;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.promocode__inner {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  letter-spacing: 0.13em;
  color: #F77F00;
  padding: 0px 20px;
  flex-grow: 1;
  overflow: hidden;
}
.promocode__inner[aria-show=false] + .promocode__action .promocode__copy {
  display: none;
}
.promocode__inner[aria-show=true] + .promocode__action .promocode__show {
  display: none;
}
.promocode__action button {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #F77F00;
  background-color: transparent;
  padding: 0px 20px;
  border: 0px;
  outline: 0px;
  height: 40px;
}
.promocode__action button:hover {
  color: #de7200;
}

.confirm-box {
  background-color: #FBFAF2;
  border-radius: 3px;
  padding: 38px 30px 32px 30px;
  z-index: 1;
  position: relative;
}
.confirm-box__num {
  border: 1px solid #B0B0B0;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 140%;
  color: #94907A;
  position: absolute;
  top: -18px;
  left: -18px;
}
.confirm-box__num:before {
  position: absolute;
  content: "";
  background-color: #F5F5F5;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  top: 3px;
  right: 3px;
  z-index: -1;
}
.confirm-box__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
  margin-bottom: 10px;
}
.confirm-box__description {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #94907A;
  margin-bottom: 10px;
}
.confirm-box_code {
  padding: 15px;
  background-color: #EEECDD;
  border-radius: 3px;
}
.confirm-box_code pre {
  font-size: 14px;
  line-height: 140%;
  color: #94907A;
}
.confirm-box__action {
  margin-top: 20px;
}
.confirm-box__action .button {
  height: 40px;
  padding: 0px 20px;
  font-size: 14px;
}

.conditions-box {
  padding: 35px 30px 40px 30px;
  background-color: #FCFCFC;
  border-radius: 10px;
}
.conditions-box__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #000000;
  margin-bottom: 20px;
}
.conditions-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.conditions-box__list + .conditions-box__list {
  margin-top: 20px;
}
.conditions-box__list li {
  font-size: 16px;
  line-height: 120.3%;
  color: #A0A0A0;
}
.conditions-box__list li + li {
  margin-top: 8px;
}

.fileupload-widget {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767.98px) {
  .fileupload-widget {
    flex-direction: column;
    align-items: baseline;
  }
}
.fileupload-widget__input {
  position: relative;
}
.fileupload-widget__input input {
  width: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.fileupload-widget__input label {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #F2F5FE;
  border-radius: 5px;
  padding: 0px 25px;
  height: 55px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  color: #8E94A7;
  cursor: pointer;
  transition: 0.3s ease background-color;
}
.fileupload-widget__input label:hover {
  background-color: #e9eefd;
}
.fileupload-widget__input label img {
  margin-right: 12px;
  margin-top: -4px;
}
.fileupload-widget__description {
  padding: 0px 25px;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #8E94A7;
}
@media (max-width: 767.98px) {
  .fileupload-widget__description br {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .fileupload-widget__description {
    margin-top: 10px;
  }
}

.confirmation-widget__description {
  font-size: 18px;
  line-height: 140%;
  color: #4B4E53;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .confirmation-widget__description {
    font-size: 16px;
  }
}
.confirmation-widget .token {
  margin-top: 5px;
}
.confirmation-widget__access {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 30px;
}
@media (max-width: 767.98px) {
  .confirmation-widget__access {
    font-size: 16px;
  }
}
.confirmation-widget__categories {
  display: flex;
  flex-direction: row;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
@media (max-width: 991.98px) {
  .confirmation-widget__categories {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 15px;
  }
}
.confirmation-widget__categories_muted .confirm-box {
  filter: blur(2px);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.confirmation-widget__category {
  margin: 0px 15px;
  width: 50%;
  margin-top: 21px;
}
@media (max-width: 991.98px) {
  .confirmation-widget__category {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }
}
.confirmation-widget__message {
  border-radius: 3px;
  padding: 17px 21px 17px 21px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 22px;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  .confirmation-widget__message {
    font-size: 16px;
  }
}
.confirmation-widget__message img {
  margin-right: 15px;
  margin-top: -3px;
}
.confirmation-widget__message button {
  font-weight: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  color: inherit;
}
.confirmation-widget__message button:hover {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.confirmation-widget__message_success {
  background-color: rgba(33, 150, 83, 0.07);
  color: #219653;
}
.confirmation-widget__message_error {
  background-color: rgba(214, 40, 40, 0.07);
  color: #D62828;
}
.confirmation-widget code {
  background-color: #EEECDD;
  border-radius: 3px;
  font-size: 12px;
  padding: 0px 5px;
  word-wrap: break-word;
  color: #94907A;
  display: block;
}
.confirmation-widget code.listing {
  padding: 10px 15px;
}

.tooltip {
  font-family: inherit;
}
.tooltip .tooltip-inner {
  line-height: 1.3;
  padding: 10px 15px;
  font-size: 13px;
  max-width: 350px;
}

.detail-rating-card {
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
  flex-direction: row;
}
@media (max-width: 767.98px) {
  .detail-rating-card {
    flex-direction: column;
  }
}
.detail-rating-card__post {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (min-width: 768px) and (max-width: 1469.98px) {
  .detail-rating-card__post {
    flex-direction: column-reverse;
  }
}
.detail-rating-card__position {
  font-style: normal;
  font-weight: 350;
  font-size: 27px;
  line-height: 120.3%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #8E94A7;
  min-width: 50px;
}
.detail-rating-card__postdata {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-left: 25px;
}
@media (min-width: 768px) and (max-width: 1469.98px) {
  .detail-rating-card__postdata {
    margin: 0px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .detail-rating-card__postdata {
    margin: 0;
  }
}
.detail-rating-card__logo {
  width: 50px;
  margin-right: 13px;
}
@media (min-width: 768px) and (max-width: 1469.98px) {
  .detail-rating-card__logo {
    width: 36px;
  }
}
.detail-rating-card__logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin: 0;
}
.detail-rating-card__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 120.3%;
  color: #2C2D2F;
}
.detail-rating-card__metatitle {
  font-weight: bold;
  font-size: 17px;
  line-height: 120.3%;
  color: #2C2D2F;
  margin-bottom: 5px;
}
.detail-rating-card__category {
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-top: 2px;
}
.detail-rating-card__link {
  font-weight: normal;
  font-size: 16px;
  line-height: 120.3%;
  text-decoration: none;
}
.detail-rating-card__labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 12px;
}
.detail-rating-card__labels .label + .label {
  margin-top: 5px;
}
.detail-rating-card__section {
  padding: 25px 35px;
}
@media (min-width: 768px) and (max-width: 1469.98px) {
  .detail-rating-card__section {
    padding: 25px 25px;
  }
}
@media (max-width: 767.98px) {
  .detail-rating-card__section {
    padding: 20px;
  }
}
.detail-rating-card__section + .detail-rating-card__section {
  border-left: 1px solid #EEEEEE;
}
@media (max-width: 767.98px) {
  .detail-rating-card__section + .detail-rating-card__section {
    border-left: 0px;
    border-top: 1px solid #EEEEEE;
  }
}
.detail-rating-card__metabox {
  font-size: 15px;
  line-height: 120.3%;
  color: #727272;
}
.detail-rating-card__metabox + .detail-rating-card__metabox {
  margin-top: 13px;
}
.detail-rating-card__metabox table {
  width: 100%;
}
.detail-rating-card__metabox table tr td {
  padding: 3px 0px;
}
.detail-rating-card__metabox table tr td:last-of-type {
  color: #000;
}
.detail-rating-card__action {
  flex-grow: 1;
  padding-right: 30px;
}
@media (max-width: 767.98px) {
  .detail-rating-card__action {
    padding-right: 0px;
  }
}
.detail-rating-card__action a {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  font-weight: 800;
  font-size: 11px;
  line-height: 120.3%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .detail-rating-card__action a {
    padding: 20px;
    justify-content: flex-start;
  }
}
.detail-rating-card__action a img {
  margin: 0;
  transition: 0.3s ease transform;
}
@media (max-width: 767.98px) {
  .detail-rating-card__action a img {
    display: none;
  }
}
.detail-rating-card__action a span {
  display: none;
}
@media (max-width: 767.98px) {
  .detail-rating-card__action a span {
    display: block;
  }
}
.detail-rating-card__action a:hover img {
  transform: translateX(10px);
}

.detailed-rating .detail-rating-card {
  margin-top: 10px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-container + .video-container {
  margin-top: 10px;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-box__item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-box__item + .contact-box__item {
  margin-top: 10px;
}
.contact-box__icon {
  margin-right: 19px;
}
.contact-box__icon img,
.contact-box__icon svg {
  width: 32px;
  height: 32px;
}
.contact-box__contact a {
  text-decoration: none;
}

.channel-card {
  background-color: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 29px 31px;
  text-decoration: none;
  transition: 0.3s ease-in border-color;
}
.channel-card:hover {
  border-color: gainsboro;
}
.channel-card__logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ececec;
  margin-bottom: 14px;
}
.channel-card__logo img {
  height: 100%;
  width: 100%;
}
.channel-card__titlewrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 7px;
}
.channel-card__title {
  font-weight: bold;
  font-size: 23px;
  line-height: 120.3%;
  color: #000000;
}
@media (max-width: 991.98px) {
  .channel-card__title {
    font-size: 18px;
  }
}
.channel-card__rating {
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  border-radius: 15px;
  height: 26px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 8px;
  margin-left: 9px;
}
.channel-card__rating_green {
  color: #219653;
  background-color: #ECFBF0;
}
.channel-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .channel-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.channel-card__meta .channel-card__messagecount {
  margin-left: 10px;
}
@media (max-width: 1199.98px) {
  .channel-card__meta .channel-card__messagecount {
    margin-left: 0;
    margin-top: 10px;
  }
}
.channel-card__meta .chip {
  white-space: nowrap;
  font-size: 12px;
}
.channel-card__messagecount {
  font-size: 14px;
  line-height: 120.3%;
  color: #ABABAB;
}
@media (max-width: 991.98px) {
  .channel-card__messagecount {
    font-size: 12px;
  }
}

.channel-message {
  background-color: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  padding: 35px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 991.98px) {
  .channel-message {
    padding: 35px 20px;
  }
}
.channel-message_advertisement {
  border-color: rgba(155, 81, 224, 0.5);
}
.channel-message_advertisement .channel-message__channel {
  color: #9B51E0;
}
.channel-message__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.channel-message__channel {
  font-size: 20px;
  line-height: 120.3%;
  color: #2C2D2F;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .channel-message__channel {
    font-size: 18px;
  }
}
.channel-message__channel img {
  width: 40px;
  height: 40px;
  margin-right: 13px;
}
@media (max-width: 991.98px) {
  .channel-message__channel img {
    width: 30px;
    height: 30px;
  }
}
.channel-message__post {
  margin-left: 15px;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .channel-message__post {
    display: none;
  }
}
.channel-message__category {
  margin-top: 7px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 991.98px) {
  .channel-message__category .chip {
    font-size: 12px;
  }
}
.channel-message__content {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #4B4E53;
  margin-top: 27px;
}
@media (max-width: 991.98px) {
  .channel-message__content {
    font-size: 14px;
    line-height: 1.3;
  }
}
.channel-message__content strong, .channel-message__content b {
  color: #000;
}
.channel-message__tags {
  display: flex;
  flex-direction: row;
  margin-left: -10px;
  margin-top: 27px;
  z-index: 2;
}
.channel-message__tag {
  margin-left: 10px;
}
.channel-message__tag a {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #ABABAB;
  text-decoration: none;
}
.channel-message__tag a:hover {
  color: #F77F00;
}
.channel-message__footer {
  margin-top: 27px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .channel-message__footer {
    flex-wrap: wrap;
  }
}
.channel-message__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.channel-message__rating {
  margin-right: 25px;
}
.channel-message__rating .vote-widget__rating {
  font-size: 14px;
}
.channel-message__rating .vote-widget__voteaction img,
.channel-message__rating .vote-widget__voteaction svg,
.channel-message__rating .vote-widget__voteaction .svg {
  width: 15px;
}
.channel-message__discuss {
  background-color: #FBFCFE;
  border-radius: 25px;
  height: 36px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 15px;
  font-size: 14px;
  line-height: 1;
  color: #ABABAB;
  border: 0px;
  transition: 0.3s ease-in background-color;
  margin-right: 25px;
  text-decoration: none;
  color: #ABABAB;
}
@media (max-width: 991.98px) {
  .channel-message__discuss {
    padding: 0px 5px;
    background-color: transparent;
  }
}
.channel-message__discuss:hover {
  background-color: #eff3fb;
  color: #ABABAB;
}
.channel-message__discuss img,
.channel-message__discuss svg,
.channel-message__discuss .svg {
  margin-right: 6px;
}
.channel-message__discussion {
  border-top: 1px solid #F0F0F0;
  padding-top: 27px;
  margin-top: 27px;
}
.channel-message__discussion h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #161D2D;
  margin-bottom: 18px;
}
@media (max-width: 991.98px) {
  .channel-message__discussion h2 {
    line-height: 1.3;
    font-size: 18px !important;
  }
}
@media (max-width: 991.98px) {
  .channel-message__permalink {
    display: none !important;
  }
}
.channel-message__contentlink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.channel-message__meta {
  font-size: 16px;
  line-height: 24px;
  color: #ABABAB;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .channel-message__meta {
    font-size: 14px;
  }
}
.channel-message + .nothing-found {
  margin-top: 30px;
}

.channel-permalink {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: #5665F1;
  border: 0px;
  outline: 0px;
  text-decoration: none;
}
.channel-permalink:hover {
  text-decoration: none;
  color: #5665F1;
}
.channel-permalink img,
.channel-permalink svg,
.channel-permalink .svg {
  margin-right: 5px;
  transform: translateY(-2px);
}

.newsline-filters {
  position: relative;
  z-index: 3;
}
.newsline-filters__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.newsline-filters__actions button,
.newsline-filters__actions a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 25px;
  height: 50px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  color: #FFFFFF;
  background-color: #F77F00;
  border: 0px;
  transition: 0.3s ease-in background-color;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .newsline-filters__actions button,
.newsline-filters__actions a {
    font-size: 14px;
    padding: 0px 15px;
    height: 40px;
  }
}
.newsline-filters__actions button:hover,
.newsline-filters__actions a:hover {
  background-color: #e87700;
}
.newsline-filters__actions button + button, .newsline-filters__actions button + a,
.newsline-filters__actions a + button,
.newsline-filters__actions a + a {
  margin-left: 5px;
}
.newsline-filters__actions button.reset, .newsline-filters__actions button[type=reset],
.newsline-filters__actions a.reset,
.newsline-filters__actions a[type=reset] {
  font-weight: normal;
  background-color: #FFF4E8;
  color: #F77F00;
}
.newsline-filters__actions button.reset:hover, .newsline-filters__actions button[type=reset]:hover,
.newsline-filters__actions a.reset:hover,
.newsline-filters__actions a[type=reset]:hover {
  background-color: #ffedd9;
}
.newsline-filters__elements {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -2.5px;
  margin-right: -2.5px;
}
@media (max-width: 991.98px) {
  .newsline-filters__elements {
    max-height: 300px;
    overflow-y: auto;
  }
}
.newsline-filters__column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.newsline-filters__item {
  margin: 2.5px;
}
.newsline-filters__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #161D2D;
  margin-right: 20px;
}
.newsline-filters__select {
  background-color: #FFFFFF;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  padding: 32px;
  position: absolute;
  left: -32px;
  top: -32px;
  width: calc(100% + 64px);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease all;
  transition-property: opacity;
}
@media (max-width: 991.98px) {
  .newsline-filters__select {
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
  }
}
.newsline-filters__select.visible {
  pointer-events: all;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .newsline-filters__select .chip {
    font-size: 12px;
  }
}

.newsline-form__item + .newsline-form__item {
  margin-top: 30px;
}
.newsline-form .search-box input[type=text] {
  border-radius: 30px;
  padding-left: 31px;
}
@media (max-width: 991.98px) {
  .newsline-form .search-box input[type=text] {
    height: 50px;
  }
}

@media (max-width: 991.98px) {
  .newsline-sidebar {
    margin-bottom: 20px;
  }
}
.newsline-sidebar__item + .newsline-sidebar__item {
  margin-top: 50px;
}
.newsline-sidebar .newsline-section__menu + .cta-button {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .newsline-sidebar .cta-button {
    width: 100%;
  }
}

.post-metric-card {
  background-color: #FBFCFE;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: 0.3s ease-in background-color;
}
.post-metric-card:hover {
  background-color: #f7f9fd;
}
.post-metric-card__cardtitle {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #161D2D;
  margin-bottom: 15px;
}
.post-metric-card__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
}
@media (max-width: 991.98px) {
  .post-metric-card__title {
    font-size: 16px;
  }
}
.post-metric-card__header {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-metric-card__logo {
  margin-right: 13px;
}
.post-metric-card__logo img {
  height: 58px;
  width: 58px;
}
.post-metric-card__category {
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #ABABAB;
}
@media (max-width: 991.98px) {
  .post-metric-card__category {
    font-size: 13px;
  }
}
.post-metric-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-metric-card__rating {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  height: 40px;
  border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0% 18px;
  margin-right: 20px;
  color: #000;
}
.post-metric-card__rating_5 {
  color: #FCBF49;
  background-color: rgba(252, 191, 73, 0.05);
}
.post-metric-card__rating_4 {
  color: #a07d38;
  background-color: rgba(160, 125, 56, 0.05);
}
.post-metric-card__rating_3 {
  color: #5f584a;
  background-color: rgba(95, 88, 74, 0.05);
}
.post-metric-card__rating_2 {
  color: #ff5f5f;
  background-color: rgba(255, 95, 95, 0.05);
}
.post-metric-card__rating_1 {
  color: #D62828;
  background-color: rgba(214, 40, 40, 0.05);
}
.channel-info__logo {
  margin-bottom: 14px;
}
.channel-info__logo img {
  height: 60px;
  width: 60px;
}
.channel-info__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.channel-info__title {
  font-weight: bold;
  font-size: 23px;
  line-height: 120.3%;
}
@media (max-width: 991.98px) {
  .channel-info__title {
    font-size: 18px;
  }
}
.channel-info__meta {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 991.98px) {
  .channel-info__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1199.98px) {
  .channel-info__category .chip {
    font-size: 12px;
  }
}
.channel-info__counter {
  margin-left: 10px;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .channel-info__counter {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .channel-info__counter {
    font-size: 12px;
    margin-left: 0;
    margin-top: 10px;
  }
}
.channel-info__action {
  margin-top: 20px;
}
.channel-info__action .channel-permalink {
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  .channel-info__action .channel-permalink {
    font-size: 14px;
  }
}
.channel-info__action .channel-permalink img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.vote-widget {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.vote-widget:hover .vote__voteaction {
  opacity: 1;
  pointer-events: all;
}
.vote-widget__votes {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.vote-widget__voteaction {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 50px);
  transition: 0.3s ease-in-out opacity;
}
.vote-widget__voteaction + .review__rating {
  margin-left: 7px !important;
}
.vote-widget__voteactionbtn {
  border-radius: 3px;
}
.vote-widget__voteactionbtn .svg path {
  transition: 0.3s ease fill;
}
.vote-widget__voteactionbtn--red.red {
  background-color: rgba(214, 40, 40, 0.1);
}
.vote-widget__voteactionbtn--red.red:hover {
  background-color: transparent;
}
.vote-widget__voteactionbtn--red:hover svg path {
  fill: #D62828;
}
.vote-widget__voteactionbtn--green.green {
  background-color: rgba(33, 150, 83, 0.1);
}
.vote-widget__voteactionbtn--green.green:hover {
  background-color: transparent;
}
.vote-widget__voteactionbtn--green:hover svg path {
  fill: #219653;
}
.vote-widget__voteaction button {
  padding: 0;
  margin: 0;
  border: 0px;
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease-in-out background-color;
  outline: 0px;
  background-color: transparent;
}
.vote-widget__voteaction button[disabled] {
  pointer-events: none;
  opacity: 0.3;
}
.vote-widget__voteaction button:focus {
  outline: 0px;
}
.vote-widget__voteaction button img {
  width: 16px;
}
.vote-widget__voteaction button.red svg path {
  fill: #D62828;
}
.vote-widget__voteaction button.green svg path {
  fill: #219653;
}
.vote-widget__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 25px;
  border-radius: 5px;
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  padding: 0px 7px;
}
.vote-widget__rating--green {
  color: #219653;
}
.vote-widget__rating--red {
  color: #D62828;
}

.channel-announce {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  padding: 35px;
  position: relative;
}
.channel-announce__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.channel-announce__title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 120.3%;
  color: #2C2D2F;
  margin-right: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.channel-announce__title img {
  margin-right: 13px;
  flex-shrink: 0;
  width: 30px;
}
.channel-announce__time {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ABABAB;
}
.channel-announce__content {
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #4B4E53;
}
.channel-announce__footer {
  margin-top: 20px;
}
.channel-announce__tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  margin-left: -10px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.channel-announce__tags li {
  margin-left: 10px;
}
.channel-announce__tags li a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ABABAB;
  text-decoration: none;
}
.channel-announce__tags li a:hover {
  color: #F77F00;
}
.channel-announce__contentlink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rating-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
  border-radius: 15px;
  height: 32px;
  padding: 0px 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .rating-chip {
    height: 26px;
    font-size: 11px;
  }
}
.rating-chip_positive {
  background-color: #ECFBF0;
  color: #219653;
}
.rating-chip_negative {
  color: #D62828;
  background-color: #fbecec;
}

.post-rating-tree__item + .post-rating-tree__item {
  margin-top: 26px;
}
@media (max-width: 991.98px) {
  .post-rating-tree__item + .post-rating-tree__item {
    margin-top: 15px;
  }
}

.rating-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.rating-card__content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rating-card__image {
  margin-right: 10px;
}
.rating-card__image img {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.rating-card__headling {
  display: flex;
  flex-direction: column;
}
.rating-card__title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 120.3%;
  color: #000000;
  transition: 0.3s ease-in color;
}
@media (max-width: 991.98px) {
  .rating-card__title {
    font-size: 14px;
  }
}
.rating-card__description {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 120.3%;
  color: #ABABAB;
  margin-top: 2px;
}
@media (max-width: 991.98px) {
  .rating-card__description {
    font-size: 12px;
  }
}
.rating-card__rating {
  margin-right: 15px;
}
.rating-card:hover .rating-card__title {
  color: #F77F00;
}

.features-section {
  padding-bottom: 106px;
  padding-top: 136px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .features-section {
    padding-bottom: 80px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .features-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .features-section {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}

.representative-hero {
  overflow: hidden;
}
.representative-hero__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
@media (max-width: 767.98px) {
  .representative-hero__wrapper {
    flex-direction: column;
  }
}
.representative-hero__stars {
  position: absolute;
  top: -50px;
  left: -150px;
}
.representative-hero__stars img {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.representative-hero__content {
  z-index: 2;
}
.representative-hero__title {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .representative-hero__title {
    margin-bottom: 25px;
  }
}
.representative-hero__title h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 47px;
  line-height: 120.3%;
  color: #000000;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .representative-hero__title h2 {
    font-size: 36px !important;
  }
}
@media (max-width: 767.98px) {
  .representative-hero__title h2 {
    font-size: 24px;
  }
}
.representative-hero__description {
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 140%;
  color: #ABABAB;
  margin-bottom: 44px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .representative-hero__description {
    font-size: 19px !important;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .representative-hero__description {
    margin-bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .representative-hero__description {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
.representative-hero__action .button + .button {
  margin-left: 35px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .representative-hero__action .button + .button {
    margin-top: 0px;
    margin-left: 10px;
  }
}
@media (max-width: 767.98px) {
  .representative-hero__action .button + .button {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.representative-hero__poster {
  max-width: 39%;
}
@media (max-width: 991.98px) {
  .representative-hero__poster {
    display: none;
  }
}
.hero {
  padding-top: 71px;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero {
    padding-top: 40px;
  }
}
.hero__content {
  margin-bottom: 26px;
  padding-top: 61px;
}
@media (max-width: 767.98px) {
  .hero__content {
    padding-top: 0px;
  }
}
.hero__content h1 {
  margin-bottom: 10px;
  font-size: 44px;
}
@media (max-width: 767.98px) {
  .hero__content h1 br {
    display: none;
  }
}
.hero__content p {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 140%;
  color: #ABABAB;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero__content p {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .hero__content p {
    font-size: 16px;
  }
}
.hero__content p a {
  text-decoration: none;
}
.hero__form {
  margin-top: 26px;
  margin-bottom: 55px;
}
.hero__poster {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .hero__poster {
    display: none;
  }
}
.hero__poster img {
  max-width: 100%;
}
.hero .search-box_large input[type=text] {
  font-size: 18px;
}
.active-discuss {
  background-color: rgba(234, 226, 183, 0.18);
  padding-top: 40px;
  padding-bottom: 55px;
  overflow: hidden;
}
.active-discuss__message {
  color: #797449;
  font-weight: bold;
  margin-top: 10px;
}
.active-discuss__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
@media (max-width: 575.98px) {
  .active-discuss__title {
    line-height: 1.3;
  }
}
.active-discuss__title br {
  display: none;
}
@media (max-width: 767.98px) {
  .active-discuss__title br {
    display: block;
  }
}
.active-discuss__link {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #D62828;
  text-decoration: none;
  transition: 0.3s ease color;
}
.active-discuss__link:hover {
  color: #ab2020;
}
.active-discuss__link img {
  margin-right: 13px;
}
.active-discuss__action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.active-discuss__sliderwrap {
  position: relative;
  padding: 0px 40px;
  margin-top: 31px;
}
.active-discuss__slidernav {
  position: absolute;
  width: 100%;
  z-index: 999;
  height: 100%;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.active-discuss__slidernav button {
  pointer-events: all;
  padding: 0;
  margin: 0;
  background-color: transparent;
  width: 35px;
  height: 35px;
  border: 0px;
  outline: 0px;
  cursor: pointer;
}
.active-discuss__slider {
  display: none;
}
.active-discuss .slick-initialized {
  display: block;
}
.active-discuss .slick-initialized + .active-discuss__preload {
  display: none;
}
.active-discuss__preload .ph-item {
  padding: 0;
  margin-bottom: 0px;
  background-color: transparent;
  border: none;
}
.active-discuss__preload .ph-avatar {
  background-color: #dad7c9;
}
.active-discuss__preload .ph-row div {
  background-color: #dad7c9;
}

.page-footer {
  background-color: #EFF0F5;
  position: relative;
  padding-top: 64px;
  padding-bottom: 35px;
  margin-top: 115px;
}
@media (max-width: 767.98px) {
  .page-footer {
    margin-top: 55px;
  }
}
.page-footer__description {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  color: #B9BEC4;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-footer__description {
    margin-bottom: 30px;
  }
}
.page-footer__description img {
  max-height: 35px;
  margin-bottom: 28px;
  max-width: 100%;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-footer__description img {
    max-width: 180px;
  }
}
@media (max-width: 767.98px) {
  .page-footer__linkwrap {
    margin-top: 15px;
  }
}
.page-footer__linkwrap__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #797F89;
  margin-bottom: 18px;
}
@media (max-width: 767.98px) {
  .page-footer__linkwrap__title {
    margin-bottom: 9px;
  }
}
.page-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-footer__links li + li {
  margin-top: 6px;
}
.page-footer__links li a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #B9BEC4;
  text-decoration: none;
}
.page-footer__links li a:hover {
  color: #F77F00;
}
.page-footer__footer {
  margin-top: 70px;
}
@media (max-width: 767.98px) {
  .page-footer__footer {
    margin-top: 35px;
  }
}
.page-footer__copy {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #B9BEC4;
}
@media (max-width: 767.98px) {
  .page-footer__copy {
    margin-bottom: 10px;
  }
}
.page-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767.98px) {
  .page-footer__menu {
    display: none;
  }
}
.page-footer__menu li {
  display: inline-block;
}
.page-footer__menu li + li {
  margin-left: 40px;
}
.page-footer__menu li a {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #B9BEC4;
  text-decoration: none;
}
.page-footer__menu li a:hover {
  color: #F77F00;
}
.page-footer__policy {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #C0C4CA;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-footer__policy {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .page-footer__policy {
    flex-direction: row-reverse;
  }
}
.page-footer__policy a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #C0C4CA;
}
.page-footer__policy a:hover {
  text-decoration: none;
  color: #F77F00;
}
.page-footer__rating {
  margin-left: 27px;
  background: #DEDEDE;
  border-radius: 3px;
  height: 30px;
  width: 41px;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #999999;
}
@media (max-width: 767.98px) {
  .page-footer__rating {
    margin-left: 0px;
    margin-right: 15px;
  }
}
.page-footer__pageup {
  width: 55px;
  height: 55px;
  border-radius: 3px;
  background-color: #F77F00;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -23px;
  right: 150px;
  cursor: pointer;
  transition: 0.3s ease background-color;
}
@media (max-width: 767.98px) {
  .page-footer__pageup {
    left: 50%;
    right: auto;
    margin-left: -27.5px;
  }
}
.page-footer__pageup:hover {
  background-color: #de7200;
}

.rating-section {
  padding-bottom: 100px;
}
@media (max-width: 991.98px) {
  .rating-section {
    padding-bottom: 50px;
    overflow: hidden;
  }
}
.rating-section__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .rating-section__header {
    margin-bottom: 0px;
  }
}
.rating-section .commercial {
  max-width: 300px;
  margin-top: 31px;
  padding-left: 30px;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .rating-section .commercial {
    padding-left: 0px;
  }
}
@media (max-width: 991.98px) {
  .rating-section .commercial {
    padding-left: 0px;
    margin-top: 0px;
  }
}
.rating-section .active-users {
  padding-left: 30px;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .rating-section .active-users {
    padding-left: 0px;
  }
}
@media (max-width: 1199.98px) {
  .rating-section .active-users {
    padding-left: 0px;
    margin-top: 31px;
  }
}

.page-header {
  padding: 38px 0px;
}
@media (max-width: 767.98px) {
  .page-header {
    padding: 15px 0px;
  }
}
.page-header__logo img {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .page-header__logo img {
    max-width: 150px;
  }
}
.page-header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .page-header__content {
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
}
.page-header__nav {
  display: flex;
  flex-direction: row;
  padding-left: 50px;
  flex-grow: 1;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1469.98px) {
  .page-header__nav {
    padding: 0px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-header__nav {
    position: initial;
  }
}
@media (max-width: 991.98px) {
  .page-header__nav {
    padding-left: 0px;
    align-items: center;
    flex-direction: row-reverse;
    flex-grow: 0;
  }
}
.page-header__nav .search-button {
  margin-left: 30px;
  margin-right: 15px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-header__nav .search-button {
    margin-right: 10px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-header__nav .search-button {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 767.98px) {
  .page-header__nav .search-button {
    margin-right: 11px;
    margin-left: 9px;
    display: none;
  }
}
.page-header__nav .burger-menu {
  margin-top: 0px;
}
.page-header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .page-header__menu {
    justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  .page-header__menu {
    flex-direction: column;
    align-items: baseline;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out all;
    transform: translateY(20px);
    transition-property: opacity, transform;
    position: absolute;
    background-color: #fff;
    width: auto;
    padding: 20px;
    box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
    top: 105%;
    z-index: 1000;
    margin-top: 15px;
  }
}
.page-header__menu li {
  display: inline-block;
}
@media (max-width: 1199.98px) {
  .page-header__menu li {
    padding: 0px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .page-header__menu li:first-of-type {
    padding-left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .page-header__menu li:last-of-type {
    padding-right: 0px;
  }
}
.page-header__menu li + li {
  margin-left: 40px;
}
@media (max-width: 1469.98px) {
  .page-header__menu li + li {
    margin-left: 20px;
  }
}
@media (max-width: 1199.98px) {
  .page-header__menu li + li {
    margin-left: 0px;
  }
}
@media (max-width: 991.98px) {
  .page-header__menu li + li {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.page-header__menu li a {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #2C2D2F;
  transition: 0.3s ease-in-out color;
}
.page-header__menu li a:hover {
  color: #F77F00;
}
@media (max-width: 767.98px) {
  .page-header__menu li a {
    font-size: 14px;
    line-height: 1.3;
  }
}
.page-header__menu--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.page-header__authwrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767.98px) {
  .page-header__authwrap {
    margin-right: 10px;
  }
}
.page-header__authwrap .search-button {
  margin-top: -3px;
  margin-right: 10px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-header__authwrap .search-button {
    margin-left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .page-header__authwrap .button {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-header__authwrap .button {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 767.98px) {
  .page-header__authwrap .button {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 767.98px) {
  .page-header__authwrap .button img {
    margin-right: 0px;
  }
}
@media (max-width: 1199.98px) {
  .page-header__authwrap .button span {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .page-header__authwrap .button-addproject {
    display: none;
  }
}
.page-header .search-box {
  position: absolute;
  top: -14px;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  transition-property: width, opacity, transform;
  width: 1px;
  z-index: 999;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-header .search-box {
    top: -12px;
    margin-right: 50px;
    left: 0px;
    right: auto;
  }
}
@media (max-width: 767.98px) {
  .page-header .search-box {
    width: calc(100vw - 30px);
    transform: translateY(-50px);
    position: fixed;
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-header + .hero__content {
    padding-top: 0px;
  }
}

.widget-section {
  margin-top: 120px;
  margin-bottom: 69px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .widget-section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .widget-section {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .widget-section .writing-widget {
    margin-bottom: 50px;
  }
}

.posts-section__title {
  margin-bottom: 52px;
}
@media (max-width: 991.98px) {
  .posts-section__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .posts-section .post-card {
    margin: 15px 0px;
  }
}

.recent-posts__title {
  padding-top: 84px;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .recent-posts__title {
    padding-top: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .recent-posts .post-card {
    margin: 10px 0px;
  }
}

.category-section__posts {
  margin-top: -20px;
  margin-bottom: -20px;
}
.category-section__posts .post-card {
  margin-top: 20px;
  margin-bottom: 20px;
}
.category-section__aside {
  width: 100%;
}
.category-section .filter {
  margin-bottom: 34px;
}

.post-reviews {
  margin-top: 40px;
}
.post-reviews__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.post-reviews__title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-reviews__title h2 {
  margin: 0 !important;
}
.post-reviews__title .reviews-counter {
  margin-left: 25px;
}
@media (max-width: 767.98px) {
  .post-reviews__subscribe {
    margin-top: 10px;
  }
}
.post-reviews__subscribe button {
  padding: 0;
  margin: 0;
  border: 0px;
  outline: 0px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 120.3%;
  color: #8E94A7;
  cursor: pointer;
  padding: 10px 15px;
  background-color: rgba(142, 148, 167, 0.05);
  border-radius: 20px;
  transition: 0.3s ease background-color;
}
.post-reviews__subscribe button:hover {
  background-color: rgba(142, 148, 167, 0.07);
}
.post-reviews__subscribe button:hover img {
  transform: rotate(15deg);
}
.post-reviews__subscribe button svg {
  margin-right: 7px;
  margin-top: -1px;
  transition: 0.3s ease all;
  transition-property: transform, transform-origin;
}
@media (max-width: 767.98px) {
  .post-reviews__subscribe button svg {
    margin-right: 0px;
  }
}
.post-reviews__subscribe button svg path {
  fill: #8E94A7;
}
@media (max-width: 767.98px) {
  .post-reviews__subscribe button span {
    display: none;
  }
}
.post-reviews__subscribed button {
  color: #219653;
  background-color: rgba(33, 150, 83, 0.05);
}
.post-reviews__subscribed button svg path {
  fill: #219653;
}
.post-reviews__subscribed button:hover {
  background-color: rgba(33, 150, 83, 0.07);
}
.post-reviews__write .alert {
  margin-bottom: 20px;
}
.post-reviews__following {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-reviews__following {
    height: 100%;
  }
}
@media (max-width: 991.98px) {
  .post-reviews__following {
    margin-top: 10px;
  }
}
.post-reviews__following__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid #ABABAB;
  box-sizing: border-box;
  padding: 25px 18px;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 120.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ABABAB;
}
.post-reviews__following__status img {
  margin-bottom: 12px;
}
.post-reviews__following__status--follow {
  color: #219653;
  border-color: #219653;
}
.post-reviews__following__description {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #767980;
  margin-top: 25px;
}
@media (max-width: 767.98px) {
  .post-reviews__following__description {
    margin-top: 18px;
  }
}
.post-reviews__cards {
  margin-top: 20px;
}

.profile-section {
  background-color: #FAFAFA;
  padding-bottom: 70px;
}
@media (max-width: 767.98px) {
  .profile-section {
    padding-top: 30px;
  }
}
.profile-section .breadcrumbs {
  margin-bottom: 38px;
}
@media (max-width: 767.98px) {
  .profile-section .breadcrumbs {
    margin-bottom: 20px;
    padding-top: 0px;
  }
}
.profile-section + .page-footer {
  margin-top: 0;
}

.auth-section {
  padding-top: 75px;
  border-top: 1px solid #ececec;
}

.steps-section {
  background-color: #FCFCFC;
  padding: 100px 0px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .steps-section {
    padding: 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .steps-section {
    padding: 40px 0px;
  }
}
.steps-section__title {
  margin-bottom: 34px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .steps-section__title {
    margin-bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .steps-section__title {
    margin-bottom: 18px;
  }
}
.steps-section__subtitle {
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 140%;
  color: #ABABAB;
  margin-bottom: 66px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .steps-section__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .steps-section__subtitle {
    font-size: 16px;
  }
}
.steps-section + .faq-section {
  padding-top: 115px;
}
@media (max-width: 767.98px) {
  .steps-section + .faq-section {
    padding-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .steps-section + .faq-section .help-info {
    margin-top: 20px;
  }
}

.page-hero {
  padding-top: 50px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-hero {
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  .page-hero {
    margin-bottom: 40px;
  }
}
.page-hero__title h1,
.page-hero__title h2 {
  margin: 0px;
}
.page-hero__description {
  margin-top: 32px;
  font-size: 21px;
  line-height: 140%;
  color: #ABABAB;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-hero__description {
    font-size: 19px;
  }
}
@media (max-width: 767.98px) {
  .page-hero__description {
    font-size: 16px;
    margin-top: 20px;
  }
}
.page-hero__action {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .page-hero__action {
    margin-top: 22px;
  }
}
.page-hero__action .button + .button {
  margin-left: 30px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-hero__action .button + .button {
    margin-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .page-hero__action .button + .button {
    margin-left: 0px;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .page-hero__poster {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .page-hero__poster img {
    max-width: 100%;
  }
}

.help-section__content h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 120.3%;
  color: #000000;
  margin-top: 30px;
}

.form-section {
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .form-section {
    margin-top: 0px;
  }
}
@media (max-width: 991.98px) {
  .form-section .conditions-box {
    margin-top: 30px;
  }
}

.channels-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.channels-list .channel-card {
  width: calc(50% - 10px);
  margin: 5px;
}
@media (max-width: 991.98px) {
  .channels-list .channel-card {
    width: calc(100% - 10px);
  }
}

.channel-message-list .channel-message + .channel-message {
  margin-top: 20px;
}

.newsline-wrapper .newsline {
  margin-top: 27px;
}

.newsline-section {
  padding-top: 85px;
  border-top: 1px solid #F7F7F7;
}
@media (max-width: 991.98px) {
  .newsline-section {
    padding-top: 43px;
  }
}
.newsline-section__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 991.98px) {
  .newsline-section__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}
.newsline-section__menu::-webkit-scrollbar {
  display: none;
}
.newsline-section__menu li.active a {
  color: #F77F00;
}
.newsline-section__menu li.active a svg path {
  stroke: #F77F00;
}
.newsline-section__menu li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: normal;
  font-size: 20px;
  line-height: 120.3%;
  color: #ABABAB;
  text-decoration: none;
  transition: 0.3s ease-in color;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .newsline-section__menu li a {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .newsline-section__menu li a {
    font-size: 16px;
  }
}
.newsline-section__menu li a img,
.newsline-section__menu li a svg,
.newsline-section__menu li a .svg {
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .newsline-section__menu li a img,
.newsline-section__menu li a svg,
.newsline-section__menu li a .svg {
    margin-right: 5px;
  }
}
.newsline-section__menu li a img path,
.newsline-section__menu li a svg path,
.newsline-section__menu li a .svg path {
  transition: 0.3s ease-in stroke;
}
.newsline-section__menu li a:hover {
  color: #F77F00;
}
.newsline-section__menu li a:hover svg path {
  stroke: #F77F00;
}
.newsline-section__menu li + li {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .newsline-section__menu li + li {
    margin-top: 0;
    margin-left: 20px;
  }
}

.post-section + .page-footer {
  margin-top: 0px;
}

.post {
  padding-bottom: 100px;
}
@media (max-width: 767.98px) {
  .post {
    padding-bottom: 50px;
  }
}
.post h2 {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 24px;
}
.post img {
  max-width: 100%;
}
.post__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4B4E53;
  font-size: 13px;
  color: #ABABAB;
}
.post__loading img {
  height: 80px;
  margin-bottom: 10px;
}
.post__header {
  margin-top: 43px;
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  .post__header {
    margin-bottom: 20px;
  }
}
.post__header h1 {
  color: #000;
}
.post__repost {
  padding-top: 25px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post__repost {
    display: none;
  }
}
.post__repost__title {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 18px;
  color: #4B4E53;
  margin-bottom: 12px;
}
.post__repost__links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post__repost__links li + li {
  margin-top: 5px;
}
.post__repost__links li a {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  color: #ABABAB;
  text-decoration: none;
  transition: 0.3s ease color;
}
.post__repost__links li a:hover {
  color: #858585;
}
.post__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .post__rating {
    align-items: center;
    flex-direction: row;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .post__stars {
    width: 50%;
    flex-grow: 1;
  }
}
.post__place {
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 120.3%;
  text-transform: uppercase;
  color: #4B4E53;
  margin: 15px 0px;
}
@media (max-width: 767.98px) {
  .post__place {
    width: auto;
    text-align: right;
    margin: 0px;
    font-size: 14px;
    margin-right: 10px;
    margin-left: 10px;
    color: #ABABAB;
  }
}
@media (max-width: 767.98px) {
  .post__place span {
    display: none;
  }
}
.post__reviews {
  margin-top: 55px;
}
.post__review > div > .review-replies {
  padding-left: 30px;
}
.post__review > div > .review-replies > .review-replies__line {
  left: 10px;
}
.post__review + .post__review {
  margin-top: 20px;
}
.post__aside {
  height: 100%;
}
.post__description {
  margin-bottom: 25px;
}
.post__description__text {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #767980;
  margin-top: 16px;
  margin-bottom: 20px;
}
.post__poster {
  margin-bottom: 22px;
}
.post__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.post__owner-notify {
  font-style: normal;
  font-weight: 800;
  font-size: 10px;
  line-height: 120.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.post__owner-notify img {
  margin-left: 6px;
  margin-top: -3px;
}
.post__owner-notify--blue {
  color: #2D9CDB;
}
.post__excerpt {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #4B4E53;
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .post__excerpt {
    font-size: 16px;
    margin-top: 30px;
  }
}
.post__website {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: normal;
  font-size: 15px;
  line-height: 120.3%;
  color: #ABABAB;
}
.post__website span {
  font-weight: bold;
  color: #000;
}
.post__website a {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #F77F00;
  text-decoration: none;
}
.post__metrics {
  margin: 0px -5px;
  margin-top: 32px;
  display: flex;
  flex-direction: row;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post__metrics {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .post__metrics {
    flex-direction: column;
  }
}
.post__metric {
  margin: 0px 5px;
  width: 33%;
}
@media (min-width: 992px) and (max-width: 1469.98px) {
  .post__metric {
    width: calc(50% - 10px);
    margin: 5px !important;
  }
}
@media (max-width: 991.98px) {
  .post__metric {
    width: 100%;
    margin: 5px !important;
  }
}
.post__announces {
  margin-top: 22px;
  background-color: rgba(234, 226, 183, 0.18);
  padding: 38px 58px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .post__announces {
    padding: 35px 30px;
  }
}
.post__announces:after {
  height: 100%;
  width: 100vw;
  right: -100vw;
  top: 0px;
  background-color: rgba(234, 226, 183, 0.18);
  position: absolute;
}
@media (max-width: 767.98px) {
  .post__announces .post-announce {
    margin: 10px 0px;
  }
}
.post__full {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #4B4E53;
}
@media (max-width: 991.98px) {
  .post__full {
    font-size: 16px;
  }
}
.post__full img {
  max-width: 100%;
  height: auto;
}
.post__review .review__rating {
  font-size: 14px;
  margin: 0px;
}
.post__review .review__rating--green, .post__review .review__rating--red {
  background-color: transparent;
}

.post-widget__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #161D2D;
}
.post-widget__content {
  margin-top: 15px;
}
.post-widget + .post-widget {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .post-widget + .post-widget {
    margin-top: 15px;
  }
}
.post-widget .auth-form__social {
  margin-top: 0px;
}

.post-video-widget {
  margin-top: 40px;
}
.post-video-widget h2 {
  margin-top: 0px;
}
.post-video-widget iframe {
  max-width: 100%;
}

.post-gallery-widget {
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 40px;
}
.post-gallery-widget h2 {
  margin-top: 0px;
}
.post-gallery-widget .post-gallery {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.post-gallery-widget .post-gallery a {
  margin: 0px 5px;
  flex-shrink: 0;
}
.post-gallery-widget .post-gallery a img {
  max-height: 150px;
}

.telegram-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.telegram-list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .telegram-list li {
    font-size: 15px;
  }
}
.telegram-list li + li {
  margin-top: 9px;
}
.telegram-list li:after {
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/svg/Telegram_logo.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  content: "";
  top: -3px;
  left: 0;
  position: absolute;
}
.telegram-list li a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #32A9DD;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .telegram-list li a {
    font-size: 15px;
  }
}
.telegram-list li a:hover {
  color: #1f8dbd;
}

.announce-not-exists {
  color: #ABABAB;
}
.announce-not-exists:after {
  background: url("/assets/images/svg/megaphone-gray.svg") 50% 50% no-repeat !important;
}

.announce-exists {
  color: #219653;
}
.announce-exists a {
  color: #219653 !important;
}
.announce-exists:after {
  background: url("/assets/images/svg/megaphone-green.svg") 50% 50% no-repeat !important;
}

.forum-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.forum-list li {
  position: relative;
  padding-left: 36px;
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #F77F00;
  padding-top: 3px;
}
.forum-list li + li {
  margin-top: 9px;
}
.forum-list li:after {
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/svg/conversation.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  content: "";
  top: 0px;
  left: 0;
  position: absolute;
}
.forum-list li a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .forum-list li a {
    font-size: 15px;
  }
}

.post-nagivation {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-nagivation li + li {
  margin-top: 15px;
}
.post-nagivation li a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #ABABAB;
  transition: 0.3s ease color;
  text-decoration: none;
}
.post-nagivation li a.active, .post-nagivation li a:hover {
  color: #F77F00;
}

.post-announce__date {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #9B9B9B;
}
.post-announce__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-top: 7px;
}
.post-announce__content {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #94907A;
  margin-top: 7px;
}
.post-announce__action {
  margin-top: 20px;
}
.post-announce__action a {
  font-style: normal;
  font-weight: 800;
  font-size: 11px;
  line-height: 120.3%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s ease color;
  text-decoration: none;
}

.metric-card {
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  padding: 30px 32px 25px 32px;
  margin: 0px 5px;
}
@media (max-width: 767.98px) {
  .metric-card {
    margin: 5px;
    padding: 25px;
  }
}
.metric-card__title {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2;
  color: #767980;
  margin-bottom: 7px;
}
@media (max-width: 767.98px) {
  .metric-card__title {
    font-size: 17px;
  }
}
.metric-card__value {
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  line-height: 1.4;
  color: #000000;
}
@media (max-width: 767.98px) {
  .metric-card__value {
    font-size: 25px;
    line-height: 1.5;
  }
}
.metric-card__labellist {
  white-space: nowrap;
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  position: relative;
}
.metric-card__labellist .label + .label {
  margin-left: 3px;
}
.metric-card__labellist .label + button {
  margin-left: 5px;
}
.metric-card__labellist button {
  outline: 0px;
  border: 0px;
  background-color: transparent;
  color: #F77F00;
  font-size: 14px;
  height: 24px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.metric-card__labellist button:focus {
  text-decoration: none;
}
.metric-card__labellist button[aria-opened=true] + .metric-card__hiddenlabels {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.metric-card__labellist button:hover {
  color: #c46500;
}
.metric-card__labellist button:focus {
  color: #c46500;
  text-decoration: underline;
}
.metric-card__hiddenlabels {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
  position: absolute;
  left: 0;
  top: 120%;
  box-shadow: 0px 8px 47px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  transition-property: opacity, transform;
  transform: translateY(15px);
}
.metric-card__hiddenlabels--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.metric-card__hiddenlabels .label {
  margin: 3px;
}

.post-rate-widget {
  background: rgba(234, 226, 183, 0.18);
  border-radius: 3px;
  padding: 30px 50px;
  margin-bottom: 27px;
}
@media (max-width: 767.98px) {
  .post-rate-widget {
    padding: 30px;
  }
}
.post-rate-widget__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #161D2D;
  margin-bottom: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .post-rate-widget__title {
    margin-bottom: 15px;
    flex-direction: column;
    align-items: baseline;
  }
}
.post-rate-widget__ratevalues {
  display: flex;
  flex-direction: row;
}
.post-rate-widget__value {
  width: 40%;
  font-style: normal;
  font-weight: bold;
  font-size: 90px;
  line-height: 1;
  -webkit-user-select: none;
          user-select: none;
}
@media (max-width: 767.98px) {
  .post-rate-widget__value {
    font-size: 75px;
    flex-shrink: 0;
  }
}
.post-rate-widget__value--5 {
  color: #FCBF49;
}
.post-rate-widget__value--4 {
  color: #a07d38;
}
.post-rate-widget__value--3 {
  color: #5f584a;
}
.post-rate-widget__value--2 {
  color: #ff5f5f;
}
.post-rate-widget__value--1 {
  color: #D62828;
}
.post-rate-widget__ratelines:hover .post-rate-widget__ratelines__item {
  opacity: 0.3;
}
.post-rate-widget__ratelines__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  transition: 0.3s ease-out opacity;
  cursor: help;
}
.post-rate-widget__ratelines__item:hover {
  opacity: 1 !important;
}
.post-rate-widget__ratelines__item:hover .post-rate-widget__tooltip {
  opacity: 1;
  transform: translate(-25%, 0px);
}
.post-rate-widget__stars {
  margin-right: 8px;
}
.post-rate-widget__progress {
  height: 4px;
  width: 80px;
  border-radius: 2px;
  background-color: #E1DFCC;
  position: relative;
}
@media (max-width: 767.98px) {
  .post-rate-widget__progress {
    width: 70px;
  }
}
.post-rate-widget__progress span {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  background-color: #FED42D;
  border-radius: 2px;
}
.post-rate-widget__stats {
  display: flex;
  flex-direction: row;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #ABABAB;
  margin-top: 27px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .post-rate-widget__stats {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .post-rate-widget__stats {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.post-rate-widget__growth {
  width: 45%;
  text-align: left;
}
.post-rate-widget__growth div {
  line-height: 1;
  padding-left: 0px;
}
.post-rate-widget__growth span {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 120.3%;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .post-rate-widget__growth span {
    font-size: 15px;
  }
}
.post-rate-widget__growth span img {
  margin-top: -2px;
  margin-right: 5px;
}
.post-rate-widget__growth span.green {
  color: #219653;
}
.post-rate-widget__growth span.red {
  color: #D62828;
}
.post-rate-widget__tooltip {
  position: absolute;
  width: auto;
  left: 50%;
  transform: translate(-25%, 15px);
  top: -180%;
  background-color: #E1DFCC;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 11px;
  opacity: 0;
  transition: 0.3s ease-in-out all;
  transition-property: opacity, transform;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.last-reviews__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 20px;
}
@media (max-width: 767.98px) {
  .last-reviews__header {
    flex-wrap: wrap;
    align-items: baseline;
  }
}
.last-reviews__title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-right: 28px;
}
@media (max-width: 767.98px) {
  .last-reviews__title {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .last-reviews__action {
    width: 50%;
  }
}
.last-reviews__action:last-of-type {
  text-align: right;
  flex-grow: 1;
}
.last-reviews__action a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
}
.last-reviews__content {
  margin-top: 23px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .last-reviews__content .short-comment {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .last-reviews__content .short-comment {
    margin-bottom: 10px;
  }
}

.news-section {
  padding-top: 33px;
}
.news-section__navigation {
  position: sticky;
  top: 50px;
}
@media (max-width: 1199.98px) {
  .news-section__navigation {
    display: none;
  }
}
.news-section h1 + .news-list {
  margin-top: 30px;
}

.news-post h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 120.3%;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .news-post h1 {
    margin-bottom: 10px;
  }
}
.news-post h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .news-post h2 {
    line-height: 1.3;
    font-size: 18px !important;
  }
}
.news-post h3 {
  color: #000;
  font-size: 18px;
}
.news-post [data-fancybox=gallery] img {
  margin-bottom: 0px;
}
.news-post .subscribe-form {
  margin-top: 54px;
}
.news-post__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .news-post__meta {
    flex-wrap: wrap;
  }
}
.news-post__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 21px;
  margin-right: 15px;
}
@media (max-width: 767.98px) {
  .news-post__author {
    flex-grow: 1;
    display: none;
  }
}
.news-post__author a {
  color: #000;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
}
.news-post__author a:hover {
  color: #F77F00;
}
.news-post__author__avatar {
  margin-right: 10px;
}
.news-post__author__avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.news-post__date {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 21px;
  color: #8E94A7;
}
@media (max-width: 767.98px) {
  .news-post__date {
    margin-right: 30px;
  }
}
.news-post__repost {
  flex-grow: 1;
  text-align: right;
  margin-left: 30px;
}
@media (max-width: 767.98px) {
  .news-post__repost {
    flex-grow: 0;
    margin-left: 0px;
  }
}
.news-post__poster {
  margin: 0px -75px 15px -75px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .news-post__poster {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.news-post__poster img {
  max-width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .news-post__poster img {
    max-width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    margin-bottom: 0px;
  }
}
.news-post__content {
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #4B4E53;
}
@media (max-width: 767.98px) {
  .news-post__content {
    font-size: 15px;
  }
}
.news-post__content p {
  margin: 15px 0;
}
.news-post__content p:empty {
  display: none;
}
.news-post__content p + p {
  margin-top: 20px;
}
.news-post__content p strong, .news-post__content p b {
  color: #000;
}
.news-post__content img,
.news-post__content [data-fancybox=gallery] {
  max-width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
}
.news-post__content img + p,
.news-post__content [data-fancybox=gallery] + p {
  margin-top: 0px;
}
.news-post__content img:after,
.news-post__content [data-fancybox=gallery]:after {
  content: attr(alt);
  position: absolute;
  width: 100%;
  left: 0px;
}
.news-post__announces {
  margin-top: 30px;
}
.news-post__announces .post-announce {
  background-color: rgba(234, 226, 183, 0.18);
  padding: 38px 58px;
  position: relative;
}
.news-post__announces .post-announce + .post-announce {
  margin-top: 20px;
}
.news-post__discuss h2 {
  margin-bottom: 13px;
}
.news-post__commentform {
  margin-bottom: 40px;
}
.news-post__comments {
  margin-bottom: 50px;
}
.news-post .campaign-card {
  margin-top: 40px;
  margin-bottom: 65px;
  padding-top: 37px;
  border-top: 1px solid #F2F3F6;
}

.error-page {
  flex-direction: column;
  display: flex;
  justify-content: center;
  flex-grow: 1;
  height: calc(100vh - 180px);
}
@media (max-width: 767.98px) {
  .error-page {
    height: auto;
  }
}
.error-page__article {
  padding-top: 50px;
}
@media (max-width: 767.98px) {
  .error-page__article {
    text-align: center;
    padding-top: 25px;
  }
}
.error-page__code {
  font-style: normal;
  font-weight: 800;
  font-size: 288px;
  line-height: 77%;
  color: #3F3D56;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
@media (max-width: 767.98px) {
  .error-page__code {
    font-size: 130px;
  }
}
.error-page__title {
  font-style: normal;
  font-weight: 800;
  font-size: 47px;
  line-height: 120.3%;
  color: #3F3D56;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .error-page__title {
    font-size: 28px;
  }
}
.error-page__message {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #ABABAB;
}
@media (max-width: 767.98px) {
  .error-page__message {
    font-size: 15px;
  }
}
.error-page__action {
  margin-top: 36px;
}
.error-page__poster {
  text-align: left;
}
@media (max-width: 767.98px) {
  .error-page__poster {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .error-page__poster img {
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .error-page .container > .row {
    flex-direction: column-reverse;
  }
}

.error-page-footer {
  padding-bottom: 35px;
}
@media (max-width: 767.98px) {
  .error-page-footer {
    padding-top: 30px;
  }
}
.error-page-footer__copy {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #B9BEC4;
}
@media (max-width: 767.98px) {
  .error-page-footer__copy {
    justify-content: center;
  }
}
