@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font: inherit;
  -webkit-font-smoothing: antialiased;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  background: #d9d9d9;
}
::-webkit-scrollbar-thumb {
  background: #0087E9;
}
html {
  font-size: 62.5%;
}
body {
  font: 400 1.6rem/1.3 'Inter', sans-serif;
  background: #fff;
  color: #303030;
  overflow-x: hidden;
  min-width: 320px;
  max-width: 100vw;
  display: block;
  position: relative;
  z-index: 1;
}
body.pad-none {
  padding-top: 0;
}
::-moz-selection {
  background: rgba(0, 135, 233, 0.4);
}
::selection {
  background: rgba(0, 135, 233, 0.4);
}
.main-content-container {
  position: relative;
  padding: 0 5rem;
  transition: 0.3s;
  height: 100%;
  z-index: 3;
}
strong {
  font-weight: 700;
}
.oh {
  overflow: hidden;
}
.oh-x {
  overflow-x: hidden;
}
.w-100 {
  width: 100%;
}
.h-100vh {
  height: 100vh;
}
.mh-13 {
  min-height: 13rem;
}
.h-100 {
  height: 100%;
}
.show {
  display: block;
}
.z-index-2 {
  position: relative;
  z-index: 2;
}
.z-index-3 {
  position: relative;
  z-index: 3;
}
.link-zoom {
  transition: 0.3s;
}
.link-zoom:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
.link-red {
  color: #e74c3c;
  font-weight: 700;
  text-decoration: underline;
}
.link-green {
  color: #2FCB82;
  font-weight: 700;
  text-decoration: underline;
}
.link-primary {
  color: #0087E9;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.3s;
}
.link-primary:hover {
  color: #000;
  transition: 0.3s;
}
.hide {
  display: none;
}
.relative {
  position: relative;
}
figure img {
  display: block;
}
figure.center img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.text-italic {
  font-style: italic;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-justify {
  text-align: justify;
}
.text-white {
  color: #fff;
}
.text-orange {
  color: #ED6B20;
}
.text-orange-two {
  color: #ED8D20;
}
.text-orange-three {
  color: #FF8000;
}
.text-primary {
  color: #0087E9;
}
.text-pink {
  color: #D8006B;
}
.text-light-green {
  color: #8FBE5A;
}
.text-dark-green {
  color: #126C5F;
}
.text-dark-blue {
  color: #10275E;
}
.text-blue-light {
  color: #003963;
}
.text-secondary {
  color: #F8F8F8;
}
.text-medium {
  font-weight: 500;
}
.text-blue {
  color: #252C41;
}
.text-dark {
  color: #1D1D1B;
}
.text-gray {
  color: #726E72;
}
.text-graytwo {
  color: #484848;
}
.text-lightgray {
  color: #707070;
}
.text-green {
  color: #27ae60;
}
.text-red {
  color: #e74c3c;
}
.text-underline {
  text-decoration: underline;
}
.text-upper {
  text-transform: uppercase;
}
.text-nw {
  white-space: nowrap;
}
.text-light {
  font-weight: 300;
}
.text-regular {
  font-weight: 400;
}
.text-semibold {
  font-weight: 600;
}
.text-bold {
  font-weight: 700;
}
.text-xbold {
  font-weight: 900;
}
.text-ww {
  word-wrap: break-word;
}
.text-black {
  color: #000;
}
.text-yellow {
  color: #FFE600;
}
.text-icon {
  position: relative;
  font-size: 1.4rem;
  color: #707070;
  padding: 0 0 0 3.8rem;
}
.text-icon:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #82C43C;
}
.text-icon--calendar:before {
  -webkit-mask: url('/assets/img/ico/calendar.svg') no-repeat;
  mask: url('/assets/img/ico/calendar.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.text-icon--mappoint:before {
  -webkit-mask: url('/assets/img/ico/map-point.svg') no-repeat;
  mask: url('/assets/img/ico/map-point.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
a {
  color: #0087E9;
  font: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
sup,
sub,
small {
  font-size: 60%;
}
video {
  display: block;
  width: 100%;
}
p {
  margin: 1rem 0;
}
em {
  font-style: italic;
}
.m-0 {
  margin: 0;
}
.table {
  width: 100%;
}
.bg-under-header {
  position: relative;
  z-index: 1;
}
.bg-under-header:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(241, 248, 243, 0.5);
  border-bottom-left-radius: 15rem;
  border-bottom-right-radius: 15rem;
  z-index: -1;
}
.bg-white {
  background: #fff;
}
.mw-px-290 {
  width: 290px;
  max-width: 100%;
}
.mw-px-420 {
  width: 420px;
  max-width: 100%;
}
.mw-px-620 {
  width: 620px;
  max-width: 100%;
}
.mw-px-730 {
  width: 730px;
  max-width: 100%;
}
.mw-px-800 {
  width: 800px;
  max-width: 100%;
}
.mw-px-840 {
  width: 840px;
  max-width: 100%;
}
.mw-px-975 {
  max-width: 975px;
  margin-left: auto;
  margin-right: auto;
}
.mw-px-1040 {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.mw-px-1060 {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.pad-2 {
  padding: 2rem;
}
.pad-3 {
  padding: 3rem;
}
.pad-sides-2 {
  padding: 0 2rem;
}
.pad-section-4 {
  padding: 4rem 0;
}
.pad-section-5 {
  padding: 5rem 0;
}
.mar-0 {
  margin: 0;
}
.mar-3 {
  margin: 3rem 0;
}
.mar-left-1 {
  margin-left: 1rem;
}
.mar-left-2 {
  margin-left: 2rem;
}
.mar-left-3 {
  margin-left: 3rem;
}
.mab-px-1 {
  margin-bottom: 1px;
}
.mab-minus-1 {
  margin-bottom: -1rem;
}
.mab-minus-2 {
  margin-bottom: -2rem;
}
.mab-minus-25 {
  margin-bottom: -2.5rem;
}
.mab-minus-3 {
  margin-bottom: -3rem;
}
.mab-minus-4 {
  margin-bottom: -4rem;
}
.mab-05 {
  margin-bottom: 0.5rem;
}
.mab-1 {
  margin-bottom: 1rem;
}
.mab-15 {
  margin-bottom: 1.5rem;
}
.mab-2 {
  margin-bottom: 2rem;
}
.mab-25 {
  margin-bottom: 2.5rem;
}
.mab-3 {
  margin-bottom: 3rem;
}
.mab-35 {
  margin-bottom: 3.5rem;
}
.mab-4 {
  margin-bottom: 4rem;
}
.mab-45 {
  margin-bottom: 4.5rem;
}
.mab-5 {
  margin-bottom: 5rem;
}
.mab-6 {
  margin-bottom: 6rem;
}
.pat-4 {
  padding-top: 4rem;
}
.mat-minus-15 {
  margin-top: -1.5rem;
}
.mat-minus-2 {
  margin-top: -2rem;
}
.mat-minus-3 {
  margin-top: -3rem;
}
.mat-0 {
  margin-top: 0rem;
}
.mat-1 {
  margin-top: 1rem;
}
.mat-2 {
  margin-top: 2rem;
}
.mat-25 {
  margin-top: 2.5rem;
}
.mat-3 {
  margin-top: 3rem;
}
.mat-4 {
  margin-top: 4rem;
}
.mat-5 {
  margin-top: 5rem;
}
.mat-6 {
  margin-top: 6rem;
}
.mat-6-4 {
  margin-top: 6rem;
}
.mat-7 {
  margin-top: 7rem;
}
.fontsize-12 {
  font-size: 1.2rem;
}
.fontsize-14 {
  font-size: 1.4rem;
}
.fontsize-18 {
  font-size: 1.8rem;
}
.fontsize-20 {
  font-size: 2rem;
}
.fontsize-24 {
  font-size: 2.4rem;
}
.fontsize-25 {
  font-size: 2.5rem;
}
.fontsize-30 {
  font-size: 3rem;
}
.fontsize-30-24 {
  font-size: 3rem;
}
.fontsize-38-26 {
  font-size: 3.8rem;
}
.line-height-22 {
  line-height: 2.2rem;
}
.line-height-24 {
  line-height: 2.4rem;
}
.list-dotted {
  list-style: none;
}
.list-dotted li {
  position: relative;
  font-size: 1.8rem;
  padding-left: 3.5rem;
  font-weight: 400;
}
.list-dotted li:not(:last-child) {
  margin-bottom: 4rem;
}
.list-dotted li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 10px;
  background: #F8F8F8;
  border-radius: 50%;
}
.not-found-section {
  padding: 10rem 0;
}
.breadcrumbs {
  margin-left: -1rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}
.breadcrumbs li {
  display: inline-block;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 1rem;
  list-style: none;
  position: relative;
  color: #ACACAC;
}
.breadcrumbs li:not(:last-child):after {
  position: absolute;
  content: '>';
  font-weight: 500;
  right: -0.4rem;
  color: #ACACAC;
  top: 50%;
  transform: translate(0, -50%);
}
.breadcrumbs li a {
  position: relative;
  color: #757575;
}
.breadcrumbs li a:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1rem;
  background: #ACACAC;
  transition: 0.3s;
}
.breadcrumbs li a:hover:after {
  width: 100%;
  transition: 0.3s;
}
.breadcrumbs-current {
  color: #303030;
}
.title {
  font-size: 2.4rem;
  font-weight: 600;
}
.title-decoration {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0 0 0 5.1rem;
}
.title-decoration:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.7rem;
  height: 3.7rem;
  background: #8E8E8E;
  transition: 0.3s;
}
.title-decoration--offers:before {
  -webkit-mask: url('/assets/img/ico/offers.svg') no-repeat;
  mask: url('/assets/img/ico/offers.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.title-big {
  font-size: 3rem;
  font-weight: 600;
}
.title-small {
  font-size: 2rem;
  font-weight: 600;
}
.hr-primary {
  width: 100%;
  height: 1px;
  background: rgba(0, 135, 233, 0.2);
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1330px;
}
.container-fluid.big {
  max-width: 1470px;
}
.container-fluid.full {
  max-width: unset;
}
.container-fluid.pad-none {
  padding-left: 0;
  padding-right: 0;
}
.container-big {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1660px;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row.space-10 {
  margin-right: -10px;
  margin-left: -10px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.row-pad-05 {
  margin-left: -0.5px;
  margin-right: -0.5px;
}
.row-pad-05 > .col,
.row-pad-05 > [class*="col-"] {
  padding-right: 0.5px;
  padding-left: 0.5px;
}
.row-pad-4 {
  margin-right: -4px;
  margin-left: -4px;
}
.row-pad-4 > .col,
.row-pad-4 > [class*="col-"] {
  padding-right: 4px;
  padding-left: 4px;
}
.row-pad-5 {
  margin-right: -5px;
  margin-left: -5px;
}
.row-pad-5 > .col,
.row-pad-5 > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.row-pad-6 {
  margin-right: -6px;
  margin-left: -6px;
}
.row-pad-6 > .col,
.row-pad-6 > [class*="col-"] {
  padding-right: 6px;
  padding-left: 6px;
}
.row-pad-75 {
  margin-right: -7.5px;
  margin-left: -7.5px;
}
.row-pad-75 > .col,
.row-pad-75 > [class*="col-"] {
  padding-right: 7.5px;
  padding-left: 7.5px;
}
.row-pad-9 {
  margin-right: -9px;
  margin-left: -9px;
}
.row-pad-9 > .col,
.row-pad-9 > [class*="col-"] {
  padding-right: 9px;
  padding-left: 9px;
}
.row-pad-10 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-pad-10 > .col,
.row-pad-10 > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.row-pad-12 {
  margin-right: -12px;
  margin-left: -12px;
}
.row-pad-12 > .col,
.row-pad-12 > [class*="col-"] {
  padding-right: 12px;
  padding-left: 12px;
}
.space-10 > .col,
.space-10 > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.col-calendar,
.col-md-calendar,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-calendar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14.28%;
  flex: 0 0 14.28%;
  max-width: 14.28%;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}
.calendar-offset-1 {
  margin-left: 14.28%;
}
.calendar-offset-2 {
  margin-left: 28.56%;
}
.calendar-offset-3 {
  margin-left: 42.84%;
}
.calendar-offset-4 {
  margin-left: 57.12%;
}
.calendar-offset-5 {
  margin-left: 71.4%;
}
.calendar-offset-6 {
  margin-left: 85.68%;
}
.offset-1 {
  margin-left: 8.333333%;
}
.offset-2 {
  margin-left: 16.666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.333333%;
}
.offset-5 {
  margin-left: 41.666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.333333%;
}
.offset-8 {
  margin-left: 66.666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.333333%;
}
.offset-11 {
  margin-left: 91.666667%;
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-4-product-short {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4-product-long {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-5-custom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 39.5%;
    flex: 0 0 39.5%;
    max-width: 39.5%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-calendar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.28%;
    flex: 0 0 14.28%;
    max-width: 14.28%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-2-custom {
    margin-left: 21%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
  .calendar-offset-md-1 {
    margin-left: 14.28%;
  }
  .calendar-offset-md-2 {
    margin-left: 28.56%;
  }
  .calendar-offset-md-3 {
    margin-left: 42.84%;
  }
  .calendar-offset-md-4 {
    margin-left: 57.12%;
  }
  .calendar-offset-md-5 {
    margin-left: 71.4%;
  }
  .calendar-offset-md-6 {
    margin-left: 85.68%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-footer-menu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18.75%;
    flex: 0 0 18.75%;
    max-width: 18.75%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-2-program {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 13%;
    flex: 0 0 13%;
    max-width: 13%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-10-program {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87%;
    flex: 0 0 87%;
    max-width: 87%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-post-header-photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52.88%;
    flex: 0 0 52.88%;
    max-width: 52.88%;
  }
  .col-lg-post-header-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47.12%;
    flex: 0 0 47.12%;
    max-width: 47.12%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-5-idea {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 39.5%;
    flex: 0 0 39.5%;
    max-width: 39.5%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1600px) {
  .col-xxxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxxl-5-idea {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 39.5%;
    flex: 0 0 39.5%;
    max-width: 39.5%;
  }
  .col-xxxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxxl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxxl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (max-width: 767px) {
  .mx-auto-to-md {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1600px) {
  .flex-xxxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xxxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
/***************************/
/**   USTAWIENIA GŁÓWNE   **/
/***************************/
.btn {
  position: relative;
  display: inline-block;
  padding: 1.3rem 2.1rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: #0087E9;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  color: #fff;
  background: #303030;
  transition: 0.3s;
}
.btn--green {
  background: #82C43C;
}
.btn--bold {
  font-weight: 700;
}
.btn--gray {
  background: #b0b0af;
}
.btn--violet {
  background: #A805A3;
}
.btn--pending {
  cursor: unset;
  overflow: hidden;
}
.btn--pending:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0087E9;
  opacity: 0;
  transition: 0.3s;
}
.btn--pending:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.2rem;
  aspect-ratio: 41/43;
  background: #fff;
  -webkit-mask: url('/assets/img/ico/pending.svg') no-repeat;
  mask: url('/assets/img/ico/pending.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  animation: loading 7s linear infinite;
  opacity: 0;
  transition: 0.3s;
}
.btn--pending__active:before,
.btn--pending__active:after {
  opacity: 1;
  transition: 0.3s;
}
.btn--icon {
  padding: 1.3rem 4.9rem 1.3rem 2.1rem;
}
.btn--icon:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 1.4rem;
  transform: translate(0, -50%);
  width: 2rem;
  aspect-ratio: 1/1;
  background: #fff;
}
.btn--icon__dblock {
  padding: 1.3rem 4.9rem;
}
.btn--icon__add:after {
  -webkit-mask: url('/assets/img/ico/add.svg') no-repeat;
  mask: url('/assets/img/ico/add.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--icon__add.active:after {
  -webkit-mask: url('/assets/img/ico/minus.svg') no-repeat;
  mask: url('/assets/img/ico/minus.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--icon__edit:after {
  -webkit-mask: url('/assets/img/ico/edit.svg') no-repeat;
  mask: url('/assets/img/ico/edit.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--icon__download:after {
  -webkit-mask: url('/assets/img/ico/download.svg') no-repeat;
  mask: url('/assets/img/ico/download.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--icon__delete {
  background: #e74c3c;
}
.btn--icon__delete:after {
  -webkit-mask: url('/assets/img/ico/delete.svg') no-repeat;
  mask: url('/assets/img/ico/delete.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--icon__questionnaires:after {
  -webkit-mask: url('/assets/img/ico/questionnaires.svg') no-repeat;
  mask: url('/assets/img/ico/questionnaires.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--icon__password:after {
  -webkit-mask: url('/assets/img/ico/password.svg') no-repeat;
  mask: url('/assets/img/ico/password.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn--bg-none {
  background: none;
  border: solid 1px #DCDCDC;
  color: #303030;
}
.btn--bg-none:hover {
  background: #c3c3c3;
  transition: 0.3s;
}
.btn--w245 {
  width: 24.5rem;
  text-align: center;
  max-width: 100%;
}
.box-gray {
  background: #F8F8F8;
  border-radius: 1.9rem;
  padding: 3rem;
}
.box-gray--small {
  width: 440px;
  max-width: 100%;
}
.box-gray--padsidesdisable {
  padding: 3rem 0;
}
.box-gray--paddisable {
  padding: 0;
}
.box-gray--disableradius {
  border-radius: 0;
}
.box-gray--grayscale {
  filter: grayscale(1);
}
.box-gray--smallpad {
  padding: 1rem 1.5rem;
  border-radius: 0.9rem;
}
.box-graydark {
  background: #efefef;
  border-radius: 1.9rem;
  padding: 3rem;
}
.box-graytwo {
  background: #F6F6F6;
  border-radius: 0.8rem;
  padding: 2rem;
}
.box-white {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
.box-white--shadow {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
}
.box-white--disableradius {
  border-radius: 0;
}
.box-primary {
  background: #0087E9;
  color: #fff;
  border-radius: 1.9rem;
  padding: 3rem;
}
.box-primary--light {
  background: #F1F8FD;
}
.box-comment {
  background: rgba(232, 76, 61, 0.15);
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
}
.box-comment p {
  margin: 0;
}
.box-comment--primary {
  background: rgba(0, 135, 233, 0.15);
}
.box-comment--success {
  background: rgba(47, 203, 130, 0.15);
}
.box-lightblue {
  background: #F1F8FD;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}
.box-purple {
  background: #A805A3;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}
.box-green {
  background: #28B506;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}
.box-graytwo {
  background: #F8F8F8;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}
.material-row:not(:last-child) {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.material-row:not(:last-child):after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(48, 48, 48, 0.15);
}
.auth-section {
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-message {
  position: relative;
  display: block;
  padding: 2rem 2rem 2rem 6.5rem;
  border-radius: 0.5rem;
}
.info-message:before {
  position: absolute;
  content: '';
  left: 5.5rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.1rem;
  height: 40%;
}
.info-message:after {
  position: absolute;
  content: '';
  left: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.5rem;
  height: 3.5rem;
}
.info-message p {
  margin: 0;
}
.info-message--error {
  border: solid 1px #e74c3c;
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}
.info-message--error:before {
  background: #e74c3c;
}
.info-message--error:after {
  background: #e74c3c;
  -webkit-mask: url('/assets/img/ico/error.svg') no-repeat;
  mask: url('/assets/img/ico/error.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.info-message--warning {
  border: solid 1px #f39c12;
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}
.info-message--warning:before {
  background: #f39c12;
}
.info-message--warning:after {
  background: #f39c12;
  -webkit-mask: url('/assets/img/ico/warning.svg') no-repeat;
  mask: url('/assets/img/ico/warning.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.info-message--success {
  border: solid 1px #27ae60;
  background: rgba(39, 174, 96, 0.2);
  color: #27ae60;
}
.info-message--success:before {
  background: #27ae60;
}
.info-message--success:after {
  background: #27ae60;
  -webkit-mask: url('/assets/img/ico/success.svg') no-repeat;
  mask: url('/assets/img/ico/success.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.info-message--information {
  border: solid 1px #0087E9;
  background: rgba(0, 135, 233, 0.2);
  color: #0087E9;
}
.info-message--information:before {
  background: #0087E9;
}
.info-message--information:after {
  background: #0087E9;
  -webkit-mask: url('/assets/img/ico/info.svg') no-repeat;
  mask: url('/assets/img/ico/info.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.info-message--smallpad {
  padding: 1rem 2rem 1rem 6.5rem;
}
.header-section {
  position: relative;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.header-section:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 135, 233, 0.2);
}
.header-section-rwd {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  background: #fff;
  padding: 1.5rem 0;
  -webkit-box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
}
.header-userinfo {
  position: relative;
  padding: 0 0 0 7rem;
}
.header-userinfo-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 5rem;
  height: 5rem;
  background: rgba(46, 46, 46, 0.1);
  border-radius: 0.6rem;
}
.header-userinfo-icon:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  aspect-ratio: 1/1;
  background: #8E8E8E;
  -webkit-mask: url('/assets/img/ico/user.svg') no-repeat;
  mask: url('/assets/img/ico/user.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.header-userinfo-name {
  font-size: 2.1rem;
  font-weight: 600;
  margin: 0;
}
.header-userinfo-role {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  color: #0087E9;
}
/***************************/
/**         NAVBAR        **/
/***************************/
.navbar {
  width: 260px;
  background: #fff;
  padding: 0 1.5rem;
  -webkit-box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  height: 100%;
  transition: 0.3s;
}
.navbar-logo {
  display: block;
}
.navbar-logo img {
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.navbar-logo-container {
  padding: 3.2rem 0 0 0;
  margin-bottom: 5rem;
}
.navbar-menu {
  margin-right: -1.5rem;
}
.navbar-menu li {
  position: relative;
  display: block;
  list-style: none;
  margin-bottom: 2rem;
}
.navbar-menu li a {
  display: block;
  position: relative;
  color: #8E8E8E;
  padding: 1rem 1rem 1rem 5rem;
  font-size: 1.6rem;
  z-index: 2;
}
.navbar-menu li a:before {
  position: absolute;
  content: '';
  left: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #8E8E8E;
  transition: 0.3s;
}
.navbar-menu li a:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  border-radius: 2rem;
  background: #0087E9;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: #0087E9;
}
.navbar-menu li a:hover:before,
.navbar-menu li a.active:before {
  background: #0087E9;
}
.navbar-menu li a:hover:after,
.navbar-menu li a.active:after {
  opacity: 1;
  transition: 0.3s;
}
.navbar-menu li a span {
  transition: 0.3s;
}
.navbar-menu li.navbar-menu--home a:before {
  -webkit-mask: url('/assets/img/ico/home.svg') no-repeat;
  mask: url('/assets/img/ico/home.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--calendar a:before {
  -webkit-mask: url('/assets/img/ico/calendar.svg') no-repeat;
  mask: url('/assets/img/ico/calendar.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--offers a:before {
  -webkit-mask: url('/assets/img/ico/offers.svg') no-repeat;
  mask: url('/assets/img/ico/offers.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--events a:before {
  -webkit-mask: url('/assets/img/ico/events.svg') no-repeat;
  mask: url('/assets/img/ico/events.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--budgets a:before {
  -webkit-mask: url('/assets/img/ico/budgets.svg') no-repeat;
  mask: url('/assets/img/ico/budgets.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--reports a:before {
  -webkit-mask: url('/assets/img/ico/reports.svg') no-repeat;
  mask: url('/assets/img/ico/reports.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--settings a:before {
  -webkit-mask: url('/assets/img/ico/settings.svg') no-repeat;
  mask: url('/assets/img/ico/settings.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--logout a:before {
  -webkit-mask: url('/assets/img/ico/logout.svg') no-repeat;
  mask: url('/assets/img/ico/logout.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--vacations a:before {
  -webkit-mask: url('/assets/img/ico/vacations.svg') no-repeat;
  mask: url('/assets/img/ico/vacations.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu li.navbar-menu--qahdashboard a:before {
  -webkit-mask: url('/assets/img/ico/qahdashboard.svg') no-repeat;
  mask: url('/assets/img/ico/qahdashboard.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-hamburger {
  background: none;
  display: none;
  cursor: pointer;
  position: absolute;
  transition: 0.3s;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  width: 3rem;
  height: 3rem;
  z-index: 9;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navbar-hamburger.active .navbar-hamburger-ico {
  position: absolute;
  left: 0;
  top: 35%;
  transition: 0.3s;
}
.navbar-hamburger.active .navbar-hamburger-ico:nth-child(1) {
  transform: rotate(45deg);
  width: 3rem;
}
.navbar-hamburger.active .navbar-hamburger-ico:nth-child(2) {
  transform: rotate(-45deg);
  width: 3rem;
}
.navbar-hamburger.active .navbar-hamburger-ico:nth-child(3) {
  display: none;
}
.navbar-hamburger-ico {
  height: 3px;
  display: block;
  background: #0087E9;
  margin: 0.6rem 0;
  transition: 0.3s;
  margin-left: auto;
}
.navbar-hamburger-ico:nth-child(1) {
  width: 2.9rem;
}
.navbar-hamburger-ico:nth-child(2) {
  width: 2.9rem;
}
.navbar-hamburger-ico:nth-child(3) {
  width: 2rem;
}
.navbar-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.25rem;
  opacity: 0.7;
  display: none;
}
.navbar-arrow {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  background: #303030;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 0.9rem;
}
.navbar-arrow:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 9px;
  aspect-ratio: 7/12;
  background: #fff;
  -webkit-mask: url('/assets/img/ico/arrow.svg') no-repeat;
  mask: url('/assets/img/ico/arrow.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
.navbar-arrow:hover {
  background: #0087E9;
  transition: 0.3s;
}
.footer {
  margin-top: 3rem;
  margin-bottom: 2rem;
  width: 100%;
  font-size: 1.4rem;
}
/***************************/
/**      PANEL GŁÓWNY     **/
/***************************/
.home-event-box {
  position: relative;
  height: 100%;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-event-box:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 135, 233, 0.4);
}
.home-event-box--afterdisable:after {
  display: none;
}
.home-event-box p {
  font-size: 2.4rem;
  font-weight: 600;
}
.home-event-score {
  font-size: 6rem;
  font-weight: 300;
  color: #000;
}
.home-event-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 0 0 0 7rem;
  color: #000;
}
.home-event-title:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 5.2rem;
  background: #1E75FF;
}
.home-event-title--s1:before {
  aspect-ratio: 13/8;
  -webkit-mask: url('/assets/img/ico/statuses/events/1.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/1.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s2:before {
  background: #F21600;
  aspect-ratio: 51/52;
  -webkit-mask: url('/assets/img/ico/statuses/events/2.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/2.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s3:before {
  aspect-ratio: 55/34;
  -webkit-mask: url('/assets/img/ico/statuses/events/3.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/3.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s4:before {
  background: #F21600;
  aspect-ratio: 1/1;
  -webkit-mask: url('/assets/img/ico/statuses/events/4.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/4.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s5:before {
  aspect-ratio: 28/17;
  -webkit-mask: url('/assets/img/ico/statuses/events/5.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/5.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s6:before {
  background: #28B506;
  aspect-ratio: 19/17;
  -webkit-mask: url('/assets/img/ico/statuses/events/6.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/6.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s7:before {
  background: #F21600;
  aspect-ratio: 55/54;
  -webkit-mask: url('/assets/img/ico/statuses/events/7.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/7.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s8 {
  color: #F21600;
}
.home-event-title--s8:before {
  background: #F21600;
  aspect-ratio: 1/1;
  -webkit-mask: url('/assets/img/ico/statuses/events/8.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/8.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s9 {
  color: #28B506;
}
.home-event-title--s9:before {
  background: #28B506;
  aspect-ratio: 1/1;
  -webkit-mask: url('/assets/img/ico/statuses/events/9.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/9.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-event-title--s10 {
  color: #F21600;
}
.home-event-title--s10:before {
  background: #F21600;
  aspect-ratio: 1/1;
  -webkit-mask: url('/assets/img/ico/statuses/events/8.svg') no-repeat;
  mask: url('/assets/img/ico/statuses/events/8.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-budget-box {
  display: block;
  background: #0266AF;
  border-radius: 2.4rem;
  color: #fff;
  padding: 3rem;
  height: 100%;
}
.home-budget-box:hover {
  color: #fff;
}
.home-budget-box--light {
  background: rgba(0, 135, 233, 0.7);
}
.home-budget-box-ico {
  position: relative;
  padding: 0 0 0 6rem;
}
.home-budget-box-ico:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('/assets/img/ico/budgets.svg') no-repeat;
  mask: url('/assets/img/ico/budgets.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-budget-box-text {
  font-size: 2.4rem;
}
.home-budget-box-bigtext {
  font-size: 4rem;
}
.home-budget-box-details {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
}
.home-budget-box-details-border {
  position: relative;
}
.home-budget-box-details-border:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #0087E9;
}
.home-budget-box-details-border--light:after {
  background: #0266AF;
}
.home-products-box {
  padding: 0 5rem;
}
/***************************/
/**        CALENDAR       **/
/***************************/
.calendar-arrow {
  position: absolute;
  top: 0;
  width: 3.5rem;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.calendar-arrow:hover {
  background: #E2E2EA;
  transition: 0.3s;
}
.calendar-arrow:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  aspect-ratio: 7/12;
  background: #92929D;
  -webkit-mask: url('/assets/img/ico/arrow.svg') no-repeat;
  mask: url('/assets/img/ico/arrow.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.calendar-arrow--prev {
  left: 0;
  border-right: solid 1px #E2E2EA;
}
.calendar-arrow--prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.calendar-arrow--next {
  right: 0;
  border-left: solid 1px #E2E2EA;
}
.calendar-arrow-container {
  position: relative;
  padding: 1rem 6.5rem;
  border: solid 1px #E2E2EA;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  min-width: 25rem;
}
.calendar-arrow-label {
  margin: 0;
  font-size: 1.4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-box-row {
  background: #F8F8F8;
}
.calendar-box-dayname {
  background: #0087E9;
  color: #fff;
  padding: 1.4rem;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.calendar-box-day {
  background: #fff;
  height: 100%;
}
.calendar-box-day--redday .calendar-box-day-title {
  color: #e74c3c;
}
.calendar-box-day-title {
  position: relative;
  margin: 0;
  padding: 2rem;
  font-size: 1.4rem;
  color: #92929D;
}
.calendar-box-day-title--today {
  color: #0087E9;
  font-weight: 600;
}
.calendar-box-day-title--today:after {
  position: absolute;
  content: '';
  left: 0.6rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0087E9;
}
.calendar-box-day-event {
  position: relative;
  padding: 1.5rem;
  margin-right: 1.2rem;
  margin-bottom: 1.5rem;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.calendar-box-day-event:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
}
.calendar-box-day-event-summaryevents {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.calendar-box-day-event-summaryevents:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  aspect-ratio: 1/4;
  -webkit-mask: url('/assets/img/ico/info-single.svg') no-repeat;
  mask: url('/assets/img/ico/info-single.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
.calendar-box-day-event:hover {
  transition: 0.3s;
}
.calendar-box-day-event:hover .calendar-box-day-event-title {
  color: #fff;
}
.calendar-box-day-event:hover .calendar-box-day-event-description {
  color: #fff;
}
.calendar-box-day-event:hover .calendar-box-day-event-summaryevents {
  border: solid 2px #fff;
}
.calendar-box-day-event:hover .calendar-box-day-event-summaryevents:after {
  background: #fff;
}
.calendar-box-day-event:hover .calendar-box-day-event-comment {
  color: #fff;
}
.calendar-box-day-event-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.calendar-box-day-event-title--icopad {
  padding: 0 2rem 0 0;
}
.calendar-box-day-event-comment {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e74c3c;
}
.calendar-box-day-event-description {
  font-size: 1.2rem;
  margin: 0;
}
.calendar-box-day-event--b1 {
  background: #f1f9ed;
  transition: 0.3s;
}
.calendar-box-day-event--b1:after {
  background: #82C43C;
}
.calendar-box-day-event--b1 .calendar-box-day-event-title {
  color: #82C43C;
}
.calendar-box-day-event--b1 .calendar-box-day-event-description {
  color: #82C43C;
}
.calendar-box-day-event--b1 .calendar-box-day-event-summaryevents {
  border: solid 2px #82C43C;
}
.calendar-box-day-event--b1 .calendar-box-day-event-summaryevents:after {
  background: #82C43C;
}
.calendar-box-day-event--b1:hover {
  background: #82C43C;
}
.calendar-box-day-event--b2 {
  background: #edf7ff;
  transition: 0.3s;
}
.calendar-box-day-event--b2:after {
  background: #50B5FF;
}
.calendar-box-day-event--b2 .calendar-box-day-event-title {
  color: #50B5FF;
}
.calendar-box-day-event--b2 .calendar-box-day-event-description {
  color: #50B5FF;
}
.calendar-box-day-event--b2 .calendar-box-day-event-summaryevents {
  border: solid 2px #50B5FF;
}
.calendar-box-day-event--b2 .calendar-box-day-event-summaryevents:after {
  background: #50B5FF;
}
.calendar-box-day-event--b2:hover {
  background: #50B5FF;
}
.calendar-box-day-event--b3 {
  background: #fff5ee;
  transition: 0.3s;
}
.calendar-box-day-event--b3:after {
  background: #FF974A;
}
.calendar-box-day-event--b3 .calendar-box-day-event-title {
  color: #FF974A;
}
.calendar-box-day-event--b3 .calendar-box-day-event-description {
  color: #FF974A;
}
.calendar-box-day-event--b3 .calendar-box-day-event-summaryevents {
  border: solid 2px #FF974A;
}
.calendar-box-day-event--b3 .calendar-box-day-event-summaryevents:after {
  background: #FF974A;
}
.calendar-box-day-event--b3:hover {
  background: #FF974A;
}
.calendar-box-day-event--b4 {
  background: #ebeffe;
  transition: 0.3s;
}
.calendar-box-day-event--b4:after {
  background: #1E75FF;
}
.calendar-box-day-event--b4 .calendar-box-day-event-title {
  color: #1E75FF;
}
.calendar-box-day-event--b4 .calendar-box-day-event-description {
  color: #1E75FF;
}
.calendar-box-day-event--b4 .calendar-box-day-event-summaryevents {
  border: solid 2px #1E75FF;
}
.calendar-box-day-event--b4 .calendar-box-day-event-summaryevents:after {
  background: #1E75FF;
}
.calendar-box-day-event--b4:hover {
  background: #1E75FF;
}
.calendar-box-day-event--b5 {
  background: #fff4fa;
  transition: 0.3s;
}
.calendar-box-day-event--b5:after {
  background: #FF9AD5;
}
.calendar-box-day-event--b5 .calendar-box-day-event-title {
  color: #FF9AD5;
}
.calendar-box-day-event--b5 .calendar-box-day-event-description {
  color: #FF9AD5;
}
.calendar-box-day-event--b5 .calendar-box-day-event-summaryevents {
  border: solid 2px #FF9AD5;
}
.calendar-box-day-event--b5 .calendar-box-day-event-summaryevents:after {
  background: #FF9AD5;
}
.calendar-box-day-event--b5:hover {
  background: #FF9AD5;
}
.calendar-min-height {
  min-height: 14rem;
}
.calendar-width {
  min-width: 120rem;
  padding: 0 5px;
  width: 100%;
}
.calendar-width-container {
  overflow-x: auto;
}
/***************************/
/**        PAGE404        **/
/***************************/
.page404-section {
  padding: 10rem 0;
}
.page404-title {
  font-size: 6rem;
  font-weight: 600;
}
/***************************/
/**         POPUP         **/
/***************************/
.overlay {
  display: none;
  position: fixed;
  left: 260px;
  top: 0;
  width: calc(100% - 260px);
  height: 100%;
  overflow: auto;
  padding: 5rem 15px;
  z-index: 15;
  background: rgba(0, 0, 0, 0.55);
}
.overlay-container {
  width: 460px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.overlay-container--medium {
  width: 880px;
}
.overlay-container--big {
  width: 1300px;
}
.overlay-box {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2.4rem;
}
.overlay-exit {
  display: block;
  position: relative;
  width: 3rem;
  aspect-ratio: 1/1;
  background: #F8F8F8;
  border: solid 0.3rem #0087E9;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.overlay-exit:hover {
  background: #0087E9;
  transition: 0.3s;
}
.overlay-exit:hover:after {
  background: #fff;
  transition: 0.3s;
}
.overlay-exit:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: #0087E9;
  -webkit-mask: url('/assets/img/ico/exit.svg') no-repeat;
  mask: url('/assets/img/ico/exit.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.table-container {
  overflow-x: auto;
}
.table-main {
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1.4rem;
}
.table-main thead {
  width: 100%;
  background: #0087E9;
  color: #fff;
}
.table-main thead th {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center !important;
}
.table-main tbody {
  width: 100%;
}
.table-main tbody tr:nth-child(even) {
  background-color: #F8F8F8;
}
.table-main tbody td {
  padding: 1.5rem 1rem;
}
.table-main tr {
  width: 100%;
  transition: 0.3s;
}
.table-main--gray thead {
  background: #a2a2a2;
}
.table-light {
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.table-light thead {
  width: 100%;
  background: #E5F4FF;
  color: #0087E9;
}
.table-light thead th {
  position: relative;
  padding: 1.5rem;
  text-align: center !important;
}
.table-light thead th:first-child {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.table-light thead th:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.table-light tbody {
  width: 100%;
}
.table-light tbody tr:nth-child(even) {
  background-color: #F8F8F8;
}
.table-light tbody td {
  padding: 1.5rem;
  color: #878787;
}
.table-light tbody td.table-icon-column {
  position: relative;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
}
.table-light tbody td.table-icon-column .questionnaire-report-otheranswer-icon {
  top: 50%;
  transform: translate(0, -50%);
}
.table-light tbody td:first-child {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.table-light tbody td:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.table-light tr {
  position: relative;
  width: 100%;
  transition: 0.3s;
}
.table-hcplist {
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
  border: solid 1px rgba(112, 112, 112, 0.15);
}
.table-hcplist .text-left {
  text-align: left !important;
}
.table-hcplist .text-center {
  text-align: center !important;
}
.table-hcplist .text-right {
  text-align: right !important;
}
.table-hcplist thead {
  width: 100%;
  color: #0087E9;
}
.table-hcplist thead th {
  position: relative;
  padding: 1.5rem;
}
.table-hcplist tbody {
  width: 100%;
}
.table-hcplist tbody td {
  padding: 1.5rem;
  color: #878787;
}
.table-hcplist tr {
  width: 100%;
  transition: 0.3s;
}
.table-hcplist tr:first-child td {
  position: relative;
}
.table-hcplist tr:first-child td:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #F1F1F1;
}
.table-hcplist tr:first-child td:first-child:before {
  left: 1.5rem;
  width: calc(100% - 1.5rem);
}
.table-hcplist tr:first-child td:last-child:before {
  width: calc(100% - 1.5rem);
}
.table-hcplist tr:not(:last-child) td {
  position: relative;
}
.table-hcplist tr:not(:last-child) td:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #F1F1F1;
}
.table-hcplist tr:not(:last-child) td:first-child:after {
  left: 1.5rem;
  width: calc(100% - 1.5rem);
}
.table-hcplist tr:not(:last-child) td:last-child:after {
  width: calc(100% - 1.5rem);
}
.table-hcplist-container {
  border: solid 1px rgba(112, 112, 112, 0.15);
}
.pagination li {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.3s;
  z-index: 1;
}
.pagination li a {
  color: #303030;
}
.pagination li:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #0087E9;
  border-radius: 50%;
  z-index: -1;
  transition: 0.3s;
}
.pagination li:hover a {
  color: #0087E9;
  transition: 0.3s;
}
.pagination li.active {
  cursor: unset;
}
.pagination li.active a {
  color: #fff;
}
.pagination li.active:before {
  width: 100%;
}
.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #0087E9;
}
.progress-bar-box p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0087E9;
  margin-top: 0;
}
.progress-bar-box--big p {
  font-size: 1.8rem;
}
.progress-bar-box--big .progress-bar-container {
  height: 3rem;
}
.progress-bar-container {
  position: relative;
  height: 1rem;
  border-radius: 0.5rem;
  background: rgba(0, 135, 233, 0.3);
  overflow: hidden;
}
.dataTables_wrapper input,
.dataTables_wrapper select,
.dataTables_wrapper textarea {
  padding: 1rem 1.5rem;
}
.dataTables_wrapper .dataTables_filter input {
  max-width: 60%;
}
.confirm-icon {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.confirm-icon:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 25/23;
  background: #0087E9;
  -webkit-mask: url('/assets/img/ico/confirm.svg') no-repeat;
  mask: url('/assets/img/ico/confirm.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
.confirm-icon:hover:before {
  background: #303030;
}
.qahdashboard-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  border: solid 1px #DCDBDD;
  border-radius: 2.4rem;
  background: none;
  width: 20rem;
  padding: 4rem 2rem;
  aspect-ratio: 1/1;
  font-size: 1.4rem;
  color: #202020;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
}
.qahdashboard-box:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #a805a3;
  background: linear-gradient(180deg, #a805a3 0%, #6e066b 100%);
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.qahdashboard-box:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -65%);
  background: #0087E9;
  z-index: -1;
}
.qahdashboard-box:hover {
  color: #fff;
  border: solid 1px #A805A3;
  transition: 0.3s;
}
.qahdashboard-box:hover:before {
  opacity: 1;
  transition: 0.3s;
}
.qahdashboard-box:hover:after {
  background: #fff;
  transition: 0.3s;
}
.qahdashboard-box--hoverblue:before {
  background: #0087E9;
  background: linear-gradient(180deg, #0087e9 0%, #0266af 100%);
}
.qahdashboard-box--hoverblue:hover {
  border: solid 1px #0266AF;
}
.qahdashboard-box--hotel:after {
  width: 6rem;
  height: 6rem;
  -webkit-mask: url('/assets/img/ico/hotel.svg') no-repeat;
  mask: url('/assets/img/ico/hotel.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.qahdashboard-box--conferences:after {
  width: 5.4rem;
  height: 6.2rem;
  -webkit-mask: url('/assets/img/ico/conferences.svg') no-repeat;
  mask: url('/assets/img/ico/conferences.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.qahdashboard-box--calendar:after {
  width: 7rem;
  height: 7rem;
  -webkit-mask: url('/assets/img/ico/calendar.svg') no-repeat;
  mask: url('/assets/img/ico/calendar.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.qahdashboard-box--doctors:after {
  width: 6rem;
  height: 6rem;
  -webkit-mask: url('/assets/img/ico/doctor.svg') no-repeat;
  mask: url('/assets/img/ico/doctor.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.qahdashboard-box--budgets:after {
  width: 6rem;
  height: 6rem;
  -webkit-mask: url('/assets/img/ico/budgets.svg') no-repeat;
  mask: url('/assets/img/ico/budgets.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.qahdashboard-box--questionnaires:after {
  width: 6rem;
  height: 6rem;
  -webkit-mask: url('/assets/img/ico/questionnaires.svg') no-repeat;
  mask: url('/assets/img/ico/questionnaires.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
/***************************/
/**        BUDGETS        **/
/***************************/
.budgets-title {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 0 0 4rem;
}
.budgets-title--decoration {
  position: relative;
  padding: 0 0 1.5rem 4rem;
}
.budgets-title--decoration:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #707070;
  opacity: 0.3;
}
.budgets-userinfonew-title {
  background: #0087E9;
  padding: 1.5rem 3rem 1.5rem 4rem;
  border-radius: 1rem;
}
.budgets-userinfonew-title--bluelight {
  background: #BFE2FC;
}
.budgets-userinfonew-title--bluelighttwo {
  background: #E0EFFB;
}
.budgets-userinfonew-box {
  padding: 2rem 0 4rem 0;
  overflow-x: hidden;
}
.budgets-userinfo-title {
  background: #A805A3;
  color: #fff;
  padding: 1.5rem 3rem;
}
.budgets-userinfo-title-text {
  position: relative;
  font-weight: 700;
  padding: 0 0 0 3rem;
  font-size: 1.8rem;
}
.budgets-userinfo-title-text:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  -webkit-mask: url('/assets/img/ico/user.svg') no-repeat;
  mask: url('/assets/img/ico/user.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.budgets-userinfo-title-text--offer:before {
  -webkit-mask: url('/assets/img/ico/offers.svg') no-repeat;
  mask: url('/assets/img/ico/offers.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.budgets-userinfo-title-static {
  color: #fff;
  padding: 1.5rem 3rem;
  background: #0087E9;
}
.budgets-userinfo-seemore {
  position: relative;
  padding: 0 2.5rem 0 0;
  cursor: pointer;
  min-width: 80px;
  text-align: right;
}
.budgets-userinfo-seemore:before {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(180deg);
  width: 1.6rem;
  height: 1.6rem;
  background: #0087E9;
  -webkit-mask: url('/assets/img/ico/arrow-seemore.svg') no-repeat;
  mask: url('/assets/img/ico/arrow-seemore.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
.budgets-userinfo-seemore--active:before {
  transform: translate(0, -50%);
}
.budgets-userinfo-seemore--white:before {
  background: #fff;
}
.budgets-userinfo-seemore-text {
  color: #0087E9;
}
.budgets-userinfo-seemore-text--white {
  color: #fff;
}
.budgets-commission-progressbar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #0087E9;
  border-radius: 0.8rem;
}
.budgets-commission-progressbar-container {
  position: relative;
  background: #F9F9F9;
  height: 1.6rem;
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
  border: solid 1px #F1F1F1;
}
.budgets-setamount {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  border: solid 0.3rem #0087E9;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.budgets-setamount:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #0087E9;
  transition: 0.3s;
}
.budgets-setamount--decrease:before {
  -webkit-mask: url('/assets/img/ico/minus-simple.svg') no-repeat;
  mask: url('/assets/img/ico/minus-simple.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.budgets-setamount--increase:before {
  -webkit-mask: url('/assets/img/ico/plus-simple.svg') no-repeat;
  mask: url('/assets/img/ico/plus-simple.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.budgets-setamount:hover {
  background: #0087E9;
  transition: 0.3s;
}
.budgets-setamount:hover:before {
  background: #fff;
  transition: 0.3s;
}
.status-label {
  display: inline-block;
  font-size: 1.4rem;
  padding: 0.5rem 3rem;
  width: 17rem;
  text-align: center;
  border-radius: 0.8rem;
  font-weight: 500;
}
.status-label--w100 {
  width: 100%;
}
.status-label--conference__s1 {
  background: rgba(84, 160, 254, 0.15);
  color: #54A0FE;
}
.status-label--conference__s2 {
  background: rgba(47, 203, 130, 0.15);
  color: #2FCB82;
}
.status-label--conference__s3 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--vacation__s1 {
  background: rgba(84, 160, 254, 0.15);
  color: #54A0FE;
}
.status-label--vacation__s2 {
  background: rgba(47, 203, 130, 0.15);
  color: #2FCB82;
}
.status-label--vacation__s3 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--vacation__s4 {
  background: rgba(243, 156, 17, 0.15);
  color: #F39C11;
}
.status-label--vacation__s5 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--vacation__s6 {
  background: rgba(179, 56, 113, 0.15);
  color: #B33871;
}
.status-label--offer__s1 {
  background: rgba(84, 160, 254, 0.15);
  color: #54A0FE;
}
.status-label--offer__s2 {
  background: rgba(243, 156, 17, 0.15);
  color: #F39C11;
}
.status-label--offer__s3 {
  background: rgba(243, 156, 17, 0.15);
  color: #F39C11;
}
.status-label--offer__s4 {
  background: rgba(243, 156, 17, 0.15);
  color: #F39C11;
}
.status-label--offer__s5 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--offer__s6 {
  background: rgba(47, 203, 130, 0.15);
  color: #2FCB82;
}
.status-label--offer__s7 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--offer__s8 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--offer__s9 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--offer__s10 {
  background: rgba(243, 156, 17, 0.15);
  color: #F39C11;
}
.status-label--event__s1 {
  background: rgba(84, 160, 254, 0.15);
  color: #54A0FE;
}
.status-label--event__s2 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--event__s3 {
  background: rgba(84, 160, 254, 0.15);
  color: #54A0FE;
}
.status-label--event__s4 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--event__s5 {
  background: rgba(84, 160, 254, 0.15);
  color: #54A0FE;
}
.status-label--event__s6 {
  background: rgba(47, 203, 130, 0.15);
  color: #2FCB82;
}
.status-label--event__s7 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--event__s8 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.status-label--event__s9 {
  background: rgba(47, 203, 130, 0.15);
  color: #2FCB82;
}
.status-label--event__s10 {
  background: rgba(232, 76, 61, 0.15);
  color: #E84C3D;
}
.filtration-prefix label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #0087E9;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  color: #fff;
  padding: 1.1rem 1rem;
}
.filtration-prefix input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 1.1rem 1.5rem;
  min-height: 4rem;
  height: 100%;
}
.notifybox {
  position: relative;
  color: #5A5A5A;
  padding: 1.3rem 2.5rem 1.3rem 5.5rem;
  background: rgba(0, 135, 233, 0.1);
  border-radius: 0.8rem;
}
.notifybox:before {
  position: absolute;
  content: '';
  left: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.2rem;
}
.notifybox--warning:before {
  aspect-ratio: 22/19;
  background: #FF8000;
  -webkit-mask: url('/assets/img/ico/warning-two.svg') no-repeat;
  mask: url('/assets/img/ico/warning-two.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.offers-darktitle {
  padding: 2rem;
  font-weight: 500;
  background: #303030;
  color: #fff;
}
.questionnaire-question {
  margin: 0;
  padding: 1.5rem 4rem;
  font-weight: 700;
  font-size: 1.8rem;
}
.questionnaire-question-box {
  padding: 1.5rem 0;
  background: #F9F9F9;
  border-radius: 1.9rem;
}
.questionnaire-question-box--padbig {
  padding: 3rem 4rem;
}
.questionnaire-question-answers-box {
  padding: 6.5rem 4rem 2.5rem 4rem;
}
.questionnaire-question-answers-container {
  position: relative;
  width: 100%;
  padding: 0 4rem;
}
.questionnaire-question-answers-container:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #707070;
}
.questionnaire-radioinput {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 2;
}
.questionnaire-radioinput input,
.questionnaire-radioinput .questionnaire-radioinput {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 5.6rem;
  max-width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.questionnaire-radioinput input {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.questionnaire-radioinput input:checked + .questionnaire-radioinput-label {
  color: #fff;
  background: #0087E9;
  transition: 0.3s;
}
.questionnaire-radioinput-label {
  display: flex !important;
  margin: 0 !important;
  justify-content: center;
  align-items: center;
  width: 5.6rem;
  max-width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  cursor: pointer;
  color: #000;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 50%;
  border: solid 1px #707070;
  transition: 0.3s;
}
.questionnaire-report-container {
  padding: 1.5rem 2rem 3.5rem 2rem;
}
.questionnaire-report-box {
  padding: 3rem 2rem;
  border-radius: 1.9rem;
  background: #fff;
}
.questionnaire-report-box--smallpad {
  padding: 0 2rem;
}
.questionnaire-report-progressbar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #0087E9;
  border-radius: 0.8rem;
}
.questionnaire-report-progressbar-container {
  position: relative;
  background: #F9F9F9;
  height: 1.6rem;
  width: 100%;
  border-radius: 0.8rem;
  border: solid 1px #F1F1F1;
}
.questionnaire-report-numbercontainer {
  width: 10px;
}
.questionnaire-report-percentage {
  position: relative;
  margin: 0;
  color: #0087E9;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.6rem 0 0.6rem 1.5rem;
}
.questionnaire-report-percentage:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 1px;
  height: 200%;
  background: #e7e7e7;
}
.questionnaire-report-overallrating {
  font-size: 6.4rem;
  font-weight: 700;
  text-align: center;
}
.questionnaire-report-otheranswer {
  position: relative;
  padding: 2rem 3.5rem 2rem 2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.questionnaire-report-otheranswer p {
  margin: 0;
}
.questionnaire-report-otheranswer:not(:last-child) {
  border-bottom: solid 1px #DFDFDF;
}
.questionnaire-report-otheranswer-icon {
  position: absolute;
  right: 1rem;
  top: 2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: solid 2px #0087E9;
  cursor: pointer;
  transition: 0.3s;
}
.questionnaire-report-otheranswer-icon:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  aspect-ratio: 1/4;
  background: #0087E9;
  -webkit-mask: url('/assets/img/ico/info-single.svg') no-repeat;
  mask: url('/assets/img/ico/info-single.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
.questionnaire-report-otheranswer-icon:hover {
  background: #0087E9;
  transition: 0.3s;
}
.questionnaire-report-otheranswer-icon:hover:after {
  background: #fff;
  transition: 0.3s;
}
.reports-box {
  padding: 2.5rem 0;
}
.reports-box--border {
  position: relative;
}
.reports-box--border:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 135, 233, 0.2);
}
.event-changedoctor {
  position: relative;
  display: inline-block;
  padding: 0 2.5rem 0 0;
}
.event-changedoctor:after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1.8rem;
  aspect-ratio: 6/5;
  background: #FFA303;
  -webkit-mask: url('/assets/img/ico/change-doctor.svg') no-repeat;
  mask: url('/assets/img/ico/change-doctor.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.hidden-csv-link {
  position: relative;
  display: block;
  opacity: 0;
  z-index: -1;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-moz-keyframes zoomOut {
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomOut {
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-moz-keyframes slidingBg {
  to {
    left: -100%;
  }
}
@-webkit-keyframes slidingBg {
  to {
    left: -100%;
  }
}
@keyframes slidingBg {
  to {
    left: -100%;
  }
}
.anim,
.manula-anim {
  -webkit-transition: all 1.6s 0.2s cubic-bezier(0.22, 0.72, 0.58, 1);
  transition: all 1.6s 0.2s cubic-bezier(0.22, 0.72, 0.58, 1);
}
.anim.fade-in,
.manula-anim.fade-in {
  opacity: 0;
}
.anim.slide-left,
.manula-anim.slide-left {
  -webkit-transform: translateX(5rem);
  transform: translateX(5rem);
}
.anim.slide-right,
.manula-anim.slide-right {
  -webkit-transform: translateX(-5rem);
  transform: translateX(-5rem);
}
.anim.slide-up,
.manula-anim.slide-up {
  -webkit-transform: translateY(5rem);
  transform: translateY(5rem);
}
.anim.slide-down,
.manula-anim.slide-down {
  -webkit-transform: translateY(-5rem);
  transform: translateY(-5rem);
}
.anim.done.fade-in,
.manula-anim.done.fade-in {
  opacity: 1;
}
.anim.done.slide-left,
.manula-anim.done.slide-left,
.anim.done.slide-right,
.manula-anim.done.slide-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.anim.done.slide-up,
.manula-anim.done.slide-up,
.anim.done.slide-down,
.manula-anim.done.slide-down {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.slick-current .manula-anim.fade-in {
  opacity: 1;
}
.slick-current .manula-anim.slide-left,
.slick-current .manula-anim.slide-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.slick-current .manula-anim.slide-up,
.slick-current .manula-anim.slide-down {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.anim.delay-0-10,
.manula-anim.delay-0-10 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.anim.delay-0-20,
.manula-anim.delay-0-20 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.anim.delay-0-30,
.manula-anim.delay-0-30 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.anim.delay-0-40,
.manula-anim.delay-0-40 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.anim.delay-0-50,
.manula-anim.delay-0-50 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.anim.delay-0-60,
.manula-anim.delay-0-60 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.anim.delay-0-70,
.manula-anim.delay-0-70 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.anim.delay-0-25,
.manula-anim.delay-0-25 {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.anim.delay-0-5,
.manula-anim.delay-0-5 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.anim.delay-0-75,
.manula-anim.delay-0-75 {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.anim.delay-1,
.manula-anim.delay-1 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.anim.delay-1-25,
.manula-anim.delay-1-25 {
  -webkit-transition-delay: 1.25s;
  transition-delay: 1.25s;
}
.anim.delay-1-5,
.manula-anim.delay-1-5 {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.anim.delay-1-75,
.manula-anim.delay-1-75 {
  -webkit-transition-delay: 1.75s;
  transition-delay: 1.75s;
}
.anim.delay-2,
.manula-anim.delay-2 {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.anim.delay-2-5,
.manula-anim.delay-2-5 {
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
}
.anim.delay-3,
.manula-anim.delay-3 {
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}
@keyframes bubbles {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -50%);
  }
  0% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes bubbles {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -50%);
  }
  0% {
    transform: translate(0, 0);
  }
}
@keyframes appendAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes appendAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translate(-25%, 0);
  }
  50% {
    transform: translate(-25%, 25%);
  }
  100% {
    transform: translate(-25%, 0);
  }
}
@keyframes scroll {
  0% {
    transform: translate(-25%, 0);
  }
  50% {
    transform: translate(-25%, 25%);
  }
  100% {
    transform: translate(-25%, 0);
  }
}
@keyframes cloud {
  0% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
  0% {
    transform: translate(0%, 0);
  }
}
@-webkit-keyframes cloud {
  0% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
  0% {
    transform: translate(0%, 0);
  }
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%,
  100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes screenRotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(35deg);
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes funFactArrow {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 2rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes funFactArrow {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 2rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
input,
textarea,
select {
  background: #fff;
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.8rem;
  border: solid 1px #DCDCDC;
  font-size: 16px;
  color: #000;
  outline: 0;
  resize: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(49, 33, 51, 0.4);
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
  color: rgba(49, 33, 51, 0.4);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(49, 33, 51, 0.4);
}
input[disabled],
textarea[disabled],
select[disabled] {
  opacity: 0.5;
  cursor: inherit;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-container {
  position: relative;
  padding: 0 3.5rem 0 0;
  border-radius: 0.8rem;
  border: solid 1px #DCDCDC;
  background: #fff;
}
.input-container:before {
  position: absolute;
  content: '';
  right: 3.5rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 1.7rem;
  background: #DCDCDC;
}
.input-container input {
  border: unset;
}
.input-container--cost:after {
  position: absolute;
  content: 'zł';
  right: 0;
  top: 50%;
  width: 3.5rem;
  height: 100%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #898989;
  font-size: 1.4rem;
}
.input-container--percent:after {
  position: absolute;
  content: '%';
  right: 0;
  top: 50%;
  width: 3.5rem;
  height: 100%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #898989;
  font-size: 1.4rem;
}
.error {
  background: #e74c3c;
  color: #fff;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  display: none;
}
.form-row {
  margin-bottom: 2.5rem;
}
.form-row-disabled {
  opacity: 0.5;
}
.form-row.mab-0 {
  margin-bottom: 0;
}
.form-row label {
  display: block;
  margin-bottom: 0.5rem;
}
.form-error {
  background: #e74c3c;
  color: #fff;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}
.form-error.hide {
  display: none;
}
.checkbox {
  position: relative;
  min-width: 2rem;
  min-height: 2rem;
}
.checkbox input,
.checkbox .checkbox-content {
  position: absolute;
  left: 0;
  top: -2px;
  width: 2rem;
  height: 2rem;
}
.checkbox input {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox input[disabled] {
  cursor: inherit !important;
}
.checkbox input[disabled] ~ div {
  opacity: 0.5;
  cursor: inherit !important;
}
.checkbox input[disabled] ~ label {
  opacity: 0.5;
  cursor: inherit;
}
.checkbox input[disabled].full-opacity ~ div {
  opacity: 1;
}
.checkbox input[disabled].full-opacity ~ label {
  opacity: 1;
}
.checkbox-content {
  border: 1px solid #0087E9;
  background: bottom no-repeat;
  border-radius: 3px;
  transition: 0.5s;
}
.checkbox-content:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border: 0px solid #0087E9;
  transition: 0.3s;
}
.checkbox input:checked + .checkbox-content:after {
  width: 12px;
  height: 12px;
  background: #0087E9;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .checkbox input:checked + .checkbox-content:after {
    width: 10px;
    height: 10px;
  }
}
.checkbox input:checked + .checkbox-content:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: animatecheck 0.8s ease-out;
  animation: animatecheck 0.8s ease-out;
  background-color: rgba(0, 135, 233, 0.25);
}
.checkbox-label {
  padding-left: 4rem;
  display: block;
  cursor: pointer;
  color: #000;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.checkbox-middle input,
.checkbox-middle .checkbox-content {
  top: 50%;
  transform: translate(0, -50%);
}
.checkbox-radio .checkbox-content {
  border-radius: 50%;
}
.checkbox-radio .checkbox-content:after {
  border-radius: 50%;
}
.checkbox-radio input {
  margin-bottom: 0;
}
@keyframes animatecheck {
  0% {
    width: 200%;
    height: 200%;
    opacity: 1;
  }
  to {
    width: 400%;
    height: 400%;
    opacity: 0;
  }
}
.flash-message {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  border-radius: 0.5rem;
  padding: 2rem 2rem 2rem 6.5rem;
  z-index: 99;
  animation: appendAnimation 0.3s ease-in-out;
  -webkit-animation: appendAnimation 0.3s ease-in-out;
}
.flash-message:before {
  position: absolute;
  content: '';
  left: 5.5rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.1rem;
  height: 50%;
  background: #fff;
}
.flash-message:after {
  position: absolute;
  content: '';
  left: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.5rem;
  height: 3.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.flash-message.flash-error {
  background: #e74c3c;
}
.flash-message.flash-error:after {
  background-image: url('/assets/img/ico/error.svg');
}
.flash-message.flash-warning {
  background: #f39c12;
}
.flash-message.flash-warning:after {
  background-image: url('/assets/img/ico/warning.svg');
}
.flash-message.flash-success {
  background: #27ae60;
}
.flash-message.flash-success:after {
  background-image: url('/assets/img/ico/success.svg');
}
.static-error {
  position: relative;
  padding: 1rem;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
  animation: appendAnimation 0.3s ease-in-out;
  -webkit-animation: appendAnimation 0.3s ease-in-out;
}
.static--error {
  border: solid 1px #e74c3c;
  background: rgba(231, 76, 60, 0.2);
}
.static--warning {
  border: solid 1px #f39c12;
  background: rgba(243, 156, 18, 0.2);
}
.static--success {
  border: solid 1px #27ae60;
  background: rgba(39, 174, 96, 0.2);
}
.custom-select-label {
  background: #fff;
  width: 100%;
  font-size: 16px;
  padding: 1.5rem;
  border-radius: 0.8rem;
  border: solid 1px #DCDCDC;
  color: rgba(48, 48, 48, 0.4);
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-select-label.used {
  color: #303030;
}
.custom-select-label:after {
  position: absolute;
  content: '';
  right: 1.3rem;
  top: 50%;
  width: 14px;
  height: 9px;
  transform: translate(0, -50%);
  background: #898989;
  -webkit-mask: url('/assets/img/ico/arrow-custom-select.svg') no-repeat;
  mask: url('/assets/img/ico/arrow-custom-select.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s;
}
.custom-select-label.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-select-label.active:after {
  transform: translate(0, -50%) rotate(180deg);
  transition: 0.3s;
}
.custom-select-option {
  padding: 1rem 2.7rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
}
.custom-select-option:not(:last-child) {
  position: relative;
}
.custom-select-option:not(:last-child):after {
  position: absolute;
  content: '';
  left: 2rem;
  bottom: 0;
  width: 11rem;
  height: 0.1rem;
  max-width: calc(100% - 4rem);
  background: rgba(248, 248, 248, 0.21);
  transition: 0.3s;
}
.custom-select-option:hover {
  background: #0087E9;
  color: #fff;
  transition: 0.3s;
}
.custom-select-option:hover .text-primary {
  color: #fff;
  transition: 0.3s;
}
.custom-select-option:hover .text-orange-three {
  color: #fff;
  transition: 0.3s;
}
.custom-select-option:hover:after {
  background: #0087E9;
  transition: 0.3s;
}
.custom-select-option-container {
  position: absolute;
  top: -1px;
  max-height: 22rem;
  overflow-y: auto;
  border-right: solid 1px #DCDCDC;
  border-left: solid 1px #DCDCDC;
  border-bottom: solid 1px #DCDCDC;
  border-bottom-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  width: 100%;
  background: #fff;
  z-index: 100;
  display: none;
}
.custom-select-option-search {
  padding: 0 1.5rem;
  background: #e5e5e5;
}
.custom-select-option-search-input {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}
.custom-select-option-search-input:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #303030;
  -webkit-mask: url('/assets/img/ico/search.svg') no-repeat;
  mask: url('/assets/img/ico/search.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.custom-select-option-search-input input {
  background: none;
  padding: 1rem 0;
  border-radius: 0;
  border: 0;
  width: calc(100% - 3.5rem);
  box-shadow: unset;
}
.custom-select-option-search-empty {
  display: none;
  font-size: 1.4rem;
  text-align: center;
}
.custom-select-relative {
  position: relative;
}
.custom-select.checkbox-list {
  height: 100%;
  min-height: 4rem;
  min-width: 25rem;
  max-width: 100%;
}
.custom-select.checkbox-list .custom-select-label {
  padding: 0.9rem 10rem 0.9rem 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.custom-select.checkbox-list .custom-select-label:before {
  width: 3.8rem;
}
.custom-select.checkbox-list .custom-select-label:after {
  right: 1.1rem;
}
.custom-select.checkbox-list .custom-select-label-amount {
  position: absolute;
  right: 5rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  background: #0087E9;
  border-radius: 1.5rem;
  padding: 0.4rem 0.8rem;
  display: none;
}
.custom-select.checkbox-list .custom-select-option-container .checkbox:not(:last-child) {
  margin-bottom: 2rem;
}
.custom-select.checkbox-list .custom-select-option-overflow {
  padding: 2rem 1.5rem;
  overflow: hidden;
}
.custom-select.checkbox-list .custom-select-option-overflow--search-pad {
  padding: 2rem 1.5rem 0 1.5rem;
}
.company-fields {
  display: none;
}
.company-fields.show {
  display: block;
}
.status-field {
  display: none;
}
.status-field.show {
  display: block;
}
.other-address-fields {
  display: none;
}
.other-address-fields.show {
  display: block;
}
.hide-for-company {
  display: none;
}
.hide-for-company.show {
  display: block;
}
.textarea-limit {
  display: block;
  font-size: 1.4rem;
}
.textarea-count-container.limit {
  color: #e74c3c;
  font-weight: 700;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  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;
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 3.5rem;
  list-style: none;
  text-align: left;
  margin: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 1.5rem !important;
  height: 1.5rem !important;
  padding: 0;
  background: none;
  border: solid 0.1rem #fff;
  border-radius: 100%;
  text-indent: -9999px;
  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.slick-active button {
  background: #fff;
}
@media only screen and (max-width: 1259px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-height: 768px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (max-width: 1699px) {
  .home-event-score {
    font-size: 5rem;
  }
  .home-event-title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1599px) {
  .home-event-box p {
    font-size: 2rem;
  }
  .home-budget-box {
    padding: 4rem 3rem;
  }
  .home-budget-box-text {
    font-size: 2rem;
  }
  .home-budget-box-bigtext {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1399px) {
  .home-budget-box-ico {
    margin-bottom: 2rem;
  }
  .main-content-container {
    padding: 0 2.5rem;
  }
  .table-main thead th {
    padding: 1.5rem 0.6rem;
  }
  .table-main tbody td {
    padding: 1.5rem 0.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main-content-container-col {
    transition: 0.3s;
    max-width: calc(100% - 260px) !important;
  }
  .main-content-container-col--hidedesktop {
    max-width: calc(100% - 80px) !important;
  }
  .navbar--hidedesktop {
    width: 80px;
    transition: 0.3s;
  }
  .navbar--hidedesktop .navbar-menu li a:before {
    left: 1.4rem;
  }
  .navbar--hidedesktop .navbar-menu li a span {
    opacity: 0;
    transition: 0.3s;
  }
  .navbar--hidedesktop .navbar-arrow:after {
    transform: translate(-50%, -50%);
  }
  .hidedesktop .overlay {
    left: 80px;
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 1199px) {
  .home-event-box--afterdisable-rwd:after {
    display: none;
  }
  .mab-to-xl-2 {
    margin-bottom: 2rem;
  }
  .text-center-to-xl {
    text-align: center;
  }
  .questionnaire-question-answers-container {
    padding: 0 1.5rem;
  }
  body {
    padding-top: 90px;
  }
  .navbar {
    position: fixed;
    overflow-y: auto;
    left: -100%;
    top: 90px;
    padding: 6rem 0 4rem 2rem;
    z-index: 999;
    box-shadow: unset;
    background: #0087e9;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: unset;
    transition: 0.3s;
  }
  .navbar::-webkit-scrollbar-thumb {
    background: #0266AF;
  }
  .navbar-menu {
    margin: 0;
  }
  .navbar.active {
    left: 0;
  }
  .navbar.active .navbar-menu li a {
    color: #fff;
  }
  .navbar.active .navbar-menu li a:before {
    background: #fff;
  }
  .navbar.active .navbar-menu li a:after {
    border-radius: 1rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: calc(100% + 1rem);
    width: 100%;
    background: #0266AF;
  }
  .navbar-container {
    width: 100%;
  }
  .navbar-hamburger {
    display: block;
  }
  .navbar-logo {
    display: inline-block;
  }
  .navbar-logo img {
    width: 140px;
    margin: unset;
  }
  .navbar-logo-container {
    display: none;
  }
  .navbar-title {
    display: block;
  }
  .main-content-container {
    padding: 0;
  }
  .overlay {
    left: 0;
    width: 100%;
  }
  .header-section-rwd {
    display: flex;
    justify-content: start;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .home-event-box--date {
    padding: 2rem 0 0 0;
  }
  .home-event-box--date:after {
    left: 50%;
    right: unset;
    top: 0;
    transform: translate(-50%, 0);
    width: 7rem;
    height: 1px;
  }
  .mab-to-md-05 {
    margin-bottom: 0.5rem;
  }
  .mab-to-md-2 {
    margin-bottom: 2rem;
  }
  .mab-to-md-25 {
    margin-bottom: 2.5rem;
  }
  .mat-to-md-2 {
    margin-top: 2rem;
  }
  .calendar-width {
    min-width: unset;
  }
  .calendar-width-container {
    overflow-x: unset;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 576px) {
  .pad-from-sm-left-4 {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 575px) {
  .mab-to-sm-2 {
    margin-bottom: 2rem;
  }
  .mab-to-sm-25 {
    margin-bottom: 2.5rem;
  }
  .page-header {
    margin: -2rem 0 5rem 0;
  }
  .title {
    font-size: 2rem;
  }
  .title-big {
    font-size: 2.6rem;
  }
  .title-small {
    font-size: 1.8rem;
  }
  .w-100-to-sm {
    width: 100%;
  }
  .text-center-to-sm {
    text-align: center;
  }
  .budgets-userinfo-title-static {
    padding: 2rem 3rem;
  }
  .questionnaire-question-answers-container {
    padding: 0;
  }
  .home-budget-box-details {
    align-items: center;
    justify-content: center;
  }
  .home-budget-box-details-border {
    margin-bottom: 2rem;
  }
  .home-budget-box-details-border:after {
    right: unset;
    left: 50%;
    top: unset;
    bottom: -1rem;
    transform: translate(-50%, 0);
    width: 8rem;
    height: 1px;
  }
}
