.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 90%;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}



.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 400px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}
.daterangepicker .drp-calendar:hover {
  box-shadow: 2px 2px 6px #ced4da;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, 
.daterangepicker .calendar-table td {
  text-align: center;
  vertical-align: top;
  min-width: 32px;
  width: 60px;
  height: 45px;
  line-height: 9px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
}

.daterangepicker .calendar-table th {
  height: 30px;
}

.daterangepicker .calendar-table thead tr:last-child th {
  background: linear-gradient(145deg, #fff, #efefef);
  border-radius: 0;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #f8f8f8;
  border-color: transparent;
  color: #000;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #ed1071;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 140px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .drp-calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .drp-calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .drp-calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .drp-calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .drp-calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .drp-calendar.right {
        margin-left: 0;
        border-left: 2px solid #ddd; }
        .daterangepicker.ltr .drp-calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .drp-calendar.left .calendar-table {
        padding-right: 8px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .drp-calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .drp-calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .drp-calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .drp-calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .drp-calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .drp-calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .drp-calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .drp-calendar.left {
    clear: none !important; } }
/*! jQuery UI - v1.12.1 - 2020-01-16
* http://jqueryui.com
* Includes: core.css, slider.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=.urbo-slider&folderName=.urbo-slider&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.urbo-slider .ui-helper-hidden{display:none}.urbo-slider .ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.urbo-slider .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.urbo-slider .ui-helper-clearfix:before,.urbo-slider .ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.urbo-slider .ui-helper-clearfix:after{clear:both}.urbo-slider .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.urbo-slider .ui-front{z-index:100}.urbo-slider .ui-state-disabled{cursor:default!important;pointer-events:none}.urbo-slider .ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.urbo-slider .ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.urbo-slider .ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.urbo-slider .ui-slider{position:relative;text-align:left}.urbo-slider .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;touch-action:none}.urbo-slider .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.urbo-slider .ui-slider.ui-state-disabled .ui-slider-handle,.urbo-slider .ui-slider.ui-state-disabled .ui-slider-range{-webkit-filter:inherit;filter:inherit}.urbo-slider .ui-slider-horizontal{height:.8em}.urbo-slider .ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.urbo-slider .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.urbo-slider .ui-slider-horizontal .ui-slider-range-min{left:0}.urbo-slider .ui-slider-horizontal .ui-slider-range-max{right:0}.urbo-slider .ui-slider-vertical{width:.8em;height:100px}.urbo-slider .ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.urbo-slider .ui-slider-vertical .ui-slider-range{left:0;width:100%}.urbo-slider .ui-slider-vertical .ui-slider-range-min{bottom:0}.urbo-slider .ui-slider-vertical .ui-slider-range-max{top:0}.urbo-slider .ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.urbo-slider .ui-widget .ui-widget{font-size:1em}.urbo-slider .ui-widget input,.urbo-slider .ui-widget select,.urbo-slider .ui-widget textarea,.urbo-slider .ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.urbo-slider .ui-widget.ui-widget-content{border:1px solid #c5c5c5}.urbo-slider .ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.urbo-slider .ui-widget-content a{color:#333}.urbo-slider .ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.urbo-slider .ui-widget-header a{color:#333}.urbo-slider .ui-state-default,.urbo-slider .ui-widget-content .ui-state-default,.urbo-slider .ui-widget-header .ui-state-default,.urbo-slider .ui-button,html .urbo-slider .ui-button.ui-state-disabled:hover,html .urbo-slider .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.urbo-slider .ui-state-default a,.urbo-slider .ui-state-default a:link,.urbo-slider .ui-state-default a:visited,a.urbo-slider .ui-button,a:link.urbo-slider .ui-button,a:visited.urbo-slider .ui-button,.urbo-slider .ui-button{color:#454545;text-decoration:none}.urbo-slider .ui-state-hover,.urbo-slider .ui-widget-content .ui-state-hover,.urbo-slider .ui-widget-header .ui-state-hover,.urbo-slider .ui-state-focus,.urbo-slider .ui-widget-content .ui-state-focus,.urbo-slider .ui-widget-header .ui-state-focus,.urbo-slider .ui-button:hover,.urbo-slider .ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.urbo-slider .ui-state-hover a,.urbo-slider .ui-state-hover a:hover,.urbo-slider .ui-state-hover a:link,.urbo-slider .ui-state-hover a:visited,.urbo-slider .ui-state-focus a,.urbo-slider .ui-state-focus a:hover,.urbo-slider .ui-state-focus a:link,.urbo-slider .ui-state-focus a:visited,a.urbo-slider .ui-button:hover,a.urbo-slider .ui-button:focus{color:#2b2b2b;text-decoration:none}.urbo-slider .ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.urbo-slider .ui-state-active,.urbo-slider .ui-widget-content .ui-state-active,.urbo-slider .ui-widget-header .ui-state-active,a.urbo-slider .ui-button:active,.urbo-slider .ui-button:active,.urbo-slider .ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.urbo-slider .ui-icon-background,.urbo-slider .ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.urbo-slider .ui-state-active a,.urbo-slider .ui-state-active a:link,.urbo-slider .ui-state-active a:visited{color:#fff;text-decoration:none}.urbo-slider .ui-state-highlight,.urbo-slider .ui-widget-content .ui-state-highlight,.urbo-slider .ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.urbo-slider .ui-state-checked{border:1px solid #dad55e;background:#fffa90}.urbo-slider .ui-state-highlight a,.urbo-slider .ui-widget-content .ui-state-highlight a,.urbo-slider .ui-widget-header .ui-state-highlight a{color:#777620}.urbo-slider .ui-state-error,.urbo-slider .ui-widget-content .ui-state-error,.urbo-slider .ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.urbo-slider .ui-state-error a,.urbo-slider .ui-widget-content .ui-state-error a,.urbo-slider .ui-widget-header .ui-state-error a{color:#5f3f3f}.urbo-slider .ui-state-error-text,.urbo-slider .ui-widget-content .ui-state-error-text,.urbo-slider .ui-widget-header .ui-state-error-text{color:#5f3f3f}.urbo-slider .ui-priority-primary,.urbo-slider .ui-widget-content .ui-priority-primary,.urbo-slider .ui-widget-header .ui-priority-primary{font-weight:bold}.urbo-slider .ui-priority-secondary,.urbo-slider .ui-widget-content .ui-priority-secondary,.urbo-slider .ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.urbo-slider .ui-state-disabled,.urbo-slider .ui-widget-content .ui-state-disabled,.urbo-slider .ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.urbo-slider .ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.urbo-slider .ui-icon{width:16px;height:16px}.urbo-slider .ui-icon,.urbo-slider .ui-widget-content .ui-icon{background-image:url("/images/ui/ui-icons_444444_256x240.png")}.urbo-slider .ui-widget-header .ui-icon{background-image:url("/images/ui/ui-icons_444444_256x240.png")}.urbo-slider .ui-state-hover .ui-icon,.urbo-slider .ui-state-focus .ui-icon,.urbo-slider .ui-button:hover .ui-icon,.urbo-slider .ui-button:focus .ui-icon{background-image:url("/images/ui/ui-icons_555555_256x240.png")}.urbo-slider .ui-state-active .ui-icon,.urbo-slider .ui-button:active .ui-icon{background-image:url("/images/ui/ui-icons_ffffff_256x240.png")}.urbo-slider .ui-state-highlight .ui-icon,.urbo-slider .ui-button .ui-state-highlight.ui-icon{background-image:url("/images/ui/ui-icons_777620_256x240.png")}.urbo-slider .ui-state-error .ui-icon,.urbo-slider .ui-state-error-text .ui-icon{background-image:url("/images/ui/ui-icons_cc0000_256x240.png")}.urbo-slider .ui-button .ui-icon{background-image:url("/images/ui/ui-icons_777777_256x240.png")}.urbo-slider .ui-icon-blank{background-position:16px 16px}.urbo-slider .ui-icon-caret-1-n{background-position:0 0}.urbo-slider .ui-icon-caret-1-ne{background-position:-16px 0}.urbo-slider .ui-icon-caret-1-e{background-position:-32px 0}.urbo-slider .ui-icon-caret-1-se{background-position:-48px 0}.urbo-slider .ui-icon-caret-1-s{background-position:-65px 0}.urbo-slider .ui-icon-caret-1-sw{background-position:-80px 0}.urbo-slider .ui-icon-caret-1-w{background-position:-96px 0}.urbo-slider .ui-icon-caret-1-nw{background-position:-112px 0}.urbo-slider .ui-icon-caret-2-n-s{background-position:-128px 0}.urbo-slider .ui-icon-caret-2-e-w{background-position:-144px 0}.urbo-slider .ui-icon-triangle-1-n{background-position:0 -16px}.urbo-slider .ui-icon-triangle-1-ne{background-position:-16px -16px}.urbo-slider .ui-icon-triangle-1-e{background-position:-32px -16px}.urbo-slider .ui-icon-triangle-1-se{background-position:-48px -16px}.urbo-slider .ui-icon-triangle-1-s{background-position:-65px -16px}.urbo-slider .ui-icon-triangle-1-sw{background-position:-80px -16px}.urbo-slider .ui-icon-triangle-1-w{background-position:-96px -16px}.urbo-slider .ui-icon-triangle-1-nw{background-position:-112px -16px}.urbo-slider .ui-icon-triangle-2-n-s{background-position:-128px -16px}.urbo-slider .ui-icon-triangle-2-e-w{background-position:-144px -16px}.urbo-slider .ui-icon-arrow-1-n{background-position:0 -32px}.urbo-slider .ui-icon-arrow-1-ne{background-position:-16px -32px}.urbo-slider .ui-icon-arrow-1-e{background-position:-32px -32px}.urbo-slider .ui-icon-arrow-1-se{background-position:-48px -32px}.urbo-slider .ui-icon-arrow-1-s{background-position:-65px -32px}.urbo-slider .ui-icon-arrow-1-sw{background-position:-80px -32px}.urbo-slider .ui-icon-arrow-1-w{background-position:-96px -32px}.urbo-slider .ui-icon-arrow-1-nw{background-position:-112px -32px}.urbo-slider .ui-icon-arrow-2-n-s{background-position:-128px -32px}.urbo-slider .ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.urbo-slider .ui-icon-arrow-2-e-w{background-position:-160px -32px}.urbo-slider .ui-icon-arrow-2-se-nw{background-position:-176px -32px}.urbo-slider .ui-icon-arrowstop-1-n{background-position:-192px -32px}.urbo-slider .ui-icon-arrowstop-1-e{background-position:-208px -32px}.urbo-slider .ui-icon-arrowstop-1-s{background-position:-224px -32px}.urbo-slider .ui-icon-arrowstop-1-w{background-position:-240px -32px}.urbo-slider .ui-icon-arrowthick-1-n{background-position:1px -48px}.urbo-slider .ui-icon-arrowthick-1-ne{background-position:-16px -48px}.urbo-slider .ui-icon-arrowthick-1-e{background-position:-32px -48px}.urbo-slider .ui-icon-arrowthick-1-se{background-position:-48px -48px}.urbo-slider .ui-icon-arrowthick-1-s{background-position:-64px -48px}.urbo-slider .ui-icon-arrowthick-1-sw{background-position:-80px -48px}.urbo-slider .ui-icon-arrowthick-1-w{background-position:-96px -48px}.urbo-slider .ui-icon-arrowthick-1-nw{background-position:-112px -48px}.urbo-slider .ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.urbo-slider .ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.urbo-slider .ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.urbo-slider .ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.urbo-slider .ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.urbo-slider .ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.urbo-slider .ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.urbo-slider .ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.urbo-slider .ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.urbo-slider .ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.urbo-slider .ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.urbo-slider .ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.urbo-slider .ui-icon-arrowreturn-1-w{background-position:-64px -64px}.urbo-slider .ui-icon-arrowreturn-1-n{background-position:-80px -64px}.urbo-slider .ui-icon-arrowreturn-1-e{background-position:-96px -64px}.urbo-slider .ui-icon-arrowreturn-1-s{background-position:-112px -64px}.urbo-slider .ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.urbo-slider .ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.urbo-slider .ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.urbo-slider .ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.urbo-slider .ui-icon-arrow-4{background-position:0 -80px}.urbo-slider .ui-icon-arrow-4-diag{background-position:-16px -80px}.urbo-slider .ui-icon-extlink{background-position:-32px -80px}.urbo-slider .ui-icon-newwin{background-position:-48px -80px}.urbo-slider .ui-icon-refresh{background-position:-64px -80px}.urbo-slider .ui-icon-shuffle{background-position:-80px -80px}.urbo-slider .ui-icon-transfer-e-w{background-position:-96px -80px}.urbo-slider .ui-icon-transferthick-e-w{background-position:-112px -80px}.urbo-slider .ui-icon-folder-collapsed{background-position:0 -96px}.urbo-slider .ui-icon-folder-open{background-position:-16px -96px}.urbo-slider .ui-icon-document{background-position:-32px -96px}.urbo-slider .ui-icon-document-b{background-position:-48px -96px}.urbo-slider .ui-icon-note{background-position:-64px -96px}.urbo-slider .ui-icon-mail-closed{background-position:-80px -96px}.urbo-slider .ui-icon-mail-open{background-position:-96px -96px}.urbo-slider .ui-icon-suitcase{background-position:-112px -96px}.urbo-slider .ui-icon-comment{background-position:-128px -96px}.urbo-slider .ui-icon-person{background-position:-144px -96px}.urbo-slider .ui-icon-print{background-position:-160px -96px}.urbo-slider .ui-icon-trash{background-position:-176px -96px}.urbo-slider .ui-icon-locked{background-position:-192px -96px}.urbo-slider .ui-icon-unlocked{background-position:-208px -96px}.urbo-slider .ui-icon-bookmark{background-position:-224px -96px}.urbo-slider .ui-icon-tag{background-position:-240px -96px}.urbo-slider .ui-icon-home{background-position:0 -112px}.urbo-slider .ui-icon-flag{background-position:-16px -112px}.urbo-slider .ui-icon-calendar{background-position:-32px -112px}.urbo-slider .ui-icon-cart{background-position:-48px -112px}.urbo-slider .ui-icon-pencil{background-position:-64px -112px}.urbo-slider .ui-icon-clock{background-position:-80px -112px}.urbo-slider .ui-icon-disk{background-position:-96px -112px}.urbo-slider .ui-icon-calculator{background-position:-112px -112px}.urbo-slider .ui-icon-zoomin{background-position:-128px -112px}.urbo-slider .ui-icon-zoomout{background-position:-144px -112px}.urbo-slider .ui-icon-search{background-position:-160px -112px}.urbo-slider .ui-icon-wrench{background-position:-176px -112px}.urbo-slider .ui-icon-gear{background-position:-192px -112px}.urbo-slider .ui-icon-heart{background-position:-208px -112px}.urbo-slider .ui-icon-star{background-position:-224px -112px}.urbo-slider .ui-icon-link{background-position:-240px -112px}.urbo-slider .ui-icon-cancel{background-position:0 -128px}.urbo-slider .ui-icon-plus{background-position:-16px -128px}.urbo-slider .ui-icon-plusthick{background-position:-32px -128px}.urbo-slider .ui-icon-minus{background-position:-48px -128px}.urbo-slider .ui-icon-minusthick{background-position:-64px -128px}.urbo-slider .ui-icon-close{background-position:-80px -128px}.urbo-slider .ui-icon-closethick{background-position:-96px -128px}.urbo-slider .ui-icon-key{background-position:-112px -128px}.urbo-slider .ui-icon-lightbulb{background-position:-128px -128px}.urbo-slider .ui-icon-scissors{background-position:-144px -128px}.urbo-slider .ui-icon-clipboard{background-position:-160px -128px}.urbo-slider .ui-icon-copy{background-position:-176px -128px}.urbo-slider .ui-icon-contact{background-position:-192px -128px}.urbo-slider .ui-icon-image{background-position:-208px -128px}.urbo-slider .ui-icon-video{background-position:-224px -128px}.urbo-slider .ui-icon-script{background-position:-240px -128px}.urbo-slider .ui-icon-alert{background-position:0 -144px}.urbo-slider .ui-icon-info{background-position:-16px -144px}.urbo-slider .ui-icon-notice{background-position:-32px -144px}.urbo-slider .ui-icon-help{background-position:-48px -144px}.urbo-slider .ui-icon-check{background-position:-64px -144px}.urbo-slider .ui-icon-bullet{background-position:-80px -144px}.urbo-slider .ui-icon-radio-on{background-position:-96px -144px}.urbo-slider .ui-icon-radio-off{background-position:-112px -144px}.urbo-slider .ui-icon-pin-w{background-position:-128px -144px}.urbo-slider .ui-icon-pin-s{background-position:-144px -144px}.urbo-slider .ui-icon-play{background-position:0 -160px}.urbo-slider .ui-icon-pause{background-position:-16px -160px}.urbo-slider .ui-icon-seek-next{background-position:-32px -160px}.urbo-slider .ui-icon-seek-prev{background-position:-48px -160px}.urbo-slider .ui-icon-seek-end{background-position:-64px -160px}.urbo-slider .ui-icon-seek-start{background-position:-80px -160px}.urbo-slider .ui-icon-seek-first{background-position:-80px -160px}.urbo-slider .ui-icon-stop{background-position:-96px -160px}.urbo-slider .ui-icon-eject{background-position:-112px -160px}.urbo-slider .ui-icon-volume-off{background-position:-128px -160px}.urbo-slider .ui-icon-volume-on{background-position:-144px -160px}.urbo-slider .ui-icon-power{background-position:0 -176px}.urbo-slider .ui-icon-signal-diag{background-position:-16px -176px}.urbo-slider .ui-icon-signal{background-position:-32px -176px}.urbo-slider .ui-icon-battery-0{background-position:-48px -176px}.urbo-slider .ui-icon-battery-1{background-position:-64px -176px}.urbo-slider .ui-icon-battery-2{background-position:-80px -176px}.urbo-slider .ui-icon-battery-3{background-position:-96px -176px}.urbo-slider .ui-icon-circle-plus{background-position:0 -192px}.urbo-slider .ui-icon-circle-minus{background-position:-16px -192px}.urbo-slider .ui-icon-circle-close{background-position:-32px -192px}.urbo-slider .ui-icon-circle-triangle-e{background-position:-48px -192px}.urbo-slider .ui-icon-circle-triangle-s{background-position:-64px -192px}.urbo-slider .ui-icon-circle-triangle-w{background-position:-80px -192px}.urbo-slider .ui-icon-circle-triangle-n{background-position:-96px -192px}.urbo-slider .ui-icon-circle-arrow-e{background-position:-112px -192px}.urbo-slider .ui-icon-circle-arrow-s{background-position:-128px -192px}.urbo-slider .ui-icon-circle-arrow-w{background-position:-144px -192px}.urbo-slider .ui-icon-circle-arrow-n{background-position:-160px -192px}.urbo-slider .ui-icon-circle-zoomin{background-position:-176px -192px}.urbo-slider .ui-icon-circle-zoomout{background-position:-192px -192px}.urbo-slider .ui-icon-circle-check{background-position:-208px -192px}.urbo-slider .ui-icon-circlesmall-plus{background-position:0 -208px}.urbo-slider .ui-icon-circlesmall-minus{background-position:-16px -208px}.urbo-slider .ui-icon-circlesmall-close{background-position:-32px -208px}.urbo-slider .ui-icon-squaresmall-plus{background-position:-48px -208px}.urbo-slider .ui-icon-squaresmall-minus{background-position:-64px -208px}.urbo-slider .ui-icon-squaresmall-close{background-position:-80px -208px}.urbo-slider .ui-icon-grip-dotted-vertical{background-position:0 -224px}.urbo-slider .ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.urbo-slider .ui-icon-grip-solid-vertical{background-position:-32px -224px}.urbo-slider .ui-icon-grip-solid-horizontal{background-position:-48px -224px}.urbo-slider .ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.urbo-slider .ui-icon-grip-diagonal-se{background-position:-80px -224px}.urbo-slider .ui-corner-all,.urbo-slider .ui-corner-top,.urbo-slider .ui-corner-left,.urbo-slider .ui-corner-tl{border-top-left-radius:3px}.urbo-slider .ui-corner-all,.urbo-slider .ui-corner-top,.urbo-slider .ui-corner-right,.urbo-slider .ui-corner-tr{border-top-right-radius:3px}.urbo-slider .ui-corner-all,.urbo-slider .ui-corner-bottom,.urbo-slider .ui-corner-left,.urbo-slider .ui-corner-bl{border-bottom-left-radius:3px}.urbo-slider .ui-corner-all,.urbo-slider .ui-corner-bottom,.urbo-slider .ui-corner-right,.urbo-slider .ui-corner-br{border-bottom-right-radius:3px}.urbo-slider .ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.urbo-slider .ui-widget-shadow{box-shadow:0 0 5px #666}

/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/* Layout helpers
----------------------------------*/
.urbo-slider .ui-helper-hidden {
	display: none;
}
.urbo-slider .ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.urbo-slider .ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.urbo-slider .ui-helper-clearfix:before,
.urbo-slider .ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.urbo-slider .ui-helper-clearfix:after {
	clear: both;
}
.urbo-slider .ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.urbo-slider .ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.urbo-slider .ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.urbo-slider .ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.urbo-slider .ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.urbo-slider .ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.urbo-slider .ui-slider {
	position: relative;
	text-align: left;
}
.urbo-slider .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	touch-action: none;
	border-radius: 100%;
	background: linear-gradient(#ccc, #949292);
}
.urbo-slider .ui-slider .ui-slider-handle:before {
	content: '';
	display: block;
	width: 40%;
	height: 40%;
	background: var(--razzmatazz);
    border-radius: 100%;
    margin: 30%;
}
.urbo-slider .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.urbo-slider .ui-slider.ui-state-disabled .ui-slider-handle,
.urbo-slider .ui-slider.ui-state-disabled .ui-slider-range {
	-webkit-filter: inherit;
	        filter: inherit;
}

.urbo-slider .ui-slider-horizontal {
	height: .8em;
}
.urbo-slider .ui-slider-horizontal .ui-slider-handle {
	top: -.2em;
	margin-left: -1.1em;
}
.urbo-slider .ui-slider-horizontal .ui-slider-handle:nth-child(2) {
	margin-left: -.1em;
}
.urbo-slider .ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.urbo-slider .ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.urbo-slider .ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.urbo-slider .ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.urbo-slider .ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.urbo-slider .ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.urbo-slider .ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.urbo-slider .ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

/*!
 * Cropper v3.1.3
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright (c) 2014-2017 Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2017-10-21T10:03:37.133Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline-color:rgba(51,153,255,.75);outline:1px solid #39f;overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:e-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:n-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:w-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:s-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:e-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:n-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:w-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:ne-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nw-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:sw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:se-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}@charset "UTF-8";

/* Raleway ------------------------------------ */

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on August 27, 2018 */

/*@font-face {
    font-family: 'raleway-medium';
    src: url('/fonts/Relaway/raleway-v4020-medium-webfont.eot');
    src: url('/fonts/Relaway/raleway-v4020-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Relaway/raleway-v4020-medium-webfont.woff2') format('woff2'),
         url('/fonts/Relaway/raleway-v4020-medium-webfont.woff') format('woff'),
         url('/fonts/Relaway/raleway-v4020-medium-webfont.ttf') format('truetype'),
         url('/fonts/Relaway/raleway-v4020-medium-webfont.svg#raleway-v4020medium') format('svg');
    font-weight: normal;
    font-style: normal;

}*/

@font-face {
  font-family: "raleway-medium_italic";
  font-display: auto;
  src: url("/fonts/Relaway/raleway-v4020-mediumitalic-webfont.eot");
  src: url("/fonts/Relaway/raleway-v4020-mediumitalic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Relaway/raleway-v4020-mediumitalic-webfont.woff2") format("woff2"), url("/fonts/Relaway/raleway-v4020-mediumitalic-webfont.woff") format("woff"), url("/fonts/Relaway/raleway-v4020-mediumitalic-webfont.ttf") format("truetype"), url("/fonts/Relaway/raleway-v4020-mediumitalic-webfont.svg#raleway-v4020medium_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "raleway-regular";
  font-display: auto;
  src: url("/fonts/Relaway/raleway-v4020-regular-webfont.eot");
  src: url("/fonts/Relaway/raleway-v4020-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Relaway/raleway-v4020-regular-webfont.woff2") format("woff2"), url("/fonts/Relaway/raleway-v4020-regular-webfont.woff") format("woff"), url("/fonts/Relaway/raleway-v4020-regular-webfont.ttf") format("truetype"), url("/fonts/Relaway/raleway-v4020-regular-webfont.svg#raleway-v4020regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "raleway-semibold";
  font-display: auto;
  src: url("/fonts/Relaway/raleway-v4020-semibold-webfont.eot");
  src: url("/fonts/Relaway/raleway-v4020-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Relaway/raleway-v4020-semibold-webfont.woff2") format("woff2"), url("/fonts/Relaway/raleway-v4020-semibold-webfont.woff") format("woff"), url("/fonts/Relaway/raleway-v4020-semibold-webfont.ttf") format("truetype"), url("/fonts/Relaway/raleway-v4020-semibold-webfont.svg#raleway-v4020semibold") format("svg");
  font-weight: bold;
  font-style: normal;
}

/*
@font-face {
    font-family: 'ralewayextrabold';
    src: url('/fonts/Relaway/raleway-extrabold_0-webfont.eot');
    src: url('/fonts/Relaway/raleway-extrabold_0-webfont?#iefix') format('embedded-opentype'),
         url('/fonts/Relaway/raleway-extrabold_0-webfont.woff2') format('woff2'),
         url('/fonts/Relaway/raleway-extrabold_0-webfont.woff') format('woff'),
         url('/fonts/Relaway/raleway-extrabold_0-webfont.ttf') format('truetype'),
         url('/fonts/Relaway/raleway-extrabold_0-webfont.svg#raleway-v4020semibold') format('svg');
    font-weight: bold;
    font-style: normal;

}*/

/* Gilroy ------------------------------------ */

@font-face {
  font-family: "gilroy-medium_italic";
  font-display: auto;
  src: url("/fonts/Gilroy/Gilroy-MediumItalic.ttf");
  src: url("/fonts/Gilroy/Gilroy-MediumItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "gilroy-regular";
  font-display: auto;
  src: url("/fonts/Gilroy/Gilroy-Regular.ttf");
  src: url("/fonts/Gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "gilroy-semibold";
  font-display: auto;
  src: url("/fonts/Gilroy/Gilroy-SemiBold.ttf");
  src: url("/fonts/Gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "gilroyextrabold";
  src: url("/fonts/Gilroy/Gilroy-ExtraBold.ttf");
  src: url("/fonts/Gilroy/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Montserrat ------------------------------------ */

/*--------------- Bold ---------------*/

@font-face {
  font-family: "montserratbold";
  src: url("/fonts/Montserrat/montserrat-bold-webfont.eot");
  src: url("/fonts/Montserrat/montserrat-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Montserrat/montserrat-bold-webfont.woff2") format("woff2"), url("/fonts/Montserrat/montserrat-bold-webfont.woff") format("woff"), url("/fonts/Montserrat/montserrat-bold-webfont.ttf") format("truetype"), url("/fonts/Montserrat/montserrat-bold-webfont.svg#montserratbold") format("svg");
  font-display: auto;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "icomoon";
  font-display: auto;
  src: url("/fonts/Icons/icomoon.eot?w382qq1");
  src: url("/fonts/Icons/icomoon.eot?w382qq1#iefix") format("embedded-opentype"), url("/fonts/Icons/icomoon.ttf?w382qq1") format("truetype"), url("/fonts/Icons/icomoon.woff?w382qq1") format("woff"), url("/fonts/Icons/icomoon.svg?w382qq1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "icomoon-new";
  src: url("/fonts/Icons-new/icomoon.eot");
  src: url("/fonts/Icons-new/icomoon.eot") format("embedded-opentype"), url("/fonts/Icons-new/icomoon.ttf") format("truetype"), url("/fonts/Icons-new/icomoon.woff") format("woff"), url("/fonts/Icons-new/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon", "icomoon-new" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-wheelchair:before {
  content: "\E92E";
}

.icon-transfer-icon:before {
  content: "\E92A";
}

.icon-starting-time-pay-button:before {
  content: "\EA2D";
}

.icon-tag1:before {
  content: "\EA2E";
}

.icon-ticket:before {
  content: "\EA2F";
}

.icon-tickets-star:before {
  content: "\EA30";
}

.icon-tick-inside-circle:before {
  content: "\EA31";
}

.icon-tours:before {
  content: "\EA32";
}

.icon-validation:before {
  content: "\EA33";
}

.icon-park-tickets-couple:before {
  content: "\EA34";
}

.icon-popular:before {
  content: "\EA35";
}

.icon-sale-tag:before {
  content: "\EA36";
}

.icon-shield1:before {
  content: "\EA37";
}

.icon-shield-secure:before {
  content: "\EA38";
}

.icon-skydiving-silhouette-falling:before {
  content: "\EA39";
}

.icon-star-star-star:before {
  content: "\EA3A";
}

.icon-opening-hourss:before {
  content: "\EA3B";
}

.icon-park-tickets-couple1:before {
  content: "\EA3C";
}

.icon-popular1:before {
  content: "\EA3D";
}

.icon-no-smoking:before {
  content: "\EA3E";
}

.icon-maps-and-location:before {
  content: "\EA3F";
}

.icon-menu1:before {
  content: "\EA40";
}

.icon-music-and-multimedia:before {
  content: "\EA41";
}

.icon-happy:before {
  content: "\EA42";
}

.icon-hotel:before {
  content: "\EA43";
}

.icon-language-first-variation:before {
  content: "\EA44";
}

.icon-gift-box:before {
  content: "\EA45";
}

.icon-group:before {
  content: "\EA46";
}

.icon-gym:before {
  content: "\EA47";
}

.icon-flower:before {
  content: "\EA48";
}

.icon-frontal-taxi-cab:before {
  content: "\EA49";
}

.icon-destination:before {
  content: "\EA4A";
}

.icon-discount:before {
  content: "\EA4B";
}

.icon-dog-paw:before {
  content: "\EA4C";
}

.icon-car-2:before {
  content: "\EA4D";
}

.icon-chat:before {
  content: "\EA4E";
}

.icon-cinema:before {
  content: "\EA4F";
}

.icon-cancellation-policy:before {
  content: "\EA50";
}

.icon-call-us-icon:before {
  content: "\EA51";
}

.icon-bus:before {
  content: "\EA52";
}

.icon-calendar1:before {
  content: "\EA53";
}

.icon-calendar_02:before {
  content: "\EA54";
}

.icon-BOOK:before {
  content: "\EA55";
}

.icon-attractions:before {
  content: "\EA56";
}

.icon-application-all-events-search:before {
  content: "\EA57";
}

.icon-full-star:before {
  content: "\EA0B";
}

.icon-half-star:before {
  content: "\EA0C";
}

.icon-heart-full:before {
  content: "\EA29";
}

.icon-activity:before {
  content: "\E900";
}

.icon-airplay:before {
  content: "\E901";
}

.icon-alert-circle:before {
  content: "\E902";
}

.icon-alert-octagon:before {
  content: "\E904";
}

.icon-alert-triangle:before {
  content: "\E906";
}

.icon-align-center:before {
  content: "\E908";
}

.icon-align-justify:before {
  content: "\E90A";
}

.icon-align-left:before {
  content: "\E90C";
}

.icon-align-right:before {
  content: "\E90E";
}

.icon-anchor:before {
  content: "\E910";
}

.icon-aperture:before {
  content: "\E912";
}

.icon-archive:before {
  content: "\E914";
}

.icon-arrow-down:before {
  content: "\E916";
}

.icon-arrow-down-circle:before {
  content: "\E918";
}

.icon-arrow-down-left:before {
  content: "\E91A";
}

.icon-arrow-down-right:before {
  content: "\E91C";
}

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

.icon-arrow-left-circle:before {
  content: "\E91F";
}

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

.icon-arrow-right-circle:before {
  content: "\E923";
}

.icon-arrow-up:before {
  content: "\E925";
}

.icon-arrow-up-circle:before {
  content: "\E927";
}

.icon-arrow-up-left:before {
  content: "\E929";
}

.icon-arrow-up-right:before {
  content: "\E92B";
}

.icon-at-sign:before {
  content: "\E92D";
}

.icon-award:before {
  content: "\E92F";
}

.icon-bar-chart:before {
  content: "\E931";
}

.icon-bar-chart-2:before {
  content: "\E933";
}

.icon-battery:before {
  content: "\E935";
}

.icon-battery-charging:before {
  content: "\E937";
}

.icon-bell:before {
  content: "\E939";
}

.icon-bell-off:before {
  content: "\E93B";
}

.icon-bluetooth:before {
  content: "\E93C";
}

.icon-bold:before {
  content: "\E93D";
}

.icon-book:before {
  content: "\E93E";
}

.icon-bookmark:before {
  content: "\E93F";
}

.icon-book-open:before {
  content: "\E940";
}

.icon-box:before {
  content: "\E942";
}

.icon-briefcase:before {
  content: "\E943";
}

.icon-calendar:before {
  content: "\E944";
}

.icon-camera:before {
  content: "\E945";
}

.icon-camera-off:before {
  content: "\E946";
}

.icon-cast:before {
  content: "\E947";
}

.icon-check1:before {
  content: "\E948";
}

.icon-check-circle:before {
  content: "\E949";
}

.icon-check-square:before {
  content: "\E94A";
}

.icon-chevron-down:before {
  content: "\E94B";
}

.icon-chevron-left:before {
  content: "\E94C";
}

.icon-chevron-right:before {
  content: "\E94D";
}

.icon-chevrons-down:before {
  content: "\E94E";
}

.icon-chevrons-left:before {
  content: "\E94F";
}

.icon-chevrons-right:before {
  content: "\E950";
}

.icon-chevrons-up:before {
  content: "\E951";
}

.icon-chevron-up:before {
  content: "\E952";
}

.icon-chrome:before {
  content: "\E953";
}

.icon-circle:before {
  content: "\E954";
}

.icon-clipboard:before {
  content: "\E955";
}

.icon-clock:before {
  content: "\E956";
}

.icon-cloud:before {
  content: "\E957";
}

.icon-cloud-drizzle:before {
  content: "\E958";
}

.icon-cloud-lightning:before {
  content: "\E959";
}

.icon-cloud-off:before {
  content: "\E95A";
}

.icon-cloud-rain:before {
  content: "\E95B";
}

.icon-cloud-snow:before {
  content: "\E95C";
}

.icon-code:before {
  content: "\E95D";
}

.icon-codepen:before {
  content: "\E95E";
}

.icon-command:before {
  content: "\E95F";
}

.icon-compass:before {
  content: "\E960";
}

.icon-copy:before {
  content: "\E961";
}

.icon-corner-down-left:before {
  content: "\E962";
}

.icon-corner-down-right:before {
  content: "\E963";
}

.icon-corner-left-down:before {
  content: "\E964";
}

.icon-corner-left-up:before {
  content: "\E965";
}

.icon-corner-right-down:before {
  content: "\E966";
}

.icon-corner-right-up:before {
  content: "\E967";
}

.icon-corner-up-left:before {
  content: "\E968";
}

.icon-corner-up-right:before {
  content: "\E969";
}

.icon-cpu:before {
  content: "\E96A";
}

.icon-credit-card:before {
  content: "\E96B";
}

.icon-crop:before {
  content: "\E96C";
}

.icon-crosshair:before {
  content: "\E96D";
}

.icon-database:before {
  content: "\E96E";
}

.icon-delete:before {
  content: "\E96F";
}

.icon-disc:before {
  content: "\E970";
}

.icon-dollar-sign:before {
  content: "\E971";
}

.icon-download:before {
  content: "\E972";
}

.icon-download-cloud:before {
  content: "\E973";
}

.icon-droplet:before {
  content: "\E974";
}

.icon-edit:before {
  content: "\E975";
}

.icon-edit-2:before {
  content: "\E976";
}

.icon-edit-3:before {
  content: "\E977";
}

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

.icon-eye:before {
  content: "\E979";
}

.icon-eye-off:before {
  content: "\E97A";
}

.icon-facebook:before {
  content: "\E97B";
}

.icon-fast-forward:before {
  content: "\E97C";
}

.icon-feather:before {
  content: "\E97D";
}

.icon-file:before {
  content: "\E97E";
}

.icon-file-minus:before {
  content: "\E97F";
}

.icon-file-plus:before {
  content: "\E980";
}

.icon-file-text:before {
  content: "\E981";
}

.icon-film:before {
  content: "\E982";
}

.icon-filter1:before {
  content: "\E983";
}

.icon-flag:before {
  content: "\E984";
}

.icon-folder:before {
  content: "\E985";
}

.icon-folder-minus:before {
  content: "\E986";
}

.icon-folder-plus:before {
  content: "\E987";
}

.icon-gift:before {
  content: "\E988";
}

.icon-git-branch:before {
  content: "\E989";
}

.icon-git-commit:before {
  content: "\E98A";
}

.icon-github:before {
  content: "\E98B";
}

.icon-gitlab:before {
  content: "\E98C";
}

.icon-git-merge:before {
  content: "\E98D";
}

.icon-git-pull-request:before {
  content: "\E98E";
}

.icon-globe:before {
  content: "\E98F";
}

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

.icon-hard-drive:before {
  content: "\E991";
}

.icon-hash:before {
  content: "\E992";
}

.icon-headphones:before {
  content: "\E993";
}

.icon-heart:before {
  content: "\E994";
}

.icon-help-circle:before {
  content: "\E995";
}

.icon-home:before {
  content: "\E996";
}

.icon-image:before {
  content: "\E997";
}

.icon-inbox:before {
  content: "\E998";
}

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

.icon-instagram:before {
  content: "\E99A";
}

.icon-italic:before {
  content: "\E99B";
}

.icon-layers:before {
  content: "\E99C";
}

.icon-layout:before {
  content: "\E99D";
}

.icon-life-buoy:before {
  content: "\E99E";
}

.icon-link:before {
  content: "\E99F";
}

.icon-link-2:before {
  content: "\E9A0";
}

.icon-linkedin:before {
  content: "\E9A1";
}

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

.icon-loader:before {
  content: "\E9A3";
}

.icon-lock:before {
  content: "\E9A4";
}

.icon-log-in:before {
  content: "\E9A5";
}

.icon-log-out:before {
  content: "\E9A6";
}

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

.icon-map:before {
  content: "\E9A8";
}

.icon-map-pin:before {
  content: "\E9A9";
}

.icon-maximize:before {
  content: "\E9AA";
}

.icon-maximize-2:before {
  content: "\E9AB";
}

.icon-menu:before {
  content: "\E9AC";
}

.icon-message-circle:before {
  content: "\E9AD";
}

.icon-message-square:before {
  content: "\E9AE";
}

.icon-mic:before {
  content: "\E9AF";
}

.icon-mic-off:before {
  content: "\E9B0";
}

.icon-minimize:before {
  content: "\E9B1";
}

.icon-minimize-2:before {
  content: "\E9B2";
}

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

.icon-minus-circle:before {
  content: "\E9B4";
}

.icon-minus-square:before {
  content: "\E9B5";
}

.icon-monitor:before {
  content: "\E9B6";
}

.icon-moon:before {
  content: "\E9B7";
}

.icon-more-horizontal:before {
  content: "\E9B8";
}

.icon-more-vertical:before {
  content: "\E9B9";
}

.icon-move:before {
  content: "\E9BA";
}

.icon-music:before {
  content: "\E9BB";
}

.icon-navigation:before {
  content: "\E9BC";
}

.icon-navigation-2:before {
  content: "\E9BD";
}

.icon-octagon:before {
  content: "\E9BE";
}

.icon-package:before {
  content: "\E9BF";
}

.icon-paperclip:before {
  content: "\E9C0";
}

.icon-pause:before {
  content: "\E9C1";
}

.icon-pause-circle:before {
  content: "\E9C2";
}

.icon-percent:before {
  content: "\E9C3";
}

.icon-phone:before {
  content: "\E9C4";
}

.icon-phone-call:before {
  content: "\E9C5";
}

.icon-phone-forwarded:before {
  content: "\E9C6";
}

.icon-phone-incoming:before {
  content: "\E9C7";
}

.icon-phone-missed:before {
  content: "\E9C8";
}

.icon-phone-off:before {
  content: "\E9C9";
}

.icon-phone-outgoing:before {
  content: "\E9CA";
}

.icon-pie-chart:before {
  content: "\E9CB";
}

.icon-play:before {
  content: "\E9CC";
}

.icon-play-circle:before {
  content: "\E9CD";
}

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

.icon-plus-circle:before {
  content: "\E9CF";
}

.icon-plus-square:before {
  content: "\E9D0";
}

.icon-pocket:before {
  content: "\E9D1";
}

.icon-power:before {
  content: "\E9D2";
}

.icon-printer:before {
  content: "\E9D3";
}

.icon-radio:before {
  content: "\E9D4";
}

.icon-refresh-ccw:before {
  content: "\E9D5";
}

.icon-refresh-cw:before {
  content: "\E9D6";
}

.icon-repeat:before {
  content: "\E9D7";
}

.icon-rewind:before {
  content: "\E9D8";
}

.icon-rotate-ccw:before {
  content: "\E9D9";
}

.icon-rotate-cw:before {
  content: "\E9DA";
}

.icon-rss:before {
  content: "\E9DB";
}

.icon-save:before {
  content: "\E9DC";
}

.icon-scissors:before {
  content: "\E9DD";
}

.icon-search:before {
  content: "\E9DE";
}

.icon-send:before {
  content: "\E9DF";
}

.icon-server:before {
  content: "\E9E0";
}

.icon-settings:before {
  content: "\E9E1";
}

.icon-share:before {
  content: "\E9E2";
}

.icon-share-2:before {
  content: "\E9E3";
}

.icon-shield:before {
  content: "\E9E4";
}

.icon-shield-off:before {
  content: "\E9E5";
}

.icon-shopping-bag:before {
  content: "\E9E6";
}

.icon-shopping-cart:before {
  content: "\E9E7";
}

.icon-shuffle:before {
  content: "\E9E8";
}

.icon-sidebar:before {
  content: "\E9E9";
}

.icon-skip-back:before {
  content: "\E9EA";
}

.icon-skip-forward:before {
  content: "\E9EB";
}

.icon-slack:before {
  content: "\E9EC";
}

.icon-slash:before {
  content: "\E9ED";
}

.icon-sliders:before {
  content: "\E9EE";
}

.icon-smartphone:before {
  content: "\E9EF";
}

.icon-speaker:before {
  content: "\E9F0";
}

.icon-square:before {
  content: "\E9F1";
}

.icon-star:before {
  content: "\E9F2";
}

.icon-stop-circle:before {
  content: "\E9F3";
}

.icon-sun:before {
  content: "\E9F4";
}

.icon-sunrise:before {
  content: "\E9F5";
}

.icon-sunset:before {
  content: "\E9F6";
}

.icon-tablet:before {
  content: "\E9F7";
}

.icon-tag:before {
  content: "\E9F8";
}

.icon-target:before {
  content: "\E9F9";
}

.icon-terminal:before {
  content: "\E9FA";
}

.icon-thermometer:before {
  content: "\E9FB";
}

.icon-thumbs-down:before {
  content: "\E9FC";
}

.icon-thumbs-up:before {
  content: "\E9FD";
}

.icon-toggle-left:before {
  content: "\E9FE";
}

.icon-toggle-right:before {
  content: "\E9FF";
}

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

.icon-trash-2:before {
  content: "\EA01";
}

.icon-trending-down:before {
  content: "\EA02";
}

.icon-trending-up:before {
  content: "\EA03";
}

.icon-triangle:before {
  content: "\EA04";
}

.icon-truck:before {
  content: "\EA05";
}

.icon-tv:before {
  content: "\EA06";
}

.icon-twitter:before {
  content: "\EA07";
}

.icon-type:before {
  content: "\EA08";
}

.icon-umbrella:before {
  content: "\EA09";
}

.icon-underline:before {
  content: "\EA0A";
}

.icon-unlock:before {
  content: "\EA0D";
}

.icon-upload:before {
  content: "\EA0E";
}

.icon-upload-cloud:before {
  content: "\EA0F";
}

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

.icon-user-check:before {
  content: "\EA11";
}

.icon-user-minus:before {
  content: "\EA12";
}

.icon-user-plus:before {
  content: "\EA13";
}

.icon-users:before {
  content: "\EA14";
}

.icon-user-x:before {
  content: "\EA15";
}

.icon-video:before {
  content: "\EA16";
}

.icon-video-off:before {
  content: "\EA17";
}

.icon-voicemail:before {
  content: "\EA18";
}

.icon-volume:before {
  content: "\EA19";
}

.icon-volume-1:before {
  content: "\EA1A";
}

.icon-volume-2:before {
  content: "\EA1B";
}

.icon-volume-x:before {
  content: "\EA1C";
}

.icon-watch:before {
  content: "\EA1D";
}

.icon-wifi:before {
  content: "\EA1E";
}

.icon-wifi-off:before {
  content: "\EA1F";
}

.icon-wind:before {
  content: "\EA20";
}

.icon-x:before {
  content: "\EA21";
}

.icon-x-circle:before {
  content: "\EA22";
}

.icon-x-square:before {
  content: "\EA23";
}

.icon-youtube:before {
  content: "\EA24";
}

.icon-zap:before {
  content: "\EA25";
}

.icon-zap-off:before {
  content: "\EA26";
}

.icon-zoom-in:before {
  content: "\EA27";
}

.icon-zoom-out:before {
  content: "\EA28";
}

.icon-baseline-autorenew-24px:before {
  content: "\E903";
}

.icon-baseline-bookmark-24px:before {
  content: "\E905";
}

.icon-baseline-calendar_today-24px:before {
  content: "\E907";
}

.icon-baseline-check_circle_outline-24px:before {
  content: "\E90B";
}

.icon-baseline-date_range-24px:before {
  content: "\E909";
}

.icon-baseline-directions_car-24px:before {
  content: "\E90D";
}

.icon-baseline-event_available-24px:before {
  content: "\E90F";
}

.icon-baseline-event-24px:before {
  content: "\E911";
}

.icon-baseline-home-24px:before {
  content: "\E913";
}

.icon-baseline-info-24px:before {
  content: "\E915";
}

.icon-baseline-location_city-24px:before {
  content: "\E917";
}

.icon-baseline-location_on-24px:before {
  content: "\E919";
}

.icon-baseline-lock-24px:before {
  content: "\E91B";
}

.icon-baseline-mail-24px:before {
  content: "\E91D";
}

.icon-baseline-monetization_on-24px:before {
  content: "\E920";
}

.icon-baseline-notifications-24px:before {
  content: "\E922";
}

.icon-baseline-person-24px:before {
  content: "\E924";
}

.icon-baseline-phone-24px:before {
  content: "\E926";
}

.icon-baseline-play_circle_outline-24px:before {
  content: "\E928";
}

.icon-baseline-settings-20px:before {
  content: "\E92C";
}

.icon-baseline-stars-24px:before {
  content: "\E930";
}

.icon-baseline-verified_user-24px:before {
  content: "\E932";
}

.icon-baseline-web-24px:before {
  content: "\E934";
}

.icon-baseline-whatshot-24px:before {
  content: "\E936";
}

.icon-filter:before {
  content: "\E938";
}

.icon-coins:before {
  content: "\E93A";
}

.icon-sale:before {
  content: "\E941";
}

.icon-account_balance_wallet:before {
  content: "\E850";
}

.icon-assignment:before {
  content: "\E85D";
}

.icon-mode_edit:before {
  content: "\E254";
}

.icon-payment:before {
  content: "\E8A1";
}

.icon-delete_forever:before {
  content: "\EA2A";
}

.icon-favorite_border:before {
  content: "\E87E";
}

.icon-help_outline:before {
  content: "\E8FD";
}

.icon-restore:before {
  content: "\E8B3";
}

.icon-info_outline:before {
  content: "\E88F";
}

.icon-lock_open:before {
  content: "\E898";
}

.icon-lock_outline:before {
  content: "\E899";
}

.icon-person_outline:before {
  content: "\E7FF";
}

.icon-aspect_ratio:before {
  content: "\E85B";
}

.icon-local_play:before {
  content: "\E553";
}

.icon-local_parking:before {
  content: "\E54F";
}

.icon-share1:before {
  content: "\E80D";
}

.icon-price-tags:before {
  content: "\EA2B";
}

.icon-gift1:before {
  content: "\EA2C";
}

.icon-meet-up-icon:before {
  content: "\EA58";
  color: #737373;
}

.icon-upass-card-icon:before {
  content: "\EA59";
}

.icon-transport-pin:before {
  content: "\EA5A";
}

.icon-events-pin:before {
  content: "\EA5B";
}

.icon-activities-pin:before {
  content: "\EA5C";
}

.icon-services-pin:before {
  content: "\EA5D";
}

.icon-home1:before {
  content: "\EA5E";
}

.icon-office:before {
  content: "\EA5F";
}

.icon-compass1:before {
  content: "\EA60";
}

.icon-cog:before {
  content: "\EA61";
}

.icon-exit:before {
  content: "\EA62";
}

.icon-calendar2:before {
  content: "\EA63";
}

.icon-clipboard1:before {
  content: "\EA64";
}

.icon-bubbles:before {
  content: "\EA65";
}

.icon-sphere:before {
  content: "\EA73";
}

.icon-all:before {
  content: "\E9002";
}

.icon-other:before {
  content: "\E9003";
}

.icon-festivals:before {
  content: "\E9004";
}

.icon-concerts:before {
  content: "\E9001";
}

.icon-badge-check-regular:after {
  content: "\E9005";
}

.icon-badge-percent-regular:after {
  content: "\E9006";
}

.icon-credit-card_first:before {
  content: "\E9007";
}

.icon-call-center-operator:before {
  content: "\E9009";
}

.icon-concerts:before {
  content: "\E9001";
}

.icon-pinterest:before {
  content: "\E9010";
}

.icon-Group-1a-01:before {
  content: "\E9011";
}

.icon-Group-14403-01:before {
  content: "\E9012";
}

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

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

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

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

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

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

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.figure {
  display: inline-block;
}

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

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

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

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

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

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

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

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

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

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

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

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

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

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

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

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

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

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

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

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

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

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

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

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

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

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

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

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

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

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

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

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

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

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

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

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

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

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

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

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

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

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

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

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

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

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

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

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

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

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

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

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

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

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

.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

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

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

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

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

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

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

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

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

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

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

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

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

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

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

  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

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

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

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

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

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

  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

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

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

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

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

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

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

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

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

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

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

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

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

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

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

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

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

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

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

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

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

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

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

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

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

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

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

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

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

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

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

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

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

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

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

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

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

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

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

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

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

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

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

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

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

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

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

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

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

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

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

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

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

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

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

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

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

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

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

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

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

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

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

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

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

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

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

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

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

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

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

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

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

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

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

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

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

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

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

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

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

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

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

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}

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

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

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

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

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

.fade {
  transition: opacity 0.15s linear;
}

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

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

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

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

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

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

.dropdown-toggle {
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-menu.show {
  display: block;
}

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

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

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

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

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

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

.input-group-prepend,
.input-group-append {
  display: flex;
}

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

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

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

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

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

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

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

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

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

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

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

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

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

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

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

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

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

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

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

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

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

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

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

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

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

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

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

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

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

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

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

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

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

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

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

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

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

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

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

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

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

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

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

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

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

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

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

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

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

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

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

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

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

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

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

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

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

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

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

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

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

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

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

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

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

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

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

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

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

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

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

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

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: flex;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }

  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card .card-header {
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

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

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

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

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

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

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

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

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

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

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

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

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

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

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

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

.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^=right] > .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^=left] > .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: 0s 0.6s opacity;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

:root {
  --banana: #ffc512;
  --peach: #fa928f;
  --tangerine: #fea968;
  --orange: #f74d40;
  --razzmatazz: #ed1071;
}

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  font-size: 2rem;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin-top: -40px;
  outline: none;
}

.owl-carousel .owl-nav .owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav .owl-next {
  right: -20px;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: #b5b5b5;
  border: none;
  padding: 0 !important;
  font: inherit;
  box-shadow: none !important;
  outline: none !important;
}

.owl-carousel button.owl-prev.disabled,
.owl-carousel button.owl-next.disabled {
  cursor: default;
  opacity: 0.25;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #b1b2b7;
  display: inline-block;
  cursor: pointer;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  margin: 5px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #b1b2b7;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--razzmatazz);
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  margin: 5px;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #b1b2b7;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 100%;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: var(--razzmatazz);
}

#user-nav-carousel .owl-nav,
#city-nav-carousel .owl-nav {
  top: 0;
}

#user-nav-carousel .owl-nav .owl-prev,
#city-nav-carousel .owl-nav .owl-prev {
  left: -30px;
  margin-top: 0;
}

#user-nav-carousel .owl-nav .owl-next,
#city-nav-carousel .owl-nav .owl-next {
  right: -30px;
  margin-top: 0;
}

.related-carousel .item-name {
  height: 38px;
}

body {
  width: 100%;
  clear: both;
  overflow-x: hidden;
  background: #fafafa;
  font-family: "gilroy-regular", sans-serif;
}

body.mobile-menu-open {
  overflow-y: hidden;
}

#app {
  width: 100%;
}

@media (max-width: 768px) {
  #app {
    overflow-x: hidden;
  }
}

p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #000000;
}

a {
  text-decoration: none !important;
  color: #3c3f4b;
}

a:hover {
  color: var(--peach);
}

a.link {
  position: relative;
  display: inline-block;
  z-index: 2;
  outline: none;
  color: var(--razzmatazz);
  vertical-align: bottom;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

a.link::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--razzmatazz);
  content: "";
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scaleY(1) translateX(-100%);
  transform: scaleY(1) translateX(-100%);
}

a.link:hover,
a.link:focus,
a.link:active {
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s;
}

a.link:hover::before,
a.link:focus::before,
a.link:active::before {
  -webkit-transform: scaleY(1) translateX(0);
  transform: scaleY(1) translateX(0);
}

a.not-active {
  color: #b1b2b7 !important;
}

.not-active {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #b1b2b7;
}

.show-on-mobile {
  display: none;
}

img {
  max-width: 100%;
}

h1 {
  margin: 0;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  text-transform: uppercase;
  /* For Chrome and Safari */
  /* For old Fx (3.6 to 15) */
  /* For pre-releases of IE 10*/
  /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(to right, var(--razzmatazz), var(--orange));
  /* Standard syntax; must be last */
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

h1.single-title {
  font-size: 2rem;
}

h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #484848;
  line-height: 1;
}

h3 {
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
}

h3.yellow-title {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--orange);
}

h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
}

.bold {
  font-family: "gilroyextrabold", sans-serif;
}

.upp-case {
  text-transform: uppercase;
}

.colored {
  font-weight: 600;
  color: var(--razzmatazz);
}

section {
  position: relative;
  padding: 60px 0;
  margin-top: -1px;
}

section.last-section::after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: #efefef;
}

section .section-title {
  margin-bottom: 50px;
}

section .section-title p {
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.5;
}

#pageMain {
  min-height: 600px;
}

article {
  position: relative;
}

.city-article {
  position: relative;
  padding: 80px 0 60px 0;
}

.sloped-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #efefef;
  /* IE 9 */
  -webkit-transform: skewY(-3deg);
  /* Safari 3-8 */
  transform: skewY(-3deg);
}

.sloped-bg.reverse {
  /* IE 9 */
  -webkit-transform: skewY(3deg);
  /* Safari 3-8 */
  transform: skewY(3deg);
}

.item {
  display: block;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 5px #b1b2b7;
  text-decoration: none;
  /*    .item-price {
          font-family: $bold;
          font-size: 1.1rem;
          color: var(--razzmatazz);

          &.free-event {
              color: $green;
          }
          &.read-more {
              color: var(--orange);
          }
      }

      .item-price-through {
          font-family: $bold;
          font-size: 0.8rem;
          color: $grey;
          text-decoration: line-through;
      }

      .whit-discount-label {
          font-family: $bold;
          color: var(--orange);
          display: block;
          font-size: 0.7rem;
          margin-bottom: 10px;
      }

      .better-price {
          display: inline-block;
          font-size: 0.8rem;
          color: var(--orange);
          border-left: 1px solid var(--orange);
          padding: 0 5px;

          &::before {
              background: var(--orange);
              -webkit-transform: scaleY(1) translateX(-100%);
              transform: scaleY(1) translateX(-100%);
          }

          &:hover,
          &:focus,
          &:active {
              &::before {
                  -webkit-transform: scaleY(1) translateX(0);
                  transform: scaleY(1) translateX(0);
              }
          }
      }*/
}

.item img {
  width: 100%;
}

.item .item-info {
  padding: 10px 25px 10px 10px;
}

.item .item-name {
  overflow: hidden;
}

.item .one-row {
  height: 22px;
}

.item .two-rows {
  height: 38px;
}

.item .price-wrap {
  height: 65px;
}

.item .date-wrap {
  position: absolute;
  bottom: 15px;
}

.item .item-date,
.item .item-city {
  display: block;
  color: #484848;
  font-size: 0.7rem;
}

@media screen and (max-width: 1300px) and (min-width: 1100px) {
  .item .item-date,
  .item .item-city {
    font-size: 0.65rem;
  }
}

.item .item-date .icon,
.item .item-city .icon {
  color: #d7d7d7;
}

.item .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

.item:hover {
  box-shadow: 0 0 10px #b1b2b7;
}

.item:hover .curtain {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
}

.item.first-big-item .item-info {
  padding: 15px 30px !important;
}

.item.first-big-item .item-img {
  max-height: 321px;
  overflow: hidden;
}

.item.first-big-item .two-rows {
  height: 45px;
}

.nav-tabs .nav-item {
  margin-bottom: -2px;
}

.nav-tabs .nav-link {
  cursor: pointer;
  font-size: 1rem;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.show .nav-link {
  color: var(--razzmatazz);
  background-color: transparent;
  border-color: transparent;
  border-bottom: 3px solid var(--razzmatazz);
}

.breadcrumbs {
  /*position: absolute;
  top: 0;*/
  width: 100%;
}

.breadcrumbs .breadcrumb {
  background: none;
}

.breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
}

.pagination {
  justify-content: center;
}

.pagination .page-item .page-link {
  width: 40px;
  color: #484848;
  padding: 0.5rem 0 0.4rem;
  font-size: 1.2rem;
  background-color: transparent;
  border: 1px solid transparent;
  outline: 0 none !important;
  text-align: center;
}

.pagination .page-item.disabled .page-link {
  color: #b1b2b7;
  background-color: transparent;
  border: 0;
}

.pagination .page-item.active .page-link {
  color: var(--razzmatazz);
  border: 1px solid var(--razzmatazz);
}

.white-txt {
  color: #ffffff;
}

.grey-txt {
  color: #b1b2b7;
}

.peach-txt {
  color: var(--peach);
}

.razzmatazz-txt {
  color: var(--razzmatazz);
}

.banana-txt {
  color: var(--banana);
}

.tangerine-txt {
  color: var(--tangerine);
}

.appstores-icons a {
  max-width: 40%;
  display: inline-block;
}

.table thead th {
  background: #3c3f4b;
  color: #ffffff;
}

#social-share {
  color: var(--razzmatazz);
}

#social-share .label {
  text-transform: uppercase;
  font-weight: bold;
}

.add-to-fav {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  right: 25px;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #ffffff;
  text-shadow: 0px 0px 3px #3c3f4b;
}

.add-to-fav .icon-heart-full {
  color: var(--razzmatazz);
}

.add-to-fav.left {
  left: 20px;
}

.add-to-fav:hover {
  color: var(--razzmatazz);
}

.check-loader {
  display: block;
  width: 50% !important;
  margin: auto;
  box-shadow: none !important;
}

.box-yellow {
  background-color: #ffc512;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.input {
  position: relative;
  height: 35px;
  margin-bottom: 15px;
}

.input .icon {
  position: absolute;
  top: 10px;
  font-size: 14px;
  z-index: 2;
  color: var(--peach);
}

.input .icon.left-icon {
  left: 15px;
}

.input .icon.right-icon {
  right: 1px;
  width: 30px;
  background: #ffffff;
}

.input .form-control {
  height: 35px;
  box-shadow: 2px 2px 6px #ced4da;
  font-size: 0.8rem;
  padding-left: 45px;
  border-radius: 0px;
  font-size: 0.9rem;
  color: #484848;
}

.input.textarea {
  height: auto;
}

.input.textarea .form-control {
  min-height: 85px;
}

.input .btn-search {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 2rem;
}

.dropdown-results {
  width: 100%;
  left: 0;
  position: absolute;
  z-index: 255;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-top: 0;
}

.dropdown-results.dr-cities {
  z-index: 3555;
}

.dropdown-results .autocomplate-search {
  padding: 7px;
  margin: -1px;
  background: var(--razzmatazz);
}

.dropdown-results .autocomplate-search .form-control {
  height: 40px;
  padding-left: 0.75rem;
}

.dropdown-results ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.dropdown-results ul li {
  padding: 10px 20px;
  cursor: pointer;
}

.dropdown-results ul li.active,
.dropdown-results ul li:hover {
  color: var(--peach);
  background: #f8f8f8;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: var(--razzmatazz);
  color: #ffffff;
}

.alert,
.notice {
  padding: 20px 30px;
  margin-bottom: 10px;
  border: 0;
}

.alert.alert-success,
.notice.alert-success {
  background: rgba(0, 201, 1, 0.3);
}

.alert.alert-success .icon,
.notice.alert-success .icon {
  color: #00c901;
}

.alert.alert-info,
.notice.alert-info {
  background: rgba(250, 102, 98, 0.3);
}

.alert.alert-info .icon,
.notice.alert-info .icon {
  color: var(--peach);
}

.alert.alert-warning,
.notice.alert-warning {
  background: rgba(255, 197, 18, 0.3);
}

.alert.alert-warning .icon,
.notice.alert-warning .icon {
  color: var(--banana);
}

.alert.alert-danger,
.notice.alert-danger {
  background: rgba(237, 16, 113, 0.3);
}

.alert.alert-danger .icon,
.notice.alert-danger .icon {
  color: var(--razzmatazz);
}

.alert .icon-alert-triangle,
.alert .icon-info,
.notice .icon-alert-triangle,
.notice .icon-info {
  font-size: 2rem;
}

.notice {
  background: rgba(67, 186, 218, 0.3);
}

.notice .icon {
  color: #43bada;
}

.notice a.link {
  white-space: normal;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=file]:focus,
input[type=tel]:focus,
input[type=color]:focus,
select.form-control:focus,
input.form-control:focus,
button:focus,
.btn:active,
.btn:focus {
  border-color: rgba(254, 169, 104, 0.7) !important;
  box-shadow: 0px 0px 2px 2px rgba(254, 169, 104, 0.27) !important;
  outline: 0 none !important;
}

input[type=range] {
  /*removes default webkit styles*/
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: #d7d7d7;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  background: linear-gradient(to right, var(--razzmatazz), var(--tangerine));
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  height: 16px;
  margin-top: -4px;
  width: 16px;
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #b1b2b7;
}

input[type=range]::-moz-range-track {
  background: #d7d7d7;
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 5px;
}

input[type=range]::-moz-range-thumb {
  background: linear-gradient(to right, var(--razzmatazz), var(--tangerine));
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  height: 16px;
  width: 16px;
}

input[type=range]:-moz-focusring {
  outline: 0;
  outline-offset: -1px;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
  height: 5px;
  width: 100%;
}

input[type=range]::-ms-fill-lower {
  background: #d7d7d7;
  border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
  background: #d7d7d7;
  border-radius: 10px;
}

input[type=range]::-ms-thumb {
  background: linear-gradient(to right, var(--razzmatazz), var(--tangerine));
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  height: 16px;
  width: 16px;
}

input[type=range]:focus::-ms-fill-lower {
  background: #d7d7d7;
}

input[type=range]:focus::-ms-fill-upper {
  background: #d7d7d7;
}

.search-form {
  position: relative;
}

.search-form .btn-search {
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 2rem;
  color: #484848;
}

#shipping-address {
  width: 20%;
}

.custom-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 4px 0 4px 40px;
}

.custom-checkbox input[type=checkbox] {
  clip: rect(0 0 0 0);
  display: none;
}

.custom-checkbox span:before {
  width: 26px;
  height: 26px;
  content: "";
  border: 1px solid var(--razzmatazz);
  position: absolute;
  top: 3px;
  left: 0;
  transition: all 0.3s linear;
}

.custom-checkbox span:after {
  width: 0;
  height: 26px;
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  border-width: 0 0 0 3px;
  border-style: solid;
  border-color: var(--razzmatazz);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  margin: 0;
  transition: all ease-out 0.2s;
}

.custom-checkbox input[type=checkbox]:checked ~ span:bofere {
  border-color: var(--razzmatazz);
}

.custom-checkbox input[type=checkbox]:checked ~ span:after {
  width: 20px;
  height: 10px;
  border-width: 0 0 3px 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 5px 0 0 3px;
}

.price-box {
  padding: 12px 5px;
  border: 1px solid #b5b5b5;
  text-align: center;
  position: absolute;
  right: 15px;
  font-size: 12px;
  min-height: 42px;
}

.inactive-field {
  background-color: #dedede;
}

.log-btn,
.reg-btn {
  font-size: 18px;
  color: var(--razzmatazz);
  padding: 3px 5px;
  transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  position: relative;
  border: 0;
  border-radius: 0px;
  font-family: "gilroy-medium", sans-serif;
  cursor: pointer;
}

.btn.btn-primary {
  background: var(--peach);
}

.btn.btn-info {
  background: var(--banana);
}

.btn.btn-gradient {
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
  color: #ffffff;
  text-transform: uppercase;
}

.btn.btn-gradient:hover {
  background: linear-gradient(to left, var(--razzmatazz), var(--orange));
}

.btn span {
  position: relative;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  /* For Safari 3.1 to 6.0 */
  transition: width 0.3s;
  background: #fafafa;
}

.btn.btn-gradient-border {
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
}

.btn.btn-gradient-border span {
  color: var(--razzmatazz);
}

.btn.btn-gradient-border::before {
  border: 1px solid var(--razzmatazz);
  height: 100%;
  width: 100%;
}

.btn.btn-gradient-border:hover span {
  color: #ffffff;
}

.btn.btn-gradient-border:hover::before {
  border: none;
  width: 0;
  /* For Safari 3.1 to 6.0 */
  transition: width 0.3s;
}

.btn.btn-gradient-border.btn-grey::before {
  background: #efefef;
}

.btn.btn-white {
  background: transparent;
  border: 1px solid #ffffff;
}

.btn.btn-white span {
  color: #ffffff;
}

.btn.btn-app {
  background: transparent;
  border: 1px solid #484848;
}

.btn.btn-app span {
  color: #484848;
}

.btn.btn-light {
  background: #b1b2b7;
  border: 1px solid #b1b2b7;
}

.btn.btn-light span {
  color: #3c3f4b;
}

.btn.btn-dark {
  background: #2a2d36;
  border: 1px solid #2a2d36;
}

.btn.btn-dark span {
  color: #b1b2b7;
}

.btn.btn-transparent {
  background: transparent;
  border: 1px solid #b1b2b7;
}

.btn.btn-transparent span {
  color: #b1b2b7;
}

.btn.btn-white,
.btn.btn-transparent,
.btn.btn-dark,
.btn.btn-light,
.btn.btn-app {
  overflow: hidden;
}

.btn.btn-white::before,
.btn.btn-transparent::before,
.btn.btn-dark::before,
.btn.btn-light::before,
.btn.btn-app::before {
  top: 0px;
  left: 0px;
  width: 0;
  height: 100%;
}

.btn.btn-white:hover span,
.btn.btn-transparent:hover span,
.btn.btn-dark:hover span,
.btn.btn-light:hover span,
.btn.btn-app:hover span {
  color: var(--razzmatazz);
}

.btn.btn-white:hover::before,
.btn.btn-transparent:hover::before,
.btn.btn-dark:hover::before,
.btn.btn-light:hover::before,
.btn.btn-app:hover::before {
  width: 100%;
  /* For Safari 3.1 to 6.0 */
  transition: width 0.3s;
}

.btn.reset-date {
  width: 33px;
  height: 48px;
  position: absolute;
  top: 1px;
  right: 1px;
}

.btn.btn-border-small {
  height: 24px;
  padding: 0 30px;
  font-size: 75%;
  line-height: 2;
  font-family: gilroyextrabold, sans-serif;
}

.btn.btn-snet-t {
  height: 30px;
  padding: 0;
  font-size: 75%;
  line-height: 2;
}

.btn.btn-accept {
  background: #00c901;
}

.btn.btn-accept span {
  color: #00c901;
}

.btn.btn-reject {
  background: var(--razzmatazz);
}

.btn.btn-reject span {
  color: var(--razzmatazz);
}

.btn.btn-map {
  min-width: 40px;
  height: 40px;
  padding: 0;
  background: #f8f8f8;
}

.btn.btn-map span {
  color: #484848;
}

.btn.btn-map.active {
  border: 1px solid var(--razzmatazz);
}

.btn.btn-map.active span {
  color: var(--razzmatazz);
}

.btn-close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  background: #fa6662;
  color: #ffffff;
  border-radius: 100%;
  cursor: pointer;
}

a.btn {
  /*padding: 12px 30px;*/
}

.modal-footer .btn {
  height: 35px;
}

.btn-preotkrii-revert {
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--razzmatazz);
  background-color: var(--razzmatazz);
  color: #ffffff;
  cursor: pointer;
  padding: 10px 15px !important;
  transition: ease-in-out 0.2s;
  max-height: 70px;
}

.btn-preotkrii-revert span {
  color: #ffffff;
}

.btn-preotkrii-revert:hover {
  opacity: 0.7;
}

.notify-close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.notify-link {
  color: #ffffff;
  text-decoration: underline !important;
}

.inner-header,
.inner-header-mb {
  padding-top: 74px;
  background: #484848;
}

.inner-header #city-navigation,
.inner-header-mb #city-navigation {
  overflow: hidden;
}

.inner-header .inner-header-baner,
.inner-header .inner-header-plovdiv,
.inner-header-mb .inner-header-baner,
.inner-header-mb .inner-header-plovdiv {
  height: 130px;
  position: relative;
  background-image: url(/images/events/event-panorama.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inner-header .inner-header-baner .head-img-overlay,
.inner-header .inner-header-baner .head-img-gradient,
.inner-header .inner-header-plovdiv .head-img-overlay,
.inner-header .inner-header-plovdiv .head-img-gradient,
.inner-header-mb .inner-header-baner .head-img-overlay,
.inner-header-mb .inner-header-baner .head-img-gradient,
.inner-header-mb .inner-header-plovdiv .head-img-overlay,
.inner-header-mb .inner-header-plovdiv .head-img-gradient {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.inner-header .inner-header-baner .head-img-overlay,
.inner-header .inner-header-plovdiv .head-img-overlay,
.inner-header-mb .inner-header-baner .head-img-overlay,
.inner-header-mb .inner-header-plovdiv .head-img-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.inner-header .inner-header-baner .head-img-gradient,
.inner-header .inner-header-plovdiv .head-img-gradient,
.inner-header-mb .inner-header-baner .head-img-gradient,
.inner-header-mb .inner-header-plovdiv .head-img-gradient {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.inner-header .inner-header-baner .inner-title,
.inner-header .inner-header-plovdiv .inner-title,
.inner-header-mb .inner-header-baner .inner-title,
.inner-header-mb .inner-header-plovdiv .inner-title {
  max-width: 1140px;
  position: relative;
  margin: auto;
}

.inner-header .inner-header-plovdiv,
.inner-header-mb .inner-header-plovdiv {
  background-image: url(/images/events/inner-header-plovdiv.jpg);
}

.inner-header .inner-header-baner-iec,
.inner-header-mb .inner-header-baner-iec {
  height: 100%;
  position: relative;
  background-image: url(/images/iec-cover-new.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inner-header .inner-header-baner-iec .head-img-overlay,
.inner-header .inner-header-baner-iec .head-img-gradient,
.inner-header-mb .inner-header-baner-iec .head-img-overlay,
.inner-header-mb .inner-header-baner-iec .head-img-gradient {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.inner-header .inner-header-baner-iec .head-img-overlay,
.inner-header-mb .inner-header-baner-iec .head-img-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.inner-header .inner-header-baner-iec .head-img-gradient,
.inner-header-mb .inner-header-baner-iec .head-img-gradient {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.inner-header .inner-header-baner-iec .inner-title,
.inner-header-mb .inner-header-baner-iec .inner-title {
  max-width: 1140px;
  position: relative;
  margin: auto;
  color: white;
}

.inner-header .inner-header-baner-burgas,
.inner-header-mb .inner-header-baner-burgas {
  height: 130px;
  position: relative;
  background-image: url(/images/burgas_header.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inner-header .inner-header-baner-burgas .head-img-overlay,
.inner-header .inner-header-baner-burgas .head-img-gradient,
.inner-header-mb .inner-header-baner-burgas .head-img-overlay,
.inner-header-mb .inner-header-baner-burgas .head-img-gradient {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.inner-header .inner-header-baner-burgas .head-img-overlay,
.inner-header-mb .inner-header-baner-burgas .head-img-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.inner-header .inner-header-baner-burgas .head-img-gradient,
.inner-header-mb .inner-header-baner-burgas .head-img-gradient {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.inner-header .inner-header-baner-burgas .inner-title,
.inner-header-mb .inner-header-baner-burgas .inner-title {
  max-width: 1140px;
  position: relative;
  margin: auto;
}

.inner-header .inner-header-baner-video,
.inner-header-mb .inner-header-baner-video {
  background-image: url(/images/events/top.png) !important;
}

.inner-header .inner-header-baner-priceless,
.inner-header-mb .inner-header-baner-priceless {
  background-image: url(/images/priceless.png) !important;
}

.inner-header-mb {
  background: black !important;
}

.mt-320 {
  margin-top: 320px;
}

footer {
  position: relative;
  padding: 90px 0 70px 0;
  background: #2e2e2e;
  border-top: 2px solid #ffffff;
  color: #ffffff;
}

footer::before {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  background: #484848;
}

footer h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
}

footer #newsletter-form label {
  color: #ffffff;
}

footer #newsletter-form label .colored {
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--razzmatazz);
}

footer #newsletter-form #btn-newsletter {
  margin-left: -15px;
}

footer #newsletter-form .input .form-control {
  box-shadow: none;
}

footer #footer-navigation {
  margin: 60px 0;
}

footer #footer-navigation .footer-nav {
  list-style-type: none;
  margin: 0 0 50px 0;
  padding: 0;
}

footer #footer-navigation .footer-nav li {
  display: block;
}

footer a.link {
  color: #ffffff;
  z-index: 1;
  padding-top: 3px;
  white-space: normal;
  line-height: 1.1;
}

footer .social-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

footer .social-nav li {
  display: inline-block;
}

footer .social-nav li a {
  font-size: 1.2rem;
  display: block;
  margin-right: 10px;
}

footer .site-owner,
footer .site-creator {
  font-size: 0.8rem;
  line-height: 1;
}

#mobile-logo {
  display: block;
  margin-top: 5px;
}

.mobile-nav {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding: 0;
  margin: 0;
}

.mobile-nav .mobile-navbar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-top: 1px solid #d7d7d7;
  box-shadow: 0 0 5px #b1b2b7;
}

.mobile-nav .mobile-navbar .nav-item {
  padding: 0;
}

.mobile-nav .mobile-navbar .nav-link {
  width: 100%;
  display: block;
  padding: 10px 0;
  text-align: center;
  background: #ffffff;
  border: 0;
  border-left: 1px solid #d7d7d7;
}

.mobile-nav .mobile-navbar .nav-link:not(:first-child) {
  border: 0;
}

.mobile-nav .mobile-navbar .nav-link span {
  display: block;
  line-height: 1.3;
}

.mobile-nav .mobile-navbar .nav-link span.icon {
  font-size: 1.5rem;
  color: var(--peach);
}

.mobile-nav .mobile-navbar .nav-link span.mob-nav-txt {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #484848;
}

.mobile-menu {
  width: 100%;
  height: 94%;
  overflow-y: scroll;
}

.mobile-menu,
.desktop-login {
  position: fixed;
  top: 0;
  right: -105%;
  background: linear-gradient(145deg, #fff, #efefef);
  box-shadow: 0px 0px 5px #b4b4b4, 0px 0px 5px #cccccc;
  transition: all 0.5s;
}

.mobile-menu.open,
.desktop-login.open {
  right: 0;
}

.mobile-menu#dsearch,
.desktop-login#dsearch {
  right: auto;
  left: -100%;
}

.mobile-menu#dsearch.open,
.desktop-login#dsearch.open {
  left: 0;
}

.mobile-menu .mobile-menu-holder,
.desktop-login .mobile-menu-holder {
  width: 100%;
  min-height: 100%;
  padding-bottom: 70px;
}

.mobile-menu .mobile-menu-holder .logo,
.desktop-login .mobile-menu-holder .logo {
  position: absolute;
  top: 10px;
  left: 15px;
}

.mobile-menu .mobile-menu-holder .dowload-app,
.desktop-login .mobile-menu-holder .dowload-app {
  border-bottom: 1px solid #b5b5b5;
}

.mobile-menu .mobile-menu-holder .mob-user-menu,
.desktop-login .mobile-menu-holder .mob-user-menu {
  padding: 0;
}

.mobile-menu .mobile-menu-holder .mob-user-menu .lang:first-child,
.desktop-login .mobile-menu-holder .mob-user-menu .lang:first-child {
  border-top: 0;
}

.mobile-menu .mobile-menu-holder .choose-form,
.desktop-login .mobile-menu-holder .choose-form {
  padding-top: 25px;
}

.mobile-menu .mobile-menu-holder .lang,
.desktop-login .mobile-menu-holder .lang {
  display: block;
  padding: 10px 1.5rem;
  border-top: 1px solid #b5b5b5;
  text-decoration: none;
}

.mobile-menu .mobile-menu-holder .lang img,
.desktop-login .mobile-menu-holder .lang img {
  width: 30px;
  height: 30px;
  border: 1px solid #b5b5b5;
}

.mobile-menu .mobile-menu-holder .reset-link a,
.desktop-login .mobile-menu-holder .reset-link a {
  color: #ffffff;
}

.mobile-menu .mobile-menu-holder .alert,
.mobile-menu .mobile-menu-holder .notice,
.desktop-login .mobile-menu-holder .alert,
.desktop-login .mobile-menu-holder .notice {
  color: #ffffff;
  font-size: 0.8rem;
}

#acc-cat .main-cat {
  padding: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #b5b5b5;
  cursor: pointer;
}

#acc-cat .main-cat.active h4,
#acc-cat .main-cat.active a {
  color: var(--razzmatazz);
}

#acc-cat .collapse {
  border-bottom: 1px solid #b5b5b5;
}

#acc-cat .sub-categories {
  margin: 0;
  padding: 0;
  list-style-type: none;
  cursor: pointer;
  background: #b5b5b5;
}

#acc-cat .sub-categories .sub-cat {
  border-bottom: 1px dotted #3c3f4b;
}

#acc-cat .sub-categories .sub-cat:last-child {
  border-bottom: 0;
}

#acc-cat .sub-categories .select-cat {
  display: block;
  padding: 10px 30px;
  color: #ffffff;
}

#navigation {
  position: absolute;
  z-index: 1000;
  margin: 0;
}

#navigation .desktop-nav .col {
  padding: 0;
  z-index: 9;
}

#navigation .desktop-nav .logo-pink {
  display: none;
}

#navigation .desktop-nav .search-form {
  display: none;
}

#navigation .desktop-nav .search-form .form-control {
  width: 280px;
  height: 40px;
  border: 1px solid #d7d7d7;
  border-radius: 0px;
}

#navigation .desktop-nav .navbar-nav {
  display: -webkit-flex;
  flex-direction: row;
  height: 80px;
}

#navigation .desktop-nav .navbar-nav .nav-link {
  margin: 0 12px;
  color: #ffffff;
  padding: 0;
}

#navigation .desktop-nav .navbar-nav .nav-link-blue {
  margin: 0 12px;
  color: #024491;
  padding: 0;
}

#navigation .desktop-nav .navbar-nav #lang-changer {
  margin: 0 30px;
}

#navigation .desktop-nav .navbar-nav #download-app {
  height: 38px;
  padding: 0.4rem;
  margin: 0 12px;
  line-height: 1.6;
}

#navigation .desktop-nav .navbar-nav #download-app .txtapp {
  height: 25px;
}

#navigation .desktop-nav .navbar-nav .dropdown-menu {
  min-width: 5rem;
  border-radius: 0px;
  left: -20px !important;
  text-align: center;
}

#navigation .desktop-nav .navbar-nav .dropdown-menu .dropdown-item:hover,
#navigation .desktop-nav .navbar-nav .dropdown-menu .dropdown-item:focus {
  color: #ffffff;
  background-color: var(--primary-color);
  cursor: pointer;
}

#navigation .desktop-nav .desktop-login {
  width: 50%;
  max-width: 480px;
  height: 100%;
  z-index: 9;
  overflow-y: auto;
}

#navigation .desktop-nav .btn-menu {
  position: fixed;
  top: 37.5%;
  left: -66px;
  padding: 10px 15px;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-top: 0;
  box-shadow: 0px 0 3px #b1b2b7;
  font-weight: 600;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
}

#navigation .desktop-nav .btn-menu:hover {
  background: linear-gradient(to left, var(--razzmatazz), var(--orange));
}

#navigation .desktop-nav .btn-menu .icon {
  font-size: 1.5rem;
}

#navigation .notifications {
  position: relative;
}

#navigation .notifications a {
  color: #ffffff;
  margin-left: 12px;
}

#navigation .notifications .notifs-index {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: center;
  background: var(--peach);
  color: #ffffff;
  border-radius: 100%;
}

#navigation.sticky .notifications a {
  color: #484848;
}

.background-white {
  background-color: white;
}

.home-wrapper #navigation .desktop-nav {
  background: transparent;
  box-shadow: none;
}

.home-wrapper #navigation .background-white {
  background-color: white !important;
}

#header-download-sec {
  max-height: 130px;
  position: fixed;
  top: -100%;
  z-index: 99;
  background: #ffffff;
  box-shadow: 0 0 5px #b1b2b7;
  transition: all 0.5s;
}

#header-download-sec.open {
  top: 0;
}

#header-download-sec .appstores-text {
  padding: 25px 15px;
  font-size: 0.9rem;
}

#header-download-sec .appstores-icons {
  padding: 20px 15px;
}

#header-download-sec .appstores-icons a {
  display: block;
  max-width: 100%;
  margin-bottom: 5px;
}

#header-download-sec #close-download-sec {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -17px;
  border: 0;
  background: none;
  line-height: 0.5;
}

.close-form {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 2rem;
  cursor: pointer;
}

#gallery .sloped-bg {
  height: 110%;
}

@media (max-width: 1300px) {
  #gallery .sloped-bg {
    background-image: none;
  }
}

#gallery .masonry .col-3,
#gallery .masonry .col-4,
#gallery .masonry .col-6 {
  padding: 0;
}

#gallery .gallery-item {
  /* Masonry bricks or child elements */
  display: inline-block;
  width: 100%;
  padding: 5px;
}

#gallery .gallery-item .gallery-img-wrap {
  position: relative;
  overflow: hidden;
}

#gallery .gallery-item .gallery-img-wrap img {
  width: 100%;
}

#gallery .gallery-item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
  opacity: 0;
}

#gallery .gallery-item .preview-btn {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  text-shadow: 0px 0px 2px #000000;
}

#gallery .gallery-item:hover .gallery-img-wrap {
  box-shadow: 0 0 5px #b1b2b7;
}

#gallery .gallery-item:hover .overlay {
  opacity: 0.5;
}

#gallery .gallery-item:hover .preview-btn {
  visibility: visible;
}

/* The Modal (background) */

.gal-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
  /* Modal Content */
  /* The Close Button */
  /* Hide the slides by default */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
}

.gal-modal .gal-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
}

.gal-modal .close {
  color: var(--razzmatazz);
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.gal-modal .close:hover,
.gal-modal .close:focus {
  color: var(--tangerine);
  text-decoration: none;
  cursor: pointer;
}

.gal-modal .mySlides {
  display: none;
  text-align: center;
  overflow: hidden;
}

.gal-modal .prev,
.gal-modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -30px;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  background-color: var(--razzmatazz);
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.gal-modal .prev:hover,
.gal-modal .next:hover {
  background-color: var(--tangerine);
}

.gal-modal .next {
  right: 0;
}

/* Number text (1/3 etc) */

.numbertext {
  color: #ffffff;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */

.caption-container {
  text-align: center;
  padding: 2px 16px;
}

/* Masonry on small screens */

@media only screen and (max-width: 767px) {
  .prev,
  .next {
    padding: 10px;
  }
}

#header-video {
  position: absolute;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background-image: url(/images/home-bg-desk.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
}

#header-video::after {
  content: "";
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

#header-video #mainVideo {
  width: 100%;
  height: auto;
}

.home-wrapper {
  overflow-x: hidden;
}

.header {
  width: 100%;
  height: 580px;
  position: relative;
}

.header #header-content {
  position: absolute;
  top: 130px;
  padding: 0 40px;
}

.header #header-content p {
  color: #ffffff;
  text-shadow: 1px 1px 3px #000000;
}

.header #home-search-cities .city-select {
  height: 250px;
  overflow: auto;
}

.header #home-search-cats .dropdown-results .search-cats {
  background-color: #efefef;
  padding: 0;
}

.header #home-search-cats .dropdown-results .search-cats .main-cats {
  position: relative;
  padding: 0;
}

.header #home-search-cats .dropdown-results .search-cats .main-cats .mc-name {
  padding: 3px 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--razzmatazz);
  color: #ffffff;
}

.header #home-search-cats .dropdown-results .search-cats .sub-cats li {
  padding: 0;
}

.header #home-search-cats .dropdown-results .search-cats .sub-cats .sc-name {
  display: block;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 20px;
}

.header #home-search-cats .dropdown-results .search-items {
  display: none;
}

.header #home-search-cats .dropdown-results.search-suggestions-mobile .main-cat-links {
  padding: 0;
}

.header #home-search-cats .dropdown-results.search-suggestions-mobile .main-cat-links:hover {
  background: none;
}

.header #home-search-cats .dropdown-results.search-suggestions-mobile .main-cat-links .mc-mob-link {
  display: block;
  font-family: "gilroyextrabold", sans-serif;
  color: #ffffff;
  background: var(--razzmatazz);
  padding: 10px;
}

.header #home-search-cats .dropdown-results.search-suggestions-mobile .main-cat-links .sub-cat-links li {
  padding: 0;
  border-bottom: 1px dotted #d7d7d7;
}

.header #home-search-cats .dropdown-results.search-suggestions-mobile .main-cat-links .sub-cat-links li:last-child {
  border-bottom: 0;
}

.header #home-search-cats .dropdown-results.search-suggestions-mobile .main-cat-links .sub-cat-links .sc-mob-link {
  display: block;
  padding: 10px 20px;
}

#app .selected-city {
  font-size: 1rem;
  cursor: pointer;
}

.search-autocomlete {
  max-height: 303px;
  overflow: auto !important;
}

.search-autocomlete #acResults {
  margin: 0;
}

.search-autocomlete #acResults .col-12 {
  padding: 0;
}

.search-autocomlete #acResults h6 {
  font-weight: bold;
  text-transform: capitalize;
  background-color: var(--razzmatazz);
  padding: 10px;
  margin: 0;
  color: #ffffff;
}

.search-autocomlete #acResults a {
  display: block;
  padding: 10px;
}

.search-autocomlete #acResults a:hover {
  background: #fafafa;
}

.slooped-header {
  width: 100%;
  height: 60px;
  margin-top: -58px;
  position: relative;
  overflow: hidden;
}

.slooped-header::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -1px;
  border-style: solid;
  border-width: 60px 0 0 800px;
  border-color: transparent transparent transparent #efefef;
}

#top-destination {
  margin-top: -40px;
}

#top-destination .owl-carousel .owl-stage-outer {
  padding: 0;
}

#top-destination .section-title {
  text-align: center;
}

#top-destination .section-title p {
  color: #b4b4b4;
}

#top-destination .link {
  display: none;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
}

#top-destination .item {
  padding: 1px;
  background: #d7d7d7;
}

#top-destination .item .city-name {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #ffffff;
  text-shadow: 1px 1px 5px #3c3f4b;
  opacity: 0.85;
  line-height: 0.7;
  transition: all 0.5s ease;
}

#top-destination .item:hover .city-name {
  bottom: 100px;
  color: #ffe492;
  opacity: 1;
  transition: all 0.5s ease;
}

#top-destination #tdc-holder {
  position: relative;
  /*#allev-link {
  	position: absolute;
      z-index: 5;
      width: calc(50% - 35px);
      left: 25px;

      @media (min-width: 650px) {
            	width: calc(33% - 28px);
            }
            @media (min-width: 992px) {
            	width: calc(25% - 27px);
            }
  }

  #top-dest-carousel {
  	padding-left: 50%;

      @media (min-width: 650px) {
            	padding-left: 33%;
            }
            @media (min-width: 992px) {
            	padding-left: 25%;
            }
  }*/
}

#top-events .section-title .colored,
#outlet .section-title .colored,
#arena .section-title .colored {
  color: var(--banana);
}

#top-events #top-events-carousel .owl-item img,
#top-events #outlet-carousel .owl-item img,
#top-events #arena-carousel .owl-item img,
#outlet #top-events-carousel .owl-item img,
#outlet #outlet-carousel .owl-item img,
#outlet #arena-carousel .owl-item img,
#arena #top-events-carousel .owl-item img,
#arena #outlet-carousel .owl-item img,
#arena #arena-carousel .owl-item img {
  height: 100%;
}

#top-events #top-events-carousel .item:not(.first-big-item) img,
#top-events #outlet-carousel .item:not(.first-big-item) img,
#top-events #arena-carousel .item:not(.first-big-item) img,
#outlet #top-events-carousel .item:not(.first-big-item) img,
#outlet #outlet-carousel .item:not(.first-big-item) img,
#outlet #arena-carousel .item:not(.first-big-item) img,
#arena #top-events-carousel .item:not(.first-big-item) img,
#arena #outlet-carousel .item:not(.first-big-item) img,
#arena #arena-carousel .item:not(.first-big-item) img {
  max-width: 320px;
}

#urbo-live .section-title .colored {
  color: var(--banana);
}

#urbo-live #urbo-live-carousel .owl-item img {
  height: 100%;
}

#urbo-live #urbo-live-carousel .item:not(.first-big-item) img {
  max-width: 320px;
}

#top-culture .section-title .colored {
  color: var(--razzmatazz);
}

#top-culture #top-culture-carousel .owl-item img {
  height: 100%;
}

#weekend-in-burgas .section-title .colored {
  color: var(--razzmatazz);
}

#weekend-in-burgas #weekend-in-burgas-carousel .owl-item img {
  height: 100%;
}

#weekend-in-burgas #weekend-in-burgas-carousel .item:not(.first-big-item) img {
  max-width: 320px;
}

#top-sport .section-title .colored {
  color: var(--razzmatazz);
}

#top-sport #top-sport-carousel .owl-item img {
  height: 100%;
}

#urbo-online .section-title .colored {
  color: var(--banana);
}

#urbo-online #urbo-online-carousel .owl-item img {
  height: 100%;
}

#urbo-online #urbo-online-carousel .item:not(.first-big-item) img {
  max-width: 320px;
}

#staying .section-title .colored {
  color: var(--banana);
}

#staying #staying-carousel .owl-item img {
  height: 100%;
}

#staying #staying-carousel .item:not(.first-big-item) img {
  max-width: 320px;
}

#popular-attractions .section-title .colored {
  color: var(--peach);
}

#urbo-recommends .section-title .colored,
#top-categories .section-title .colored,
#new-current .section-title .colored,
#home-hunters-recommends .section-title .colored {
  color: var(--banana);
}

#urbo-recommends .btn.btn-gradient-border.btn-grey::before,
#top-categories .btn.btn-gradient-border.btn-grey::before,
#new-current .btn.btn-gradient-border.btn-grey::before,
#home-hunters-recommends .btn.btn-gradient-border.btn-grey::before {
  background: #fafafa;
}

#hot-deals .section-title .colored {
  color: var(--orange);
}

#most-wanted .btn.btn-gradient-border.btn-grey::before {
  background: #fafafa;
}

#charity .reverse {
  top: 200px;
}

#charity .section-title .colored {
  color: var(--tangerine);
}

#get-app .section-title {
  position: relative;
}

#get-app .section-title span {
  position: relative;
  display: block;
  z-index: 2;
  text-shadow: 0 1px 3px #3c3f4b;
}

#get-app .section-title .normal {
  margin-left: -20px;
  color: #ffe492;
}

#get-app .section-title .transparent {
  position: absolute;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
  color: #ffffff;
  opacity: 0.4;
  text-shadow: none;
}

#get-app .section-title .colored {
  position: relative;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #ffffff;
}

#my-business .section-title {
  position: relative;
}

#my-business .section-title span {
  position: relative;
  display: block;
  z-index: 2;
  text-shadow: 0 1px 3px #3c3f4b;
}

#my-business .section-title .normal {
  margin-left: -20px;
  color: #ffffff;
}

#my-business .section-title .transparent {
  position: absolute;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
  color: #ffffff;
  opacity: 0.4;
  text-shadow: none;
}

#my-business .section-title .colored {
  position: relative;
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #ffe492;
}

#home-app {
  width: 80%;
  height: 60%;
  min-height: 700px;
  margin: 0 auto;
  background: white url(/images/car.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#get-app {
  position: relative;
}

#get-app .sloped-bg {
  background: transparent !important;
  overflow: hidden;
}

#get-app .get-app-bg {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: absolute;
  top: -50px;
  /* IE 9 */
  -webkit-transform: skewY(-3deg);
  /* Safari 3-8 */
  transform: skewY(-3deg);
  background: white url(/images/parking/urbo_city_bg2.png);
  background-attachment: fixed;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#get-app .get-app-bg.en {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: absolute;
  top: -50px;
  /* IE 9 */
  -webkit-transform: skewY(-3deg);
  /* Safari 3-8 */
  transform: skewY(-3deg);
  background: white url(/images/parking/urbo_city_en2.png);
  background-attachment: fixed;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#get-app .get-app-bg.mbl {
  background: white url(/images/parking/new_mobile.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#get-app .get-app-bg.mbl .en {
  background: white url(/images/parking/new_mobile_en.png);
}

#get-app .get-app-bg.mbl.en {
  background: white url(/images/parking/new_mobile_en.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#get-app .app-info {
  position: absolute;
  text-align: center;
}

#get-app .app-info .section-title {
  margin-bottom: 20px;
}

#get-app .app-info .section-title .transparent {
  left: 20px;
  top: -27px;
  font-size: 3rem;
}

#get-app .app-info p {
  color: #ffffff;
  text-shadow: 1px 0 3px #000000;
}

#get-app .app-img {
  height: 200px;
  position: relative;
}

#get-app .app-img img {
  width: 250px;
  position: absolute;
}

#get-app .app-img img.rph {
  top: 0;
  right: 20px;
}

#get-app .app-img img.lph {
  top: 30px;
  left: 20px;
}

#get-app .rphi {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.33s, opacity 0.33s linear;
}

#get-app:hover .rphi {
  visibility: visible;
  opacity: 1;
}

#get-app:hover #rphi1 {
  transition-delay: 0s;
}

#get-app:hover #rphi2 {
  transition-delay: 0.5s;
}

#get-app:hover #rphi3 {
  transition-delay: 1s;
}

#my-business {
  margin-bottom: 60px;
  z-index: 2;
}

#my-business .my-business-bg {
  background: linear-gradient(to right, var(--razzmatazz), var(--tangerine));
}

#my-business .business-img {
  height: 230px;
}

#my-business .business-img img {
  position: relative;
  z-index: 2;
}

#my-business .business-info {
  padding: 30px;
  text-align: center;
}

#my-business .business-info ul {
  padding: 0;
  list-style-type: none;
  color: #ffffff;
}

#my-business .business-info .btn-white {
  padding: 12px 30px;
}

#my-business .section-title .transparent {
  left: 0;
  top: -30px;
  z-index: 1;
}

#my-business .section-title .colored {
  color: #ffe492;
}

#our-partners {
  z-index: 2;
}

#our-partners .white-bg {
  background-color: #ffffff;
}

#our-partners .white-bg.top200 {
  top: 200px;
}

#our-partners img {
  width: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

#our-partners img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

#our-partners .link {
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
}

#our-partners #partners-carousel .owl-nav {
  top: 0;
}

#bucket-list {
  z-index: 2;
}

#city-navigation {
  background: #ffffff;
  box-shadow: 0 0 3px #b1b2b7;
  padding-left: 30px;
  padding-right: 30px;
}

#city-navigation .owl-carousel .owl-stage-outer {
  padding: 7px 0;
}

#city-navigation .owl-carousel .owl-stage-outer .owl-stage {
  margin: auto;
}

#city-navigation .owl-carousel .city-nav-link {
  display: block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #3c3f4b;
  padding: 2px 8px 0;
  cursor: pointer;
}

#city-navigation .owl-carousel .city-nav-link.active {
  color: var(--razzmatazz);
  border: 1px solid var(--razzmatazz);
}

.city-activities {
  padding: 60px 0;
}

.category-title {
  font-family: "gilroyextrabold", sans-serif;
  font-weight: 600;
  font-size: 2.3rem;
}

.city-news::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
  background: #efefef;
}

.city-news .sloped-bg {
  height: 250px;
}

.city-news .item .item-info {
  padding: 15px 30px;
}

.city-news .item .item-img img {
  width: 100%;
}

.city-article .sloped-bg {
  height: 350px;
  top: -100px;
}

.city-article::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
  /*background: $bg-grey;*/
}

.city-article section {
  padding: 40px 0;
}

.city-article section:last-child {
  padding-bottom: 0;
}

.city-article .article-header {
  position: relative;
  margin-bottom: 20px;
}

.city-article .art-img {
  box-shadow: 0 0 5px #b1b2b7;
}

.city-article .art-title-holder {
  margin: auto;
  margin-top: -10%;
}

.city-article .art-title-holder .category-title {
  display: none;
}

.city-article .art-title-holder .art-title-box {
  position: relative;
  padding: 30px 40px;
  background: #ffffff;
  box-shadow: 0 0 5px #b1b2b7;
}

.city-article .art-title-holder .article-title {
  margin: 10px 0 20px 0;
  font-family: "gilroy-regular", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: inherit;
  color: #484848;
}

.city-article .art-title-holder .link {
  white-space: normal;
}

#city-about .about-city-img {
  max-width: 50%;
  float: left;
  margin: 0 20px 20px 0;
}

#city-about .about-city-country {
  color: #b5b5b5;
}

#city-about .about-city-content {
  text-align: justify;
}

#city-about .about-city-box {
  padding-top: 60px;
}

#city-about .about-city-box h3 {
  text-transform: uppercase;
}

#city-about .about-city-box .city-details-icon img {
  max-width: 65px;
}

@media (max-width: 540px) {
  #city-about .about-city-box h3,
  #city-about .about-city-box .city-details-icon {
    text-align: center;
  }
}

#city-about .city-business-filters .btn-gradient-border {
  width: 100%;
  margin-bottom: 10px;
  padding: 15px 0;
}

#city-about .city-business-listing img {
  width: 100%;
}

.city-preview {
  margin-bottom: 50px;
}

#useful-contacts {
  height: 100vh;
  width: 100%;
  max-width: 800px;
  left: auto;
  right: -100%;
  z-index: 1002;
  padding-left: 15px;
  padding-right: 15px;
  color: #ffffff;
  overflow-x: auto;
}

#useful-contacts.open {
  right: 0;
}

#useful-contacts .close-form {
  color: var(--orange);
}

#useful-contacts h4 {
  color: #3c3f4b;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: "gilroy-bold", sans-serif;
}

#useful-contacts .useful-row {
  border-top: 1px solid #b5b5b5;
}

#useful-contacts .useful-row:last-child {
  border-bottom: 1px solid #b5b5b5;
}

#useful-contacts .useful-row .col {
  padding: 10px;
}

#useful-contacts .useful-row .useful-title {
  color: #3c3f4b;
}

#useful-contacts .useful-image {
  width: 25px;
  height: 25px;
}

#useful-contacts .useful-button {
  border-left: 1px solid #b5b5b5;
  color: #3b6be7;
}

#useful-contacts a.useful-button:hover {
  background: #2a2d36;
  color: #ffe492;
}

#useful-contacts .useful-label {
  display: none;
}

.place-article .sloped-bg {
  height: 250px;
}

.place-article::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
  background: #efefef;
}

.place-article .article-header {
  position: relative;
  margin-bottom: 20px;
}

.place-article .art-img {
  box-shadow: 0 0 5px #b1b2b7;
}

.place-article .art-title-holder {
  margin: auto;
  margin-top: -10%;
  z-index: 1;
}

.place-article .art-title-holder .category-title {
  display: none;
}

.place-article .art-title-holder .art-title-box {
  position: relative;
  padding: 30px 40px;
  background: #ffffff;
  box-shadow: 0 0 5px #b1b2b7;
}

.place-article .art-title-holder .article-title {
  margin: 10px 0 20px 0;
  font-family: "gilroy-regular", sans-serif;
  font-size: 1.8rem;
  text-transform: inherit;
  color: #484848;
}

.place-article .art-title-holder .link {
  white-space: normal;
}

.place-article .place-params {
  padding: 0;
  margin: 20px 0;
  list-style-type: none;
}

.place-article .place-params li {
  display: block;
  margin-bottom: 10px;
}

.place-article .place-params li .icon,
.place-article .place-params li .label {
  color: #b1b2b7;
  text-transform: uppercase;
}

.place-article .place-params li .val {
  font-weight: bold;
  color: #484848;
}

.place-article .place-params li .icon {
  font-size: 0.8rem;
}

.place-article .place-social {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.place-article .place-social li {
  display: inline-block;
}

.place-article .place-social li a {
  display: block;
  padding: 5px 11px;
  background: rgba(250, 102, 96, 0.1);
  color: var(--peach);
}

.place-article .place-social li a:hover {
  background: var(--peach);
  color: #ffffff;
}

.place-article .place-social li a .icon {
  font-size: 1.5rem;
  line-height: 1.5;
}

.place-article section {
  padding: 40px 0;
}

.place-article .item .item-img img {
  width: 100%;
}

.place-article .item .item-info {
  padding: 15px 30px;
}

.up-club-box .title-box {
  position: absolute;
  top: -23px;
  right: 0;
  font-family: "gilroyextrabold", sans-serif;
  font-size: 1.8rem;
  opacity: 0.7;
}

.up-club-box .content-box {
  padding: 30px 40px;
}

.up-club-box .content-box h4 {
  text-align: center;
  font-size: 4rem;
  color: var(--razzmatazz);
}

.sitebar {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  margin-top: 0;
  background-color: #3c3f4b;
  background-image: url(/images/bg-mob-menu.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 75%;
  transition: all 0.5s;
  z-index: 1000;
  color: #ffffff;
}

.sitebar .mob-open-filters {
  width: 70px;
  height: 70px;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 70px;
  right: 0;
  font-size: 2rem;
  background: #3c3f4b;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-right: 0;
  transition: all 0.5s;
}

.sitebar.open {
  right: 0;
}

.sitebar.open .mob-open-filters {
  right: 100%;
}

.sitebar .sidebar-title {
  padding: 15px 30px;
  border-bottom: 3px solid var(--banana);
  color: var(--banana);
  text-transform: uppercase;
}

.sitebar .sidebar-content {
  height: calc(100vh - 165px);
  overflow-y: auto;
}

.sitebar .sidebar-content .main-cat {
  padding: 15px 30px;
  text-transform: uppercase;
  border-bottom: 1px solid #b5b5b5;
  cursor: pointer;
}

.sitebar .sidebar-content .main-cat h4 {
  color: #ffffff;
  font-weight: 400;
}

.sitebar .sidebar-content .main-cat.active h4 {
  font-weight: 600;
}

.sitebar .sidebar-content .collapse {
  border-bottom: 1px solid #b5b5b5;
}

.sitebar .sidebar-content .sub-categories {
  margin: 0;
  padding: 0;
  list-style-type: none;
  cursor: pointer;
}

.sitebar .sidebar-content .sub-categories .select-cat {
  display: block;
  padding: 10px 30px;
}

.sitebar .sidebar-content .sub-categories .select-cat.active {
  background: #b5b5b5;
}

.sitebar .sidebar-content .sub-types {
  list-style-type: none;
  padding-left: 20px;
}

.sitebar .sidebar-footer .clear-cat {
  display: block;
  padding: 15px 30px;
  text-transform: uppercase;
  color: var(--razzmatazz);
  cursor: pointer;
}

.sitebar .sidebar-footer .clear-cat .icon {
  font-size: 0.8rem;
}

#city-places .selected-filters,
#all-events-listing .selected-filters {
  border: 1px solid #d7d7d7;
  cursor: pointer;
  padding: 0 5px;
}

#city-places .selected-filters .icon,
#all-events-listing .selected-filters .icon {
  display: inline-block;
  overflow: hidden;
  transition: width 0.3s;
}

#city-places .selected-filters:hover,
#all-events-listing .selected-filters:hover {
  background: #ffffff;
}

#city-places #gmap,
#all-events-listing #gmap {
  width: 100%;
  height: 485px;
  background: #f8f8f8;
  border: 1px solid #d7d7d7;
}

#city-places .map-listing,
#all-events-listing .map-listing {
  height: 560px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-left: 0;
  padding: 7px 0;
}

#city-places .map-listing .places-listing,
#all-events-listing .map-listing .places-listing {
  overflow-y: scroll;
  height: 545px;
}

#city-places .map-listing .places-listing .map-place,
#all-events-listing .map-listing .places-listing .map-place {
  border-bottom: 1px solid #d7d7d7;
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
}

#city-places .map-listing .places-listing .map-place:last-child,
#all-events-listing .map-listing .places-listing .map-place:last-child {
  border-bottom: 0;
}

#city-places .map-listing .places-listing .map-place:hover,
#city-places .map-listing .places-listing .map-place.selected,
#all-events-listing .map-listing .places-listing .map-place:hover,
#all-events-listing .map-listing .places-listing .map-place.selected {
  background: #f8f8f8;
}

#city-places .map-listing .places-listing .map-place:hover .show-location,
#city-places .map-listing .places-listing .map-place.selected .show-location,
#all-events-listing .map-listing .places-listing .map-place:hover .show-location,
#all-events-listing .map-listing .places-listing .map-place.selected .show-location {
  bottom: -10px;
  transition: all 0.5s;
}

#city-places .map-listing .places-listing .map-place .place-img,
#all-events-listing .map-listing .places-listing .map-place .place-img {
  width: 100%;
}

#city-places .map-listing .places-listing .map-place h4,
#all-events-listing .map-listing .places-listing .map-place h4 {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

#city-places .map-listing .places-listing .map-place p,
#all-events-listing .map-listing .places-listing .map-place p {
  font-size: 0.8rem;
  line-height: 1;
  margin: 0;
}

#city-places .map-listing .places-listing .map-place .show-location,
#all-events-listing .map-listing .places-listing .map-place .show-location {
  position: absolute;
  bottom: -50px;
  font-size: 0.8rem;
  background: #3c3f4b;
  color: #ffffff;
  padding: 0 5px;
  transition: all 0.5s;
}

#city-places .map-listing .places-listing .map-place .show-location .icon,
#all-events-listing .map-listing .places-listing .map-place .show-location .icon {
  font-size: 0.5rem;
}

.gm-style .gm-style-iw-c {
  padding: 10px !important;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

#app .gm-ui-hover-effect {
  background: white !important;
  opacity: 1 !important;
  top: 0 !important;
  right: 0 !important;
  width: 25px !important;
  height: 25px !important;
  padding-left: 5px !important;
}

#app .gm-ui-hover-effect img {
  margin: 5px 0 !important;
}

#infoWindow h4 {
  margin: 5px 0 0 0;
}

#infoWindow p {
  margin: 0;
}

.map-modal-btn {
  height: 30px;
  display: block;
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
  text-align: center;
  padding: 5px !important;
  color: #ffffff;
}

/* NEW event page*/

.event-article .sloped-bg {
  top: -80px;
  max-height: 600px;
  background: #f7f7f7;
}

.event-article .event-information {
  max-width: 1120px;
}

.event-article .ev-img {
  width: 100%;
}

/* OLD event page*/

#event-page .article-header .container {
  position: relative;
}

.event-img {
  box-shadow: 0 0 5px #b1b2b7;
}

.event-params {
  padding: 0;
  margin: 20px 0;
  list-style-type: none;
}

.event-params li {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.event-params li .icon,
.event-params li .label {
  color: var(--razzmatazz);
  text-transform: uppercase;
}

.event-params li .link {
  cursor: pointer;
}

.event-params li .link:hover {
  color: #ffffff;
}

.price-wrap .item-price-through {
  font-family: "gilroyextrabold", sans-serif;
  font-size: 0.8rem;
  color: #b1b2b7;
  text-decoration: line-through;
}

.price-wrap .item-price {
  font-family: "gilroyextrabold", sans-serif;
  font-size: 1.1rem;
  color: var(--razzmatazz);
}

.price-wrap .item-price.free-event {
  color: #00c901;
}

.price-wrap .item-price.read-more {
  color: var(--orange);
}

.price-wrap .whit-discount-label {
  font-family: "gilroyextrabold", sans-serif;
  color: var(--orange);
  display: block;
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.price-wrap .better-price {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--orange);
  border-left: 1px solid var(--orange);
  padding: 0 5px;
  white-space: normal;
}

.price-wrap .better-price::before {
  /*background: var(--orange);*/
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
  -webkit-transform: scaleY(1) translateX(-100%);
  transform: scaleY(1) translateX(-100%);
}

.price-wrap .better-price:hover::before,
.price-wrap .better-price:focus::before,
.price-wrap .better-price:active::before {
  -webkit-transform: scaleY(1) translateX(0);
  transform: scaleY(1) translateX(0);
}

.art-title-box .price-wrap {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  #event-page .event-information .art-img {
    max-width: 800px;
  }
}

#event-page .event-sidebar {
  position: relative;
  padding-top: 150px;
}

#event-page .event-sidebar .position-sticky {
  width: 100%;
  top: 100px;
  margin: 0;
}

#offers .sloped-bg {
  height: 100%;
}

#offers .event-offer {
  cursor: pointer;
}

#offers .event-offer .offer-discount {
  display: block;
  padding: 10px;
  font-size: 1.5rem;
  font-family: "gilroyextrabold", sans-serif;
  background: #f8f8f8;
  color: #484848;
  text-align: center;
}

#offers .event-offer.selected .offer-discount {
  background: #00c901;
  color: #ffffff;
}

#offers .event-offer.selected .offer-discount .icon {
  display: block;
}

#offers .event-offer .offer-params {
  text-align: center;
}

#description a:not(#colldesc) {
  text-decoration: underline !important;
  color: var(--razzmatazz);
  position: relative;
  display: inline-block;
  z-index: 2;
  outline: none;
  vertical-align: bottom;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

#description a:not(#colldesc)::before {
  position: absolute;
  top: 10%;
  left: -1px;
  width: 100%;
  height: 80%;
  z-index: -1;
  background: var(--razzmatazz);
  content: "";
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scaleY(0.618) translateX(-100%);
  transform: scaleY(0.618) translateX(-100%);
}

#description a:not(#colldesc):hover,
#description a:not(#colldesc):focus,
#description a:not(#colldesc):active {
  text-decoration: none !important;
  color: #ffffff;
  transition: all 0.3s;
}

#description a:not(#colldesc):hover::before,
#description a:not(#colldesc):focus::before,
#description a:not(#colldesc):active::before {
  -webkit-transform: scaleY(1) translateX(0);
  transform: scaleY(1) translateX(0);
}

#program .event-edition {
  margin-bottom: 10px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  padding: 10px;
}

#program .event-edition:hover {
  box-shadow: 0 0 5px #b1b2b7;
}

#program .event-edition .event-heading {
  min-height: 60px;
  cursor: pointer;
}

#program .event-edition .event-heading .icon {
  position: absolute;
  top: 18px;
  right: 15px;
  font-size: 1.5rem;
  color: #b1b2b7;
}

#program .event-edition .event-heading .icon.rotate {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#program .event-edition .date-info {
  display: none;
}

#program .event-edition .date-info.open {
  display: block;
}

#program .event-edition .date-info .row {
  padding: 10px 0;
  background: #efefef;
  margin-top: 2px;
}

#program .event-edition .date-info .row .btn-light {
  width: 48%;
  max-width: 95px;
  height: 40px;
  margin: 1px 2px 1px 0;
  font-size: 0.8rem;
  padding: 0;
}

#program .event-edition .event-colapse {
  height: 0;
  overflow: hidden;
  /* For Safari 3.1 to 6.0 */
  transition: height 0.5s;
}

#program .event-edition .event-colapse.open {
  height: 200px;
  padding-bottom: 10px;
}

#program .event-edition .event-date {
  font-size: 1.2rem;
  font-family: "gilroyextrabold", sans-serif;
  color: var(--razzmatazz);
  line-height: 1;
}

#program .event-edition .event-day {
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  color: #b1b2b7;
}

#program .event-edition .event-object-name {
  font-size: 1.2rem;
  color: #000000;
}

#program .event-edition .event-address {
  font-size: 0.7rem;
  color: #b1b2b7;
}

#program .event-edition .event-time .input {
  height: 40px;
}

#program .event-edition .event-time .input .form-control {
  height: 40px;
}

#program .event-edition .event-time .input .icon {
  top: 11px;
}

#program .event-edition .btn.get-ticket {
  height: 40px;
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  line-height: 1rem;
}

#ytModal .modal-dialog {
  max-width: 720px;
}

/* NEW DESIGN */

#event-sitebar {
  padding-top: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 15px;
  background: none;
  box-shadow: none;
  max-height: calc(100vh - 5px);
  overflow-y: auto;
}

#event-sitebar .sitebar-close {
  display: none !important;
}

#event-sitebar .sitebar-filters {
  background: linear-gradient(145deg, #fff, #efefef);
  box-shadow: 0px 0px 5px #b4b4b4, 0px 0px 5px #cccccc;
}

#event-sitebar .sitebar-tags,
#event-sitebar .sidebar-cat {
  padding: 20px 0;
}

#event-sitebar .collapse:not(.show) {
  display: none;
}

.price-lbl {
  color: var(--razzmatazz);
}

.price-range-dual {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-range-dual .bgn-price {
  font-weight: bold;
  font-size: 1em;
  color: inherit;
  line-height: 1.2;
}

.price-range-dual .eur-price {
  color: inherit;
  font-size: 0.9em;
  font-weight: normal;
  line-height: 1.2;
}

.item-price-through .price-range-dual,
.item-price .price-range-dual {
  gap: 1px;
}

.item-price-through .price-range-dual .bgn-price,
.item-price-through .price-range-dual .eur-price,
.item-price .price-range-dual .bgn-price,
.item-price .price-range-dual .eur-price {
  font-size: 0.9em;
}

.better-price .price-range-dual {
  display: inline-flex;
  gap: 2px;
}

.better-price .price-range-dual .bgn-price {
  font-weight: 600;
}

.better-price .price-range-dual .eur-price {
  color: inherit;
}

.price-range-dual.d-inline-block {
  display: inline-flex;
  gap: 4px;
}

.price-range-dual.d-inline-block .bgn-price,
.price-range-dual.d-inline-block .eur-price {
  display: inline;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .price-range-dual {
    gap: 1px;
  }

  .price-range-dual .eur-price {
    font-size: 0.85em;
  }

  .better-price .price-range-dual {
    gap: 1px;
  }

  .better-price .price-range-dual .bgn-price,
  .better-price .price-range-dual .eur-price {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .price-range-dual .eur-price {
    font-size: 0.8em;
  }
}

@media (max-width: 400px) {
  .total-price .price-range-dual.d-inline-block {
    gap: 2px;
  }

  .total-price .price-range-dual.d-inline-block .bgn-price,
  .total-price .price-range-dual.d-inline-block .eur-price {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .total-price .price-range-dual.d-inline-block .eur-price {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .total-price .price-range-dual.d-inline-block {
    gap: 1px;
  }

  .total-price .price-range-dual.d-inline-block .bgn-price,
  .total-price .price-range-dual.d-inline-block .eur-price {
    font-size: 0.75rem;
    line-height: 1;
  }

  .total-price .price-range-dual.d-inline-block .eur-price {
    font-size: 0.7rem;
  }

  .colored .price-range-dual.d-inline-block .bgn-price,
  .colored .price-range-dual.d-inline-block .eur-price {
    font-size: 0.75rem;
    line-height: 1;
  }

  .colored .price-range-dual.d-inline-block .eur-price {
    font-size: 0.7rem;
  }
}

/* Status : pending */

/* Status : paid */

.s-1 {
  /*background-color: #ddffe4;*/
}

/* Status : expired */

.s-2 {
  /*background-color: #ffdddd;*/
}

.reservation section {
  padding-bottom: 0;
}

#event-info {
  padding: 25px 0 20px 0;
  background-color: #efefef;
}

#event-info .sloped-bg {
  height: 175px;
}

.event-parameters {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.event-parameters li {
  display: inline-block;
  margin-right: 20px;
}

.event-parameters li .grey-txt {
  display: inline-block;
}

/*------------ RESERVATION STEPS ---------------*/

#reservation-steps .steps {
  max-width: 48px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

#reservation-steps .steps .step-number {
  width: 100%;
  display: block;
  font-family: "gilroyextrabold", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: #b1b2b7;
}

#reservation-steps .steps .step-icon {
  display: block;
  margin: auto;
}

#reservation-steps .steps .step-name {
  display: block;
  margin-top: 10px;
  font-family: "gilroyextrabold", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: center;
  color: #b1b2b7;
}

#reservation-steps .steps.active {
  cursor: pointer;
}

#reservation-steps .steps.active .step-number,
#reservation-steps .steps.active .step-name {
  color: #484848;
}

#reservation-steps .steps.active:hover {
  color: #484848;
}

#reservation-steps .steps.current {
  background: #efefef;
}

#reservation-steps .steps.current .step-number,
#reservation-steps .steps.current .step-name {
  color: #3c3f4b;
}

/*------------ SCHEME ---------------*/

#scheme-section #scheme-filters .notice {
  margin: 0;
}

#scheme-section #scheme-filters .input {
  height: 46px;
  margin: 0;
}

#scheme-section #scheme-filters .input .form-control {
  height: 46px;
  line-height: 35px;
}

#scheme-section #scheme-filters .input .icon {
  top: 14px;
}

#scheme-section .scheme-legend {
  margin: 0;
  padding: 10px;
  list-style-type: none;
}

#scheme-section .scheme-legend li {
  display: inline-block;
  margin-right: 15px;
}

#scheme-section .price-color {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

#scheme-section .scheme-bg {
  margin: 15px 0 30px 0;
  border: 1px solid #d7d7d7;
  background-color: #ffffff;
  min-height: 590px;
}

#scheme-section #scheme-holder {
  width: 100%;
  margin: auto;
  position: relative;
  background-size: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-drag: none;
}

#scheme-section .no-scheme-box {
  padding: 50px 30px;
}

#scheme-section .alert-info.choose-seats {
  height: 50px;
  padding: 12px 25px;
}

/*------------ LEGEND COLORS ---------------*/

.sector svg {
  color: #ffffff;
}

.price-1 svg,
.price-1 svg path {
  fill: #ffc512;
}

.price-2 svg,
.price-2 svg path {
  fill: #42010d;
}

.price-3 svg,
.price-3 svg path {
  fill: red;
}

.price-4 svg,
.price-4 svg path {
  fill: #00783c;
}

.price-5 svg,
.price-5 svg path {
  fill: #140064;
}

.price-1-ts svg {
  fill: #a906ad;
}

.price-2-ts svg {
  fill: #7ee800;
}

.price-3-ts svg {
  fill: #ad780e;
}

.price-4-ts svg {
  fill: #fe0201;
}

.price-5-ts svg {
  fill: #05b5fe;
}

.price-6-ts svg {
  fill: #fde102;
}

.price-7-ts svg {
  fill: #0bc6a1;
}

.price-8-ts svg {
  fill: #cab907;
}

.price-1-tsn svg {
  fill: #fcdb31;
}

.price-2-tsn svg {
  fill: #f60008;
}

.price-3-tsn svg {
  fill: #14188b;
}

.price-4-tsn svg {
  fill: #a8691c;
}

.price-5-tsn svg {
  fill: #6de331;
}

.price-6-tsn svg {
  fill: #b02c95;
}

.price-1-tsh svg {
  fill: #fe0201;
}

.price-2-tsh svg {
  fill: #fde102;
}

.price-1-ush svg {
  fill: #7ee800;
}

.price-2-ush svg {
  fill: #0cc6a1;
}

.price-1-iron svg {
  fill: #a906ad;
}

.price-2-iron svg {
  fill: #ad780e;
}

.price-3-iron svg {
  fill: #7ee800;
}

.price-4-iron svg {
  fill: #fe0201;
}

.price-5-iron svg {
  fill: #05b5fe;
}

.price-1-eros svg {
  fill: #a906ad;
}

.price-2-eros svg {
  fill: #0218de;
}

.price-3-eros svg {
  fill: #7ee800;
}

.price-4-eros svg {
  fill: #aa7929;
}

.price-5-eros svg {
  fill: #05b5fe;
}

.price-6-eros svg {
  fill: #e93224;
}

.price-7-eros svg {
  fill: #fde102;
}

.price-8-eros svg {
  fill: #49a195;
}

.price-legend .price-1 {
  background: #ffc512;
}

.price-legend .price-2 {
  background: #42010d;
}

.price-legend .price-3 {
  background: red;
}

.price-legend .price-4 {
  background: #00783c;
}

.price-legend .price-5 {
  background: #140064;
}

.price-legend .price-1-ts {
  background: #a906ad;
}

.price-legend .price-2-ts {
  background: #7ee800;
}

.price-legend .price-3-ts {
  background: #ad780e;
}

.price-legend .price-4-ts {
  background: #fe0201;
}

.price-legend .price-5-ts {
  background: #05b5fe;
}

.price-legend .price-6-ts {
  background: #fde102;
}

.price-legend .price-7-ts {
  background: #0bc6a1;
}

.price-legend .price-8-ts {
  background: #cab907;
}

.price-legend .price-1-tsn {
  background: #fcdb31;
}

.price-legend .price-2-tsn {
  background: #f60008;
}

.price-legend .price-3-tsn {
  background: #14188b;
}

.price-legend .price-4-tsn {
  background: #a8691c;
}

.price-legend .price-5-tsn {
  background: #6de331;
}

.price-legend .price-6-tsn {
  background: #b02c95;
}

.price-legend .price-1-tsh {
  background: #fe0201;
}

.price-legend .price-2-tsh {
  background: #fde102;
}

.price-legend .price-1-ush {
  background: #7ee800;
}

.price-legend .price-2-ush {
  background: #0cc6a1;
}

.price-legend .price-1-iron {
  background: #a906ad;
}

.price-legend .price-2-iron {
  background: #ad780e;
}

.price-legend .price-3-iron {
  background: #7ee800;
}

.price-legend .price-4-iron {
  background: #fe0201;
}

.price-legend .price-5-iron {
  background: #05b5fe;
}

.price-legend .price-1-eros {
  background: #a906ad;
}

.price-legend .price-2-eros {
  background: #0218de;
}

.price-legend .price-3-eros {
  background: #7ee800;
}

.price-legend .price-4-eros {
  background: #aa7929;
}

.price-legend .price-5-eros {
  background: #05b5fe;
}

.price-legend .price-6-eros {
  background: #e93224;
}

.price-legend .price-7-eros {
  background: #fde102;
}

.price-legend .price-8-eros {
  background: #49a195;
}

.free-place {
  background: #00C901;
}

.your-place {
  background: #ED1071;
}

.busy-place {
  background: #C0C0C0;
}

.blocked-place {
  background: #C0C0C0;
}

/*------------ SCHEME ELEMETS ---------------*/

#schemeHolder {
  margin: auto;
  position: relative;
  width: 100%;
  background-size: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  user-drag: none;
}

#schemeHolder .i-el {
  position: absolute;
  z-index: 5;
  display: inline-block;
  cursor: pointer;
  line-height: 0;
}

#schemeHolder .i-el.seat {
  fill: #00C901;
  stroke: #3c3f4b;
  stroke-width: 1px;
}

#schemeHolder .i-el.seat.custom-price {
  fill: #048a04;
}

#schemeHolder .i-el.seat.active {
  fill: #b7145b !important;
}

#schemeHolder .i-el.seat.has-res {
  fill: #C0C0C0 !important;
}

#schemeHolder .i-el.has-res {
  fill: #C0C0C0 !important;
}

#schemeHolder .i-el.own-res {
  fill: #ED1071 !important;
}

#schemeHolder .i-el.blocked {
  fill: #C0C0C0 !important;
}

#schemeHolder .i-el.active {
  fill: #ED1071 !important;
}

#schemeHolder .i-el.sector {
  fill: #6b6b6b;
}

#schemeHolder .i-el.sector.disabled svg {
  fill: #C0C0C0 !important;
}

#schemeHolder .i-el.sector.disabled svg path {
  fill: #C0C0C0 !important;
}

#schemeHolder .i-el .elNumber {
  position: absolute;
  left: 0%;
  top: 50%;
  color: #ffffff;
  font-size: 0.45rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  #schemeHolder .i-el .elNumber {
    font-size: 0.6rem;
  }
}

#sector-image {
  position: absolute;
  width: 100%;
  height: 100%;
  user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
}

#sector-image svg {
  max-width: 100%;
  max-height: 100%;
  fill: none;
  stroke: #ffffff;
}

#hideSector {
  background: var(--peach);
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

#hideSector:hover {
  background: var(--razzmatazz);
}

/*------------ TICKETS ---------------*/

#my-tickets {
  width: 100%;
  max-width: 320px;
  height: 60vh;
  position: fixed;
  top: 20vh;
  right: -320px;
  background-color: #ffffff;
  transition: all 0.5s;
  z-index: 9999;
  box-shadow: 0 0 3px #b1b2b7;
}

#my-tickets.open {
  right: 0;
}

#my-tickets .open-tickets {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: -70px;
  font-size: 2rem;
  background: #484848;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-right: 0;
  transition: all 0.5s;
  box-shadow: -2px 0 3px #b1b2b7;
}

#my-tickets .open-tickets .tickets-num {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: center;
  background: var(--peach);
  color: #ffffff;
  border-radius: 100%;
}

#my-tickets .head-row {
  padding-top: 21px;
  padding-bottom: 21px;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  border-left: 0;
  background: #484848;
}

#my-tickets .head-row h3 {
  line-height: 1;
  margin: 0;
}

#my-tickets .head-row .colored {
  color: #ffffff;
}

#my-tickets .head-row .close-form {
  top: -6px;
}

#my-tickets .tickets-row {
  max-height: calc(60vh - 200px);
  padding-top: 15px;
  padding-bottom: 15px;
  overflow-y: auto;
}

#my-tickets .tickets-row .no-tichrts-msg {
  margin-top: 7px;
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  text-transform: uppercase;
  color: #b1b2b7;
}

#my-tickets .tickets-row .ticket {
  margin-top: 5px;
}

#my-tickets .tickets-row .ticket label {
  margin: 0;
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  text-transform: uppercase;
  color: #b1b2b7;
}

#my-tickets .tickets-row .ticket .input {
  height: 35px;
}

#my-tickets .tickets-row .ticket .input .icon {
  top: 10px;
  font-size: 15px;
}

#my-tickets .tickets-row .ticket .input .form-control {
  height: 35px;
  padding-left: 37px;
}

#my-tickets .total-row {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  border-top: 1px solid #d7d7d7;
  background: #ffffff;
  z-index: 3;
}

#my-tickets .total-row h4 {
  line-height: 1;
}

#confirmation .confirm-ticket {
  position: relative;
  margin: 0 0 10px 0;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  padding: 15px 0;
  cursor: pointer;
}

#confirmation .confirm-ticket.added-upass {
  background: #efefef;
}

#confirmation .confirm-ticket:hover {
  box-shadow: 0 0 5px #b1b2b7;
}

#confirmation .confirm-ticket .ticket-title {
  font-size: 1.2rem;
  font-family: "gilroyextrabold", sans-serif;
  text-transform: uppercase;
}

#confirmation .confirm-ticket .ticket-type {
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  text-align: center;
  min-width: 92.5px;
  color: #ffffff;
  background: var(--peach);
  padding: 2px 5px;
  text-transform: uppercase;
  margin-left: 10px;
}

#confirmation .confirm-ticket .ticket-type.standart {
  background: var(--peach);
}

#confirmation .confirm-ticket .ticket-type.student {
  background: var(--banana);
}

#confirmation .confirm-ticket .ticket-type.child {
  background: #00c901;
}

#confirmation .confirm-ticket .ticket-type.retired {
  background: #3c3f4b;
}

#confirmation .confirm-ticket .ticket-type.disabled {
  background: var(--razzmatazz);
}

#confirmation .confirm-ticket .name-input {
  border: 0;
  outline: none;
}

#confirmation .confirm-ticket .name-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#confirmation .confirm-ticket .name-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#confirmation .confirm-ticket .name-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#confirmation .confirm-ticket .name-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#confirmation .confirm-ticket .ticket-price {
  font-size: 1.2rem;
  font-family: "gilroyextrabold", sans-serif;
  color: var(--peach);
}

#confirmation .confirm-ticket .ticket-params .row {
  height: 100%;
}

#confirmation .payment {
  border: 1px solid #d7d7d7;
  background: #efefef;
  padding: 15px 20px;
}

#confirmation .payment .icon {
  font-size: 3rem;
  color: #b1b2b7;
  margin-right: 10px;
}

#confirmation .payment .small-label {
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  color: #b1b2b7;
  text-transform: uppercase;
}

#confirmation .total {
  font-size: 2rem;
  font-family: "gilroyextrabold", sans-serif;
  text-transform: uppercase;
}

#confirmation .total .colored {
  font-size: 2rem;
}

#finished-order .status-icon {
  font-size: 10rem;
}

#finished-order .status-icon .icon-check-circle {
  color: #00c901;
}

#finished-order .status-icon .icon-user-plus {
  color: var(--peach);
}

#finished-order .status-icon .icon-percent {
  color: var(--tangerine);
}

#finished-order .status-icon .icon-x-circle {
  color: var(--orange);
  cursor: pointer;
}

#finished-order .status-title {
  text-align: center;
}

#finished-order .status-title h3 {
  text-transform: uppercase;
}

/*------------ PAYMENT ---------------*/

.confirm-card {
  margin: 0 0 10px 0;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  padding: 15px;
  font-family: "gilroyextrabold", sans-serif;
}

.confirm-card.selected {
  border-color: var(--peach);
  color: var(--peach);
}

.confirm-card .col {
  height: 40px;
}

.confirm-card .icon {
  margin-right: 5px;
}

.btn-order {
  text-transform: uppercase;
}

.one-reservation {
  margin: 0 0 20px 0;
  border: 1px solid #d7d7d7;
  background: #ffffff;
}

.one-reservation .event-info {
  padding: 30px 0 15px;
}

.one-reservation .event-info .res-event-img {
  display: none;
}

.one-reservation .open-details {
  padding: 0 25px;
}

.one-reservation .open-details .more-details-button {
  text-align: center;
  position: relative;
  font-family: "gilroyextrabold", sans-serif;
  color: var(--razzmatazz);
  text-transform: uppercase;
}

.one-reservation .open-details .more-details-button::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #d7d7d7;
}

.one-reservation .open-details .more-details-button .bg-color {
  position: relative;
  background: #ffffff;
  padding: 10px 20px;
}

.one-reservation .open-details .more-details-button .bg-color .icon {
  font-size: 0.9rem;
}

.one-reservation .open-details .more-details-button .bg-color:hover {
  color: #ffffff;
}

.one-reservation .all-tickets .fin-ticket {
  position: relative;
  border: 1px solid #d7d7d7;
  margin-bottom: 25px;
  color: #484848;
}

.one-reservation .all-tickets .fin-ticket .ticket-code-txt {
  font-family: "gilroyextrabold", sans-serif;
  color: var(--tangerine);
  margin: 0;
}

.one-reservation .all-tickets .fin-ticket .row {
  margin: 0;
}

.one-reservation .all-tickets .fin-ticket .row .ticket-code {
  padding: 15px;
}

.one-reservation .all-tickets .fin-ticket .row .ticket-params {
  padding: 15px 15px 5px 0;
}

.one-reservation .all-tickets .fin-ticket .ticket-send {
  height: 60px;
  border-top: 1px solid #d7d7d7;
  background: #efefef;
  font-family: "gilroyextrabold", sans-serif;
}

.one-reservation .all-tickets .fin-ticket .ticket-send .btn-send-ticket,
.one-reservation .all-tickets .fin-ticket .ticket-send .owner-ticket {
  width: 100%;
}

.one-reservation .all-tickets .fin-ticket .ticket-send .btn-send-ticket .link,
.one-reservation .all-tickets .fin-ticket .ticket-send .resend {
  color: var(--razzmatazz);
  text-transform: uppercase;
  white-space: normal;
}

.one-reservation .all-tickets .fin-ticket .ticket-send .btn-send-ticket .link:hover,
.one-reservation .all-tickets .fin-ticket .ticket-send .resend:hover {
  color: #ffffff;
}

.one-reservation .all-tickets .fin-ticket .ticket-send .icon {
  margin-right: 5px;
}

.one-reservation .all-tickets .fin-ticket .ticket-send .stop-sending-wrap {
  width: 100%;
}

.one-reservation .all-tickets .fin-ticket .ticket-send .stop-sending {
  width: 50px;
  height: 35px;
  padding: 5px 0 1px 2px;
  font-size: 1.2rem;
  background: var(--razzmatazz);
}

.one-reservation .all-tickets .fin-ticket .ticket-send .stop-sending .icon {
  margin: 0;
  color: var(--razzmatazz);
}

.one-reservation .all-tickets .fin-ticket .ticket-send .stop-sending:hover .icon {
  color: #ffffff;
}

.badge {
  padding: 0.5em;
}

.badge.badge-warning {
  background: var(--banana);
}

.badge.badge-success {
  background: #00c901;
}

.badge.badge-danger {
  background: var(--razzmatazz);
}

/*------------ CONFIRM SENT TICKETS ---------------*/

#sent-tickets {
  width: 100%;
  max-width: 320px;
  height: 60vh;
  position: fixed;
  top: 20vh;
  left: -320px;
  background-color: #ffffff;
  transition: all 0.5s;
  z-index: 2600;
  box-shadow: 0 0 3px #b1b2b7;
}

#sent-tickets.open {
  left: 0;
}

#sent-tickets .container {
  overflow-x: auto;
}

#sent-tickets .open-tickets {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: -70px;
  font-size: 2rem;
  background: #3c3f4b;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-left: 0;
  transition: all 0.5s;
  box-shadow: 2px 0 3px #b1b2b7;
}

#sent-tickets .open-tickets .tickets-num {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: center;
  background: var(--peach);
  color: #ffffff;
  border-radius: 100%;
}

#sent-tickets .head-row {
  padding-top: 21px;
  padding-bottom: 21px;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  border-right: 0;
  background: #3c3f4b;
}

#sent-tickets .head-row h3 {
  line-height: 1;
  margin: 0;
}

#sent-tickets .head-row .colored {
  color: #ffffff;
}

#sent-tickets .head-row .close-form {
  top: -6px;
}

#sent-tickets .tickets-row {
  max-height: calc(60vh - 148px);
  overflow-y: auto;
}

#sent-tickets .tickets-row .sent-ticket {
  border-bottom: 1px solid #d7d7d7;
  padding-top: 15px;
  padding-bottom: 15px;
}

#sent-tickets .tickets-row .sent-ticket:last-child {
  border-bottom: 0;
}

#sent-tickets .tickets-row .sent-ticket a {
  white-space: normal;
}

#sent-tickets .tickets-row .t-params {
  font-size: 0.7rem;
}

#sent-tickets .tickets-row .t-params .grey-txt {
  display: block;
}

#sent-tickets .tickets-row .ticket {
  margin-top: 5px;
}

#sent-tickets .tickets-row .ticket label {
  margin: 0;
  font-size: 0.8rem;
  font-family: "gilroyextrabold", sans-serif;
  text-transform: uppercase;
  color: #b1b2b7;
}

#sent-tickets .tickets-row .ticket .input {
  height: 35px;
}

#sent-tickets .tickets-row .ticket .input .icon {
  top: 10px;
  font-size: 15px;
}

#sent-tickets .tickets-row .ticket .input .form-control {
  height: 35px;
  padding-left: 37px;
}

#sent-tickets .total-row {
  width: calc(100% + 30px);
  position: absolute;
  bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  border-top: 1px solid #d7d7d7;
}

#sent-tickets .total-row h4 {
  line-height: 1;
}

.user-profile .inner-header .inner-header-baner {
  background-image: url(/images/user-panorama.jpg);
}

.user-profile #user-mobile-nav {
  background: #ffffff;
  box-shadow: 0 0 3px #b1b2b7;
}

.user-profile #user-mobile-nav .owl-nav .icon {
  font-size: 1.5rem;
}

.user-profile #user-mobile-nav a {
  padding: 5px 8px;
  text-transform: uppercase;
}

.user-profile #user-mobile-nav a.active {
  color: var(--razzmatazz);
  border: 1px solid var(--razzmatazz);
}

.user-profile .user-profile-content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.user-profile .user-profile-content #user-sidebar {
  border: 1px solid #d7d7d7;
  background: #ffffff;
  padding-bottom: 10px;
}

.user-profile .user-profile-content #user-sidebar #user-info {
  padding: 30px 0;
  border-bottom: 1px solid #efefef;
}

.user-profile .user-profile-content #user-sidebar #user-info .user-pic {
  position: relative;
  width: 110px;
  height: 110px;
  margin: auto;
  cursor: pointer;
}

.user-profile .user-profile-content #user-sidebar #user-info .user-pic img {
  width: 100%;
  border: 1px solid #d7d7d7;
}

.user-profile .user-profile-content #user-sidebar #user-info .user-pic .icon {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px;
  background: var(--peach);
  color: #ffffff;
}

.user-profile .user-profile-content #user-sidebar #user-info .user-pic:hover .icon {
  display: block;
}

.user-profile .user-profile-content #user-sidebar #user-info .user-name {
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
  font-family: "gilroy-regular", sans-serif;
  color: #484848;
}

.user-profile .user-profile-content #user-sidebar #user-info .user-email {
  text-align: center;
  font-size: 0.9rem;
}

.user-profile .user-profile-content #user-desk-nav a {
  display: block;
  padding: 15px 25px;
}

.user-profile .user-profile-content #user-desk-nav a:hover {
  background: #f8f8f8;
  color: var(--peach);
}

.user-profile .user-profile-content #user-desk-nav a.active {
  background: linear-gradient(to right, var(--razzmatazz), var(--orange));
  color: #ffffff;
}

.user-profile .user-profile-content #user-desk-nav a.active .icon {
  color: #ffffff;
}

.user-profile .user-profile-content #user-desk-nav a .icon {
  font-size: 0.9rem;
  margin-right: 5px;
  color: var(--peach);
}

.user-profile .user-profile-content .user-profile-section {
  padding: 30px 0;
}

.user-profile .user-profile-content .user-profile-section h3 {
  text-transform: uppercase;
}

.user-profile .user-profile-content .user-profile-section h3::before {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  top: 50%;
  background: #d7d7d7;
}

.user-profile .user-profile-content .user-profile-section h3 span {
  position: relative;
  padding-right: 10px;
  background: #fafafa;
}

.user-profile .user-profile-content .tab-content {
  padding: 30px 0;
}

.user-profile .payment-info {
  margin-bottom: 15px;
}

.user-profile .payment-info a {
  height: 24px;
  padding: 0px 30px;
  font-size: 75%;
  line-height: 2;
  font-family: "gilroyextrabold", sans-serif;
}

.user-profile .payment-info .total-price {
  font-size: 2rem;
}

.user-profile .payment-info .total-price .colored {
  font-size: 2rem;
  font-family: "gilroyextrabold", sans-serif;
}

#cards-header .inner-header-baner {
  background-image: url(/images/cards-panorama.jpg);
}

.card-box {
  position: relative;
}

.card-box .card-link {
  position: relative;
  display: block;
}

.card-box .card-price {
  position: absolute;
  top: -20px;
  right: -15px;
  width: 130px;
  height: 130px;
  color: #ffffff;
  background: #3c3f4b;
  border: 3px solid #ffffff;
  line-height: 1;
}

.card-box .card-price .cost {
  display: block;
  font-size: 2rem;
  font-family: "gilroyextrabold", sans-serif;
}

.card-box .card-price .curr {
  font-size: 1.5rem;
}

.card-box .card-date,
.card-box .card-name {
  position: absolute;
  width: 50%;
  bottom: 0;
  color: #ffffff;
}

.card-box .card-name {
  right: 0;
  padding: 0 30px 30px 0;
  font-size: 2rem;
}

.card-box .card-name h3,
.card-box .card-name h4 {
  color: #ffffff;
}

.card-box .card-date {
  left: 0;
  padding: 0 0 30px 30px;
}

.card-box .card-date span {
  display: block;
  font-size: 0.8rem;
}

.card-box .card-date .expiration-date {
  font-size: 1.5rem;
}

.card-box:hover .card-link {
  box-shadow: 0 0 15px #b1b2b7;
}

.card-box:hover .card-link .card-price {
  box-shadow: 0 0 10px #b1b2b7;
}

.card-box.card-modal {
  margin-bottom: 30px;
  text-align: center;
}

.card-box.card-modal .card-price {
  top: -8px;
  right: -8px;
  width: 75px;
  height: 75px;
}

.card-box.card-modal .card-price .cost {
  font-size: 1rem;
}

.card-box.card-modal .card-price .curr {
  font-size: 0.7rem;
}

.card-box.card-modal .card-date {
  padding: 0 0 0 10px;
  text-align: left;
}

.card-box.card-modal .card-date span {
  font-size: 0.6rem;
}

.card-box.card-modal .card-date .expiration-date {
  font-size: 0.8rem;
}

.card-box.card-modal .card-name {
  padding: 0 10px 0 0;
  font-size: 0.8rem;
}

.card-description {
  background: #ffffff;
  box-shadow: 0 0 5px #b1b2b7;
  padding: 50px;
}

#card-payment .total {
  font-size: 2rem;
}

#card-payment .total .colored {
  font-size: 2rem;
}

.my-card-row {
  background: #ffffff;
  margin-bottom: 20px;
  border: 1px solid #d7d7d7;
}

.my-card-row .card-info h3,
.my-card-row .card-info li {
  margin-bottom: 20px;
}

.my-card-row .card-info .bold {
  font-size: 1.1rem;
}

.my-card-row .card-qr {
  width: 20%;
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px;
  background: #ffffff;
}

.my-card-row ul {
  list-style-type: none;
  padding: 0;
}

#search-result .search-cat-results {
  padding: 10px 0;
}

#search-result .search-cat-results .item {
  max-width: 320px;
  margin: auto;
  margin-bottom: 20px;
}

#partners #partners-header .inner-header-baner,
#sponsors #partners-header .inner-header-baner {
  background-image: url(/images/partners-panorama.jpg);
}

#partners .item img,
#sponsors .item img {
  width: auto;
}

.slooped-gray:after {
  border-color: transparent transparent transparent #efefef !important;
}

.white-bck {
  background-color: #fff;
}

.sloped-bottom {
  z-index: 0;
  top: auto !important;
  bottom: -50px !important;
  height: 280px;
}

.gray-bck {
  background-color: #efefef;
}

.urbo-bullets {
  padding-left: 0;
  position: relative;
}

.urbo-bullets li {
  list-style: none;
  padding-left: 30px;
  margin-left: 0;
  margin-bottom: 5px !important;
  background: url(/images/parking/urbo-bullet.png) no-repeat 4px 5px;
}

/* Header */

#parking-app {
  overflow-x: hidden;
}

#parking-app #parking-header {
  height: 920px;
}

#parking-app #parking-header .inner-header-baner {
  height: 920px;
  background: url("/images/parking/parking-bck.jpg") no-repeat center center;
}

#parking-app #parking-header .inner-header-baner .inner-title {
  margin: 200px auto;
  padding: 0 30px;
}

#parking-app #parking-header .inner-header-baner .inner-title p {
  font-size: 2rem;
  line-height: 1;
}

#parking-app #parking-header h1 {
  color: #70b4a1;
}

#parking-app .colored {
  color: #0979bd;
}

#parking-app .btn.btn-gradient {
  background: linear-gradient(to right, #2d4280, #70b4a1);
  color: #ffffff;
  text-transform: uppercase;
}

#parking-app .btn.btn-gradient:hover {
  background: linear-gradient(to left, #70b4a1, #2d4280);
}

#parking-app .btn.btn-gradient-border {
  background: linear-gradient(to right, #2d4280, #70b4a1);
}

#parking-app .btn.btn-gradient-border span {
  color: #0979bd;
}

#parking-app .btn.btn-gradient-border:hover span {
  color: #ffffff;
}

#parking-app a.link::before {
  background: #0979bd;
}

/* Our Advantages */

.upark-advantages .sloped-bg {
  background-image: none !important;
}

#parking-app .img-sm {
  display: none;
}

.upark-adv-item {
  padding: 0 36px;
  position: relative;
}

.upark-adv-item .upark-adv-inner {
  position: relative;
}

.upark-adv-item .upark-adv-num {
  position: absolute;
  font-size: 145px;
  font-weight: bold;
  color: #2d4280;
  z-index: 0;
  opacity: 0.2;
  left: -30px;
  top: -70px;
}

.upark-adv-item .upark-adv-num-right {
  left: auto !important;
  right: -30px !important;
}

.upark-adv-title {
  margin-bottom: 20px;
  font-size: 21px;
  color: #484848;
  position: relative;
}

.upark-adv-img {
  position: absolute;
}

.upark-adv-img-1 {
  right: -90px;
  top: 0;
  z-index: 1;
}

.upark-adv-img-2 {
  left: -90px;
  top: 0;
  z-index: 1;
}

.upark-adv-img-3 {
  left: 0px;
  top: 0;
  z-index: 1;
}

.upark-adv-img-4 {
  right: 0;
  top: -190px;
  z-index: 1;
}

#upark-advantages-2 {
  margin-top: -40px;
}

#upark-advantages-3 {
  margin-top: -50px;
}

/* About us */

#about {
  z-index: 1;
  margin-top: -50px;
}

#about span.normal,
#about span.colored {
  position: relative;
  display: block;
}

#about p,
#about span.normal {
  color: #fff;
  text-shadow: 0 1px 3px #3c3f4b;
}

#about p {
  text-shadow: 1px 0 3px #000;
}

#about span.normal {
  margin-right: 105px;
}

#about span.colored {
  color: #70b4a1;
  font-size: 4rem;
  text-shadow: 0 1px 3px #3c3f4b;
  margin-left: 65px;
}

#about .sloped-bg {
  background: transparent !important;
  overflow: hidden;
}

#about .about-bg {
  background-image: url(/images/parking/about-us-bck.jpg);
  width: 100%;
  height: 125%;
  min-height: 1000px;
  position: absolute;
  top: -50px;
  -webkit-transform: skewY(3deg);
  transform: skewY(3deg);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-size: auto;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

/* Urbo News */

#parking-app #urbo-news {
  padding-bottom: 140px;
}

/* Contacts */

#contacts {
  background: #fff;
  padding-bottom: 0;
}

#contacts .sloped-bg {
  margin-top: -57px;
  background-image: none;
}

#contacts a.link {
  color: #484848;
}

#contacts a.link:hover {
  color: #fff;
}

/****************** Responsive ******************/

@media only screen and (min-width: 1200px) {
  .container-wide {
    min-width: 1200px;
  }
}

@media only screen and (max-width: 991px) {
  #parking-app .img-lg {
    display: none;
  }

  #parking-app .img-sm {
    display: block;
  }

  .upark-adv-item {
    padding: 0;
  }

  .upark-adv-img-1 {
    right: 0;
  }

  .upark-adv-img-2 {
    left: 0;
  }

  .upark-adv-img-3 {
    left: auto;
    right: 0;
  }

  .upark-adv-img-4 {
    left: -70px;
    right: auto;
    top: -80px;
  }

  .upark-adv-item .upark-adv-num-right {
    left: -30px !important;
    right: auto !important;
  }
}

@media only screen and (max-width: 767px) {
  #parking-app #parking-header .inner-header-baner .inner-title {
    margin-top: 120px;
  }
}

@media only screen and (max-width: 649px) {
  #parking-app #parking-header #parking-header .inner-header-baner {
    background-image: url(/images/parking/parking-bck-sm.jpg);
    background-position: center bottom;
    height: 620px;
  }

  #parking-app #parking-header #parking-header .inner-header-baner .inner-title {
    margin-top: 90px;
  }

  #parking-app #parking-header #parking-header .inner-header-baner .inner-title p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 575px) {
  .upark-adv-item {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }

  .upark-adv-item .upark-adv-img {
    position: static;
    margin: 0 auto;
    width: auto;
    height: auto;
  }

  .upark-adv-item .upark-adv-img-1 {
    max-width: 200px;
  }

  .upark-adv-item .urbo-bullets {
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
  }

  .upark-mob-rev {
    flex-direction: column-reverse !important;
  }
}

@media only screen and (max-width: 400px) {
  .upark-adv-item .urbo-bullets {
    max-width: 100%;
  }
}

/****************** Car Animation ******************/

#an-anim > ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

#an-anim > ol > li {
  margin: 0;
  padding: 0;
  display: none;
}

#an-anim > ol > li.run {
  display: block;
}

#an-anim .an-stage {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#an-anim .an-stage div {
  position: absolute;
}

.an-stage * {
  margin: 0;
  padding: 0;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

#an-anim .an-stage img {
  position: absolute;
  top: 0;
  left: 0;
}

#an-anim .AN-Scene-Description {
  display: none;
}

#an-anim iframe {
  border: none;
  height: 100%;
  width: 100%;
}

#an-anim .an-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#an-anim {
  height: 320px;
  width: 480px;
  position: relative;
}

#an-anim {
  background-color: white;
  font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

#an-obj-1 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-1-0 {
  0% {
    -webkit-transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-1-0 {
  0% {
    -webkit-transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-1 {
  animation-name: ani-an-obj-1-0;
  -webkit-animation-name: ani-an-obj-1-0;
  animation-duration: 43.5223s;
  -webkit-animation-duration: 43.5223s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-1 {
  transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-1 {
  transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1891px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-1 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-2 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-2 {
  transform: translate3d(1793px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1793px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-3 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-3 {
  transform: translate3d(1695px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1695px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-4 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-4 {
  transform: translate3d(29px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(29px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-5 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-5 {
  transform: translate3d(1499px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1499px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-6 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-6 {
  transform: translate3d(225px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(225px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-7 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-7 {
  transform: translate3d(421px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(421px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-8 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-8 {
  transform: translate3d(617px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(617px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-9 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

.t-0 #an-obj-9 {
  transform: translate3d(1597px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1597px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

#an-obj-10 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-10-0 {
  0% {
    -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  69.3548% {
    -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  70.5727% {
    -webkit-transform: translate3d(1264px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  72.9822% {
    -webkit-transform: translate3d(2084px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  73.3772% {
    -webkit-transform: translate3d(2084px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  96.3726% {
    -webkit-transform: translate3d(-216px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  96.7808% {
    -webkit-transform: translate3d(-216px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  98.7821% {
    -webkit-transform: translate3d(1264px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

@keyframes ani-an-obj-10-0 {
  0% {
    -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  69.3548% {
    -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  70.5727% {
    -webkit-transform: translate3d(1264px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1264px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  72.9822% {
    -webkit-transform: translate3d(2084px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2084px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  73.3772% {
    -webkit-transform: translate3d(2084px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2084px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  96.3726% {
    -webkit-transform: translate3d(-216px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-216px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  96.7808% {
    -webkit-transform: translate3d(-216px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-216px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  98.7821% {
    -webkit-transform: translate3d(1264px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1264px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

.run.t-0 #an-obj-10 {
  animation-name: ani-an-obj-10-0;
  -webkit-animation-name: ani-an-obj-10-0;
  animation-duration: 62s;
  -webkit-animation-duration: 62s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-10 {
  transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart.t-0 #an-obj-10 {
  transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(1401px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart #an-obj-10 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-11 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-11-0 {
  0% {
    -webkit-transform: translate3d(-191.9113915335px, 38.1150996575px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  10.5956% {
    -webkit-transform: translate3d(1068px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  15.8362% {
    -webkit-transform: translate3d(1205px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  86.197% {
    -webkit-transform: translate3d(1205px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  91.4662% {
    -webkit-transform: translate3d(1068px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2208px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-11-0 {
  0% {
    -webkit-transform: translate3d(-191.9113915335px, 38.1150996575px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
            transform: translate3d(-191.9113915335px, 38.1150996575px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  10.5956% {
    -webkit-transform: translate3d(1068px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1068px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  15.8362% {
    -webkit-transform: translate3d(1205px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1205px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  86.197% {
    -webkit-transform: translate3d(1205px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1205px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  91.4662% {
    -webkit-transform: translate3d(1068px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1068px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2208px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2208px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-11 {
  animation-name: ani-an-obj-11-0;
  -webkit-animation-name: ani-an-obj-11-0;
  animation-duration: 14.2531s;
  -webkit-animation-duration: 14.2531s;
  animation-delay: 40.2449s;
  -webkit-animation-delay: 40.2449s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-11 {
  transform: translate3d(2208px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2208px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-11 {
  transform: translate3d(-191.9113915335px, 38.1150996575px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-191.9113915335px, 38.1150996575px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-11 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-12 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-12-0 {
  0% {
    -webkit-transform: translate3d(-235.89714819px, 38.1089019165px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  3.9658% {
    -webkit-transform: translate3d(1184px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  6.3893% {
    -webkit-transform: translate3d(1303px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  92.0425% {
    -webkit-transform: translate3d(1303px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  96.0342% {
    -webkit-transform: translate3d(1184px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2144px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-12-0 {
  0% {
    -webkit-transform: translate3d(-235.89714819px, 38.1089019165px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
            transform: translate3d(-235.89714819px, 38.1089019165px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  3.9658% {
    -webkit-transform: translate3d(1184px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1184px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  6.3893% {
    -webkit-transform: translate3d(1303px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1303px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  92.0425% {
    -webkit-transform: translate3d(1303px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1303px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  96.0342% {
    -webkit-transform: translate3d(1184px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1184px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2144px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2144px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-12 {
  animation-name: ani-an-obj-12-0;
  -webkit-animation-name: ani-an-obj-12-0;
  animation-duration: 31.4939s;
  -webkit-animation-duration: 31.4939s;
  animation-delay: 34.502s;
  -webkit-animation-delay: 34.502s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-12 {
  transform: translate3d(2144px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2144px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-12 {
  transform: translate3d(-235.89714819px, 38.1089019165px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-235.89714819px, 38.1089019165px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.04deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-12 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-13 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-13-0 {
  0% {
    -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  60.4038% {
    -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  61.8552% {
    -webkit-transform: translate3d(204px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  65.7044% {
    -webkit-transform: translate3d(2074px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  66.2013% {
    -webkit-transform: translate3d(2074px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  95.1649% {
    -webkit-transform: translate3d(-197.6931032868px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  95.6776% {
    -webkit-transform: translate3d(-198.223293789px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0.996;
  }

  98.5723% {
    -webkit-transform: translate3d(204px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

@keyframes ani-an-obj-13-0 {
  0% {
    -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  60.4038% {
    -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  61.8552% {
    -webkit-transform: translate3d(204px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(204px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  65.7044% {
    -webkit-transform: translate3d(2074px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2074px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  66.2013% {
    -webkit-transform: translate3d(2074px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2074px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  95.1649% {
    -webkit-transform: translate3d(-197.6931032868px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-197.6931032868px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  95.6776% {
    -webkit-transform: translate3d(-198.223293789px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-198.223293789px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0.996;
  }

  98.5723% {
    -webkit-transform: translate3d(204px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(204px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

.run.t-0 #an-obj-13 {
  animation-name: ani-an-obj-13-0;
  -webkit-animation-name: ani-an-obj-13-0;
  animation-duration: 51.7469s;
  -webkit-animation-duration: 51.7469s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-13 {
  transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart.t-0 #an-obj-13 {
  transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(323px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart #an-obj-13 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-14 {
  transform: translate3d(-125px, 17px, 0px);
  -webkit-transform: translate3d(-125px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-14-0 {
  0% {
    -webkit-transform: translate3d(-191.7403818685px, 38.2819990049px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  5.4048% {
    -webkit-transform: translate3d(988px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  7.4344% {
    -webkit-transform: translate3d(1104px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  93.2164% {
    -webkit-transform: translate3d(1104px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  95.2349% {
    -webkit-transform: translate3d(988px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  96.5917% {
    -webkit-transform: translate3d(1048px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2108px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-14-0 {
  0% {
    -webkit-transform: translate3d(-191.7403818685px, 38.2819990049px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
            transform: translate3d(-191.7403818685px, 38.2819990049px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  5.4048% {
    -webkit-transform: translate3d(988px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(988px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  7.4344% {
    -webkit-transform: translate3d(1104px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1104px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  93.2164% {
    -webkit-transform: translate3d(1104px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1104px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  95.2349% {
    -webkit-transform: translate3d(988px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(988px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  96.5917% {
    -webkit-transform: translate3d(1048px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(1048px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2108px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2108px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-14 {
  animation-name: ani-an-obj-14-0;
  -webkit-animation-name: ani-an-obj-14-0;
  animation-duration: 37.0041s;
  -webkit-animation-duration: 37.0041s;
  animation-delay: 29.2612s;
  -webkit-animation-delay: 29.2612s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-14 {
  transform: translate3d(2108px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2108px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-14 {
  transform: translate3d(-191.7403818685px, 38.2819990049px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-191.7403818685px, 38.2819990049px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-14 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-15 {
  transform: translate3d(-125px, 17px, 0px);
  -webkit-transform: translate3d(-125px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-15-0 {
  0% {
    -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  44.6046% {
    -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  45.9581% {
    -webkit-transform: translate3d(795px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  48.6576% {
    -webkit-transform: translate3d(2045px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  49.1063% {
    -webkit-transform: translate3d(2045.1977618267px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  95.9691% {
    -webkit-transform: translate3d(-255px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  96.4104% {
    -webkit-transform: translate3d(-147.0449027657px, 33.4451191408px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(7.72deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.42% 48.9%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  98.6833% {
    -webkit-transform: translate3d(795px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

@keyframes ani-an-obj-15-0 {
  0% {
    -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  44.6046% {
    -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  45.9581% {
    -webkit-transform: translate3d(795px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(795px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  48.6576% {
    -webkit-transform: translate3d(2045px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2045px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  49.1063% {
    -webkit-transform: translate3d(2045.1977618267px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2045.1977618267px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  95.9691% {
    -webkit-transform: translate3d(-255px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-255px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  96.4104% {
    -webkit-transform: translate3d(-147.0449027657px, 33.4451191408px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(7.72deg) scale3d(1, 1, 1);
            transform: translate3d(-147.0449027657px, 33.4451191408px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(7.72deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.42% 48.9%;
            transform-origin: 49.42% 48.9%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  98.6833% {
    -webkit-transform: translate3d(795px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(795px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

.run.t-0 #an-obj-15 {
  animation-name: ani-an-obj-15-0;
  -webkit-animation-name: ani-an-obj-15-0;
  animation-duration: 55.4898s;
  -webkit-animation-duration: 55.4898s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-15 {
  transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart.t-0 #an-obj-15 {
  transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(911px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart #an-obj-15 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-16 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-16-0 {
  0% {
    -webkit-transform: translate3d(-223.7351937104px, 38.2876344181px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  3.9631% {
    -webkit-transform: translate3d(893px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  5.95% {
    -webkit-transform: translate3d(1009px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  94.093% {
    -webkit-transform: translate3d(1009px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  96.0477% {
    -webkit-transform: translate3d(893px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2093px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-16-0 {
  0% {
    -webkit-transform: translate3d(-223.7351937104px, 38.2876344181px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
            transform: translate3d(-223.7351937104px, 38.2876344181px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  3.9631% {
    -webkit-transform: translate3d(893px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(893px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  5.95% {
    -webkit-transform: translate3d(1009px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1009px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  94.093% {
    -webkit-transform: translate3d(1009px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(1009px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  96.0477% {
    -webkit-transform: translate3d(893px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(893px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2093px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2093px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-16 {
  animation-name: ani-an-obj-16-0;
  -webkit-animation-name: ani-an-obj-16-0;
  animation-duration: 38.004s;
  -webkit-animation-duration: 38.004s;
  animation-delay: 20.7429s;
  -webkit-animation-delay: 20.7429s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-16 {
  transform: translate3d(2093px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2093px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-16 {
  transform: translate3d(-223.7351937104px, 38.2876344181px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-223.7351937104px, 38.2876344181px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0.1deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-16 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-17 {
  transform: translate3d(-125px, 17px, 0px);
  -webkit-transform: translate3d(-125px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-17-0 {
  0% {
    -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  6.6996% {
    -webkit-transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  10.018% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  88.8409% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  92.1614% {
    -webkit-transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2113px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-17-0 {
  0% {
    -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  6.6996% {
    -webkit-transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  10.018% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  88.8409% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  92.1614% {
    -webkit-transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2113px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2113px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-17 {
  animation-name: ani-an-obj-17-0;
  -webkit-animation-name: ani-an-obj-17-0;
  animation-duration: 22.4946s;
  -webkit-animation-duration: 22.4946s;
  animation-delay: 17.5176s;
  -webkit-animation-delay: 17.5176s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-17 {
  transform: translate3d(2113px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2113px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-17 {
  transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-17 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-18 {
  transform: translate3d(-27px, 17px, 0px);
  -webkit-transform: translate3d(-27px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-18-0 {
  0% {
    -webkit-transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  1.8723% {
    -webkit-transform: translate3d(707px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  6.8241% {
    -webkit-transform: translate3d(2037px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 54.3% 45.43%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  7.4377% {
    -webkit-transform: translate3d(2025.7508701864px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 54.35% 45.4%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  94.2294% {
    -webkit-transform: translate3d(-269.935498027px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 65.41% 40.05%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  94.412% {
    -webkit-transform: translate3d(-270px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 65.41% 40.05%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  98.1238% {
    -webkit-transform: translate3d(707px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

@keyframes ani-an-obj-18-0 {
  0% {
    -webkit-transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  1.8723% {
    -webkit-transform: translate3d(707px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(707px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  6.8241% {
    -webkit-transform: translate3d(2037px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2037px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 54.3% 45.43%;
            transform-origin: 54.3% 45.43%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  7.4377% {
    -webkit-transform: translate3d(2025.7508701864px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2025.7508701864px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 54.35% 45.4%;
            transform-origin: 54.35% 45.4%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  94.2294% {
    -webkit-transform: translate3d(-269.935498027px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-269.935498027px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 65.41% 40.05%;
            transform-origin: 65.41% 40.05%;
    width: 120px;
    height: 62px;
    opacity: 0;
  }

  94.412% {
    -webkit-transform: translate3d(-270px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-270px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 65.41% 40.05%;
            transform-origin: 65.41% 40.05%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  98.1238% {
    -webkit-transform: translate3d(707px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(707px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
    opacity: 1;
  }
}

.run.t-0 #an-obj-18 {
  animation-name: ani-an-obj-18-0;
  -webkit-animation-name: ani-an-obj-18-0;
  animation-duration: 40.2465s;
  -webkit-animation-duration: 40.2465s;
  animation-delay: 8.7535s;
  -webkit-animation-delay: 8.7535s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-18 {
  transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart.t-0 #an-obj-18 {
  transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(813px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
  opacity: 1;
}

.restart #an-obj-18 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-19 {
  transform: translate3d(-125px, 17px, 0px);
  -webkit-transform: translate3d(-125px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-19-0 {
  0% {
    -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  6.4901% {
    -webkit-transform: translate3d(609px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  9.3863% {
    -webkit-transform: translate3d(715px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  90.7066% {
    -webkit-transform: translate3d(715px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  93.5144% {
    -webkit-transform: translate3d(599px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2159px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-19-0 {
  0% {
    -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  6.4901% {
    -webkit-transform: translate3d(609px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(609px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  9.3863% {
    -webkit-transform: translate3d(715px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(715px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  90.7066% {
    -webkit-transform: translate3d(715px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(715px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  93.5144% {
    -webkit-transform: translate3d(599px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(599px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2159px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2159px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-19 {
  animation-name: ani-an-obj-19-0;
  -webkit-animation-name: ani-an-obj-19-0;
  animation-duration: 26.7471s;
  -webkit-animation-duration: 26.7471s;
  animation-delay: 4.257s;
  -webkit-animation-delay: 4.257s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-19 {
  transform: translate3d(2159px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2159px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 49.3% 48.66%;
  -webkit-transform-origin: 49.3% 48.66%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-19 {
  transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-19 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-obj-20 {
  transform: translate3d(-125px, 17px, 0px);
  -webkit-transform: translate3d(-125px, 17px, 0px);
  width: 120px;
  height: 62px;
  top: 0;
  left: 0;
}

@-webkit-keyframes ani-an-obj-20-0 {
  0% {
    -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  9.4169% {
    -webkit-transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  14.0814% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  82.8383% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  87.5468% {
    -webkit-transform: translate3d(421px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2099px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 54.3% 45.43%;
    width: 120px;
    height: 62px;
  }
}

@keyframes ani-an-obj-20-0 {
  0% {
    -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  9.4169% {
    -webkit-transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(423px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  14.0814% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  82.8383% {
    -webkit-transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
            transform: translate3d(519px, 164px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(44deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 120px;
    height: 62px;
  }

  87.5468% {
    -webkit-transform: translate3d(421px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(421px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 49.3% 48.66%;
            transform-origin: 49.3% 48.66%;
    width: 120px;
    height: 62px;
  }

  100% {
    -webkit-transform: translate3d(2099px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
            transform: translate3d(2099px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
    -webkit-transform-origin: 54.3% 45.43%;
            transform-origin: 54.3% 45.43%;
    width: 120px;
    height: 62px;
  }
}

.run.t-0 #an-obj-20 {
  animation-name: ani-an-obj-20-0;
  -webkit-animation-name: ani-an-obj-20-0;
  animation-duration: 16.0035s;
  -webkit-animation-duration: 16.0035s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.t-0 #an-obj-20 {
  transform: translate3d(2099px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(2099px, 38px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 54.3% 45.43%;
  -webkit-transform-origin: 54.3% 45.43%;
  width: 120px;
  height: 62px;
}

.restart.t-0 #an-obj-20 {
  transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-127px, 37px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 120px;
  height: 62px;
}

.restart #an-obj-20 {
  animation-name: none !important;
  -webkit-animation-name: none !important;
}

#an-scene-0 .an-stage {
  width: 2000px;
  height: 250px;
  background-color: #434343;
  background-image: url("/images/parking/background.jpg");
  background-repeat: repeat-x;
  background-position: 0% 100%;
}

@media (min-width: 2010px) {
  #an-scene-0 .an-stage {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
}

#an-anim .an-stage img {
  max-width: none;
}

#an-scene-0 .an-stage {
  background-color: #fff;
}

#an-anim {
  height: 250px;
}

/* Header */

#contacts-app #contacts-header {
  height: 747px;
}

#contacts-app #contacts-header .inner-header-baner {
  height: 747px;
  background: url("/images/contacts-bck.jpg") no-repeat center center;
}

#contacts-app #contacts-header .inner-header-baner .inner-title {
  margin: 200px auto;
  padding: 0 30px;
}

#contacts-app #contacts-header .inner-header-baner .inner-title p {
  font-size: 2rem;
  line-height: 1;
}

#contacts-app .contact-form-section {
  margin-top: -500px;
  margin-bottom: 0;
}

#contacts-app .contact-form-section .contact-form {
  background-image: url(/images/form-bck.png);
  background-repeat: no-repeat;
  background-position: top right;
}

/* Form Styles */

.con-group .form-control {
  padding: 0 12px;
  height: 50px;
  line-height: 50px;
}

.con-group .input-group-text {
  background: none;
  position: absolute;
  border: none;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--tangerine);
}

.con-group .form-control {
  padding-left: 50px;
}

.con-group textarea.form-control {
  height: 170px;
}

.con-group select.form-control {
  height: 50px !important;
  line-height: 50px;
}

.con-group select.form-control option {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Contacts Cards */

.card-contacts {
  border: none;
  background: #ececec;
}

.card-contacts .cart-block {
  line-height: 1.2;
}

.card-contacts .link {
  color: #484848;
}

.card-contacts .link:hover {
  color: #ffffff;
}

/* Social Icons */

.social-icons-section a {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 20px;
  color: #818181;
}

.social-icons-section a > .icon-linkedin {
  font-size: 21px;
}

.social-icons-section a:hover {
  color: var(--razzmatazz);
}

/* Responsive Design */

@media only screen and (max-width: 767px) {
  #contacts-app #contacts-header {
    height: 350px;
  }

  #contacts-app #contacts-header .inner-header-baner {
    height: 278px;
  }

  #contacts-app #contacts-header .inner-header-baner .inner-title {
    margin: 70px auto;
  }

  #contacts-app .slooped-header:after {
    border-color: transparent transparent transparent #fafafa !important;
  }

  #contacts-app .contact-form-section {
    margin-top: -155px;
  }
}

@media only screen and (max-width: 649px) {
  #contacts-app .contact-form-section {
    margin-top: -200px;
  }
}

.promo-nav {
  width: 100%;
  background-color: transparent;
  margin: 0;
}

.promo-nav .col {
  padding: 0;
  z-index: 9;
}

.promo-nav .logo-pink {
  display: none;
}

.promo-nav .search-form {
  display: none;
}

.promo-nav .search-form .form-control {
  width: 280px;
  height: 40px;
  border: 1px solid #d7d7d7;
}

.promo-nav .navbar-nav {
  display: -webkit-flex;
  flex-direction: row;
  height: 80px;
}

.promo-nav .navbar-nav .nav-item {
  padding: 5px 0;
}

.promo-nav .navbar-nav .nav-item .nav-link {
  margin: 0 12px;
  color: #a1103d;
  padding: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
}

.top-speaker-banner .overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.top-speaker-banner .speaker-titles {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  color: #ffe492;
}

.top-speaker-banner h3 {
  margin: 15px auto 15px;
  line-height: 1.5;
  color: #ffffff;
}

.top-banner .overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
}

.top-banner .overlay .banner-titles {
  position: absolute;
  bottom: 6%;
  z-index: 11;
}

.top-banner .overlay .banner-titles h1 {
  color: #fff;
  font-size: 4rem;
  margin: 10px 0 10px 0;
}

.top-banner .overlay .banner-titles h3 {
  color: #fff;
  margin: 10px 0 20px 0;
}

.top-banner .overlay .banner-titles .btn {
  padding: 30px 50px;
}

.top-banner .overlay .banner-titles .btn span {
  font-size: 1.3rem;
}

.delimeter {
  border-top: 1px solid #3b6be7;
  border-bottom: 1px solid #a1103d;
  box-shadow: 0px 5px 10px 10px rgba(161, 16, 61, 0.2);
}

#about-us .btn {
  padding: 25px 40px;
}

#speakers {
  padding: 90px 0px;
  position: relative;
  background-image: url("/images/events/speakers_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#speakers h2,
#speakers h4 {
  margin: 10px 0;
  color: #fff;
}

#speakers h2 {
  min-height: 3rem;
}

@media (min-width: 769px) {
  #speakers h2 {
    font-size: 1.5rem;
  }
}

#speakers .btn {
  margin-top: 40px;
  padding: 25px 40px;
}

#speakers .btn span {
  font-size: 1.3rem;
}

#speakers .item:hover {
  box-shadow: none;
}

#speakers .item {
  background: transparent;
  box-shadow: none;
  margin-top: 40px;
}

#speakers .item .photo {
  overflow: hidden;
  position: relative;
}

#speakers .item .photo .photo-overlay {
  background: linear-gradient(to bottom, #3b6ce7b6, #a1103eb6);
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

#speakers .item .photo .social-icons {
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  list-style-type: none;
  position: absolute;
  top: 45%;
  left: 10%;
  z-index: 5;
}

#speakers .item .photo .social-icons .social-icon {
  margin: 0 10px;
}

#speakers .item .photo .social-icons .social-icon a span {
  color: #fff;
  transition: ease-in-out 0.5s;
}

#speakers .item .photo .social-icons .social-icon a span:hover {
  color: #a1103d;
}

#speakers .item .photo:hover .photo-overlay,
#speakers .item .photo:hover .social-icons {
  opacity: 1;
  visibility: visible;
}

#schedule {
  padding: 90px 0px;
}

#schedule h4 {
  margin: 15px auto 15px;
  line-height: 1.5;
}

#schedule tbody {
  width: 100%;
  display: table;
}

#schedule .table th,
#schedule .table td {
  vertical-align: middle;
}

#schedule td.date {
  background: linear-gradient(to right, #3b6be7, #a1103d);
  font-weight: bold;
  color: #fff;
}

#schedule td.subject {
  font-weight: bold;
  text-align: left;
}

#schedule td.range .icon-clock {
  color: #ffc512;
  margin-right: 10px;
}

#schedule .btn {
  margin-top: 35px;
  padding: 25px 40px;
}

.schedule-carousel .owl-nav button span {
  color: #2e2e2e;
}

.speaker-photo {
  border: 4px solid #fff;
  box-shadow: 0px 5px 0px 0px rgba(181, 181, 181, 0.2);
  width: 40px !important;
  height: 40px;
  overflow: hidden;
}

#event-banner,
.header-img {
  display: block;
  width: 100vw;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.skew {
  width: 55%;
  height: 100%;
  background: rgba(237, 16, 112, 0.4);
  z-index: 10;
  margin: auto;
  color: #fff;
  padding: 20px;
  text-align: center;
  -webkit-transform: skew(-205deg);
          transform: skew(-205deg);
  position: absolute;
  top: 0;
  left: -12%;
}

.skew2 {
  width: 60%;
  height: 100%;
  background: rgba(237, 16, 112, 0.4);
  z-index: 9;
  margin: auto;
  color: #fff;
  padding: 20px;
  text-align: center;
  -webkit-transform: skew(-206deg);
          transform: skew(-206deg);
  position: absolute;
  top: 0;
  left: -12%;
}

.skew3 {
  width: 63%;
  height: 100%;
  background: rgba(237, 16, 112, 0.4);
  z-index: 8;
  margin: auto;
  color: #fff;
  padding: 20px;
  text-align: center;
  -webkit-transform: skew(-206deg);
          transform: skew(-206deg);
  position: absolute;
  top: 0;
  left: -12%;
}

#plans {
  background-color: #f5f5f5;
  padding: 90px 0;
}

#plans .plan-card {
  margin-top: 20px;
  padding: 40px 0;
  background-color: #fff;
}

#plans .plan-card h4 {
  margin: 25px 0;
}

#plans .plan-card .btn {
  margin-top: 10px;
  padding: 25px 40px;
}

#plans .plan-card .btn span {
  font-size: 1.3rem;
}

hr {
  width: 65%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

#about-event {
  background-image: url("/images/events/middle_section_promo.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about-event .container {
  padding-top: 155px;
}

#about-event .container .col-md-4 {
  padding: 0;
}

#about-event .container h2 {
  color: #ffc512;
}

#about-event .container h4 {
  color: #fff;
  padding: 0 10px;
  margin: 15px auto 15px;
  line-height: 1.5;
}

#about-event .container .icon-container {
  margin-right: 10px;
}

#about-event .container .icon-map-pin {
  color: #fff;
  font-size: 3rem;
}

#about-event .container .icon-users {
  color: #fff;
  font-size: 3rem;
}

#about-event .container .icon-files-empty {
  color: #fff;
  font-size: 3rem;
}

#about-event .container .img-low {
  padding-top: 12px;
  padding-bottom: 13px;
}

#partners .partner-type,
#partners .sponsor-type,
#sponsors .partner-type,
#sponsors .sponsor-type {
  margin: 20px 0;
}

#partners .partner-logo,
#partners .sponsor-logo,
#sponsors .partner-logo,
#sponsors .sponsor-logo {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.5s ease-out;
}

#partners .partners-carousel,
#partners .sponsors-carousel,
#sponsors .partners-carousel,
#sponsors .sponsors-carousel {
  margin-top: 40px;
}

#partners .partners-carousel .item,
#partners .sponsors-carousel .item,
#sponsors .partners-carousel .item,
#sponsors .sponsors-carousel .item {
  background-color: transparent;
  box-shadow: none;
}

#partners .partners-carousel .item img,
#partners .sponsors-carousel .item img,
#sponsors .partners-carousel .item img,
#sponsors .sponsors-carousel .item img {
  margin-left: auto;
  margin-right: auto;
}

#partners .partner-logo:hover,
#partners .sponsor-logo:hover,
#sponsors .partner-logo:hover,
#sponsors .sponsor-logo:hover {
  -webkit-filter: none;
          filter: none;
}

#partners .partners-subheading,
#partners .sponsors-subheading,
#sponsors .partners-subheading,
#sponsors .sponsors-subheading {
  color: #b4b4b4;
}

.speaker-content {
  margin-top: 90px;
  margin-bottom: 90px;
}

.speaker-image {
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
}

.speaker-info {
  padding: 20px;
  background-color: #ed1070;
}

.speaker-info h3,
.speaker-info p {
  color: #fff;
}

.speaker-sessions {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0px;
  padding-right: 0px;
}

.speaker-sessions .title {
  background-color: #ed1070;
  padding: 20px;
}

.speaker-sessions .title h4 {
  font-weight: bold;
  color: #fff;
}

.speaker-sessions .details {
  background-color: #d3d3d3;
  padding: 20px;
}

.speaker-sessions .details h5 {
  font-weight: 600;
  color: #444;
}

.list-enter,
.list-leave-to {
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.list-enter-active,
.list-leave-active {
  transition: all 0.3s;
}

.owl-carousel .owl-nav {
  top: 60%;
}

.desktop-login {
  width: 50%;
  max-width: 480px;
  height: 100%;
  z-index: 1001;
  overflow-y: auto;
}

.free-reg {
  cursor: pointer;
}

.btn.btn-promo {
  background: linear-gradient(to right, #a1103d, #3b6be7);
  cursor: pointer;
}

.btn.btn-promo span {
  color: #a1103d;
}

.btn.btn-promo::before {
  top: 2px;
  right: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

.btn.btn-promo:hover span {
  color: #ffffff;
}

.btn.btn-promo:hover::before {
  width: 0;
  /* For Safari 3.1 to 6.0 */
  transition: width 0.3s;
}

.btn.btn-promo.btn-grey::before {
  background: #efefef;
}

.mobileTimer .timer {
  position: fixed !important;
  top: 7%;
  left: 0%;
  background: var(--orange);
  padding: 10px;
  -webkit-transform: none;
          transform: none;
}

@media (min-width: 320px) {
  .item .item-row {
    height: 117px !important;
  }
}

@media (min-width: 350px) {
  .item .item-row {
    height: 142px !important;
  }
}

@media (min-width: 375px) {
  .item .item-row {
    height: 147px !important;
  }
}

@media (min-width: 400px) {
  .item .item-row {
    height: 160px !important;
  }
}

@media (min-width: 420px) {
  .item .item-row {
    height: 162px !important;
  }
}

@media (min-width: 460px) {
  .item .item-row {
    height: 158px !important;
  }
}

@media (min-width: 480px) {
  .item .item-row {
    height: 169px !important;
  }
}

@media (min-width: 520px) {
  .item .item-row {
    height: 182px !important;
  }
}

@media (min-width: 550px) {
  .item .item-row {
    height: 185px !important;
  }
}

@media (min-width: 600px) {
  .item .item-row {
    height: 197px !important;
  }
}

@media (min-width: 650px) {
  .item .item-row {
    height: 180px !important;
  }
}

@media (min-width: 768px) {
  .item .item-row {
    height: 144px !important;
  }
}

@media (min-width: 992px) {
  .item .item-row {
    height: 163px !important;
  }
}

@media (min-width: 1200px) {
  .item .item-row {
    height: 212px !important;
  }
}

@media (min-width: 320px) {
  .item.first-big-item .item-img {
    max-height: 130px !important;
  }
}

@media (min-width: 350px) {
  .item.first-big-item .item-img {
    max-height: 181px !important;
  }
}

@media (min-width: 375px) {
  .item.first-big-item .item-img {
    max-height: 190px !important;
  }
}

@media (min-width: 400px) {
  .item.first-big-item .item-img {
    max-height: 217px !important;
  }
}

@media (min-width: 420px) {
  .item.first-big-item .item-img {
    max-height: 220px !important;
  }
}

@media (min-width: 460px) {
  .item.first-big-item .item-img {
    max-height: 213px !important;
  }
}

@media (min-width: 480px) {
  .item.first-big-item .item-img {
    max-height: 234px !important;
  }
}

@media (min-width: 520px) {
  .item.first-big-item .item-img {
    max-height: 259px !important;
  }
}

@media (min-width: 550px) {
  .item.first-big-item .item-img {
    max-height: 266px !important;
  }
}

@media (min-width: 600px) {
  .item.first-big-item .item-img {
    max-height: 290px !important;
  }
}

@media (min-width: 650px) {
  .item.first-big-item .item-img {
    max-height: 257px !important;
  }
}

@media (min-width: 768px) {
  .item.first-big-item .item-img {
    max-height: 191px !important;
  }
}

@media (min-width: 992px) {
  .item.first-big-item .item-img {
    max-height: 222px !important;
  }
}

@media (min-width: 1200px) {
  .item.first-big-item .item-img {
    max-height: 284px !important;
  }
}

.item .date-wrap .item-date {
  line-height: normal;
}

.item .city-img {
  height: 100%;
}

@media (min-width: 350px) {
  #parking_logo {
    margin-top: 5px;
  }
}

@media (min-width: 520px) {
  #parking_logo {
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  #parking_logo {
    margin-top: 5px;
  }
}

@media (min-width: 992px) {
  #parking_logo {
    margin-top: 5px;
  }
}

@media (min-width: 1200px) {
  #parking_logo {
    margin-top: 0px;
  }
}

@media (min-width: 350px) {
  .city-news .item.first-big-item .item-img {
    max-height: none;
  }
}

@media (min-width: 992px) {
  .city-news .item.first-big-item .item-img {
    max-height: 252px;
  }
}

@media (min-width: 1200px) {
  .city-news .item.first-big-item .item-img {
    max-height: 324px;
  }
}

@media (min-width: 1200px) {
  #events-listing .item.first-big-item .item-img {
    max-height: 295px;
  }
}

@media (min-width: 480px) {
  #reservation-steps .steps {
    max-width: 80px;
  }

  #reservation-steps .steps .step-name {
    font-size: 0.8rem;
  }
}

@media (min-width: 650px) {
  .item .item-info {
    padding: 15px;
  }

  #get-app .app-img {
    height: 300px;
  }

  #get-app .app-img img {
    width: 300px;
  }

  #get-app .app-img img.rph {
    top: 0;
    right: 20px;
  }

  #get-app .app-img img.lph {
    top: 30px;
    left: 20px;
  }

  #reservation-steps .steps {
    max-width: 100px;
  }

  .promo-nav .navbar-nav .nav-link {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .section-with-carousel {
    padding: 90px 0;
    overflow: visible;
  }

  .sloped-bg {
    background-position: top right;
    background-repeat: no-repeat;
  }

  .sloped-bg.reverse {
    background-position: top left;
  }

  #navigation.sticky {
    width: 100%;
    position: fixed;
    top: -60px;
    margin: 0;
    background: #ffffff;
    border-bottom: 1px solid #d7d7d7;
    transition: all 0.5s ease;
  }

  #navigation.sticky.show {
    top: 0px;
  }

  #navigation.sticky .logo-pink {
    height: 50px;
    display: inline-block;
  }

  #navigation.sticky .logo-white {
    display: none;
  }

  #navigation.sticky .search-form {
    display: inline-block;
  }

  #navigation.sticky .navbar-nav {
    height: 50px;
  }

  #navigation.sticky .navbar-nav .nav-link {
    margin: 0 12px;
    color: #484848;
  }

  #navigation.sticky .navbar-nav .nav-link:hover {
    color: #ffffff;
  }

  #navigation.sticky .navbar-nav #download-app {
    border: 1px solid #b1b2b7;
    background: #b1b2b7;
  }

  #navigation.sticky .navbar-nav #download-app span {
    color: #ffffff;
  }

  #navigation.sticky .navbar-nav #download-app:hover span {
    color: #484848;
  }

  #navigation.sticky .navbar-nav #lang-changer {
    margin: 0 15px;
  }

  #navigation.sticky .navbar-nav .dropdown-menu {
    left: -25px !important;
  }

  .slooped-header {
    height: 115px;
    margin-top: -110px;
  }

  .slooped-header::after {
    border-width: 115px 0 0 2000px;
    border-color: transparent transparent transparent #fafafa;
  }

  .header #header-content {
    top: 245px;
    padding: 0 15px;
  }

  .header .search-suggestions-mobile {
    display: none;
  }

  .header #home-search-cats .dropdown-results {
    height: 375px;
  }

  .header #home-search-cats .dropdown-results .city-select {
    height: 374px;
    overflow-y: scroll;
    font-size: 0.8rem;
  }

  .header #home-search-cats .dropdown-results .cats-container {
    width: 90%;
    overflow: auto;
  }

  .header #home-search-cats .dropdown-results .search-cats {
    height: 374px;
  }

  .header #home-search-cats .dropdown-results .search-cats .main-cats {
    padding: 0;
  }

  .header #home-search-cats .dropdown-results .search-cats .main-cats .mc-name {
    position: relative;
    padding: 20px 10px;
    background: transparent;
    color: #484848;
    cursor: pointer;
    border-bottom: 1px dotted #fff;
  }

  .header #home-search-cats .dropdown-results .search-cats .main-cats .mc-name:hover,
  .header #home-search-cats .dropdown-results .search-cats .main-cats .mc-name.active {
    background: var(--razzmatazz);
    color: #ffffff;
  }

  .header #home-search-cats .dropdown-results .search-cats .main-cats .mc-name:hover::after,
  .header #home-search-cats .dropdown-results .search-cats .main-cats .mc-name.active::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: calc(50% - 5px);
    right: -5px;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent var(--razzmatazz);
  }

  .header #home-search-cats .dropdown-results .search-cats .sub-cats {
    display: none;
  }

  .header #home-search-cats .dropdown-results .search-items {
    display: block;
    height: 374px;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 0;
  }

  .header #home-search-cats .dropdown-results .search-items .search-items-scroll {
    /*width: calc(100% + 15px);*/
    height: 99%;
    overflow: auto;
    padding: 0 15px;
  }

  .header #home-search-cats .dropdown-results .search-items .search-items-scroll .row {
    border-top: 1px dotted #d7d7d7;
  }

  .header #home-search-cats .dropdown-results .search-items .search-items-scroll .row:first-child {
    border: 0;
  }

  .header #home-search-cats .dropdown-results .search-items h4 {
    text-transform: uppercase;
  }

  .header #home-search-cats .dropdown-results .search-items h4 .link {
    color: #484848;
    padding: 2px;
  }

  .header #home-search-cats .dropdown-results .search-items h4 .link:hover {
    color: #ffffff;
  }

  .header #home-search-cats .dropdown-results .search-items .serch-cat-link {
    font-family: "gilroyextrabold", sans-serif;
    display: block;
    font-size: 0.7rem;
  }

  .header #home-search-cats .dropdown-results .search-items .serch-cat-link .icon {
    position: inherit;
    font-size: 0.9rem;
  }

  .header #home-search-cats .dropdown-results .search-items .search-item {
    padding-left: 0;
    padding-right: 5px;
  }

  .header #home-search-cats .dropdown-results .search-items .search-item img {
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid transparent;
  }

  .header #home-search-cats .dropdown-results .search-items .search-item h6 {
    font-size: 0.8rem;
  }

  .header #home-search-cats .dropdown-results .search-items .search-item:hover img {
    border: 1px solid var(--razzmatazz);
  }

  #top-destination .item {
    box-shadow: none;
  }

  #top-destination .view-destination {
    display: none;
  }

  #get-app .section-title .transparent,
  #my-business .section-title .transparent {
    font-size: 4.5rem;
  }

  #get-app .section-title .colored,
  #my-business .section-title .colored {
    font-size: 2.6rem;
  }

  #get-app {
    position: relative;
  }

  #get-app .app-info {
    margin-right: 35px;
    position: absolute;
    bottom: 50px;
    right: 0;
    text-align: left;
  }

  #get-app .app-info .section-title {
    margin-bottom: 20px;
  }

  #get-app .app-info .section-title .transparent {
    left: 85px;
    top: -27px;
  }

  #get-app .app-info p {
    color: #ffffff;
    text-shadow: 1px 0 3px #000000;
  }

  #get-app .app-img img.rph {
    top: 90px;
    right: -20px;
  }

  #get-app .app-img img.lph {
    top: -80px;
    left: -40px;
  }

  #my-business .business-info {
    padding: 30px 0 0 60px;
    text-align: left;
  }

  #my-business .section-title .transparent {
    left: -150px;
    top: auto;
  }

  #my-business .business-img img {
    width: 768px;
    max-width: 768px;
    position: absolute;
    top: -40px;
    right: 0;
  }

  .owl-carousel .owl-nav {
    /*font-size: 3rem;*/
  }

  .owl-carousel .owl-nav .owl-prev {
    left: -35px;
  }

  .owl-carousel .owl-nav .owl-next {
    right: -35px;
  }

  .owl-carousel#partners-carousel .owl-prev,
  .owl-carousel#sponsors-carousel .owl-prev {
    left: -60px;
  }

  .owl-carousel#partners-carousel .owl-next,
  .owl-carousel#sponsors-carousel .owl-next {
    right: -60px;
  }

  footer {
    padding: 90px 0 0 0;
  }

  footer .site-owner {
    text-align: left;
  }

  footer .site-creator {
    text-align: right;
  }

  .inner-header {
    height: 320px;
    position: relative;
    padding-top: 0;
  }

  .inner-header.nobanner {
    height: 80px;
  }

  .inner-header .inner-header-baner {
    height: 320px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .inner-header #city-navigation {
    position: absolute;
    bottom: 0;
    background: rgba(27, 27, 27, 0.7);
    box-shadow: none;
  }

  .inner-header #city-navigation .owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0;
  }

  .inner-header #city-navigation .owl-carousel .city-nav-link {
    color: #ffffff;
    padding: 10px 20px;
  }

  .inner-header #city-navigation .owl-carousel .city-nav-link.active {
    color: #ffffff;
    background: linear-gradient(to right, var(--razzmatazz), var(--orange));
    border: 0;
  }

  .inner-header #city-navigation .owl-carousel .city-nav-link.active::after,
  .inner-header #city-navigation .owl-carousel .city-nav-link.active::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
  }

  .inner-header #city-navigation .owl-carousel .city-nav-link.active::before {
    left: -20px;
    top: 0;
    border-style: solid;
    border-width: 0 0 44px 20px;
    border-color: var(--razzmatazz) transparent;
  }

  .inner-header #city-navigation .owl-carousel .city-nav-link.active::after {
    right: -20px;
    top: 0;
    border-style: solid;
    border-width: 0 0 44px 21px;
    border-color: transparent var(--orange);
  }

  .city-activities .sloped-bg.reverse {
    background-position: bottom left;
  }

  .city-activities .category-title {
    font-size: 3.2rem;
    position: absolute;
    top: -28px;
    left: 0px;
  }

  .city-news .first-big-item h4 {
    margin-bottom: 1.1rem;
    font-size: 1.2rem;
  }

  #event-info .event-parameters li .grey-txt {
    display: inline-block;
  }

  #reservation-steps .steps {
    max-width: 160px;
    margin: 0 5px;
    padding: 8px 15px;
  }

  #reservation-steps .steps.active {
    border: 1px solid #efefef;
  }

  #reservation-steps .steps.active .step-number {
    color: #b1b2b7;
  }

  #reservation-steps .steps.active:hover {
    background: #efefef;
  }

  #reservation-steps .steps.active:hover .step-number {
    color: #ffffff;
  }

  .one-reservation .event-info .res-event-img {
    display: block;
  }

  .nav-tabs .nav-link {
    font-size: 1.2rem;
  }

  .offer-params h3 {
    min-height: 90px;
  }

  #card-listing {
    padding-top: 100px;
  }

  #card-listing .card-box:nth-child(odd) {
    margin-top: -60px;
  }

  #card-single {
    padding-top: 50px;
  }

  #card-single .card-box {
    z-index: 2;
    margin-top: -35px;
  }

  .card-description {
    margin-left: -50px;
    margin-top: 0 !important;
  }

  .cards-descr {
    margin-top: -60px;
    margin-bottom: 60px !important;
  }

  .cards-descr h2 {
    text-align: right;
  }

  .city-preview {
    padding-bottom: 30px;
    border-bottom: 1px solid #d7d7d7;
  }

  .city-preview:last-child {
    border-bottom: 0;
  }

  .city-preview .view-city-btn {
    position: absolute;
    top: 0;
    right: 15px;
  }

  .city-preview .view-city-btn .btn {
    padding: 6px 25px;
    height: 35px;
  }

  #city-places .selected-filters .icon {
    width: 0;
  }

  #city-places .selected-filters:hover .icon {
    width: 16px;
  }

  #useful-contacts {
    background-size: 45%;
  }

  #useful-contacts .useful-label {
    display: inline-block;
  }
}

@media screen and (max-width: 992px) and (min-width: 769px) {
  .card-box .card-price {
    width: 100px;
    height: 100px;
  }

  .card-box .card-price .cost {
    font-size: 1.5rem;
  }

  .card-box .card-price .curr {
    font-size: 1.2rem;
  }

  .card-box .card-name {
    font-size: 1.3rem;
    padding: 0 10px 10px 0;
  }

  .card-box .card-date {
    padding: 0 0 10px 10px;
  }

  .card-box .card-date .expiration-date {
    font-size: 1.2rem;
  }

  #top-events .item .item-price,
  #top-culture .item .item-price,
  #top-sport .item .item-price,
  #urbo-live .item .item-price,
  #urbo-online .item .item-price,
  #staying .item .item-price,
  #kids-only .item .item-price,
  #events-listing .item .item-price,
  #outlet .item .item-price,
  #arena .section-with-carousel .item .item-price {
    font-size: 0.8rem;
  }

  #top-events .item .date-wrap,
  #top-culture .item .date-wrap,
  #top-sport .item .date-wrap,
  #urbo-live .item .date-wrap,
  #urbo-online .item .date-wrap,
  #staying .item .date-wrap,
  #kids-only .item .date-wrap,
  #events-listing .item .date-wrap,
  #outlet .item .date-wrap,
  #arena .section-with-carousel .item .date-wrap {
    display: none;
  }

  .item .price-wrap {
    height: auto;
  }

  #events-listing .item.first-big-item .item-img {
    max-height: 185px;
  }
}

@media (min-width: 769px) {
  #header-video #mainVideo {
    width: auto;
    height: 100%;
  }
}

@media (min-width: 992px) {
  #header-video #mainVideo {
    width: 100%;
    height: auto;
  }

  #get-app .section-title .transparent,
  #my-business .section-title .transparent {
    font-size: 5rem;
  }

  #get-app .section-title .colored,
  #my-business .section-title .colored {
    font-size: 3rem;
  }

  #get-app .app-info {
    padding: 120px 0 140px;
  }

  #get-app .app-img img {
    width: 350px;
  }

  #get-app .app-img img.rph {
    top: 70px;
    right: 0px;
  }

  #get-app .app-img img.lph {
    top: -130px;
    left: -50px;
  }

  .city-activities {
    padding: 110px 0 60px 0;
  }

  .city-activities .category-title {
    font-size: 4.5rem;
    top: -45px;
  }

  .city-news .first-big-item .item-info {
    min-height: 133px;
  }

  .city-news .item:not(.first-big-item) .item-info {
    padding-left: 15px;
  }

  .city-news .item:not(.first-big-item) .item-name {
    max-height: 95px;
    overflow: hidden;
  }

  .city-article .art-title-holder {
    position: absolute;
    bottom: 10%;
    right: 0;
    /*.article-title {
       	font-size: 2.5rem;
       }*/
  }

  .city-article .art-title-holder .category-title {
    width: 70%;
    display: block;
    position: absolute;
    right: 0;
    font-size: 3.2rem;
    text-align: right;
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
  }

  .city-article .art-img-holder .category-title {
    display: none;
  }

  .place-article .art-title-holder {
    position: absolute;
    bottom: 10%;
    left: 0;
  }

  .place-article .art-title-holder .category-title {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
    font-size: 3.2rem;
  }

  .place-article .art-title-holder .article-title {
    font-size: 2.5rem;
  }

  .place-article .art-img-holder {
    text-align: right;
  }

  .place-article .art-img-holder .category-title {
    display: none;
  }

  .place-article .item .item-info {
    padding: 15px;
  }

  #program .event-edition .event-heading,
  #program .event-edition .event-time,
  #program .event-edition .event-place {
    height: 60px;
  }

  #program .event-edition .event-heading .icon {
    display: none;
  }

  #program .event-edition .event-colapse {
    height: 100%;
  }

  #reservation-steps .steps {
    max-width: 215px;
  }

  #reservation-steps .steps .step-number {
    width: 50%;
    font-size: 3.5rem;
  }

  #reservation-steps .steps .step-icon {
    margin-left: -10px;
  }

  #reservation-steps .steps .step-name {
    margin-top: 0;
    font-size: 1rem;
    text-align: left;
    width: 50%;
  }

  #card-single {
    padding-top: 100px;
  }

  #card-single .card-box {
    margin-top: -70px;
  }

  /* ------ MAP Desktop -------*/

  .sitebar {
    height: auto;
    position: relative;
    top: auto;
    right: auto;
    background: #ffffff;
    border: 1px solid #d7d7d7;
    color: #484848;
  }

  .sitebar .sidebar-title {
    border-bottom: 3px solid var(--razzmatazz);
    color: #484848;
    text-transform: capitalize;
  }

  .sitebar .sidebar-content {
    height: auto;
  }

  .sitebar .sidebar-content .main-cat {
    border-bottom: 1px solid #d7d7d7;
    padding: 12px 20px;
  }

  .sitebar .sidebar-content .main-cat h4 {
    color: #484848;
    font-size: 0.9rem;
  }

  .sitebar .sidebar-content .main-cat.active h4 {
    font-weight: 600;
  }

  .sitebar .sidebar-content .collapse {
    border-bottom: 1px solid #d7d7d7;
  }

  .sitebar .sidebar-content .sub-categories .select-cat {
    padding: 10px 20px;
    font-size: 0.8rem;
    word-break: break-word;
  }

  .sitebar .sidebar-content .sub-categories .select-cat:hover {
    font-weight: 600;
  }

  .sitebar .sidebar-content .sub-categories .select-cat.active {
    background: #f8f8f8;
    font-weight: 600;
  }

  .promo-nav .navbar-nav .nav-item {
    padding: 15px 0;
  }

  .promo-nav .navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .my-card-row .card-box .card-name {
    padding: 0 10px 10px 0;
  }

  .my-card-row .card-box .card-name h3 {
    font-size: 1.3rem;
  }

  .my-card-row .card-box .card-date {
    padding: 0 0 10px 10px;
  }

  .my-card-row .card-box .card-date .expiration-date {
    font-size: 1.2rem;
  }
}

@media (min-width: 1250px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1200px) {
  #mainVideo {
    width: 100%;
    height: auto;
  }

  #get-app .app-img img {
    width: 400px;
  }

  #get-app .app-img img.rph {
    top: 70px;
    right: -35px;
  }

  #get-app .app-img img.lph {
    top: -130px;
    left: 0;
  }

  #my-business .business-img img {
    top: -80px;
  }

  #reservation-steps .steps {
    margin: 0 20px;
  }
}

@media (min-width: 1300px) {
  #get-app .app-img img.rph {
    right: -60px;
  }
}

@media (min-width: 2500px) {
  .home-page .slooped-header::after {
    border-width: 115px 0 0 4000px;
  }
}

@media (max-width: 1999px) {
  .city-business-filters .btn-gradient-border {
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  #get-app .app-info {
    bottom: 35%;
    right: -10%;
  }

  #navigation.sticky .search-form .form-control {
    width: 150px;
    font-size: 0.7rem;
  }

  #header-download-sec {
    max-width: 100%;
  }

  #header-download-sec .appstores-logo {
    display: none;
  }

  .appstores-text h2 {
    font-size: 1.5rem !important;
  }

  .appstores-text p {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 769px) {
  #header-video {
    background-image: url(/images/home-bg-tablet.jpg);
  }

  article,
  .city-article {
    padding: 40px 0 40px 0;
  }

  .category-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #get-app .app-info {
    display: none;
  }

  #promo-pages .delimeter .navbar-nav {
    height: auto;
    flex-direction: column;
  }

  #promo-pages .delimeter .navbar-nav .nav-item {
    padding: 5px 0;
  }

  #promo-pages .delimeter .navbar-nav li:not(:last-of-type) {
    border-bottom: 1px solid rgba(175, 175, 175, 0.5);
  }

  #top-destination {
    margin-top: 0;
  }

  #top-destination .sloped-bg {
    display: none;
  }

  #top-destination .item .city-name {
    font-size: 1.4rem;
  }

  .city-business-filters .btn-gradient-border {
    font-size: 1rem;
  }

  .dropdown-results .search-cats {
    overflow: auto;
  }

  .search-suggestions {
    display: none;
  }

  #event-info .res-event-img {
    display: none;
  }

  #event-info .event-name {
    text-align: center;
  }

  .confirm-ticket .col-6 {
    margin-bottom: 10px;
  }

  .total {
    margin-top: 30px;
  }

  .back-order {
    overflow: hidden;
    line-height: 1.8;
  }

  #events-listing .item.first-big-item .item-img {
    height: auto !important;
    max-height: none;
  }

  #upcards-tabs .nav-item {
    width: 50%;
  }

  #tickets-tabs .nav-item {
    width: 33%;
  }

  .show-on-desktop {
    display: none !important;
  }

  .show-on-mobile {
    display: block !important;
  }
}

@media (max-width: 649px) {
  h1,
  h1.single-title {
    font-size: 2rem;
  }

  p {
    font-size: 0.9rem;
  }

  .section-with-carousel .container {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .section-with-carousel .owl-stage-outer {
    overflow: visible !important;
  }
}

@media (max-width: 576px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .city-article .art-title-holder .article-title {
    font-size: 1.2rem;
  }

  .pagination .page-item .page-link {
    width: 30px;
    padding: 0.3rem 0 0.2rem;
    font-size: 1rem;
  }

  h3.yellow-title {
    font-size: 1rem;
  }

  #header-video {
    background-image: url(/images/home-bg-mobile.jpg);
  }

  #top-destination .item .city-name {
    font-size: 1.2rem;
  }

  #top-events .item .item-info,
  #top-culture .item .item-info,
  #top-sport .item .item-info,
  #urbo-live .item .item-info,
  #urbo-online .item .item-info,
  #kids-only .item .item-info,
  #outlet .item .item-info,
  #arena .item .item-info,
  .section-with-carousel .item .item-info {
    font-size: 0.8rem;
  }

  #top-events .owl-item:not(:first-child) .item-price,
  #top-culture .owl-item:not(:first-child) .item-price,
  #top-sport .owl-item:not(:first-child) .item-price,
  #urbo-live .owl-item:not(:first-child) .item-price,
  #urbo-online .owl-item:not(:first-child) .item-price,
  #kids-only .owl-item:not(:first-child) .item-price,
  #outlet .owl-item:not(:first-child) .item-price,
  #arena .owl-item:not(:first-child) .item-price,
  .section-with-carousel .owl-item:not(:first-child) .item-price {
    font-size: 0.8rem;
  }

  #top-events .owl-item:not(:first-child) .item-info .better-price span,
  #top-culture .owl-item:not(:first-child) .item-info .better-price span,
  #top-sport .owl-item:not(:first-child) .item-info .better-price span,
  #urbo-live .owl-item:not(:first-child) .item-info .better-price span,
  #urbo-online .owl-item:not(:first-child) .item-info .better-price span,
  #kids-only .owl-item:not(:first-child) .item-info .better-price span,
  #outlet .owl-item:not(:first-child) .item-info .better-price span,
  #arena .owl-item:not(:first-child) .item-info .better-price span,
  .section-with-carousel .owl-item:not(:first-child) .item-info .better-price span {
    display: block;
  }

  .home-page #get-app .app-img img {
    width: 200px;
  }

  .home-page #my-business .business-img {
    height: 130px;
  }

  .city-activities .category-title {
    font-size: 2rem;
  }

  .reservation section {
    padding-top: 30px;
  }

  #event-info .sloped-bg {
    height: 290px;
  }

  #events-listing .item .date-wrap {
    display: none;
  }

  #events-listing .item .price-wrap .better-price {
    font-size: 0.7rem;
  }

  #scheme-filters .scheme-legend li {
    font-size: 0.7rem;
  }

  .emailRow div.col-4,
  .emailRow div.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .emailRow .enterEmail {
    padding: 0 !important;
  }

  .emailRow .enterEmail span {
    display: block;
    text-align: center;
    float: none !important;
    line-height: 300%;
  }

  #my-tickets,
  #sent-tickets {
    max-width: 100%;
    height: 100vh;
    top: 0;
    right: -100%;
    margin-top: 0;
    background-color: #3c3f4b;
    background-image: url(/images/bg-mob-menu.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 75%;
  }

  #my-tickets .open-tickets,
  #sent-tickets .open-tickets {
    position: fixed;
    top: auto;
    left: auto;
    bottom: 70px;
    right: 0;
    box-shadow: none;
  }

  #my-tickets.open .open-tickets,
  #sent-tickets.open .open-tickets {
    right: 100%;
  }

  #my-tickets .head-row,
  #sent-tickets .head-row {
    border: 0;
    background: none;
  }

  #my-tickets .head-row .colored,
  #sent-tickets .head-row .colored {
    color: var(--banana);
    font-size: 1rem;
  }

  #my-tickets .tickets-row,
  #sent-tickets .tickets-row {
    max-height: calc(100vh - 200px);
  }

  #my-tickets .tickets-row .no-tichrts-msg,
  #sent-tickets .tickets-row .no-tichrts-msg {
    color: #ffffff;
  }

  #my-tickets .tickets-row .ticket,
  #sent-tickets .tickets-row .ticket {
    margin: 0;
    padding: 15px;
    border-bottom: 1px solid #b5b5b5;
  }

  #my-tickets .tickets-row .ticket:last-child,
  #sent-tickets .tickets-row .ticket:last-child {
    border-bottom: 0;
  }

  #my-tickets .total-row,
  #sent-tickets .total-row {
    border-top: 6px solid #b5b5b5;
    background: #3c3f4b;
  }

  #my-tickets .total-row h4,
  #my-tickets .total-row span,
  #sent-tickets .total-row h4,
  #sent-tickets .total-row span {
    color: #ffffff;
    text-align: center;
  }

  #sent-tickets {
    left: -100%;
  }

  #sent-tickets .open-tickets {
    left: 0;
  }

  #sent-tickets.open .open-tickets {
    left: 100%;
  }

  #sent-tickets .tickets-row .sent-ticket {
    color: #ffffff;
  }

  .event-place {
    padding: 0;
  }

  #offers .event-offer .offer-discount {
    font-size: 1.3rem;
  }

  #confirmation .confirm-ticket .ticket-title {
    font-size: 1rem;
  }

  #confirmation .confirm-ticket .ticket-type {
    font-size: 0.6rem;
  }

  .nav-tabs .nav-link {
    padding: 0.5rem;
  }

  .btn {
    font-size: 0.8rem;
  }

  .btn.btn-gradient {
    line-height: 2.2 !important;
  }

  #program .event-edition .event-date {
    font-size: 1rem;
  }

  .confirm-card {
    padding: 15px 0;
    font-size: 0.7rem;
  }

  .confirm-card h4 {
    font-size: 0.8rem;
  }

  .btn-card {
    height: 40px;
  }

  .hide-on-phone {
    display: none;
  }

  .card-box .card-price {
    width: 100px;
    height: 100px;
  }

  .card-box .card-price .cost {
    font-size: 1.5rem;
  }

  .card-box .card-price .curr {
    font-size: 1.2rem;
  }

  .card-box .card-name {
    font-size: 1.3rem;
    padding: 0 10px 10px 0;
  }

  .card-box .card-name h3 {
    font-size: 1.2rem;
  }

  .card-box .card-name h4 {
    font-size: 1rem;
  }

  .card-box .card-date {
    padding: 0 0 10px 10px;
  }

  .card-box .card-date .expiration-date {
    font-size: 1.2rem;
  }

  footer #newsletter-form label .colored {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .confirm-ticket .ticket-params {
    padding-top: 10px;
    border-top: 1px solid #d7d7d7;
  }

  .notice {
    padding: 20px 15px !important;
  }

  .custom-checkbox,
  .d-block {
    font-size: 13px;
  }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

#top-events,
#outlet,
#arena,
#urbo-live,
#urbo-online,
#staying,
#kids-only,
.section-with-carousel {
  min-height: 400px;
}

.crossed {
  text-decoration: line-through;
}

.freezePage {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.small {
  font-size: 80%;
  padding: 0 10px;
}

.fb-button {
  background-color: #3b5998;
  color: #fff;
  font-weight: bold;
}

.fb-button:hover {
  color: #fff !important;
}

div.chosen {
  background-color: #b4eab6;
}

#placeSrch {
  position: absolute;
  top: 10px;
  padding: 2px 8px;
  right: 20px;
  z-index: 5;
}

#app .pb-0 {
  padding-bottom: 0 !important;
}

#app .not-a1 {
  margin-top: -10px;
}

div#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 99999;
  margin: auto;
  text-align: center;
  padding-top: 20%;
  transition: background 1s;
}

div#loader h1 {
  color: #f7705c;
}

#ncpmdl {
  width: 100%;
  height: 670px;
  text-align: center;
}

.no-scroll {
  overflow: hidden;
}

.description-wrap * {
  color: #000 !important;
}

