body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }
  @media all and (max-width: 540px) {
    .sweet-alert {
      width: auto;
      margin-left: 0;
      margin-right: 0;
      left: 15px;
      right: 15px; } }
  .sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block; }
  .sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal; }
  .sweet-alert fieldset {
    border: none;
    position: relative; }
  .sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s; }
    .sweet-alert .sa-error-container.show {
      padding: 10px 0;
      max-height: 100px;
      webkit-transition: padding 0.2s, max-height 0.2s;
      transition: padding 0.25s, max-height 0.25s; }
    .sweet-alert .sa-error-container .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: white;
      line-height: 24px;
      text-align: center;
      margin-right: 3px; }
    .sweet-alert .sa-error-container p {
      display: inline-block; }
  .sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    .sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
      content: "";
      width: 20px;
      height: 6px;
      background-color: #f06e57;
      border-radius: 3px;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      left: 50%;
      margin-left: -9px; }
    .sweet-alert .sa-input-error::before {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .sweet-alert .sa-input-error::after {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .sweet-alert .sa-input-error.show {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1); }
  .sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .sweet-alert input:focus {
      outline: none;
      box-shadow: 0px 0px 3px #c4e6f5;
      border: 1px solid #b4dbed; }
      .sweet-alert input:focus::-moz-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus:-ms-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus::-webkit-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
    .sweet-alert input::-moz-placeholder {
      color: #bdbdbd; }
    .sweet-alert input:-ms-input-placeholder {
      color: #bdbdbd; }
    .sweet-alert input::-webkit-input-placeholder {
      color: #bdbdbd; }
  .sweet-alert.show-input input {
    display: block; }
  .sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative; }
  .sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden; }
  .sweet-alert button {
    background-color: #8CD4F5;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer; }
    .sweet-alert button:focus {
      outline: none;
      box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .sweet-alert button:hover {
      background-color: #7ecff4; }
    .sweet-alert button:active {
      background-color: #5dc2f1; }
    .sweet-alert button.cancel {
      background-color: #C1C1C1; }
      .sweet-alert button.cancel:hover {
        background-color: #b9b9b9; }
      .sweet-alert button.cancel:active {
        background-color: #a8a8a8; }
      .sweet-alert button.cancel:focus {
        box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }
    .sweet-alert button[disabled] {
      opacity: .6;
      cursor: default; }
    .sweet-alert button.confirm[disabled] {
      color: transparent; }
      .sweet-alert button.confirm[disabled] ~ .la-ball-fall {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s; }
    .sweet-alert button::-moz-focus-inner {
      border: 0; }
  .sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important; }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px; }
  .sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box; }
    .sweet-alert .sa-icon.sa-error {
      border-color: #F27474; }
      .sweet-alert .sa-icon.sa-error .sa-x-mark {
        position: relative;
        display: block; }
      .sweet-alert .sa-icon.sa-error .sa-line {
        position: absolute;
        height: 5px;
        width: 47px;
        background-color: #F27474;
        display: block;
        top: 37px;
        border-radius: 2px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-left {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          left: 17px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-right {
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
          right: 16px; }
    .sweet-alert .sa-icon.sa-warning {
      border-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-body {
        position: absolute;
        width: 5px;
        height: 47px;
        left: 50%;
        top: 10px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-dot {
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin-left: -3px;
        left: 50%;
        bottom: 10px;
        background-color: #F8BB86; }
    .sweet-alert .sa-icon.sa-info {
      border-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 29px;
        left: 50%;
        bottom: 17px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: -3px;
        top: 19px;
        background-color: #C9DAE1; }
    .sweet-alert .sa-icon.sa-success {
      border-color: #A5DC86; }
      .sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
        content: '';
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        position: absolute;
        width: 60px;
        height: 120px;
        background: white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
      .sweet-alert .sa-icon.sa-success::before {
        -webkit-border-radius: 120px 0 0 120px;
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 60px 60px;
        transform-origin: 60px 60px; }
      .sweet-alert .sa-icon.sa-success::after {
        -webkit-border-radius: 0 120px 120px 0;
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0px 60px;
        transform-origin: 0px 60px; }
      .sweet-alert .sa-icon.sa-success .sa-placeholder {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(165, 220, 134, 0.2);
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        box-sizing: content-box;
        position: absolute;
        left: -4px;
        top: -4px;
        z-index: 2; }
      .sweet-alert .sa-icon.sa-success .sa-fix {
        width: 5px;
        height: 90px;
        background-color: white;
        position: absolute;
        left: 28px;
        top: 8px;
        z-index: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .sweet-alert .sa-icon.sa-success .sa-line {
        height: 5px;
        background-color: #A5DC86;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 2; }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
          width: 25px;
          left: 14px;
          top: 46px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-long {
          width: 47px;
          right: 8px;
          top: 38px;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }
    .sweet-alert .sa-icon.sa-custom {
      background-size: contain;
      border-radius: 0;
      border: none;
      background-position: center center;
      background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%); } }

@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%); } }
.bcPicker-picker {
    margin-right: 3px;
    float: left;
    margin-left: 7px;
    display: inline-block;
    width: 16px;
    margin-top: -2px;
    height: 16px;
    position: relative;
    bottom: 0;
    cursor: pointer;
    border: 1px solid;
}

.bcPicker-palette{
  width: 100% !important;
  top: 16px;
  padding: 5px;
  margin-left: 0px;
  line-height: 0.5;
}

.bcPicker-palette .bcPicker-color{
  width: 17px;
  height: 17px;
  margin: 2px;
  display: inline-block;
  border: 1px solid #4d4d4d;;
}
.color-picker{
  width: 100%;
}
.one-c[type="radio"]{
  display:none;
}
.one-c[type="radio"]:checked + .circle{
  border: 2px solid #e50059;
  background: #fff;
}
.one-c[type="radio"]:not(:checked) + .circle{
  border: 1px solid #999;
  background: #fff;
}

.circle{
  display: inline-block;
    height: 11px;
    width: 11px;
    border-radius: 50%;
}
.tax_described .one-c[type="radio"]:checked + .circle{
  border: 2px solid #999 !important;
  background: #e50059 !important;
}
.tax_described .circle{
  display: inline-block;
    height: 13px;
    width: 13px;
    border-radius: 50%;
}
/*!
 * Bootstrap v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
  --blue: #272422;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #EE422B;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #272422;
  --primary: #272422;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #EE422B;
  --light: #f8f9fa;
  --dark: #272422;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-Poppins: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", Poppins, "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: Poppins;
  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", Poppins, "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:not(:focus-visible) {
  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: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

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

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

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

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

caption {
  padding-top: 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;
}

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

select {
  word-wrap: normal;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

[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\00A0";
}

.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-wrap: 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, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.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: #272422;
  border-color: #454d55;
}

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

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

.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: visible;
  -webkit-overflow-scrolling: touch;
}

.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:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

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

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

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

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

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

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

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

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

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

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  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: .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 :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

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

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

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23272422' 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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(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 .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

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

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

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

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

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

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

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

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

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .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 :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #EE422B;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

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

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #EE422B;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23272422' 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' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

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

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

.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: #EE422B;
}

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

.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: #EE422B;
}

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

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

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

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

@media (min-width: 576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 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;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

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

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

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

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

.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 {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  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 {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  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 {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  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 {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  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: #EE422B;
  border-color: #EE422B;
}

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

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

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

.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 {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  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: #272422;
  border-color: #272422;
}

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

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

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

.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: #272422;
  border-color: #272422;
}

.btn-outline-primary:hover {
  color: #fff !important;
  background-color: #272422;
  border-color: #272422;
}

.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: #272422;
  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: #272422;
  border-color: #272422;
}

.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: #EE422B;
  border-color: #EE422B;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #EE422B;
  border-color: #EE422B;
}

.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: #EE422B;
  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: #EE422B;
  border-color: #EE422B;
}

.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: #272422;
  border-color: #272422;
}

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

.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: #272422;
  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: #272422;
  border-color: #272422;
}

.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: #272422;
  text-decoration: none;
}

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

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

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

.btn-lg, .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 #E5E5E5;
}

.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: #272422;
}

.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: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -ms-flex: 1 1 auto;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  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 {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

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

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -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: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  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: -ms-flexbox;
  display: flex;
}

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

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

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  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: #E5E5E5;
  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: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

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

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

.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, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

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

.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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

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

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

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(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' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(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: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23272422' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  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: #E5E5E5;
}

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

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

.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,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #E5E5E5;
}

.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: #E5E5E5;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.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: #272422;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

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

.custom-range::-webkit-slider-thumb:active {
  background-color: #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: #272422;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

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

.custom-range::-moz-range-thumb:active {
  background-color: #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: #272422;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

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

.custom-range::-ms-thumb:active {
  background-color: #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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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: #E5E5E5 #E5E5E5 #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: #272422;
}

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

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

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  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, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

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

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

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

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  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, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

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

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

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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 {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  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,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    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;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-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(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #E5E5E5;
  border-radius: 0.25rem;
}

.breadcrumb-item {
  display: -ms-flexbox;
  display: flex;
}

.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: -ms-flexbox;
  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: #272422;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #E5E5E5;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  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: 3;
  color: #fff;
  background-color: #272422;
  border-color: #272422;
}

.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: #272422;
}

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: #EE422B;
}

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: #272422;
}

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: #E5E5E5;
  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: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #E5E5E5;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #272422;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.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: #E5E5E5;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #272422;
  border-color: #272422;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #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: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.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: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  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.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  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 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

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

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  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: 12px;
  word-wrap: break-word;
  opacity: 1;
}


.tooltip.show {
  opacity: 1;
}

.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: #272422;
}

.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: #272422;
}

.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: #272422;
}

.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: #272422;
}

.tooltip-inner {
  max-width: 250px;
  padding: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 17px;
  background-color: #272422;
  border-radius: 0.25rem;
}

.tooltip-inner li{
  line-height: 17px;
}

.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", Poppins, "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);
}

.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);
  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);
}

.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);
  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 {
  -ms-touch-action: pan-y;
  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: opacity 0s 0.6s;
}

@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: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: 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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  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: .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 .75s linear infinite;
  animation: spinner-border .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;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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 .75s linear infinite;
  animation: spinner-grow .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: #272422 !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: #EE422B !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: #272422 !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: #272422 !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: #EE422B !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #272422 !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: -ms-flexbox !important;
  display: flex !important;
}

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

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

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

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

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

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

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

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

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

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

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  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;
}

.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;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: 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: #272422 !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: #EE422B !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: #272422 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@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;
  }
}
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}
table.dataTable td,
table.dataTable th {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
  text-align: center;
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_length select {
  padding: 0 !important;
  border: 0 !important;
  width: 42px;
  display: inline-block;
}
div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: 260px !important;
}
div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0 10px 0;
  white-space: nowrap;
  justify-content: flex-end;
}
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 20px;
  font-size: 30px;
  display: block;
  opacity: 0.5;
}
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
}
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
  opacity: 1;
}
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0;
}

div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
div.dataTables_scrollBody table thead .sorting:before,
div.dataTables_scrollBody table thead .sorting_asc:before,
div.dataTables_scrollBody table thead .sorting_desc:before,
div.dataTables_scrollBody table thead .sorting:after,
div.dataTables_scrollBody table thead .sorting_asc:after,
div.dataTables_scrollBody table thead .sorting_desc:after {
  display: none;
}
div.dataTables_scrollBody table tbody tr:first-child th,
div.dataTables_scrollBody table tbody tr:first-child td {
  border-top: none;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 991px) {
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: center !important;
  }
}
table.dataTable.table-sm > thead > tr > th :not(.sorting_disabled) {
  padding-right: 20px;
}
table.dataTable.table-sm .sorting:before,
table.dataTable.table-sm .sorting_asc:before,
table.dataTable.table-sm .sorting_desc:before {
  top: 5px;
  right: 0.85em;
}
table.dataTable.table-sm .sorting:after,
table.dataTable.table-sm .sorting_asc:after,
table.dataTable.table-sm .sorting_desc:after {
  top: 5px;
}

table.table-bordered.dataTable {
  border-right-width: 0;
}
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-left-width: 0;
}
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
  border-right-width: 1px;
}
table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
  padding-left: 0;
}
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
  padding-right: 0;
}
@media (min-width: 1920px) {
  .w-item {
    min-width: 39% !important;
    max-width: 39% !important;
    width: 39% !important;
  }

  .wide .w-item {
    min-width: 41.5% !important;
    max-width: 41.5% !important;
    width: 41.5% !important;
  }

  .w-action {
    min-width: 33.5% !important;
    max-width: 33.5% !important;
    width: 33.5% !important;
  }

  .wide .w-action {
    min-width: 34.6% !important;
    max-width: 34.6% !important;
    width: 34.6% !important;
  }

  .w-include {
    min-width: 8.2% !important;
    max-width: 8.2% !important;
    width: 8.2% !important;
  }

  .wide .w-include {
    min-width: 7.3% !important;
    max-width: 7.3% !important;
    width: 7.3% !important;
  }

  .w-page {
    min-width: 6% !important;
    max-width: 6% !important;
    width: 6% !important;
  }

  .wide .w-page {
    min-width: 5% !important;
    max-width: 5% !important;
    width: 5% !important;
  }

  .wide .w-page {
    min-width: 4.1% !important;
    max-width: 4.1% !important;
    width: 4.1% !important;
  }

  .w-cost {
    min-width: 5.2% !important;
    max-width: 5.2% !important;
    width: 5.2% !important;
  }

  .wide .w-cost {
    min-width: 4.7% !important;
    max-width: 4.7% !important;
    width: 4.7% !important;
  }

  .w-actions {
    min-width: 9.2% !important;
    max-width: 9.2% !important;
    width: 9.2% !important;
  }

  .wide .w-actions {
    min-width: 7.8% !important;
    max-width: 7.8% !important;
    width: 7.8% !important;
  }
}

@media (min-width: 1500px) and (max-width: 1919px) {
  .w-item {
    min-width: 33% !important;
    max-width: 33% !important;
    width: 33% !important;
  }

  .wide .w-item {
    min-width: 36% !important;
    max-width: 36% !important;
    width: 36% !important;
  }

  .wide .w-item {
    min-width: 37.3% !important;
    max-width: 37.3% !important;
    width: 37.3% !important;
  }

  .w-action {
    min-width: 28.5% !important;
    max-width: 28.5% !important;
    width: 28.5% !important;
  }

  .wide .w-action {
    min-width: 31.5% !important;
    max-width: 31.5% !important;
    width: 31.5% !important;
  }

  .w-include {
    min-width: 10.7% !important;
    max-width: 10.7% !important;
    width: 10.7% !important;
  }

  .wide .w-include {
    min-width: 9.5% !important;
    max-width: 9.5% !important;
    width: 9.5% !important;
  }

  .w-page {
    min-width: 6% !important;
    max-width: 6% !important;
    width: 6% !important;
  }

  .wide .w-page {
    min-width: 5.4% !important;
    max-width: 5.4% !important;
    width: 5.4% !important;
  }

  .w-cost {
    min-width: 6.8% !important;
    max-width: 6.8% !important;
    width: 6.8% !important;
  }

  .wide .w-cost {
    min-width: 6.1% !important;
    max-width: 6.1% !important;
    width: 6.1% !important;
  }

  .w-actions {
    min-width: 12% !important;
    max-width: 12% !important;
    width: 12% !important;
  }

  .wide .w-actions {
    min-width: 10.2% !important;
    max-width: 10.2% !important;
    width: 10.2% !important;
  }
}

@media (min-width: 1278px) and (max-width: 1499px) {
  .w-item {
    min-width: 32% !important;
    max-width: 32% !important;
    width: 32% !important;
  }

  .wide .w-item {
    min-width: 35.8% !important;
    max-width: 35.8% !important;
    width: 35.8% !important;
  }

  .w-action {
    min-width: 23% !important;
    max-width: 23% !important;
    width: 23% !important;
  }

  .wide .w-action {
    min-width: 26.7% !important;
    max-width: 26.7% !important;
    width: 26.7% !important;
  }

  .w-include {
    min-width: 13.6% !important;
    max-width: 13.6% !important;
    width: 13.6% !important;
  }

  .wide .w-include {
    min-width: 11.4% !important;
    max-width: 11.4% !important;
    width: 11.4% !important;
  }

  .w-page {
    min-width: 7.7% !important;
    max-width: 7.7% !important;
    width: 7.7% !important;
  }

  .wide .w-page {
    min-width: 6.4% !important;
    max-width: 6.4% !important;
    width: 6.4% !important;
  }

  .w-cost {
    min-width: 9% !important;
    max-width: 9% !important;
    width: 9% !important;
  }

  .wide .w-cost {
    min-width: 7.2% !important;
    max-width: 7.2% !important;
    width: 7.2% !important;
  }

  .w-actions {
    min-width: 14.7% !important;
    max-width: 14.7% !important;
    width: 14.7% !important;
  }

  .wide .w-actions {
    min-width: 12.4% !important;
    max-width: 12.4% !important;
    width: 12.4% !important;
  }
}

@media (min-width: 992px) and (max-width: 1277px) {

    .w-item {
    min-width: 21.9% !important;
    max-width: 21.9% !important;
    width: 21.9% !important;
  }

  .wide .w-item {
    min-width: 28% !important;
    max-width: 28% !important;
    width: 28% !important;
  }

  .w-action {
    min-width: 17.5% !important;
    max-width: 17.5% !important;
    width: 17.5% !important;
  }

  .wide .w-action {
    min-width: 22.2% !important;
    max-width: 22.2% !important;
    width: 22.2% !important;
  }

  .w-include {
    min-width: 18.5% !important;
    max-width: 18.5% !important;
    width: 18.5% !important;
  }

  .wide .w-include {
    min-width: 15.1% !important;
    max-width: 15.1% !important;
    width: 15.1% !important;
  }

  .w-page {
    min-width: 11.3% !important;
    max-width: 11.3% !important;
    width: 11.3% !important;
  }

  .wide .w-page {
    min-width: 9.4% !important;
    max-width: 9.4% !important;
    width: 9.4% !important;
  }

  .w-cost {
    min-width: 11.3% !important;
    max-width: 11.3% !important;
    width: 11.3% !important;
  }

  .wide .w-cost {
    min-width: 9.4% !important;
    max-width: 9.4% !important;
    width: 9.4% !important;
  }

  .w-actions {
    min-width: 19.5% !important;
    max-width: 19.5% !important;
    width: 19.5% !important;
  }

  .wide .w-actions {
    min-width: 16% !important;
    max-width: 16% !important;
    width: 16% !important;
  }
}

@media (min-width: 992px) {

  .table-widths>thead>tr,
  .table-widths>tbody>tr {
    display: flex !important;
  }

  .table-widths>thead>tr th,
  .table-widths>tbody>tr td {
    display: inline-flex !important;
  }
}
.jGrowl {
  z-index: 9999;
  color: #fff;
  font-size: 12px;
  font-family: "Poppins";
  position: fixed
}

.jGrowl.top-left {
  left: 0;
  top: 0
}

.jGrowl.top-right {
  right: 0;
  top: 0
}

.jGrowl.bottom-left {
  left: 0;
  bottom: 0
}

.jGrowl.bottom-right {
  right: 0;
  bottom: 0
}

.jGrowl.center {
  top: 0;
  width: 50%;
  left: 25%
}

.jGrowl.center .jGrowl-closer,
.jGrowl.center .jGrowl-notification {
  margin-left: auto;
  margin-right: auto
}

.jGrowl-notification {
  background-color: #272422;
  opacity: 1;
  zoom: 1;
  width: 260px;
  padding: 15px;
  margin: 10px;
  text-align: left;
  display: none;
  border-radius: 5px;
  min-height: 40px
}

.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
  border: 1px solid #272422;
  background: #272422;
  color: #fff
}

.jGrowl-notification .jGrowl-header {
  font-weight: 500;
  font-size: 12px;
}

.jGrowl-notification .jGrowl-close {
  background-color: transparent;
  color: inherit;
  border: none;
  z-index: 99;
  float: right;
  position: absolute;
  top: 5px;
  right: 5px;
  font-weight: 100;
  font-size: 20px;
  cursor: pointer
}

.jGrowl-closer {
  background-color: #272422;
  opacity: 1;
  zoom: 1;
  width: 250px;
  padding: 10px;
  margin: 10px;
  text-align: left;
  display: none;
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  font-size: .9em;
  font-weight: 500;
  text-align: center
}

.jGrowl-closer .ui-state-highlight,
.jGrowl-closer .ui-widget-content .ui-state-highlight,
.jGrowl-closer .ui-widget-header .ui-state-highlight {
  border: 1px solid #272422;
  background: #272422;
  color: #fff
}

@media print {
  .jGrowl {
    display: none
  }
}
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  margin-left: -10px !important;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container>.nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  left: 0;
  float: left;
  background: url(/prev.png) 55% 50% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  right: 0;
  float: right;
  background: url(/next.png) 55% 50% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}


.lb-closeContainer {
  position: fixed;
  top: 10px;
  right: 10px;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  opacity: 1;
  position: absolute;
  width: 20%;
}

.lb-data .lb-close {
  background-size: contain;
  width: 20px;
  height: 20px;
}

.lb-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}

.lb-outerContainer {
  width: 100% !important;
  background: transparent;
}

.lb-loader {
  height: 100vh !important;
  top: inherit !important;
  display: flex;
  align-items: center;
}

.lb-cancel {
  background-size: contain !important;
  width: 64px !important;
  height: 64px !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.lb-image {
  max-width: 95% !important;
  width: auto !important;
  max-height: 100% !important;
  height: auto !important;
  background: #f1f1f1;
  border: 0 !important;
  border-radius: 0 !important;
  min-width: 100px;
  min-height: 100px;
}

.lb-details {
  display: none !important;
}

.lb-nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox {
  position: fixed !important;
  height: 100vh !important;
  top: 0 !important;
  display: flex;
  align-items: center;
}
.loginmodal-fb {
  font-weight: 500;
  border: 1px solid #ededed;
  padding: 11.5px 15px;
  text-align: left;
  color: #fff;
  background-color: #48679e;
  font-size: 14px;
  line-height: 25px;
  border-radius: 5px;
}

.loginmodal-fb a,
.loginmodal-fb a:focus,
.loginmodal-fb a:active,
.loginmodal-fb a:hover {
  color: #fff !important;
}

.btn-submit {
  padding: 11.5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}

.nav-link {
  font-weight: 500 !important;
  color: #282828;
  line-height: 14px !important;
  letter-spacing: 1px;
}

.loginmodal-fb::before {
  padding-right: 24%;
  content: "\f39e";
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #fff;
  font-size: 24px;
  vertical-align: middle;
}

.loginmodal-fb:hover::before {
  content: "\f09a";
}

.loginmodal-google {
  font-weight: 500;
  border-radius: 5px;
  padding: 11.5px 15px;
  text-align: left;
  background-color: #e34134;
  color: #ffffff !important;
  border: 1px solid #ededed;
  font-size: 14px;
  line-height: 25px;
}

.loginmodal-google a,
.loginmodal-google a:focus,
.loginmodal-google a:active,
.loginmodal-google a:hover {
  color: #555555 !important;
}

.loginmodal-google::before {
  padding-right: 20%;
  content: "\f1a0";
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #ffffff;
  font-size: 24px;
  vertical-align: middle;
}

.loginmodal-google:hover::before {
  content: "\f0d5";
}

@media (min-width: 768px) {
  .b-left {
    border-left: 1px solid #000 !important;
  }
}

.hr-or {
  margin-bottom: 23px !important;
  margin-top: 17px !important;
  border-color: #dddddd;
}

.container-sign {
  background-color: #fff;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 1px 1.732px 7px rgba(136, 156, 176, 0.1);
  overflow: hidden;
}

@media (min-width: 800px) {
  .container-signup {
    max-width: 800px !important;
  }
}

@media (min-width: 400px) {
  .container-sign {
    padding: 40px 10px;
  }
}

@media (max-width: 400px) {

  .loginmodal-fb::before {
    padding-right: 15%;
  }

  .loginmodal-google::before {
    padding-right: 11%;
  }

  .container-sign {
    padding: 40px 20px;
  }
}

@media (min-width: 576px) {
  .container-signin {
    max-width: 450px !important;
    ;
  }

  .container-signup {
    max-width: 800px !important;
    ;
  }

  .modal-login {
    max-width: 400px !important;
    ;
  }

  .modal-login-body {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.remember_me input {
  vertical-align: middle;
}

.remember_me label {
  margin-bottom: 0 !important;
  line-height: 14px;
  vertical-align: middle;
}

.modal-login {
  margin-top: 5px !important;
  margin-bottom: 0px !important;
}
.select2-container--bootstrap4 .select2-selection--single {
  height: calc(1.5em + 0.75rem + 2px) !important; }
  .select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
    color: #757575;
    line-height: calc(1.5em + 0.75rem); }
  .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 20px; }
    .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
      top: 60%;
      border-color: #343a40 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      width: 0;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute; }
  .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + 0.75rem); }

.select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  border-radius: 0.25rem; }

.select2-results__message {
  color: #6c757d; }

.select2-container--bootstrap4 .select2-selection--multiple {
  min-height: 45px !important; }
  .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%; }
    .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{
      margin-top: 4px;
      margin-bottom: 4px;
    }
    .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered .select2-search--inline{
      margin-top: 10px;
      margin-bottom: 10px;
    }
  .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    color: #343a40;
    border: 1px solid #272422;
    border-radius: 0.2rem;
    padding: 6px 10px 2px 0px;
    cursor: pointer;
    float: left;
    margin-top: 0;
    margin-right: 7px; }
  .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
      color: #272422;
      line-height: 17px;
      font-size: 20px;
      margin-left: 3px;
      margin-right: 1px;
      padding-right: 3px;
      padding-left: 3px;
      float: left;
  } }
    .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #343a40; }
  .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear {
    float: none;
    margin-right: 0;
    position: absolute !important;
    top: 0;
    right: 0.7em; }

.select2-container {
  display: block; }
  .select2-container *:focus {
    outline: 0; }

.input-group .select2-container--bootstrap4 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group > .select2-container--bootstrap4:not(:last-child) .select2-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--bootstrap4 .select2-selection {
  padding: 0 7px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  width: 100%; }
  @media (prefers-reduced-motion: reduce) {
    .select2-container--bootstrap4 .select2-selection {
      -webkit-transition: none;
      transition: none; } }

.select2-container--bootstrap4.select2-container--focus .select2-selection {
  border-color: #272422;
}
.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection {
  background-color: #dbdbdb;
  cursor: not-allowed;
  border-color: #ced4da;
  -webkit-box-shadow: none;
          box-shadow: none; }

.select2-container--bootstrap4.select2-container--disabled .select2-search__field, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field {
  background-color: transparent; }

select.is-invalid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection {
  border-color: #dc3545; }

select.is-valid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection {
  border-color: #28a745; }

.select2-container--bootstrap4 .select2-dropdown {
  border-color: #ced4da;
  border-radius: 0; }
  .select2-container--bootstrap4 .select2-dropdown.select2-dropdown--below {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
    border-top: 1px solid #ced4da;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] {
    display: none; }

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
  background-color: #dbdbdb;
  color: #272422; }

.select2-container--bootstrap4 .select2-results__option[role=group] {
  padding: 0; }
  .select2-container--bootstrap4 .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
    padding-left: 1em; }

.select2-container--bootstrap4 .select2-results > .select2-results__options {
  max-height: 15em;
  overflow-y: auto; }

.select2-container--bootstrap4 .select2-results__group {
  padding: 6px;
  display: list-item;
  color: #6c757d; }

.select2-container--bootstrap4 .select2-selection__clear {
  width: 0.9em;
  height: 0.9em;
  line-height: 0.75em;
  padding-left: 0.15em;
  margin-top: 0.7em;
  border-radius: 100%;
  background-color: #c8c8c8;
  color: #f8f9fa;
  float: right;
  margin-right: 0.3em; }
  .select2-container--bootstrap4 .select2-selection__clear:hover {
    background-color: #afafaf; }
  
@media(max-width: 991px){
  .select2-container--bootstrap4 .select2-selection--multiple {
    min-height: 45px !important; }
}
html {
  direction: ltr;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 100%;
  margin: 0 !important;
}

body {
  background-color: #FFF;
  color: #333333;
  font-family: Poppins !important;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}

body a {
  outline: none !important;
}

strong {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Poppins !important;
}

li {
  line-height: 24px;
}

/* Responsive */
@media (max-width: 991px) {
  html.safari {
    position: relative;
    overflow-x: hidden;
  }
}

@media (max-width: 479px) {
  body {
    font-size: 13px;
  }
}

.body {
  background-color: #FFF;
}

/* Header */
#header {
  position: relative;
  z-index: 1030;
  -webkit-transition: ease min-height 300ms;
  transition: ease min-height 300ms;
}

#header .header-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFF;
  -webkit-transition: min-height 0.3s ease;
  transition: min-height 0.3s ease;
  width: 100%;
  z-index: 1001;
}

#header .header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 104px;
  -webkit-transition: ease height 300ms;
  transition: ease height 300ms;
}

@media (max-width: 991px) {
  #header .header-container:not(.container) .header-nav-main {
    padding: 0 0.75rem;
  }
}

#header .header-container:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
  z-index: 0;
}

#header .header-container.header-column-equal-width .header-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#header.header-border-bottom .header-container:after {
  content: '' !important;
}

#header.header-border-bottom-dark .header-container:after {
  border-color: rgba(37, 42, 44, 0.1);
}

#header .container {
  position: relative;
}

@media (max-width: 767px) {
  #header .container {
    width: 100%;
  }
}

#header .header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-height: 100%;
}

#header .header-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

#header .header-column .header-row {
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
}

#header.header-no-min-height .header-body {
  min-height: 0 !important;
}

#header .header-top {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #EDEDEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 10.56px;
  font-size: 0.66rem;
  min-height: 41px;
  max-height: 41px;
  z-index: 4;
  -webkit-transition: ease height 300ms, ease max-height 300ms, ease min-height 300ms;
  transition: ease height 300ms, ease max-height 300ms, ease min-height 300ms;
}

#header .header-top::after {
  clear: both;
  content: "";
  display: block;
}

#header .header-top .header-top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

#header .header-top p {
  margin: 0;
  padding: 0;
  line-height: 37px;
  float: left;
}

#header .header-top p .fa, #header .header-top p .fas, #header .header-top p .far, #header .header-top p .fal, #header .header-top p .fab, #header .header-top p .icons {
  position: relative;
  top: 1px;
}

#header .header-top .list-inline:not(.social-icons) > li {
  margin-right: 27.2px;
  margin-right: 1.7rem;
}

#header .header-top .list-inline:not(.social-icons) > li:last-child {
  margin-right: 0;
}

#header .header-top .header-social-icons li + li {
  margin-left: 0.4em;
}

#header .header-top .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .header-top.header-top-dark, #header .header-top.header-top-colored {
  background: #2E3237;
  border-bottom: 0;
}

#header .header-top.header-top-dark li, #header .header-top.header-top-dark span, #header .header-top.header-top-dark p, #header .header-top.header-top-dark a, #header .header-top.header-top-dark i, #header .header-top.header-top-colored li, #header .header-top.header-top-colored span, #header .header-top.header-top-colored p, #header .header-top.header-top-colored a, #header .header-top.header-top-colored i {
  color: #FFF;
}

#header .header-top.header-top-dark .dropdown-menu, #header .header-top.header-top-colored .dropdown-menu {
  margin: 0;
}

#header .header-top.header-top-dark .dropdown-menu li,
#header .header-top.header-top-dark .dropdown-menu li a, #header .header-top.header-top-colored .dropdown-menu li,
#header .header-top.header-top-colored .dropdown-menu li a {
  color: #9D9D9D;
}

#header .header-top.header-top-dark .dropdown-menu li:hover, #header .header-top.header-top-dark .dropdown-menu li:focus, #header .header-top.header-top-dark .dropdown-menu li:active,
#header .header-top.header-top-dark .dropdown-menu li a:hover,
#header .header-top.header-top-dark .dropdown-menu li a:focus,
#header .header-top.header-top-dark .dropdown-menu li a:active, #header .header-top.header-top-colored .dropdown-menu li:hover, #header .header-top.header-top-colored .dropdown-menu li:focus, #header .header-top.header-top-colored .dropdown-menu li:active,
#header .header-top.header-top-colored .dropdown-menu li a:hover,
#header .header-top.header-top-colored .dropdown-menu li a:focus,
#header .header-top.header-top-colored .dropdown-menu li a:active {
  color: #FFF;
}

#header .header-top.header-top-dark .nav i, #header .header-top.header-top-colored .nav i {
  color: #9D9D9D;
}

#header .header-top.header-top-dark .nav > li > a.dropdown-menu-toggle i, #header .header-top.header-top-colored .nav > li > a.dropdown-menu-toggle i {
  color: #FFF;
}

#header .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  position: relative;
  float: left;
}

#header .header-logo img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

#header .header-logo img.logo-1 {
  opacity: 0;
}

#header .header-logo img.logo-1.active {
  opacity: 1;
}

#header .header-logo img.logo-2 {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate3d(-30%, -50%, 0);
  transform: translate3d(-30%, -50%, 0);
}

#header .header-logo img.logo-2.active {
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

#header .header-social-icons,
#header .header-search,
#header .header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

#header .header-button a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

#header .header-search form input {
  border-radius: 2px 0px 0px 2px;
  font-size: 12.8px;
  font-size: 0.8rem;
  border: 0;
}

#header .header-search form button {
  background: #FFF;
  height: 100%;
  border-radius: 0px 2px 2px 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#header .header-search form button i {
  color: #CCC;
}

#header .header-search.header-search-dark form input {
  background: #2E3237;
  color: #CCC;
}

#header .header-search.header-search-dark form button {
  background: #2E3237;
}

#header .header-search.header-search-dark form button i {
  color: #CCC;
}

#header .header-top-search form input {
  border-color: #ededee;
  border-radius: 35px;
  font-size: 11.2px;
  font-size: 0.7rem;
  padding: 7px 12px;
  line-height: 1;
  width: 150px;
}

#header .header-top-search form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background-color: transparent;
  height: 100%;
  z-index: 3;
}

#header .header-top-search form button i {
  color: #CCC;
}

#header .header-btn-collapse-nav {
  display: none;
  background: transparent;
  color: #333333;
  outline: 0;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 16px 0;
}

#header .header-btn-collapse-nav .hamburguer span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333333;
  -webkit-transition: ease width 300ms;
  transition: ease width 300ms;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(1) {
  top: 30%;
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(2) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(3) {
  top: 70%;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

#header .header-btn-collapse-nav .close {
  opacity: 0;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
}

#header .header-btn-collapse-nav .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  background: #333333;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

#header .header-btn-collapse-nav .close span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

#header .header-btn-collapse-nav .close span:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

#header .header-btn-collapse-nav.active .hamburguer {
  opacity: 0;
}

#header .header-btn-collapse-nav.active .hamburguer span {
  width: 0;
}

#header .header-btn-collapse-nav.active .close {
  opacity: 1;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
}

#header .header-btn-collapse-nav.active .close span {
  width: 80%;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
}

#header .header-btn-collapse-nav.active .close span:nth-child(2) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

#header .header-btn-collapse-nav.header-btn-collapse-nav-light .hamburguer span,
#header .header-btn-collapse-nav.header-btn-collapse-nav-light .close span {
  background: #FFF;
}

#header.header-effect-shrink .header-container {
  min-height: 100px;
}

#header.header-container-no-min-height .header-container {
  min-height: 0;
}

#header.header-no-border-bottom .header-body {
  border-bottom: 0;
}

@-webkit-keyframes headerReveal {
  from {
    top: -150px;
  }

  to {
    top: 0;
  }
}

@keyframes headerReveal {
  from {
    top: -150px;
  }

  to {
    top: 0;
  }
}

html.sticky-header-active #header.header-effect-reveal .header-body {
  -webkit-animation: headerReveal 300ms;
  animation: headerReveal 300ms;
}

html.sticky-header-active #header.header-no-border-bottom .header-body {
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
}

html.sticky-header-active #header.header-effect-shrink .header-body .header-top {
  max-height: 0;
}

html #header.header-transparent {
  min-height: 0 !important;
  width: 100%;
  position: absolute;
}

html #header.header-transparent .header-body {
  position: relative;
  top: 0;
  background: transparent;
}

html #header.header-transparent .header-body:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #FFF;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

html #header.header-transparent .header-container {
  min-height: 92px;
}

html #header.header-transparent .header-container:after {
  content: none;
}

html #header.header-transparent .header-nav-main {
  padding: 0 16px;
  padding: 0 1rem;
  -webkit-transition: ease padding 300ms;
  transition: ease padding 300ms;
}

html #header.header-transparent .header-nav-main:before {
  width: 100%;
  -webkit-transition: ease width 300ms;
  transition: ease width 300ms;
}

html #header.header-transparent-dark .header-body:before {
  background: #333333;
}

html.sticky-header-enabled #header.header-transparent .header-body {
  position: fixed;
}

html:not(.sticky-header-active) #header.header-transparent .header-body {
  border-bottom: 0;
}

@media (min-width: 992px) {
  html:not(.sticky-header-active) #header.header-transparent .header-nav-main nav > ul > li > a:not(.active) {
    color: #FFF;
  }

  html:not(.sticky-header-active) #header.header-transparent .header-nav-main.header-nav-main-dark nav > ul > li > a:not(.active) {
    color: #333333;
  }
}

html.sticky-header-active #header.header-transparent .header-container:after {
  content: '';
}

html.sticky-header-active #header.header-transparent .header-body:before {
  opacity: 1;
}

html.sticky-header-active #header.header-transparent .header-nav-main:before {
  width: 100vw;
}

@media (max-width: 991px) {
  html.sticky-header-active #header.header-transparent .header-container:after {
    content: '';
  }

  html.sticky-header-active #header.header-transparent .header-nav-main {
    padding: 0;
  }

  html.sticky-header-active.mobile-menu-opened #header.header-transparent .header-container:after {
    content: none;
  }
}

html #header.header-semi-transparent, html #header.header-semi-transparent-light {
  position: absolute;
  min-height: 0 !important;
  width: 100%;
}

html #header.header-semi-transparent .header-container:after, html #header.header-semi-transparent-light .header-container:after {
  content: none;
}

html #header.header-semi-transparent .header-body, html #header.header-semi-transparent-light .header-body {
  background: transparent;
}

html #header.header-semi-transparent .header-body:before, html #header.header-semi-transparent-light .header-body:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #252A2C;
  border-bottom: 0;
  opacity: 0.1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html #header.header-semi-transparent .header-nav-main, html #header.header-semi-transparent-light .header-nav-main {
  padding: 0 16px;
  padding: 0 1rem;
  -webkit-transition: ease padding 300ms;
  transition: ease padding 300ms;
}

html #header.header-semi-transparent .header-nav-main:before, html #header.header-semi-transparent-light .header-nav-main:before {
  width: 100%;
  -webkit-transition: ease width 300ms;
  transition: ease width 300ms;
}

html #header.header-semi-transparent-light .header-body:before {
  background: #FFF;
}

html:not(.sticky-header-active) #header.header-semi-transparent .header-body, html:not(.sticky-header-active) #header.header-semi-transparent-light .header-body {
  border-bottom: 0;
}

@media (min-width: 992px) {
  html:not(.sticky-header-active) #header.header-semi-transparent .header-nav-main nav > ul > li:not(.active) > a, html:not(.sticky-header-active) #header.header-semi-transparent-light .header-nav-main nav > ul > li:not(.active) > a {
    color: #FFF;
  }
}

@media (min-width: 992px) {
  html.sticky-header-active #header.header-semi-transparent .header-nav-main nav > ul > li:not(.active) > a {
    color: #FFF;
  }
}

html.sticky-header-active #header.header-semi-transparent .header-body {
  border-color: rgba(46, 50, 55, 0.2);
}

html.sticky-header-active #header.header-transparent .header-container:after, html.sticky-header-active #header.header-semi-transparent-light .header-container:after {
  content: '';
  z-index: 0;
}

html.sticky-header-active #header.header-semi-transparent .header-body:before, html.sticky-header-active #header.header-semi-transparent-light .header-body:before {
  opacity: 1;
}

@media (max-width: 991px) {
  html #header.header-transparent .header-container:not(.container) .header-nav-main, html #header.header-semi-transparent .header-container:not(.container) .header-nav-main, html #header.header-semi-transparent-light .header-container:not(.container) .header-nav-main {
    margin: 0 1rem;
  }

  html.sticky-header-active #header.header-semi-transparent .header-nav-main, html.sticky-header-active #header.header-semi-transparent-light .header-nav-main {
    padding: 0;
  }

  html.sticky-header-active #header.header-semi-transparent .header-nav-main:before, html.sticky-header-active #header.header-semi-transparent-light .header-nav-main:before {
    width: 100vw;
  }
}

@media (max-width: 767px) {
  #header .header-top li {
    font-size: 1.1em;
  }
}

html #header.header-container-bottom-border .header-container:after {
  content: none;
}

html #header.header-container-bottom-border .header-body:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 576px) {
  html #header.header-container-bottom-border .header-body:after {
    max-width: 510px;
  }
}

@media (min-width: 768px) {
  html #header.header-container-bottom-border .header-body:after {
    max-width: 690px;
  }
}

@media (min-width: 992px) {
  html #header.header-container-bottom-border .header-body:after {
    max-width: 930px;
  }
}

@media (min-width: 1200px) {
  html #header.header-container-bottom-border .header-body:after {
    max-width: 1110px;
  }
}

html.sticky-header-active #header.header-container-bottom-border .header-container .header-container:after {
  content: '';
}

html.sticky-header-active #header.header-container-bottom-border .header-body:after {
  content: none;
}

html #header.header-with-borders .header-body:after, html #header.header-with-borders-dark .header-body:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  border-bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

html #header.header-with-borders .header-logo,
html #header.header-with-borders .header-social-icons,
html #header.header-with-borders .header-search,
html #header.header-with-borders .header-button, html #header.header-with-borders-dark .header-logo,
html #header.header-with-borders-dark .header-social-icons,
html #header.header-with-borders-dark .header-search,
html #header.header-with-borders-dark .header-button {
  border-right: 1px solid rgba(204, 204, 204, 0.2);
  border-left: 1px solid rgba(204, 204, 204, 0.2);
}

html #header.header-transparent .header-body:after, html #header.header-semi-transparent .header-body:after, html #header.header-semi-transparent-light .header-body:after {
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
}

html #header.header-with-borders-dark .header-body:after {
  border-color: rgba(46, 50, 55, 0.8);
}

html #header.header-with-borders-dark .header-logo,
html #header.header-with-borders-dark .header-social-icons,
html #header.header-with-borders-dark .header-search,
html #header.header-with-borders-dark .header-button {
  border-color: rgba(46, 50, 55, 0.8);
}

html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-body:after,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-logo,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-social-icons,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-search,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-button, html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-body:after,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-logo,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-social-icons,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-search,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-button {
  border-color: transparent;
}

html #header.header-floating {
  position: absolute;
  min-height: 0 !important;
  width: 100%;
}

@media (min-width: 992px) {
  html #header.header-floating {
    top: 45px;
  }
}

html #header.header-floating .header-container:after {
  content: none;
}

html #header.header-floating .header-body {
  margin: 0 auto;
  border-radius: 3px;
}

@media (min-width: 992px) {
  html #header.header-floating .header-body {
    max-width: 960px;
  }

  html #header.header-floating .header-body .header-container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  html #header.header-floating .header-body {
    max-width: 1140px;
  }
}

html.sticky-header-active #header.header-floating .header-container:after {
  content: '';
}

html.sticky-header-active #header.header-floating .header-body {
  max-width: none;
  margin: none;
}

html.sticky-header-active #header.header-floating .header-body .header-container {
  padding-right: 15px;
  padding-left: 15px;
}

html #header.header-dark .header-body {
  background: #202326;
  border-color: rgba(46, 50, 55, 0.2);
}

html #header.header-dark.header-transparent .header-body, html #header.header-dark.header-semi-transparent .header-body, html #header.header-dark.header-semi-transparent-light .header-body {
  background: transparent;
}

html #header.header-dark .header-nav-main:before {
  background-color: #202326;
}

html #header.header-dark .header-nav-main nav > ul > li {
  border-color: #2E3237;
}

html #header.header-dark .header-nav-main nav > ul > li > a {
  color: #FFF;
}

html #header.header-dark .header-nav-main nav > ul > li.dropdown .dropdown-menu {
  background-color: #202326;
}

html #header.header-dark .header-nav-main nav > ul > li.dropdown .dropdown-menu li {
  border-color: #2E3237;
}

html #header.header-dark .header-nav-main nav > ul > li.dropdown .dropdown-menu li a {
  color: #777;
}

html #header.header-dark .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
  color: #333333;
}

html #header.header-dark .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li.active > a, html #header.header-dark .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li:hover > a, html #header.header-dark .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li:focus > a {
  color: #FFF;
}

html #header.header-dark .header-search form input {
  background: #2E3237;
  color: #CCC;
}

html #header.header-dark .header-search form button {
  background: #2E3237;
}

html #header.header-dark .header-search form button i {
  color: #CCC;
}

html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-dark .hamburguer span,
html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-dark .close span {
  background: #333333;
}

html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-light .hamburguer span,
html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-light .close span {
  background: #FFF;
}

html:not(.sticky-header-active) #header.header-transparent-sticky-deactive .header-body:before {
  background: transparent !important;
}

/* Navigations */
/* Header Nav Main */
@media (min-width: 992px) {
  #header .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }

  #header .header-nav.header-nav-border-top:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    border-top: 1px solid #EDEDEE;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  #header .header-action {
    border-left: 1px solid #e1e1e1;
    margin-left: 1.1rem;
    padding-left: 1.1rem;
    font-size: 0.85rem;
  }

  #header .header-nav-main {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    height: auto !important;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }

  #header .header-nav-main nav.collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }

  #header .header-nav-main nav > ul {
    width: 100%;
  }

  #header .header-nav-main nav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }

  #header .header-nav-main nav > ul > li + li {
    margin-left: 2px;
  }

  #header .header-nav-main nav > ul > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.42857143;
    font-family: Poppins !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #header .header-nav-main nav > ul > li a .menu-arrow {
    position: absolute;
    min-width: 30px;
    height: 100%;
    right: 15px;
    top: 0;
  }

  #header .header-nav-main nav > ul > li a .menu-arrow:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    border-color: #CCC;
    border-top: 1px solid;
    border-right: 1px solid;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  #header .header-nav-main nav > ul > li a.dropdown-item {
    background-color: transparent;
  }

  #header .header-nav-main nav > ul > li > a {
    border-radius: 4px;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    padding: 1.93333em 0.85em;
    color: #777;
  }

  #header .header-nav-main nav > ul > li > a .menu-arrow {
    display: none;
  }

  #header .header-nav-main nav > ul > li.open > a, #header .header-nav-main nav > ul > li:hover > a, #header .header-nav-main nav > ul > li.active > a {
    color: #CCC;
    background: transparent;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
    background: #252A2C;
    top: -10000px;
    display: block;
    opacity: 0;
    left: auto;
    border-radius: 4px;
    border: 0;
    -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    margin: -3px 0 0 0;
    min-width: 260px;
    padding: 20px 10px 20px 30px;
    text-align: left;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li {
    border-bottom: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a:not(.btn) {
    color: #9D9D9D;
    font-size: 0.87em;
    font-weight: 400;
    padding: 8px 0;
    position: relative;
    text-transform: none;
    -webkit-transition: ease transform 300ms, ease color 300ms;
    transition: ease transform 300ms, ease color 300ms;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu {
    position: relative;
    z-index: 1;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu {
    background: #2a2f31;
    left: 100%;
    display: block;
    margin-top: -5px;
    margin-left: -1px;
    border-radius: 4px;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu.dropdown-reverse {
    left: auto;
    right: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:hover, #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:focus {
    z-index: 2;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:hover > .dropdown-menu, #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:focus > .dropdown-menu {
    top: -15px;
    opacity: 1;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:hover.dropdown-reverse > a.dropdown-toggle .menu-arrow, #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:focus.dropdown-reverse > a.dropdown-toggle .menu-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse > .dropdown-menu {
    left: auto;
    right: calc(100% + 20px);
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse > .dropdown-menu:after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    height: 100%;
    width: 20px;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a, #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:focus > a {
    color: #FFF;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:last-child {
    border-bottom: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown.open > .dropdown-menu, #header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu {
    top: 100%;
    left: 0;
    display: block;
    opacity: 1;
    margin-top: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega {
    position: static;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu {
    background: #252A2C;
    border-radius: 6px;
    left: 50% !important;
    right: auto !important;
    padding: 0;
    width: 100% !important;
    max-width: 95vw;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content {
    padding: 40px 20px;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div {
    padding: 15px 5px 10px 30px;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div:first-child:not(.dropdown-mega-sub-content-block),
  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div + div {
    border-right: 1px solid #303537;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div:last-child {
    border-right: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
    color: #FFF;
    display: block;
    font-size: 1em;
    font-weight: 500;
    margin-top: 1.2rem;
    padding-bottom: 5px;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title:first-child {
    margin-top: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li a {
    display: block;
    padding: 8px;
    line-height: 1.42857143;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:hover > a, #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:focus > a {
    color: #FFF;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:last-child a {
    border-bottom: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block {
    position: absolute;
    left: 0;
    top: 0;
    padding: 55px 30px !important;
    height: 100%;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block.dropdown-mega-sub-content-block-right {
    right: 0;
    left: auto;
    border-radius: 0 4px 4px 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block.overlay:before {
    z-index: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block h4 {
    font-size: 1.6em;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block p {
    color: #777;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block .content-block-image {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block .content-block-button {
    display: inline-block;
    border-bottom: none;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > span,
  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > h4,
  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > p,
  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > a {
    opacity: 0;
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
    -webkit-transition: ease transform 300ms, ease opacity 300ms;
    transition: ease transform 300ms, ease opacity 300ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > img.content-block-image {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
    -webkit-transition: ease transform 300ms, ease opacity 300ms;
    transition: ease transform 300ms, ease opacity 300ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > span {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > h4 {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > p {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > img.content-block-image {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block > a {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega:hover .dropdown-mega-sub-content-block > span,
  #header .header-nav-main nav > ul > li.dropdown-mega:hover .dropdown-mega-sub-content-block > h4,
  #header .header-nav-main nav > ul > li.dropdown-mega:hover .dropdown-mega-sub-content-block > p,
  #header .header-nav-main nav > ul > li.dropdown-mega:hover .dropdown-mega-sub-content-block > a {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  #header .header-nav-main nav > ul > li.dropdown-mega:hover .dropdown-mega-sub-content-block > img.content-block-image {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 > .dropdown-menu {
    border-radius: 4px;
    width: 100vw !important;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block {
    position: relative;
    height: auto;
    padding: 30px 50px !important;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 15px;
    background: #282D2F;
    z-index: -1;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-nav .dropdown-submenu .dropdown-menu {
    border-radius: 0;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin {
    position: relative;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu {
    left: auto !important;
  }

  #header .header-nav-main.header-nav-main-light nav > ul > li > a {
    color: #FFF;
  }

  #header .header-nav-main.header-nav-main-light nav > ul > li > a:hover {
    background: transparent;
  }

  #header .header-nav-main.header-nav-main-dark nav > ul > li > a {
    color: #333333;
  }

  #header .header-nav-main.header-nav-main-dark nav > ul > li > a:hover {
    background: transparent;
  }

  #header .header-nav-main.header-nav-main-uppercase nav > ul > li > a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.75rem;
    padding-left: 1.1em;
    padding-right: 1.1em;
  }
}

@media (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
  #header .header-nav-main.header-nav-main-uppercase nav > ul > li > a {
    font-size: 0.70rem;
  }
}

@media (min-width: 992px) {
  #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li > a {
    position: relative;
  }

  #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li > a.active:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid #CCC;
  }

  #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li:hover > a:before, #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li:focus > a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid #CCC;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li {
    margin-left: 0;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li > .dropdown-menu {
    -webkit-box-shadow: 0 21px 55px -20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 21px 55px -20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 4px 4px;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li > .dropdown-menu:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(204, 204, 204, 0.3);
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li > a {
    border-radius: 0;
    -webkit-transition: none;
    transition: none;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li > a.active {
    background: #CCC;
    color: #FFF;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li:hover > a, #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li:focus > a {
    background: #CCC;
    color: #FFF;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color > a {
    color: #777 !important;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color > a.active {
    color: #FFF !important;
  }

  #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color:hover > a, #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color:focus > a {
    color: #FFF !important;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown .dropdown-menu {
    background-color: #FFF;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a, #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown .dropdown-menu li:focus > a {
    color: #CCC;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu .dropdown-menu {
    background-color: #FFF;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div {
    border-color: #F1F3F7;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
    color: #333333;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    background-color: #CCC;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block .content-block-button {
    color: #FFF !important;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav > ul > li > a, #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0.7rem;
    margin-right: 0.7rem;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav > ul > li > a > span, #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a > span {
    font-size: 0.8em;
    text-transform: none;
    font-weight: normal;
    margin-top: 0.3rem;
  }

  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a {
    -webkit-transition: ease padding-bottom 300ms;
    transition: ease padding-bottom 300ms;
  }

  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a.active {
    padding-bottom: 35px;
  }

  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a.active > span {
    top: 60%;
    left: 0;
    opacity: 1;
  }

  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a > span {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: 0;
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: ease opacity 200ms, ease top 300ms;
    transition: ease opacity 200ms, ease top 300ms;
  }

  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li:hover > a, #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li:focus > a {
    padding-bottom: 35px;
  }

  #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li:hover > a > span, #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li:focus > a > span {
    top: 60%;
    left: 0;
    opacity: 1;
  }

  #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a {
    position: relative;
  }

  #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a:before {
    content: '';
    display: block;
    position: absolute;
    top: 56%;
    left: 0.55rem;
    right: 100%;
    border-top: 7px solid rgba(204, 204, 204, 0.5);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: ease right 300ms;
    transition: ease right 300ms;
  }

  #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a.active {
    color: #777;
  }

  #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a.active:before {
    right: 0.55rem;
  }

  #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li:hover > a, #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li:focus > a {
    color: #777;
  }

  #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li:hover > a:before, #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li:focus > a:before {
    right: 0.55rem;
  }

  #header .header-nav.header-nav-square .header-nav-main nav > ul > li > a {
    border-radius: 0;
  }

  #header .header-nav.header-nav-square .header-nav-main nav > ul > li.dropdown .dropdown-menu {
    border-radius: 0;
  }

  #header .header-nav.header-nav-square .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu {
    border-radius: 0;
  }

  #header .header-nav.header-nav-square .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu {
    border-radius: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #header .header-nav-main nav > ul > li > a {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  #header .header-nav-main-effect-1 nav > ul > li.dropdown:not(.dropdown-mega-signin) .dropdown-menu li,
  #header .header-nav-main-effect-1 nav > ul > li.dropdown:not(.dropdown-mega-signin) .dropdown-mega-sub-nav li {
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown:not(.dropdown-mega-signin):hover > .dropdown-menu li,
  #header .header-nav-main-effect-1 nav > ul > li.dropdown:not(.dropdown-mega-signin):hover .dropdown-mega-sub-nav li {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown .dropdown-menu {
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown.open > .dropdown-menu, #header .header-nav-main-effect-1 nav > ul > li.dropdown:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega > .dropdown-menu {
    -webkit-transform: translate3d(-50%, -5px, 0);
    transform: translate3d(-50%, -5px, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega > .dropdown-menu > li {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega.open > .dropdown-menu, #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega:hover > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega.dropdown-mega-signin > .dropdown-menu {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega.dropdown-mega-signin.open > .dropdown-menu, #header .header-nav-main-effect-1 nav > ul > li.dropdown.dropdown-mega.dropdown-mega-signin:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  #header .header-nav-main-effect-2 nav > ul > li.dropdown .dropdown-menu {
    -webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    opacity: 0;
  }

  #header .header-nav-main-effect-2 nav > ul > li.dropdown.open > .dropdown-menu, #header .header-nav-main-effect-2 nav > ul > li.dropdown:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  #header .header-nav-main-effect-2 nav > ul > li.dropdown.dropdown-mega > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 5px, 0);
    transform: translate3d(-50%, 5px, 0);
  }

  #header .header-nav-main-effect-2 nav > ul > li.dropdown.dropdown-mega.open > .dropdown-menu, #header .header-nav-main-effect-2 nav > ul > li.dropdown.dropdown-mega:hover > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  #header .header-nav-main-effect-2 nav > ul > li.dropdown.dropdown-mega.dropdown-mega-signin > .dropdown-menu {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  #header .header-nav-main-effect-2 nav > ul > li.dropdown.dropdown-mega.dropdown-mega-signin.open > .dropdown-menu, #header .header-nav-main-effect-2 nav > ul > li.dropdown.dropdown-mega.dropdown-mega-signin:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  #header .header-nav-main-effect-3 nav > ul > li.dropdown .dropdown-menu {
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  #header .header-nav-main-effect-3 nav > ul > li.dropdown.open > .dropdown-menu, #header .header-nav-main-effect-3 nav > ul > li.dropdown:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #header .header-nav-main-effect-3 nav > ul > li.dropdown.dropdown-mega > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  #header .header-nav-main-effect-3 nav > ul > li.dropdown.dropdown-mega.open > .dropdown-menu, #header .header-nav-main-effect-3 nav > ul > li.dropdown.dropdown-mega:hover > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 992px) {
  #header .header-nav-main-effect-4 nav > ul > li.dropdown .dropdown-menu {
    -webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    opacity: 0;
  }

  #header .header-nav-main-effect-4 nav > ul > li.dropdown .dropdown-menu.dropdown-reverse {
    -webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
    left: auto;
    right: 100%;
    opacity: 0;
  }

  #header .header-nav-main-effect-4 nav > ul > li.dropdown.open > .dropdown-menu, #header .header-nav-main-effect-4 nav > ul > li.dropdown:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  #header .header-nav-main-effect-4 nav > ul > li.dropdown.dropdown-mega > .dropdown-menu {
    -webkit-transform: translate3d(-55%, 0, 0);
    transform: translate3d(-55%, 0, 0);
  }

  #header .header-nav-main-effect-4 nav > ul > li.dropdown.dropdown-mega > .dropdown-menu.dropdown-reverse {
    -webkit-transform: translate3d(45%, 0, 0);
    transform: translate3d(45%, 0, 0);
  }

  #header .header-nav-main-effect-4 nav > ul > li.dropdown.dropdown-mega.open > .dropdown-menu, #header .header-nav-main-effect-4 nav > ul > li.dropdown.dropdown-mega:hover > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 992px) {
  #header .header-nav-main-sub-effect-1 nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu {
    -webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out;
    transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    opacity: 0;
  }

  #header .header-nav-main-sub-effect-1 nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  #header .header-nav-main-sub-effect-1 nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse > .dropdown-menu {
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  #header .header-nav-main-sub-effect-1 nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse:hover > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Header Nav Main Mobile */
@media (max-width: 991px) {
  #header .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #header .header-nav-main {
    position: absolute;
    top: 99%;
    right: 0;
    left: 0;
    background: transparent;
    margin-top: 0px;
    z-index: 1;
  }

  #header .header-nav-main:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: #252A2C;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  #header .header-nav-main nav {
    max-height: 60vh;
    overflow: hidden;
    overflow-y: auto;
    margin: 1.3rem 0;
    -webkit-transition: ease all 300ms;
    transition: ease all 300ms;
  }

  #header .header-nav-main nav.collapsing {
    overflow-y: hidden;
  }

  #header .header-nav-main nav.closed {
    margin: 0;
  }

  #header .header-nav-main nav::-webkit-scrollbar {
    width: 5px;
  }

  #header .header-nav-main nav::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: rgba(204, 204, 204, 0.5);
  }

  #header .header-nav-main nav > ul li {
    border-bottom: 1px solid #303537;
    clear: both;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
  }

  #header .header-nav-main nav > ul li a:not(.btn) {
    position: relative;
    display: block;
    color: #9D9D9D;
    font-style: normal;
    line-height: 1.3;
    padding: 10px 0;
    border-radius: 4px;
    font-family: Poppins !important;
  }

  #header .header-nav-main nav > ul li a:not(.btn):hover, #header .header-nav-main nav > ul li a:not(.btn):focus, #header .header-nav-main nav > ul li a:not(.btn).active {
    color: #FFF;
  }

  #header .header-nav-main nav > ul li a:not(.btn) .menu-arrow {
    position: absolute;
    min-width: 30px;
    height: 100%;
    right: 5px;
    top: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: ease transform 800ms;
    transition: ease transform 800ms;
  }

  #header .header-nav-main nav > ul li a:not(.btn) .menu-arrow:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    border-color: #CCC;
    border-top: 1px solid;
    border-right: 1px solid;
    width: 7px;
    height: 7px;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }

  #header .header-nav-main nav > ul li a:not(.btn).dropdown-item {
    background-color: transparent;
  }

  #header .header-nav-main nav > ul li.dropdown .dropdown-menu {
    background: transparent;
    padding: 0 0 20px;
    margin: 0;
    font-size: 13px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    clear: both;
    display: none;
    float: none;
    position: static;
  }

  #header .header-nav-main nav > ul li.dropdown .dropdown-menu li.dropdown-submenu.opened > .dropdown-toggle .menu-arrow {
    -webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
    transform: rotateX(180deg) translate3d(0, -3px, 0);
  }

  #header .header-nav-main nav > ul li.dropdown .dropdown-menu li.dropdown-submenu.opened > .dropdown-menu {
    margin-left: 20px;
  }

  #header .header-nav-main nav > ul li.dropdown.opened > .dropdown-toggle .menu-arrow {
    -webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
    transform: rotateX(180deg) translate3d(0, -3px, 0);
  }

  #header .header-nav-main nav > ul li.dropdown.opened > .dropdown-menu {
    padding-left: 20px;
  }

  #header .header-nav-main nav > ul li.dropdown-mega .dropdown-mega-content {
    padding-left: 0;
  }

  #header .header-nav-main nav > ul li.dropdown-mega .dropdown-mega-sub-title {
    margin-top: 10px;
    display: block;
    color: #FFF;
  }

  #header .header-nav-main nav > ul li.dropdown-mega .dropdown-mega-sub-nav {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #header .header-nav-main nav > ul li.dropdown-mega .dropdown-mega-sub-nav > li > a {
    display: block;
    text-decoration: none;
  }

  #header .header-nav-main nav > ul li.dropdown-full-color:first-child {
    margin-top: 0;
  }

  #header .header-nav-main nav > ul li.dropdown-full-color > a {
    padding: 10px 15px;
  }

  #header .header-nav-main nav > ul li.dropdown-full-color > .dropdown-menu li {
    border: none;
  }

  #header .header-nav-main nav > ul li.dropdown-full-color.opened > .dropdown-menu {
    padding-left: 15px;
  }

  #header .header-nav-main nav > ul li:last-child {
    border-bottom: 0;
  }

  #header .header-nav-main nav > ul > li > a {
    font-size: 1.1em;
    font-weight: 400;
    margin-top: 1px;
    margin-bottom: 1px;
  }

  #header .header-btn-collapse-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav > ul > li > a, #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a {
    text-align: left;
  }

  #header .header-nav.header-nav-sub-title .header-nav-main nav > ul > li > a > span, #header .header-nav.header-nav-sub-title-animated .header-nav-main nav > ul > li > a > span {
    font-size: 0.6em;
    display: block;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main:before {
    background-color: #FFF;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li {
    border-color: #F1F3F7;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li a:hover, #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li a:focus, #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li a.active {
    color: #CCC;
  }

  #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li.dropdown-mega .dropdown-mega-sub-title {
    color: #333333;
    font-weight: 500;
  }

  html.safari #header .header-nav-main nav a {
    -webkit-transform: translate3d(0px, 0px, 1px) !important;
    transform: translate3d(0px, 0px, 1px) !important;
  }
}
/* Side Header */
/* Side Header */
html.side-header:not(.side-header-from-out) #header {
  min-height: 0 !important;
}

@media (min-width: 992px) {
  html.side-header .main .container, html.side-header #footer .container {
    padding: 0 35px;
    width: 100% !important;
    max-width: 1210px;
  }

  html.side-header body > .body {
    margin: 0 0 0 280px;
    width: auto;
    overflow-x: hidden;
    overflow-y: visible;
  }

  html.side-header body > .body .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper {
    width: 100% !important;
    left: auto !important;
  }

  html.side-header .nano > .nano-content {
    right: -12px !important;
    margin-right: 0 !important;
  }

  html.side-header .nano > .nano-pane {
    width: 7px;
    background: rgba(28, 31, 33, 0.05);
  }

  html.side-header .nano > .nano-pane > .nano-slider {
    background: rgba(28, 31, 33, 0.2);
  }

  html.side-header #header {
    background: #FFF;
    position: fixed;
    -webkit-box-shadow: 0 0 18px rgba(28, 31, 33, 0.07);
    box-shadow: 0 0 18px rgba(28, 31, 33, 0.07);
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    padding-top: 3rem;
  }

  html.side-header #header .header-body {
    border-bottom: 0;
  }

  html.side-header #header .header-container {
    display: block;
    margin: 0;
  }

  html.side-header #header .header-container:after {
    content: none;
  }

  html.side-header #header .header-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  html.side-header #header .header-nav {
    margin: 2.7rem 0;
    height: 33vh;
  }

  html.side-header #header .header-logo img {
    margin: 0;
  }

  html.side-header #header .header-nav-main nav > ul > li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

  html.side-header #header .header-nav-main nav > ul > li a {
    position: relative;
    padding: 0.7rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  html.side-header #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow {
    display: block;
    right: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: ease transform 800ms;
    transition: ease transform 800ms;
  }

  html.side-header #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow:after {
    top: 45%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    padding: 0 0 0 0.7rem;
    margin: 0;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    min-width: 0;
    width: 100% !important;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu {
    position: static;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:hover > .dropdown-menu, html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:focus > .dropdown-menu, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu:hover > .dropdown-menu, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu:focus > .dropdown-menu {
    top: 0;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow {
    right: 12px;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-menu {
    display: none;
    left: 0;
    padding-left: 1rem;
    margin: 0;
    opacity: 1;
    width: 100%;
    background: transparent;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu.opened > .dropdown-toggle .menu-arrow, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu.opened > .dropdown-toggle .menu-arrow {
    -webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
    transform: rotateX(180deg) translate3d(0, -3px, 0);
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a, html.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:focus > a, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li:hover > a, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li:focus > a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown.opened > .dropdown-toggle .menu-arrow, html.side-header #header .header-nav-main nav > ul > li.dropdown-mega.opened > .dropdown-toggle .menu-arrow {
    -webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
    transform: rotateX(180deg) translate3d(0, -3px, 0);
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu {
    padding: 0 0 0 0.2rem;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow {
    right: 13px;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega [class*="col"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content {
    padding: 0 0 0 0.5rem;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div {
    padding: 0 0 0 15px;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block {
    display: none !important;
  }

  html.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
    color: #333333;
    margin: 0.4rem 0 0;
  }

  html.side-header.side-header-right body > .body {
    margin: 0 280px 0 0;
  }

  html.side-header.side-header-right #header {
    left: auto;
    right: 0;
  }
}

html.side-header.side-header-semi-transparent body > .body {
  margin: 0;
}

html.side-header.side-header-semi-transparent .nano > .nano-pane {
  background: rgba(255, 255, 255, 0.05);
}

html.side-header.side-header-semi-transparent .nano > .nano-pane > .nano-slider {
  background: rgba(255, 255, 255, 0.2);
}

html.side-header.side-header-semi-transparent #header {
  background: transparent;
}

html.side-header.side-header-semi-transparent #header .header-container:after {
  content: none;
}

html.side-header.side-header-semi-transparent #header .header-body {
  background: transparent;
  border-bottom: 0;
}

html.side-header.side-header-semi-transparent #header .header-body:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #333333;
  border-bottom: 0;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li:not(.active) > a {
  color: #FFF;
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown .dropdown-menu > li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown .dropdown-menu > li > a {
  color: #d0d0d0;
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown .dropdown-menu > li:hover > a, html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown .dropdown-menu > li:focus > a {
  color: #FFF;
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
  color: #FFF;
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li a {
  color: #d0d0d0;
}

html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:hover > a, html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:focus > a {
  color: #FFF;
}

@media (max-width: 991px) {
  html.side-header.side-header-semi-transparent #header {
    position: absolute;
    width: 100%;
  }

  html.side-header.side-header-semi-transparent #header .header-nav-main {
    background: transparent;
  }

  html.side-header.side-header-semi-transparent #header .header-nav-main:before {
    background: #333333;
    opacity: 0.2;
  }

  html.side-header.side-header-semi-transparent #header .header-nav-main nav > ul > li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
}

html.side-header.side-header-semi-transparent-light #header .header-body:before {
  background: #FFF;
}

@media (max-width: 991px) {
  html.side-header.side-header-semi-transparent-light #header .header-nav-main:before {
    background: #FFF;
  }
}

@media (max-width: 991px) {
  html.side-header #header .nano {
    position: static;
    overflow: visible;
  }

  html.side-header #header .nano .nano-content {
    top: 99%;
    bottom: auto;
    right: 0 !important;
    overflow: visible;
  }
}
/*
Side Header From Out
*/
@media (min-width: 992px) {
  html.side-header.side-header-from-out .main .container, html.side-header.side-header-from-out #footer .container {
    max-width: 1140px;
  }

  html.side-header.side-header-from-out body > .body {
    margin: 0;
  }

  html.side-header.side-header-from-out #header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 0;
    left: auto;
    width: 490px;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: ease transform 300ms;
    transition: ease transform 300ms;
  }

  html.side-header.side-header-from-out #header.side-header-show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  html.side-header.side-header-from-out #header .header-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  html.side-header.side-header-from-out #header .header-nav {
    height: 37vh;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.85rem;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li a > i {
    position: relative;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li a .menu-arrow {
    min-width: 45px;
    margin-right: -1.9rem;
    right: 13px;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
    padding: 0;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu {
    padding-left: 0;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega [class*="col"] {
    margin-top: 0.8rem;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega [class*="col"]:last-child {
    margin-bottom: 0.8rem;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu {
    padding: 0;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content {
    margin-top: -0.8rem;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
    margin: 0;
    text-align: center;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav + .dropdown-mega-sub-title {
    margin-top: 0.8rem;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content {
    padding: 0;
  }

  html.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div {
    padding: 0;
  }
}

@media (max-width: 991px) {
  html.side-header.side-header-from-out #header .header-nav-main nav > ul li:hover > a, html.side-header.side-header-from-out #header .header-nav-main nav > ul li:focus > a {
    color: #FFF;
  }
}
/*
Side Header Overlay Full Screen
*/
html.side-header-overlay-full-screen body > .body {
  margin: 0;
  width: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

html.side-header-overlay-full-screen body > .body .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper {
  width: 100% !important;
  left: auto !important;
}

html.side-header-overlay-full-screen #header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(27, 30, 33, 0.99);
  position: fixed;
  -webkit-box-shadow: 0 0 18px rgba(28, 31, 33, 0.07);
  box-shadow: 0 0 18px rgba(28, 31, 33, 0.07);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 48px;
  padding-top: 3rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease opacity 300ms, ease visibility 300ms;
  transition: ease opacity 300ms, ease visibility 300ms;
}

html.side-header-overlay-full-screen #header.side-header-show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: ease opacity 300ms, ease visibility 300ms;
  transition: ease opacity 300ms, ease visibility 300ms;
}

html.side-header-overlay-full-screen #header .header-container:after {
  content: none;
}

html.side-header-overlay-full-screen #header .header-body {
  background-color: transparent;
  border-bottom: 0;
}

html.side-header-overlay-full-screen #header .header-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html.side-header-overlay-full-screen #header .header-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html.side-header-overlay-full-screen #header .header-nav {
  width: 290px;
  height: 37vh;
  margin: 32px auto;
  margin: 2rem auto;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

html.side-header-overlay-full-screen #header .header-nav > .nano-pane {
  top: 20px;
  bottom: 20px;
}

html.side-header-overlay-full-screen #header .header-nav > .nano-pane > .nano-slider {
  background: #CCC;
}

html.side-header-overlay-full-screen #header .header-logo img {
  margin: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main {
  -ms-flex-item-align: auto;
  align-self: auto;
  max-height: 100%;
  padding-right: 0;
  margin-top: 25.6px;
  margin-top: 1.6rem;
}

html.side-header-overlay-full-screen #header .header-nav-main nav {
  width: 100%;
  max-height: none;
  overflow: visible;
  overflow-y: visible;
  border-bottom: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul {
  padding-bottom: 25.6px;
  padding-bottom: 1.6rem;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11.2px;
  padding: 0.7rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-size: 13.6px !important;
  font-size: 0.85rem !important;
  color: #FFF;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li a > i {
  position: relative;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li a .menu-arrow {
  position: relative;
  min-width: 45px;
  margin-right: -33.6px;
  margin-right: -2.1rem;
  right: 10px;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow {
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: ease transform 800ms;
  transition: ease transform 800ms;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow:after {
  top: 45%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu {
  display: none;
  position: relative;
  top: 0;
  padding: 0;
  margin: 0;
  opacity: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  min-width: 0;
  width: 100% !important;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li {
  border-bottom: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu {
  position: static;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-menu {
  display: none;
  left: 0;
  padding-left: 0;
  margin: 0;
  opacity: 1;
  width: 100%;
  background: transparent;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:hover .dropdown-menu, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu:focus .dropdown-menu, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu:hover .dropdown-menu, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu:focus .dropdown-menu {
  top: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu.opened > .dropdown-toggle .menu-arrow, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu.opened > .dropdown-toggle .menu-arrow {
  -webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
  transform: rotateX(180deg) translate3d(0, -3px, 0);
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:focus > a, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li:hover > a, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li:focus > a {
  color: #FFF;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li > a, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li > a {
  color: #9d9d9d;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown.opened > .dropdown-toggle .menu-arrow, html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega.opened > .dropdown-toggle .menu-arrow {
  -webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
  transform: rotateX(180deg) translate3d(0, -3px, 0);
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega [class*="col"] {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 12.8px;
  margin-top: 0.8rem;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega [class*="col"]:last-child {
  margin-bottom: 12.8px;
  margin-bottom: 0.8rem;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu {
  padding: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content {
  margin-top: -12.8px;
  margin-top: -0.8rem;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-title {
  margin: 0;
  text-align: center;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav + .dropdown-mega-sub-title {
  margin-top: 12.8px;
  margin-top: 0.8rem;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content {
  padding: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-content > .row > div {
  padding: 0;
  margin-left: 0;
}

html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block {
  display: none !important;
}

@media (max-width: 991px) {
  html.side-header-overlay-full-screen #header .header-nav-main {
    position: static;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
  }

  html.side-header-overlay-full-screen #header .header-nav-main:before {
    content: none;
  }

  html.side-header-overlay-full-screen #header .header-nav-main nav > ul > li {
    border-bottom: 0;
  }
}

/* Side Header Toggles */
.side-header-btn-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  font-weight: 500;
}

html.sticky-wrapper-active .side-header-btn-toggle {
  color: #333333;
}

.side-header-btn-close {
  position: absolute;
  top: 20.8px;
  top: 1.3rem;
  right: 19.2px;
  right: 1.2rem;
  font-size: 24px;
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  html.side-header-from-out .side-header-btn-close {
    display: none;
  }
}
/* Double Carousel */
@media (min-width: 992px) {
  html.side-header:not(.side-header-from-out) .double-carousel .nav {
    margin-left: -140px;
  }

  html.side-header:not(.side-header-from-out) .double-carousel .wrapper-left {
    width: calc(35vw - 140px);
    margin-right: -140px;
  }

  html.side-header:not(.side-header-from-out) .double-carousel .wrapper-right {
    margin-left: -140px;
    width: calc(35vw - 140px);
  }
}

@media (max-width: 1600px) {
  html.side-header:not(.side-header-from-out) .double-carousel .nav .title-left,
  html.side-header:not(.side-header-from-out) .double-carousel .nav .title-right {
    display: none;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  html.side-header:not(.side-header-from-out) .double-carousel .nav {
    top: 50%;
  }

  html.side-header:not(.side-header-from-out) .double-carousel .owl-carousel .owl-dots {
    top: 58%;
  }
}

/* IE */
@media (min-width: 992px) {
  html.ie.side-header .nano > .nano-content {
    right: 3px !important;
    margin-right: -20px !important;
    padding-right: 5px;
  }
}

/* Microsoft Edge */
@media (min-width: 992px) {
  html.edge.side-header .nano > .nano-content,
  html.gecko.side-header .nano > .nano-content {
    right: -16px !important;
  }

  html.edge.side-header #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow,
  html.gecko.side-header #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow {
    right: 6px;
  }

  html.edge.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow, html.edge.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow,
  html.gecko.side-header #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow,
  html.gecko.side-header #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow {
    right: 6px;
  }

  html.edge.side-header #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow,
  html.gecko.side-header #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow {
    right: 21px;
  }

  html.edge.side-header.side-header-from-out #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow,
  html.gecko.side-header.side-header-from-out #header .header-nav-main nav > ul > li a.dropdown-toggle .menu-arrow {
    right: 12px;
  }

  html.edge.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow, html.edge.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow,
  html.gecko.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow,
  html.gecko.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow {
    right: 12px;
  }

  html.edge.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow,
  html.gecko.side-header.side-header-from-out #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu li.dropdown-submenu > .dropdown-toggle .menu-arrow {
    right: 12px;
  }
}

/* Signin */
/* Header Signin / Signup / Logged */
#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.open > .dropdown-menu, #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin:hover > .dropdown-menu {
  pointer-events: auto;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > a {
  position: relative;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > a:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 20px;
  border-left: 1px solid #CCC;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu {
  max-width: 350px;
  width: 100vw !important;
  top: 100%;
  right: 0 !important;
  left: auto;
  pointer-events: none;
  background: #FFF;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu:before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFF;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu li:hover > a {
  color: #CCC;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin .dropdown-mega-content > .row > div {
  padding: 5px 25px;
  border: none !important;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin .forgot-pw:hover {
  text-decoration: underline;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.signin .signup-form,
#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.signin .recover-form {
  display: none;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.signup .signin-form,
#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.signup .recover-form {
  display: none;
}

#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.recover .signin-form,
#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.recover .signup-form {
  display: none;
}

@media (max-width: 991px) {
  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > a {
    font-weight: 500;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > a:before {
    content: none;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu {
    display: block;
    max-width: 100%;
    padding: 0.6rem;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu:before {
    content: none;
  }

  #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin.logged li {
    border-bottom: 0;
  }
}
/* Shop */
/* Shop */
html.shop #header .header-nav-main {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.mini-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.mini-cart .mini-cart-icon {
  position: relative;
  margin-left: 12.8px;
  margin-left: 0.8rem;
  top: -4px;
}

.mini-cart .mini-cart-icon > span {
  position: absolute;
  bottom: -5px;
  right: -5px;
  padding: 3.2px 4.8px;
  padding: 0.2rem 0.3rem;
}

.mini-cart .mini-cart-content {
  position: absolute;
  width: 300px;
  top: 100%;
  right: -32px;
  padding-top: 25.6px;
  padding-top: 1.6rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  -webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
}

.mini-cart .mini-cart-content .inner-wrapper {
  position: relative;
  padding: 25.6px;
  padding: 1.6rem;
  -webkit-box-shadow: 0px 0px 30px -8px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 30px -8px rgba(0, 0, 0, 0.5);
}

.mini-cart .mini-cart-content .inner-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFF;
}

.mini-cart .mini-cart-content .mini-cart-product {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.mini-cart .mini-cart-content .mini-cart-product .product-image {
  position: relative;
}

.mini-cart .mini-cart-content .mini-cart-product .product-image > a {
  position: absolute;
  top: -11px;
  right: -12px;
  padding: 0;
  width: 22.4px;
  width: 1.4rem;
  height: 22.4px;
  height: 1.4rem;
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: 0px 0px 30px -8px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 30px -8px rgba(0, 0, 0, 0.5);
}

.mini-cart .mini-cart-content .mini-cart-total {
  padding: 11.2px 0;
  padding: 0.7rem 0;
  border-top: 1px solid #E5E5E5;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.mini-cart .mini-cart-content .mini-cart-actions .btn {
  display: block;
  width: 100%;
  text-align: center;
}

.mini-cart:hover .mini-cart-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Header Search Expand */
#header .header-search-expanded {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -30%, 0);
  transform: translate3d(0, -30%, 0);
  -webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
}

#header .header-search-expanded > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}

#header .header-search-expanded > form input {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}

#header .header-search-expanded > form input::-webkit-input-placeholder {
  color: #b9b9b9;
}

#header .header-search-expanded > form input::-moz-placeholder {
  color: #b9b9b9;
}

#header .header-search-expanded > form input:-ms-input-placeholder {
  color: #b9b9b9;
}

#header .header-search-expanded > form button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  height: 100%;
  padding: 0;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  font-size: 22.4px;
  font-size: 1.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#header .header-nav,
#header .header-logo {
  -webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
}

html.sticky-header-active #header .header-search-expanded {
  height: 45px;
}

html.sticky-header-active #header .header-search-expanded > form button {
  padding-top: 6.4px;
  padding-top: 0.4rem;
}

html.header-search-expanded-active #header .header-search-expanded {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: ease opacity 300ms 0ms, ease visibility 300ms 0ms, ease transform 300ms 0ms;
  transition: ease opacity 300ms 0ms, ease visibility 300ms 0ms, ease transform 300ms 0ms;
}

html.header-search-expanded-active #header .header-nav,
html.header-search-expanded-active #header .header-logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}

/* Mobile Menu Opened */
html.mobile-menu-opened #header .header-container:after {
  content: none;
}

html.mobile-menu-opened #header.header-container-bottom-border .header-body:after {
  content: none;
}

/* Page Header */
.page-header {
  background-color: #f1f3f7;
  margin: 0 0 50px 0;
  min-height: 50px;
  padding: 55px 0;
  position: relative;
  text-align: center;
}

.page-header .breadcrumb {
  background: none;
  margin: 0 0 8px 2px;
  padding: 0;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-header .breadcrumb > li {
  display: inline-block;
  font-size: 0.85em;
  text-shadow: none;
}

.page-header .breadcrumb > li + li:before {
  color: inherit;
  opacity: 0.5;
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  padding: 0 7px 0 5px;
  font-weight: 900;
}

.page-header .breadcrumb.breadcrumb-valign-mid {
  position: absolute;
  top: 36%;
  right: 20px;
}

.page-header h1 {
  display: inline-block;
  line-height: 32px;
  margin: 0;
  padding: 5px 0;
  font-weight: 500;
  position: relative;
  font-size: 25.6px;
  font-size: 1.6rem;
}

.page-header .lead {
  padding: 0;
  margin: 0;
  font-size: 1.3em;
  line-height: 1.6;
}

.page-header.page-header-color a:hover {
  text-decoration: underline;
}

.page-header.page-header-text-light h1, .page-header.page-header-text-light a:not(.btn), .page-header.page-header-text-light span, .page-header.page-header-text-light p {
  color: #FFF;
}

.page-header.page-header-text-light li,
.page-header.page-header-text-light li > a {
  color: #a2a2a2;
}

.page-header.page-header-text-light.page-header-crumbs-light-2 li,
.page-header.page-header-text-light.page-header-crumbs-light-2 li > a {
  color: #d8d8d8;
}

.page-header.parallax > .container {
  position: relative;
  z-index: 3;
}

.page-header.page-header-dark {
  background-color: #2E3237;
}

/* Parallax */
/* Sections */
.section {
  position: relative;
  padding: 73.846px 0;
  padding: 4.6153846154rem 0;
  /* Section Content Pull Top */
  /* Section Content Pull Top 2 */
  /* Section Content Pull Top 3 */
  /* Section Content Pull Top 4 */
  /* Section Content Pull Top 5 */
  /* Section Over Slider */
  /* Section With Text Overlay */
  /* Responsive */
}

.section.section-height-1 {
  padding: 12.307px 0;
  padding: 0.7692307692rem 0;
}

.section.section-height-2 {
  padding: 36.923px 0;
  padding: 2.3076923077rem 0;
}

.section.section-height-3 {
  padding: 73.846px 0;
  padding: 4.6153846154rem 0;
}

.section.section-height-4 {
  padding: 110.769px 0;
  padding: 6.9230769231rem 0;
}

.section.section-height-5 {
  padding: 147.692px 0;
  padding: 9.2307692308rem 0;
}

.section > .container {
  position: relative;
  z-index: 3;
}

.section.section-background {
  background-position: 0 50%;
  background-repeat: repeat;
  z-index: 1;
}

.section.section-skew {
  position: relative;
  overflow: hidden;
}

.section.section-skew .section-skew-layer {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(-15deg, 0deg);
  transform: skew(-15deg, 0deg);
}

.section.section-skew .section-skew-layer.skew-layer-from-right, .section.section-skew .section-skew-layer[data-skew-layer-from="right"] {
  left: 105%;
}

.section.section-skew > .container {
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .section.section-skew .section-skew-layer.section-skew-layer-mobile-right {
    left: 90% !important;
  }
}

.section.section-content-pull-top > .container:not(.no-pull-top) {
  margin-top: -112px;
  margin-top: -7rem;
}

.section.section-content-pull-top.pull-top-level-2 > .container:not(.no-pull-top) {
  margin-top: -144px;
  margin-top: -9rem;
}

.section.section-content-pull-top.pull-top-level-3 > .container:not(.no-pull-top) {
  margin-top: -176px;
  margin-top: -11rem;
}

.section.section-content-pull-top.pull-top-level-4 > .container:not(.no-pull-top) {
  margin-top: -240px;
  margin-top: -15rem;
}

.section.section-content-pull-top.pull-top-level-5 > .container:not(.no-pull-top) {
  margin-top: -288px;
  margin-top: -18rem;
}

.section.section-content-pull-top-2 {
  padding-bottom: 0;
}

.section.section-content-pull-top-2 > .container:not(.no-pull-top) {
  margin-top: -112px;
  margin-top: -7rem;
  background: #FFF;
  border-radius: 7px;
  -webkit-box-shadow: 0px -1px 15px -3px rgba(153, 153, 153, 0.1);
  box-shadow: 0px -1px 15px -3px rgba(153, 153, 153, 0.1);
  padding: 60px 40px;
  z-index: 0;
}

@media (min-width: 768px) {
  .section.section-content-pull-top-2 > .container:not(.no-pull-top) {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .section.section-content-pull-top-2 > .container:not(.no-pull-top) {
    max-width: 1015px;
  }
}

@media (min-width: 1200px) {
  .section.section-content-pull-top-2 > .container:not(.no-pull-top) {
    max-width: 1190px;
  }
}

.section.section-content-pull-top-2.pull-top-level-2 > .container:not(.no-pull-top) {
  margin-top: -144px;
  margin-top: -9rem;
}

.section.section-content-pull-top-2.pull-top-level-3 > .container:not(.no-pull-top) {
  margin-top: -176px;
  margin-top: -11rem;
}

.section.section-content-pull-top-3 {
  padding: 36.8px 0;
  padding: 2.3rem 0;
}

.section.section-content-pull-top-3 > .container:not(.no-pull-top) {
  margin-top: -112px;
  margin-top: -7rem;
  background: #FFF;
  padding: 40px 40px;
}

@media (min-width: 768px) {
  .section.section-content-pull-top-3 > .container:not(.no-pull-top) {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .section.section-content-pull-top-3 > .container:not(.no-pull-top) {
    max-width: 1015px;
  }
}

@media (min-width: 1200px) {
  .section.section-content-pull-top-3 > .container:not(.no-pull-top) {
    max-width: 1190px;
  }
}

.section.section-content-pull-top-4 {
  padding: 36.8px 0;
  padding: 2.3rem 0;
}

@media (max-width: 575px) {
  .section.section-content-pull-top-4 {
    padding-top: 0;
  }
}

.section.section-content-pull-top-4:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  width: 100%;
  height: 170px;
  background: -webkit-gradient(linear, left bottom, left top, from(#f1f3f7), to(rgba(46, 50, 55, 0.2)));
  background: linear-gradient(to top, #f1f3f7, rgba(46, 50, 55, 0.2));
}

@media (min-width: 576px) {
  .section.section-content-pull-top-4:before {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .section.section-content-pull-top-4:before {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .section.section-content-pull-top-4:before {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .section.section-content-pull-top-4:before {
    max-width: 1440px;
  }
}

.section.section-content-pull-top-4 > .container:not(.no-pull-top) {
  margin-top: -240px;
  margin-top: -15rem;
}

.section.section-content-pull-top-4 > .container:not(.no-pull-top) > .row {
  padding: 0 30px;
}

.section.section-content-pull-top-4 > .container:not(.no-pull-top) > .row:first-child {
  position: relative;
  padding: 30px 30px 0;
}

.section.section-content-pull-top-4 > .container:not(.no-pull-top) > .row:first-child:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 203px;
  border-radius: 7px 7px 0 0;
  background: #2E3237;
  z-index: -1;
}

@media (max-width: 575px) {
  .section.section-content-pull-top-4 > .container:not(.no-pull-top) > .row:first-child:before {
    height: 100%;
    border-radius: 0;
  }
}

.section.section-content-pull-top-5 > .container,
.section.section-content-pull-top-5 > .container-fluid {
  margin-top: -48px;
  margin-top: -3rem;
}

.section.section-over-slider {
  margin-top: -106px;
  padding: 0;
}

.section.section-over-slider.section-over-slider-style-1 > .container {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px 0;
  padding: 1.5rem 0;
}

.section.section-text-overlay {
  position: relative;
  overflow: hidden;
}

.section.section-text-overlay .text-background {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 13vw;
  line-height: 3.3vw;
  opacity: 0.06;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section.section-text-overlay .text-background.appear-animation {
  opacity: 0;
}

.section.section-text-overlay .text-background.text-background-style-2 {
  width: 120%;
  opacity: 0.03;
}

.section.section-text-overlay .text-background.text-background-color-1 {
  color: #72b9ff;
}

@media (max-width: 991px) {
  .section.section-content-pull-top:not(.pull-top-always) > .container, .section.section-content-pull-top-2:not(.pull-top-always) > .container, .section.section-content-pull-top-3:not(.pull-top-always) > .container {
    margin-top: 0 !important;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .section.section-over-slider {
    margin-top: 0;
  }

  .section.section-over-slider.section-over-slider-style-1 {
    background: #2E3237;
  }

  .section.section-over-slider.section-over-slider-style-1 > .container {
    border-top: 0;
    padding: 1.5rem 15px;
  }
}

@media (max-width: 575px) {
  .section.section-content-pull-top-4:not(.pull-top-always) > .container {
    margin-top: 0 !important;
  }
}

/* Sidebar */
.sidebar .sidebar-search input {
  padding: 11.2px 35.2px 11.2px 11.2px;
  padding: 0.7rem 2.2rem 0.7rem 0.7rem;
}

.sidebar .sidebar-search button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background-color: transparent;
  height: 100%;
  z-index: 3 !important;
}

.sidebar .sidebar-search button i {
  color: #CCC;
}

.sidebar .sort-source > div > a,
.sidebar .sort-source > li > a {
  font-family: Poppins !important;
}

/* Sliders */
.slider-container {
  background: #333333;
  width: 100%;
  height: 490px;
  overflow: hidden;
  direction: ltr;
}

.slider-container.slider-container-full-height {
  height: 100vh;
}

.slider-container.slider-container-height-490 {
  height: 490px;
}

.slider-container.slider-container-height-550 {
  height: 550px;
}

.slider-container.slider-container-height-600 {
  height: 600px;
}

.slider-container.slider-container-height-720 {
  height: 720px;
}

.slider-container.slider-container-height-800 {
  height: 800px;
}

.slider-container.slider-container-height-870 {
  height: 870px;
}

/* Slider With Overlay */
.rev_slider li.slide-overlay {
  /* Slider With Overlay Opacity Level */
}

.rev_slider li.slide-overlay .slotholder:after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0.9;
  background: #333333;
  z-index: 2;
}

.rev_slider li.slide-overlay.slide-overlay-light .slotholder:after {
  background: #FFF;
}

.rev_slider li.slide-overlay.slide-overlay-level-0 .slotholder:after {
  opacity: 0.0;
}

.rev_slider li.slide-overlay.slide-overlay-level-1 .slotholder:after {
  opacity: 0.1;
}

.rev_slider li.slide-overlay.slide-overlay-level-2 .slotholder:after {
  opacity: 0.2;
}

.rev_slider li.slide-overlay.slide-overlay-level-3 .slotholder:after {
  opacity: 0.3;
}

.rev_slider li.slide-overlay.slide-overlay-level-4 .slotholder:after {
  opacity: 0.4;
}

.rev_slider li.slide-overlay.slide-overlay-level-5 .slotholder:after {
  opacity: 0.5;
}

.rev_slider li.slide-overlay.slide-overlay-level-6 .slotholder:after {
  opacity: 0.6;
}

.rev_slider li.slide-overlay.slide-overlay-level-7 .slotholder:after {
  opacity: 0.7;
}

.rev_slider li.slide-overlay.slide-overlay-level-8 .slotholder:after {
  opacity: 0.8;
}

.rev_slider li.slide-overlay.slide-overlay-level-9 .slotholder:after {
  opacity: 0.9;
}

.rev_slider li.slide-overlay.slide-overlay-level-10 .slotholder:after {
  opacity: 0.10;
}

/* Slider Navigation */
.tp-bullets.bullets-style-1 .tp-bullet {
  width: 7px;
  height: 7px;
  border-radius: 100%;
}

/* Slider Arrows */
.tparrows {
  /* Arrows Dark */
}

.tparrows.slider-arrows-style-1 {
  background: transparent !important;
}

.tparrows.slider-arrows-style-1:hover:before {
  opacity: 0.8;
}

.tparrows.slider-arrows-style-2 {
  background: transparent !important;
}

.tparrows.slider-arrows-style-2.tp-leftarrow:before, .tparrows.slider-arrows-style-2.tp-rightarrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 70%;
  width: 30px;
  height: 30px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  opacity: 0.4;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
}

.tparrows.slider-arrows-style-2.tp-leftarrow:after, .tparrows.slider-arrows-style-2.tp-rightarrow:after {
  content: '';
  display: block;
  position: absolute;
  left: 9px;
  top: 50%;
  width: 60px;
  border-top: 1px solid #FFF;
  opacity: 0.4;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: ease width 300ms, ease opacity 300ms;
  transition: ease width 300ms, ease opacity 300ms;
}

.tparrows.slider-arrows-style-2.tp-leftarrow:hover:before, .tparrows.slider-arrows-style-2.tp-rightarrow:hover:before {
  opacity: 0.8;
}

.tparrows.slider-arrows-style-2.tp-leftarrow:hover:after, .tparrows.slider-arrows-style-2.tp-rightarrow:hover:after {
  width: 90px;
  opacity: 0.8;
}

.tparrows.slider-arrows-style-2.tp-rightarrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.tparrows.slider-arrows-dark:before {
  color: #333333;
}

/* Slider Contact Form */
.slider-contact-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 99999;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.slider-contact-form-wrapper .slider-contact-form {
  background: rgba(28, 31, 33, 0.3);
  padding: 80px 80px 256px;
  padding: 5rem 5rem 16rem;
  min-width: 416px;
}

.slider-contact-form-wrapper .slider-contact-form > p {
  color: #969696;
}

.slider-contact-form-wrapper .slider-contact-form form label {
  color: #CCC;
}

@media (max-width: 575px) {
  .slider-contact-form-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .slider-contact-form-wrapper .slider-contact-form {
    min-width: 256px;
    padding: 3rem;
  }
}

@media (max-width: 320px) {
  .slider-contact-form-wrapper .slider-contact-form {
    padding: 1rem;
  }
}
/* Slider Scroll Button */
.slider-scroll-button {
  position: relative;
  width: 57px;
  height: 57px;
  background: #CCC;
  border-radius: 100%;
}

.slider-scroll-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 49%;
  width: 23px;
  height: 34px;
  border: 1px solid #FFF;
  border-radius: 15px;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.slider-scroll-button:after {
  content: '';
  width: 6px;
  height: 10px;
  border-radius: 10px;
  border: 1px solid #FFF;
  position: absolute;
  top: 19px;
  left: 49%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  -webkit-animation-name: sliderScrollButton;
  animation-name: sliderScrollButton;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Custom Layer Styles */
.layer-bg-color-1 {
  background-color: #2b3b4b;
}

.layer-border-1 {
  border: 5px solid #55616E;
}

.layer-border-width-1 {
  border-width: 5px !important;
}

.layer-border-width-2 {
  border-width: 2px !important;
}

/* Slider IE Fix */
html.ie .forcefullwidth_wrapper_tp_banner {
  overflow: hidden;
}

/* Embed Border */
.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider video {
  border: 0 !important;
}

/* Responsive Letter Spacing for Text Layers */
@media (min-width: 576px) {
  .layer-letter-spacing-10 {
    letter-spacing: 10px !important;
  }
}
/* Boxed */
html.boxed .slider-container {
  width: 100% !important;
  left: auto !important;
}

/* #Footer */
#footer {
  background: #1C1F21;
  margin-top: 50px;
}

#footer h1, #footer h2, #footer h3, #footer h4, #footer h5 {
  color: #FFF;
}

#footer h2 {
  font-weight: 500;
}

#footer li {
  color: #777;
}

#footer a.highlight-underlined-light {
  color: #FFF;
  text-decoration: underline;
  font-weight: 100;
}

#footer a.highlight-underlined-dark {
  color: #333333;
  text-decoration: underline;
  font-weight: 100;
}

#footer.footer-hover-links-light a:not(.btn) {
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
}

#footer.footer-hover-links-light a:not(.btn):hover {
  color: #FFF;
  border-color: #FFF;
}

#footer.footer-text-light h1, #footer.footer-text-light h2, #footer.footer-text-light h3, #footer.footer-text-light h4, #footer.footer-text-light h5, #footer.footer-text-light h6, #footer.footer-text-light p, #footer.footer-text-light a, #footer.footer-text-light span, #footer.footer-text-light li, #footer.footer-text-light strong {
  color: #FFF;
}

#footer.footer-colors a:hover:not(.link-underline-light) {
  text-decoration: underline;
}

#footer > .container > .row {
  padding-top: 2rem;
}

#footer .logo img {
  max-width: 122px;
}

#footer .footer-top-featured-boxes .featured-box h4 {
  line-height: 1.2;
  font-weight: 500;
  font-size: 1.1em;
  padding-top: 4px;
}

#footer .footer-top-featured-boxes .featured-box:nth-child(1) img {
  height: 50px;
}

#footer .footer-top-featured-boxes .featured-box:nth-child(2) img {
  height: 45px;
  left: 37px;
}

#footer .footer-top-featured-boxes .featured-box:nth-child(3) img {
  height: 44px;
  top: 40px;
  left: 27px;
}

#footer.footer-reveal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -10;
}

#footer .footer-copyright {
  background: #1C1F21;
  margin-top: 1em;
  padding: 2em 0;
}

#footer .footer-copyright.footer-copyright-border-top {
  border-top: 1px solid #E2E4E8;
}

#footer .footer-copyright.footer-copyright-border-top-2 {
  border-top: 1px solid #252525;
}

#footer .footer-copyright.footer-copyright-container-border-top {
  position: relative;
}

#footer .footer-copyright.footer-copyright-container-border-top:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  max-width: 1140px;
  border-bottom: 1px solid #E2E4E8;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

#footer .footer-copyright.footer-copyright-landing-bg-color {
  background-color: #202528;
}

#footer .footer-copyright p {
  font-size: 0.9em;
}

#footer .section-skew .footer-copyright {
  position: relative;
  background: transparent;
  z-index: 2;
}

/* Dark Layout */
html.dark {
  /* Helpers */
  /* Header */
  /* Steps */
  /* Sort */
  /* Double Carousel */
  /* Section */
  /* Learn More */
  /* Content Grid */
}

html.dark .body {
  background-color: #333333;
}

html.dark .border {
  border-color: #2E3237 !important;
}

html.dark #header .header-top {
  border-bottom-color: #2E3237;
}

html.dark #header .header-body {
  background: #333333;
}

html.dark #header .header-container:after {
  border-bottom-color: rgba(46, 50, 55, 0.2);
}

@media (min-width: 992px) {
  html.dark #header .header-nav-main-dark nav > ul > li > a {
    color: #777;
  }
}

html.dark #header .header-btn-collapse-nav .hamburguer span {
  background: #FFF;
}

html.dark #header .header-btn-collapse-nav .close span {
  background: #FFF;
}

html.dark .word-rotator.type .word-rotator-words.waiting::after {
  -webkit-animation: 1s word-rotator-pulse-light step-end infinite;
  animation: 1s word-rotator-pulse-light step-end infinite;
}

html.dark .steps .item:not(.active) {
  background: #333333 !important;
}

html.dark .steps .item .item-title {
  color: #FFF;
}

html.dark .steps .item .item-title:after {
  background: #333333;
}

html.dark .steps .item.active {
  border-color: #FFF;
}

html.dark .steps .item.active:before {
  border: 6px solid #333333;
}

html.dark .steps .item.active:after {
  background: #333333;
}

html.dark .steps .item.active .item-title {
  color: #333333;
}

html.dark .steps .dots .dots-color-dark {
  background: #FFF;
}

html.dark .sort-destination-loader:after {
  background: #202326;
}

html.dark .double-carousel .owl-carousel .owl-item .card {
  background: #292d31;
}

html.dark .double-carousel .owl-carousel .owl-item .card p, html.dark .double-carousel .owl-carousel .owl-item .card strong {
  color: #FFF;
}

html.dark section.section {
  /* Section Content Pull Top 2 */
}

html.dark section.section:not([class*="bg-light"]) h2, html.dark section.section:not([class*="bg-light"]) h3, html.dark section.section:not([class*="bg-light"]) h4, html.dark section.section:not([class*="bg-light"]) h5, html.dark section.section:not([class*="bg-light"]) h6 {
  color: #FFF;
}

html.dark section.section.section-content-pull-top-2 > .container:not(.no-pull-top) {
  background: #202326;
  -webkit-box-shadow: 0px -1px 15px -3px rgba(9, 10, 11, 0.1);
  box-shadow: 0px -1px 15px -3px rgba(9, 10, 11, 0.1);
}

html.dark .learn-more {
  color: #FFF;
}

html.dark .learn-more:hover {
  color: #CCC;
}

html.dark .content-grid .content-grid-item:before {
  border-left: 1px solid #2E3237;
}

html.dark .content-grid .content-grid-item:after {
  border-bottom: 1px solid #2E3237;
}

html.dark .content-grid.content-grid-dashed .content-grid-item:before {
  border-left: 1px dashed #2E3237;
}

html.dark .content-grid.content-grid-dashed .content-grid-item:after {
  border-bottom: 1px dashed #2E3237;
}

/* Boxed Layout */
html.boxed body {
  background-color: #E7E9ED;
  background-position: 0 0;
  background-repeat: repeat;
}

html.boxed .body {
  position: relative;
  background-color: #FFF;
  margin: 25px auto;
  max-width: 1200px;
  height: auto;
  z-index: 0;
}

html.boxed #header .header-body {
  max-width: 1200px;
}

html.boxed #header .header-container:after {
  max-width: 1200px;
}

html.boxed #header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu {
  max-width: 1200px;
  border-radius: 0 !important;
}

html.boxed #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-content-block {
  border-radius: 0 !important;
}

html.boxed #header .header-nav-main nav > ul > li .dropdown-menu {
  border-radius: 0 !important;
}

html.boxed .main {
  overflow: hidden;
}

html.boxed section.section.section-text-overlay .text-background {
  font-size: 9vw;
  line-height: 1.3vw;
}

@media (min-width: 1200px) {
  html.boxed .double-carousel {
    -ms-flex-preferred-size: 100vw;
    flex-basis: 100vw;
    max-width: none;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

/* Responsive */
@media (min-width: 1140px) {
  html.boxed.sticky-header-active #header .header-body {
    width: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 991px) {
  html.boxed .body {
    margin: 0 auto;
  }
}

html.gap-outside .body {
  margin-top: 25.6px;
  margin-top: 1.6rem;
  margin-bottom: 25.6px;
  margin-bottom: 1.6rem;
}

html.gap-outside .main,
html.gap-outside #footer {
  margin-right: 25.6px;
  margin-right: 1.6rem;
  margin-left: 25.6px;
  margin-left: 1.6rem;
}

html.gap-outside .slider-container {
  width: 100% !important;
  left: auto !important;
}

html.gap-outside #header {
  margin-top: -25.6px;
  margin-top: -1.6rem;
}

html.gap-outside #header .header-body {
  left: 0;
  padding-right: 25.6px;
  padding-right: 1.6rem;
  padding-left: 25.6px;
  padding-left: 1.6rem;
}

html.gap-outside #header .header-container:after {
  content: none;
}

@media (max-width: 991px) {
  html.gap-outside #header .header-nav-main:before {
    width: calc(100vw - 3.2rem);
  }
}

.text-color-light {
  color: #FFF !important;
}

.text-color-light-2 {
  color: #e2e2e2 !important;
}

.text-color-light-3 {
  color: #a2a2a2 !important;
}

.text-color-dark {
  color: #333333 !important;
}

.text-color-default {
  color: #333333 !important;
}

.link-color-dark {
  color: #333333;
}

.link-color-light {
  color: #FFF;
}

.link-color-light:hover {
  color: #f1f3f7 !important;
}

.link-color-light-2 {
  color: #f1f3f7;
}

.link-color-light-2:hover, .link-color-light-2:focus, .link-color-light-2:active, .link-color-light-2.active {
  color: #FFF !important;
}

.link-color-light-3 {
  color: #a2a2a2;
}

.link-color-light-3:hover, .link-color-light-3:focus, .link-color-light-3:active, .link-color-light-3.active {
  color: #FFF !important;
}

.bg-light {
  background-color: #FFF !important;
}

.bg-light-1 {
  background-color: #fcfdfd !important;
}

.bg-light-2 {
  background-color: #fbfbfd !important;
}

.bg-light-3 {
  background-color: #f7f9fb !important;
}

.bg-light-4 {
  background-color: #f4f6f9 !important;
}

.bg-light-5 {
  background-color: #f1f3f7 !important;
}

.bg-dark {
  background-color: #333333 !important;
}

.bg-dark-1 {
  background-color: #090a0b !important;
}

.bg-dark-1 .sort-destination-loader:after {
  background-color: #090a0b !important;
}

.bg-dark-2 {
  background-color: #1b1e21 !important;
}

.bg-dark-2 .sort-destination-loader:after {
  background-color: #1b1e21 !important;
}

.bg-dark-3 {
  background-color: #202326 !important;
}

.bg-dark-3 .sort-destination-loader:after {
  background-color: #202326 !important;
}

.bg-dark-4 {
  background-color: #292d31 !important;
}

.bg-dark-4 .sort-destination-loader:after {
  background-color: #292d31 !important;
}

.bg-dark-5 {
  background-color: #2E3237 !important;
}

.bg-dark-5 .sort-destination-loader:after {
  background-color: #2E3237 !important;
}

.bg-transparent {
  background-color: trasnparent !important;
}

.border-light {
  border-color: #FFF !important;
}

.border-light-1 {
  border-color: #fcfdfd !important;
}

.border-light-2 {
  border-color: #fbfbfd !important;
}

.border-light-3 {
  border-color: #f7f9fb !important;
}

.border-light-4 {
  border-color: #f4f6f9 !important;
}

.border-light-5 {
  border-color: #f1f3f7 !important;
}

.border-dark {
  border-color: #333333 !important;
}

.border-dark-1 {
  border-color: #090a0b !important;
}

.border-dark-2 {
  border-color: #1b1e21 !important;
}

.border-dark-3 {
  border-color: #202326 !important;
}

.border-dark-4 {
  border-color: #292d31 !important;
}

.border-dark-5 {
  border-color: #2E3237 !important;
}

.border-grey {
  border-color: #A8AEB0 !important;
}

.text-0 {
  font-size: 11.2px !important;
  font-size: .70rem !important;
}

.text-1 {
  font-size: 12.8px !important;
  font-size: .80rem !important;
}

.text-2 {
  font-size: 14.4px !important;
  font-size: .90rem !important;
}

.text-3 {
  font-size: 16px !important;
  font-size: 1rem !important;
}

.text-4 {
  font-size: 17.6px !important;
  font-size: 1.1rem !important;
}

.text-5 {
  font-size: 24px !important;
  font-size: 1.50rem !important;
}

.text-6 {
  font-size: 28.8px !important;
  font-size: 1.80rem !important;
}

.text-7 {
  font-size: 32px !important;
  font-size: 2rem !important;
}

.text-8 {
  font-size: 36.8px !important;
  font-size: 2.30rem !important;
}

.text-9 {
  font-size: 40px !important;
  font-size: 2.50rem !important;
}

.text-10 {
  font-size: 44px !important;
  font-size: 2.75rem !important;
}

.text-11 {
  font-size: 48px !important;
  font-size: 3rem !important;
}

.text-12 {
  font-size: 52px !important;
  font-size: 3.25rem !important;
}

.text-13 {
  font-size: 56px !important;
  font-size: 3.50rem !important;
}

.text-14 {
  font-size: 60px !important;
  font-size: 3.75rem !important;
}

.text-15 {
  font-size: 64px !important;
  font-size: 4rem !important;
}

.text-16 {
  font-size: 72px !important;
  font-size: 4.5rem !important;
}

.text-17 {
  font-size: 80px !important;
  font-size: 5rem !important;
}

.text-18 {
  font-size: 84.8px !important;
  font-size: 5.3rem !important;
}

.text-19 {
  font-size: 92.8px !important;
  font-size: 5.8rem !important;
}

.text-20 {
  font-size: 104px !important;
  font-size: 6.5rem !important;
}

@media (max-width: 1199px) {
  .text-15.resp-text-15 {
    font-size: 3.5rem !important;
  }
}

@media (max-width: 991px) {
  .text-5.resp-text-5 {
    font-size: 1.3rem !important;
  }

  .text-15.resp-text-15 {
    font-size: 3rem !important;
  }
}

@media (max-width: 767px) {
  .text-5.resp-text-5 {
    font-size: 1.2rem !important;
  }

  .text-15.resp-text-15 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 575px) {
  .text-5.resp-text-5 {
    font-size: 1.1rem !important;
  }

  .text-15.resp-text-15 {
    font-size: 2.3rem !important;
  }
}

.line-height-07 {
  line-height: 0.7 !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.line-height-2 {
  line-height: 1.2 !important;
}

.line-height-3 {
  line-height: 1.4 !important;
}

.line-height-4 {
  line-height: 1.6 !important;
}

.line-height-5 {
  line-height: 1.8 !important;
}

@media (max-width: 575px) {
  .mobile-text-1 {
    font-size: 5vw !important;
  }

  .mobile-text-2 {
    font-size: 7vw !important;
  }

  .mobile-text-3 {
    font-size: 12vw !important;
  }

  .mobile-text-4 {
    font-size: 15vw !important;
  }

  .mobile-text-5 {
    font-size: 18vw !important;
  }
}

.letter-spacing-n1 {
  letter-spacing: -1px;
}

.letter-spacing-n6 {
  letter-spacing: -6px;
}

.letter-spacing-0 {
  letter-spacing: 0;
}

.letter-spacing-5 {
  letter-spacing: 5px;
}

.letter-spacing-10 {
  letter-spacing: 10px;
}

.width-auto {
  width: auto;
}

.pointer-events-none {
  pointer-events: none !important;
}

.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-semibold {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 500 !important;
}

.font-weight-extra-bold {
  font-weight: 800 !important;
}

.mt-negative-1 {
  margin-top: -16px;
  margin-top: -1rem;
}

.mt-negative-2 {
  margin-top: -24px;
  margin-top: -1.5rem;
}

.mt-negative-3 {
  margin-top: -48px;
  margin-top: -3rem;
}

.mt-negative-4 {
  margin-top: -72px;
  margin-top: -4.5rem;
}

.border-radius-0 {
  border-radius: 0 !important;
}

.font-style-italic {
  font-style: italic !important;
}

.font-primary {
  font-family: Poppins !important;
}

.font-secondary {
  font-family: Poppins !important;
}

.font-tertiary {
  font-family: Poppins !important;
}

.font-quaternary {
  font-family: "Permanent Marker", cursive !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-line-trough {
  text-decoration: line-through !important;
}

.flex-0-0-auto {
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
}

.scale-1 {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.scale-2 {
  -webkit-transform: scale(2);
  transform: scale(2);
}

.scale-3 {
  -webkit-transform: scale(3);
  transform: scale(3);
}

.abs-pos-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.transform-center-x {
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.transform-center-y {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.transform-center-xy {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.va-middle {
  vertical-align: middle;
}

.ws-nowrap {
  white-space: nowrap;
}

.ws-normal {
  white-space: normal;
}

.z-index-0 {
  z-index: 0 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.box-shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.height-1 {
  height: 18.25vw !important;
}

@media (max-width: 991px) {
  .height-1 {
    height: 23vw !important;
  }
}

@media (max-width: 767px) {
  .height-1 {
    height: 100vw !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .height-1 {
    min-height: 300px;
  }
}

.height-1x2 {
  height: 36.50vw !important;
}

@media (max-width: 991px) {
  .height-1x2 {
    height: 46vw !important;
  }
}

@media (max-width: 767px) {
  .height-1x2 {
    height: 100vw !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .height-1x2 {
    min-height: 600px;
  }
}

.height-2 {
  height: 16.25vw !important;
}

@media (max-width: 991px) {
  .height-2 {
    height: 26vw !important;
  }
}

@media (max-width: 767px) {
  .height-2 {
    height: 100vw !important;
  }
}

.height-2x2 {
  height: 32.50vw !important;
}

.height-3 {
  height: 23.25vw !important;
}

@media (max-width: 991px) {
  .height-3 {
    height: 33vw !important;
  }
}

@media (max-width: 767px) {
  .height-3 {
    height: 100vw !important;
  }
}

.height-3x3 {
  height: 46.50vw !important;
}

.height-500 {
  height: 500px;
}

.height-100vh {
  height: 100vh;
}

.min-height-200 {
  min-height: 200px;
}

.min-height-236 {
  min-height: 236px;
}

.min-height-285 {
  min-height: 285px;
}

.min-height-300 {
  min-height: 300px;
}

.min-height-370 {
  min-height: 370px;
}

.min-height-450 {
  min-height: 450px;
}

.min-height-550 {
  min-height: 450px;
}

.min-height-680 {
  min-height: 680px;
}

.min-height-750 {
  min-height: 750px;
}

.min-height-800 {
  min-height: 800px;
}

.min-height-900 {
  min-height: 900px;
}

.min-height-32vw {
  min-height: 32vw;
}

.min-height-100vh {
  min-height: 100vh;
}

.min-height-calc-1 {
  min-height: calc(100vh - 118px);
}

.max-width-150 {
  max-width: 150px;
}

.max-width-200 {
  max-width: 200px;
}

.max-width-250 {
  max-width: 250px;
}

.max-width-320 {
  max-width: 320px;
}

.max-width-400 {
  max-width: 400px;
}

.no-vertical-scroll {
  overflow-y: hidden;
}

.no-horizontal-scroll {
  overflow-x: hidden;
}

.col-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5, .col-xl-1-5, .col-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5, .col-xl-2-5, .col-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5, .col-xl-3-5, .col-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5, .col-xl-4-5 {
  position: relative;
  min-height: 1px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

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

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

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

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

@media (min-width: 576px) {
  .col-sm-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

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

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

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

@media (min-width: 768px) {
  .col-md-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

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

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

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

@media (min-width: 992px) {
  .col-lg-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

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

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

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

@media (min-width: 1200px) {
  .col-xl-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

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

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

  .col-xl-4-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
}
/* Headings */

h1, h2, h3, h4, h5, h6 {
  color: #282828;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 6.4px 0;
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

/* Heading with Icons */
h1 > i, h1 .fa, h1 .fas, h1 .far, h1 .fal, h1 .fab, h1 svg, h1 object, h2 > i, h2 .fa, h2 .fas, h2 .far, h2 .fal, h2 .fab, h2 svg, h2 object, h3 > i, h3 .fa, h3 .fas, h3 .far, h3 .fal, h3 .fab, h3 svg, h3 object, h4 > i, h4 .fa, h4 .fas, h4 .far, h4 .fal, h4 .fab, h4 svg, h4 object, h5 > i, h5 .fa, h5 .fas, h5 .far, h5 .fal, h5 .fab, h5 svg, h5 object, h6 > i, h6 .fa, h6 .fas, h6 .far, h6 .fal, h6 .fab, h6 svg, h6 object {
  margin-right: 10px;
  font-size: 1.9em;
}

h1.icon-va-fix-1 > i, h1.icon-va-fix-1 .fa, h1.icon-va-fix-1 .fas, h1.icon-va-fix-1 .far, h1.icon-va-fix-1 .fal, h1.icon-va-fix-1 .fab, h1.icon-va-fix-1 svg, h1.icon-va-fix-1 object, h2.icon-va-fix-1 > i, h2.icon-va-fix-1 .fa, h2.icon-va-fix-1 .fas, h2.icon-va-fix-1 .far, h2.icon-va-fix-1 .fal, h2.icon-va-fix-1 .fab, h2.icon-va-fix-1 svg, h2.icon-va-fix-1 object, h3.icon-va-fix-1 > i, h3.icon-va-fix-1 .fa, h3.icon-va-fix-1 .fas, h3.icon-va-fix-1 .far, h3.icon-va-fix-1 .fal, h3.icon-va-fix-1 .fab, h3.icon-va-fix-1 svg, h3.icon-va-fix-1 object, h4.icon-va-fix-1 > i, h4.icon-va-fix-1 .fa, h4.icon-va-fix-1 .fas, h4.icon-va-fix-1 .far, h4.icon-va-fix-1 .fal, h4.icon-va-fix-1 .fab, h4.icon-va-fix-1 svg, h4.icon-va-fix-1 object, h5.icon-va-fix-1 > i, h5.icon-va-fix-1 .fa, h5.icon-va-fix-1 .fas, h5.icon-va-fix-1 .far, h5.icon-va-fix-1 .fal, h5.icon-va-fix-1 .fab, h5.icon-va-fix-1 svg, h5.icon-va-fix-1 object, h6.icon-va-fix-1 > i, h6.icon-va-fix-1 .fa, h6.icon-va-fix-1 .fas, h6.icon-va-fix-1 .far, h6.icon-va-fix-1 .fal, h6.icon-va-fix-1 .fab, h6.icon-va-fix-1 svg, h6.icon-va-fix-1 object {
  position: relative;
  top: -1px;
}

h1.icon-va-fix-2 > i, h1.icon-va-fix-2 .fa, h1.icon-va-fix-2 .fas, h1.icon-va-fix-2 .far, h1.icon-va-fix-2 .fal, h1.icon-va-fix-2 .fab, h1.icon-va-fix-2 svg, h1.icon-va-fix-2 object, h2.icon-va-fix-2 > i, h2.icon-va-fix-2 .fa, h2.icon-va-fix-2 .fas, h2.icon-va-fix-2 .far, h2.icon-va-fix-2 .fal, h2.icon-va-fix-2 .fab, h2.icon-va-fix-2 svg, h2.icon-va-fix-2 object, h3.icon-va-fix-2 > i, h3.icon-va-fix-2 .fa, h3.icon-va-fix-2 .fas, h3.icon-va-fix-2 .far, h3.icon-va-fix-2 .fal, h3.icon-va-fix-2 .fab, h3.icon-va-fix-2 svg, h3.icon-va-fix-2 object, h4.icon-va-fix-2 > i, h4.icon-va-fix-2 .fa, h4.icon-va-fix-2 .fas, h4.icon-va-fix-2 .far, h4.icon-va-fix-2 .fal, h4.icon-va-fix-2 .fab, h4.icon-va-fix-2 svg, h4.icon-va-fix-2 object, h5.icon-va-fix-2 > i, h5.icon-va-fix-2 .fa, h5.icon-va-fix-2 .fas, h5.icon-va-fix-2 .far, h5.icon-va-fix-2 .fal, h5.icon-va-fix-2 .fab, h5.icon-va-fix-2 svg, h5.icon-va-fix-2 object, h6.icon-va-fix-2 > i, h6.icon-va-fix-2 .fa, h6.icon-va-fix-2 .fas, h6.icon-va-fix-2 .far, h6.icon-va-fix-2 .fal, h6.icon-va-fix-2 .fab, h6.icon-va-fix-2 svg, h6.icon-va-fix-2 object {
  position: relative;
  top: -2px;
}

h1.icon-va-fix-3 > i, h1.icon-va-fix-3 .fa, h1.icon-va-fix-3 .fas, h1.icon-va-fix-3 .far, h1.icon-va-fix-3 .fal, h1.icon-va-fix-3 .fab, h1.icon-va-fix-3 svg, h1.icon-va-fix-3 object, h2.icon-va-fix-3 > i, h2.icon-va-fix-3 .fa, h2.icon-va-fix-3 .fas, h2.icon-va-fix-3 .far, h2.icon-va-fix-3 .fal, h2.icon-va-fix-3 .fab, h2.icon-va-fix-3 svg, h2.icon-va-fix-3 object, h3.icon-va-fix-3 > i, h3.icon-va-fix-3 .fa, h3.icon-va-fix-3 .fas, h3.icon-va-fix-3 .far, h3.icon-va-fix-3 .fal, h3.icon-va-fix-3 .fab, h3.icon-va-fix-3 svg, h3.icon-va-fix-3 object, h4.icon-va-fix-3 > i, h4.icon-va-fix-3 .fa, h4.icon-va-fix-3 .fas, h4.icon-va-fix-3 .far, h4.icon-va-fix-3 .fal, h4.icon-va-fix-3 .fab, h4.icon-va-fix-3 svg, h4.icon-va-fix-3 object, h5.icon-va-fix-3 > i, h5.icon-va-fix-3 .fa, h5.icon-va-fix-3 .fas, h5.icon-va-fix-3 .far, h5.icon-va-fix-3 .fal, h5.icon-va-fix-3 .fab, h5.icon-va-fix-3 svg, h5.icon-va-fix-3 object, h6.icon-va-fix-3 > i, h6.icon-va-fix-3 .fa, h6.icon-va-fix-3 .fas, h6.icon-va-fix-3 .far, h6.icon-va-fix-3 .fal, h6.icon-va-fix-3 .fab, h6.icon-va-fix-3 svg, h6.icon-va-fix-3 object {
  position: relative;
  top: -3px;
}

/* Styled Heading */
.heading-style-1 {
  font-size: 100.8px;
  font-size: 6.3rem;
  line-height: 1;
  letter-spacing: -5px;
}

.heading-style-1 > span {
  position: absolute;
  margin-left: -14.4px;
  margin-left: -0.9rem;
  z-index: -1;
}

/* Paragraphs */
p {
  color: #282828;
  line-height: 1.9;
  margin: 0 0 1.2em;
}

p.featured {
  font-size: 1.6em;
  line-height: 1.5em;
}

p.short {
  margin-bottom: 0;
}

p.tall {
  margin-bottom: 20px;
}

p.taller {
  margin-bottom: 40px;
}

/* Links */
a {
  color: #282828;
  -webkit-transition: ease color 300ms;
  transition: ease color 300ms;
}

a:hover, a:focus {
  color: #282828;
  text-decoration: none;
}

a.link:hover, a.link:focus {
  text-decoration: underline;
}

/* Drop Caps */
p.drop-caps:first-letter {
  float: left;
  font-size: 75px;
  line-height: 60px;
  padding: 4px;
  margin-right: 5px;
  margin-top: 5px;
  font-family: Poppins !important;
}

p.drop-caps.drop-caps-style-2:first-letter {
  background-color: #CCC;
  color: #FFF;
  padding: 6px;
  margin-right: 5px;
  border-radius: 4px;
}

/* Mask Up */
@-webkit-keyframes maskUp {
  from {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes maskUp {
  from {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Mask Right */
@-webkit-keyframes maskRight {
  from {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes maskRight {
  from {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Mask Down */
@-webkit-keyframes maskDown {
  from {
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes maskDown {
  from {
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Mask Left */
@-webkit-keyframes maskLeft {
  from {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes maskLeft {
  from {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }

  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Fade In Up Shorter */
@-webkit-keyframes fadeInUpShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* Fade In Left Shorter */
@-webkit-keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Fade In Right Shorter */
@-webkit-keyframes fadeInRightShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadeInRightShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Fade In Down Shorter */
@-webkit-keyframes fadeInDownShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadeInDownShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* Fade In Down Shorter - Absolute Center */
@-webkit-keyframes fadeInDownShorterAbsCenter {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50px);
    transform: translate(-50%, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes fadeInDownShorterAbsCenter {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50px);
    transform: translate(-50%, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
/* Expand In */
@-webkit-keyframes expandIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes expandIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Blur In */
@-webkit-keyframes blurIn {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: none;
    transform: none;
  }
}
/* Carousel Fade In Right */
@-webkit-keyframes doubleCarouselFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(15%, -50%);
    transform: translate(15%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@keyframes doubleCarouselFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(15%, -50%);
    transform: translate(15%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
/* Carousel Fade In Left */
@-webkit-keyframes doubleCarouselFadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-15%, -50%);
    transform: translate(-15%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@keyframes doubleCarouselFadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-15%, -50%);
    transform: translate(-15%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
/* Steps Fade In Up */
@-webkit-keyframes stepsFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 25%);
    transform: translate(-50%, 25%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes stepsFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 25%);
    transform: translate(-50%, 25%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/* Steps Fade In Left */
@-webkit-keyframes stepsFadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-75%, -50%);
    transform: translate(-75%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes stepsFadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(-75%, -50%);
    transform: translate(-75%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/* Steps Fade In Right */
@-webkit-keyframes stepsFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes stepsFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/* Text bg Fade In Up */
@-webkit-keyframes textBgFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
  }

  to {
    opacity: 0.06;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes textBgFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
  }

  to {
    opacity: 0.06;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes textBgFadeInUpDark {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
  }

  to {
    opacity: 0.02;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes textBgFadeInUpDark {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
  }

  to {
    opacity: 0.02;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
/* Text bg Fade In Up 2 */
@-webkit-keyframes textBgFadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
  }

  to {
    opacity: 0.5;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes textBgFadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
  }

  to {
    opacity: 0.5;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
/* Header Reveal */
@-webkit-keyframes headerReveal {
  from {
    top: -150px;
  }

  to {
    top: 0;
  }
}

@keyframes headerReveal {
  from {
    top: -150px;
  }

  to {
    top: 0;
  }
}
/* Fade In Scale */
@-webkit-keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Highlight */
@-webkit-keyframes highlight {
  0% {
    background-color: transparent;
  }

  50% {
    background-color: #f1f3f7;
  }

  100% {
    background-color: transparent;
  }
}

@keyframes highlight {
  0% {
    background-color: transparent;
  }

  50% {
    background-color: #f1f3f7;
  }

  100% {
    background-color: transparent;
  }
}
/* Slider Scroll Button Animation */
@-webkit-keyframes sliderScrollButton {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  70% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
}

@keyframes sliderScrollButton {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  70% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
}
/* Background Scale Out */
@-webkit-keyframes scaleOut {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleOut {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Animations */
.animated {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-timing-function: cubic-bezier(0.03, 0.025, 0, 0.97);
  animation-timing-function: cubic-bezier(0.03, 0.025, 0, 0.97);
}

.appear-animation {
  opacity: 0;
}

.appear-animation-visible {
  opacity: 1;
}

.maskUp {
  -webkit-animation-name: maskUp;
  animation-name: maskUp;
}

.maskRight {
  -webkit-animation-name: maskRight;
  animation-name: maskRight;
}

.maskDown {
  -webkit-animation-name: maskDown;
  animation-name: maskDown;
}

.maskLeft {
  -webkit-animation-name: maskLeft;
  animation-name: maskLeft;
}

.fadeInUpShorter {
  -webkit-animation-name: fadeInUpShorter;
  animation-name: fadeInUpShorter;
}

.fadeInLeftShorter {
  -webkit-animation-name: fadeInLeftShorter;
  animation-name: fadeInLeftShorter;
}

.fadeInRightShorter {
  -webkit-animation-name: fadeInRightShorter;
  animation-name: fadeInRightShorter;
}

.fadeInDownShorter {
  -webkit-animation-name: fadeInDownShorter;
  animation-name: fadeInDownShorter;
}

.fadeInDownShorterAbsCenter {
  -webkit-animation-name: fadeInDownShorterAbsCenter;
  animation-name: fadeInDownShorterAbsCenter;
}

.expandIn {
  -webkit-animation-name: expandIn;
  animation-name: expandIn;
}

.blurIn {
  -webkit-animation-name: blurIn;
  animation-name: blurIn;
}

.doubleCarouselFadeInRight {
  -webkit-animation-name: doubleCarouselFadeInRight;
  animation-name: doubleCarouselFadeInRight;
}

.doubleCarouselFadeInLeft {
  -webkit-animation-name: doubleCarouselFadeInLeft;
  animation-name: doubleCarouselFadeInLeft;
}

.stepsFadeInUp {
  -webkit-animation-name: stepsFadeInUp;
  animation-name: stepsFadeInUp;
}

.stepsFadeInLeft {
  -webkit-animation-name: stepsFadeInLeft;
  animation-name: stepsFadeInLeft;
}

.stepsFadeInRight {
  -webkit-animation-name: stepsFadeInRight;
  animation-name: stepsFadeInRight;
}

.textBgFadeInUp {
  -webkit-animation-name: textBgFadeInUp;
  animation-name: textBgFadeInUp;
}

.textBgFadeInUpDark {
  -webkit-animation-name: textBgFadeInUpDark;
  animation-name: textBgFadeInUpDark;
}

.textBgFadeInUp2 {
  -webkit-animation-name: textBgFadeInUp2;
  animation-name: textBgFadeInUp2;
}

.fadeInScale {
  -webkit-animation-name: fadeInScale;
  animation-name: fadeInScale;
}

.scaleOut {
  -webkit-animation-name: scaleOut;
  animation-name: scaleOut;
}

/* Hover 3d Effect */
.hover-in {
  -webkit-transition: .1s ease-out !important;
  transition: .1s ease-out !important;
}

.hover-out {
  -webkit-transition: .1s ease-in !important;
  transition: .1s ease-in !important;
}

.hover-3d {
  -webkit-transition: none;
  transition: none;
}

/* Hover Anim */
.hover-anim.hover-anim-effect-1 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
}

.hover-anim.hover-anim-effect-1:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

/* Highlight Anim */
.highlight-anim {
  -webkit-animation-name: highlight;
  animation-name: highlight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

/* Overlays */
.overlay {
  /* Backward */
}

.overlay:before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #282828;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: ease opacity 300ms 100ms;
  transition: ease opacity 300ms 100ms;
}

.overlay:hover:before, .overlay.overlay-show:before, .overlay.show:before {
  opacity: 0.8;
}

.overlay.overlay-op-1:hover:before, .overlay.overlay-op-1.overlay-show:before, .overlay.overlay-op-1.show:before {
  opacity: 0.1;
}

.overlay.overlay-op-2:hover:before, .overlay.overlay-op-2.overlay-show:before, .overlay.overlay-op-2.show:before {
  opacity: 0.2;
}

.overlay.overlay-op-3:hover:before, .overlay.overlay-op-3.overlay-show:before, .overlay.overlay-op-3.show:before {
  opacity: 0.3;
}

.overlay.overlay-op-4:hover:before, .overlay.overlay-op-4.overlay-show:before, .overlay.overlay-op-4.show:before {
  opacity: 0.4;
}

.overlay.overlay-op-5:hover:before, .overlay.overlay-op-5.overlay-show:before, .overlay.overlay-op-5.show:before {
  opacity: 0.5;
}

.overlay.overlay-op-6:hover:before, .overlay.overlay-op-6.overlay-show:before, .overlay.overlay-op-6.show:before {
  opacity: 0.6;
}

.overlay.overlay-op-7:hover:before, .overlay.overlay-op-7.overlay-show:before, .overlay.overlay-op-7.show:before {
  opacity: 0.7;
}

.overlay.overlay-op-8:hover:before, .overlay.overlay-op-8.overlay-show:before, .overlay.overlay-op-8.show:before {
  opacity: 0.8;
}

.overlay.overlay-op-9:hover:before, .overlay.overlay-op-9.overlay-show:before, .overlay.overlay-op-9.show:before {
  opacity: 0.9;
}

.overlay.overlay-backward:hover:before, .overlay.overlay-backward.overlay-show:before, .overlay.overlay-backward.show:before {
  z-index: 0;
}

.overlay .container-fluid {
  position: relative;
  z-index: 3;
}

/* Overlay Colors */
.overlay-light:before {
  background-color: #FFF !important;
}

.overlay-dark:before {
  background-color: #282828 !important;
}

/* Navs */
.nav {
  padding-left: 0;
}

.nav > .nav-item > .nav-link {
  color: #282828;
}

.nav > .nav-item > .nav-link.active {
  color: #CCC;
}

.nav > .nav-item > .nav-link:hover, .nav > .nav-item > .nav-link:focus, .nav > .nav-item > .nav-link:active {
  color: #CCC;
}

.nav.no-skin .nav-item .nav-link {
  color: inherit;
}

.nav.nav-light .nav-item .nav-link {
  color: #FFF;
}

.nav.nav-light-2 .nav-item .nav-link {
  color: #d4d4d4;
}

.nav.nav-light-2 .nav-item .nav-link.active, .nav.nav-light-2 .nav-item .nav-link:hover {
  color: #FFF !important;
}

/* Nav Pills */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #FFF;
  background-color: #CCC;
}

/* Nav Secondary */
.nav-secondary {
  z-index: 10;
}

.nav-secondary.nav-secondary-style-1 .nav > li > a {
  position: relative;
  padding-right: 3.2px;
  padding-right: .2rem;
  padding-left: 3.2px;
  padding-left: .2rem;
  margin: 0 16px;
  margin: 0 1rem;
}

.nav-secondary.nav-secondary-style-1 .nav > li > a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 6.4px;
  bottom: 0.4rem;
  left: 50%;
  width: 0%;
  border-bottom: 2px solid #FFF;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  -webkit-transition: ease width 300ms;
  transition: ease width 300ms;
}

.nav-secondary.nav-secondary-style-1 .nav > li > a.active, .nav-secondary.nav-secondary-style-1 .nav > li > a:hover {
  color: #FFF;
}

.nav-secondary.nav-secondary-style-1 .nav > li > a.active:after, .nav-secondary.nav-secondary-style-1 .nav > li > a:hover:after {
  width: 100%;
}

.nav-secondary.nav-secondary-style-2 {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.nav-secondary.nav-secondary-style-2 .nav:hover > li > a.active:hover > span {
  opacity: 1;
  visibility: visible;
}

.nav-secondary.nav-secondary-style-2 .nav:hover > li > a.active > span {
  opacity: 0;
  visibility: hidden;
}

.nav-secondary.nav-secondary-style-2 .nav > li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.nav-secondary.nav-secondary-style-2 .nav > li:last-child {
  margin-bottom: 0;
}

.nav-secondary.nav-secondary-style-2 .nav > li > a {
  position: relative;
  display: block;
  width: 12.8px;
  width: 0.8rem;
  height: 12.8px;
  height: 0.8rem;
  border-radius: 100%;
  border: 1px solid #F7F7F7;
  padding: 0;
}

.nav-secondary.nav-secondary-style-2 .nav > li > a > span {
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
  background: #F7F7F7;
  color: #282828;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3.2px 16px;
  padding: 0.2rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
}

.nav-secondary.nav-secondary-style-2 .nav > li > a > span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #F7F7F7;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.nav-secondary.nav-secondary-style-2 .nav > li > a.active, .nav-secondary.nav-secondary-style-2 .nav > li > a:hover {
  background: #F7F7F7;
}

.nav-secondary.nav-secondary-style-2 .nav > li > a.active > span, .nav-secondary.nav-secondary-style-2 .nav > li > a:hover > span {
  opacity: 1;
  visibility: visible;
}

.nav-secondary.nav-secondary-style-2.nav-secondary-style-2-square .nav > li > a {
  border-radius: 0;
}

@media (max-width: 767px) {
  .nav-secondary.nav-secondary-style-2 .nav > li > a > span {
    display: none;
  }
}

/* IE */
html.ie .nav-secondary.nav-secondary-style-2 {
  right: 15px;
}

/* Buttons */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  border-radius: 5px;
  padding: 11px 25.15px;
  font-family: Poppins !important;
  cursor: pointer;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

/* Buttons Sizes */
.btn-fs-1 {
  font-size: 9.6px !important;
  font-size: 0.6rem !important;
}

.btn-fs-2 {
  font-size: 11.2px !important;
  font-size: 0.7rem !important;
}

.btn-fs-3 {
  font-size: 12.8px !important;
  font-size: 0.8rem !important;
}

.btn-fs-4 {
  font-size: 14.4px !important;
  font-size: 0.9rem !important;
}

.btn-fs-5 {
  font-size: 16px !important;
  font-size: 1rem !important;
}

/* Sizes */
.btn-1 {
  padding: 1.23px 17.23px !important;
  padding: 0.0769230769rem 1.0769230769rem !important;
}

.btn-2 {
  padding: 4.923px 23.384px !important;
  padding: 0.3076923077rem 1.4615384615rem !important;
}

.btn-3 {
  padding: 7.384px 29.538px !important;
  padding: 0.4615384615rem 1.8461538462rem !important;
}

.btn-4 {
  padding: 11.076px 35.692px !important;
  padding: 0.6923076923rem 2.2307692308rem !important;
}

.btn-5 {
  padding: 14.769px 41.846px !important;
  padding: 0.9230769231rem 2.6153846154rem !important;
}

/* Vertical Sizes */
.btn-v-1 {
  padding-top: 2.461px !important;
  padding-top: 0.1538461538rem !important;
  padding-bottom: 2.461px !important;
  padding-bottom: 0.1538461538rem !important;
}

.btn-v-2 {
  padding-top: 7.384px !important;
  padding-top: 0.4615384615rem !important;
  padding-bottom: 7.384px !important;
  padding-bottom: 0.4615384615rem !important;
}

.btn-v-3 {
  padding-top: 11.076px !important;
  padding-top: 0.6923076923rem !important;
  padding-bottom: 11.076px !important;
  padding-bottom: 0.6923076923rem !important;
}

.btn-v-4 {
  padding-top: 14.769px !important;
  padding-top: 0.9230769231rem !important;
  padding-bottom: 14.769px !important;
  padding-bottom: 0.9230769231rem !important;
}

.btn-v-5 {
  padding-top: 18.461px !important;
  padding-top: 1.1538461538rem !important;
  padding-bottom: 18.461px !important;
  padding-bottom: 1.1538461538rem !important;
}

/* Horizontal Sizes */
.btn-h-1 {
  padding-left: 17.23px !important;
  padding-left: 1.0769230769rem !important;
  padding-right: 17.23px !important;
  padding-right: 1.0769230769rem !important;
}

.btn-h-2 {
  padding-left: 29.538px !important;
  padding-left: 1.8461538462rem !important;
  padding-right: 29.538px !important;
  padding-right: 1.8461538462rem !important;
}

.btn-h-3 {
  padding-left: 41.846px !important;
  padding-left: 2.6153846154rem !important;
  padding-right: 41.846px !important;
  padding-right: 2.6153846154rem !important;
}

.btn-h-4 {
  padding-left: 54.153px !important;
  padding-left: 3.3846153846rem !important;
  padding-right: 54.153px !important;
  padding-right: 3.3846153846rem !important;
}

.btn-h-5 {
  padding-left: 66.461px !important;
  padding-left: 4.1538461538rem !important;
  padding-right: 66.461px !important;
  padding-right: 4.1538461538rem !important;
}

/* Wide Buttons */
.btn-wide-1 {
  padding: 14.769px 35.692px !important;
  padding: 0.9230769231rem 2.2307692308rem !important;
}

.btn-wide-2 {
  padding: 14.769px 48px !important;
  padding: 0.9230769231rem 3rem !important;
}

.btn-wide-3 {
  padding: 14.769px 60.307px !important;
  padding: 0.9230769231rem 3.7692307692rem !important;
}

.btn-wide-4 {
  padding: 14.769px 72.615px !important;
  padding: 0.9230769231rem 4.5384615385rem !important;
}

.btn-wide-5 {
  padding: 14.769px 97.23px !important;
  padding: 0.9230769231rem 6.0769230769rem !important;
}

/* Button Block */
.btn-block {
  display: block;
}

/* Border Buttons */
.btn-rounded {
  border-radius: 50px;
}

/* Outline Buttons */
.btn-outline {
  border-width: 2px;
  border-radius: 50px;
}

/* Button With Icon Effect 1 */
.btn-icon-effect-1 .wrap {
  position: relative;
}

.btn-icon-effect-1 .wrap span {
  position: relative;
  display: inline-block;
  width: 100%;
  left: 0;
  -webkit-transition: ease left 300ms;
  transition: ease left 300ms;
}

.btn-icon-effect-1 .wrap i, .btn-icon-effect-1 .wrap strong {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  font-size: 17.6px;
  font-size: 1.1rem;
  max-width: 20px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: ease right 300ms, ease opacity 300ms;
  transition: ease right 300ms, ease opacity 300ms;
}

.btn-icon-effect-1:hover .wrap span {
  left: -14px;
}

.btn-icon-effect-1:hover .wrap i, .btn-icon-effect-1:hover .wrap strong {
  opacity: 1;
  right: -14px;
}

/* Button With Icon Effect 2 */
.btn-icon-effect-2 {
  position: relative;
  overflow: hidden;
}

.btn-icon-effect-2 span {
  display: inline-block;
  -webkit-transition: ease transform 300ms, ease opacity 300ms;
  transition: ease transform 300ms, ease opacity 300ms;
}

.btn-icon-effect-2 i {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  font-size: 1.5em;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  -webkit-transition: ease transform 300ms, ease opacity 300ms;
  transition: ease transform 300ms, ease opacity 300ms;
}

.btn-icon-effect-2:hover span {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.btn-icon-effect-2:hover i {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Button Group */
.btn-group > .btn-group:not(:first-child) > .btn > strong,
.btn-group > .btn:not(:first-child) > strong {
  position: relative;
  left: -3px;
}

.btn-group.btn-group-style-1 > .btn:first-child {
  z-index: 10;
  margin-right: -3.5em;
}

.btn-group.btn-group-style-1 > .btn-outline:last-child {
  padding-left: 5.5em !important;
}

.btn-group.btn-group-style-1 > .btn-rounded, .btn-group.btn-group-style-1 > .btn-outline {
  position: relative;
  border-radius: 50px !important;
}

.btn-group.btn-group-style-1:hover > .btn:first-child {
  -webkit-box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.1);
}

.btn-group.btn-group-style-2 > .btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Buttons Colors */
.btn-light,
html.sticky-header-active .btn-sticky-light {
  border-color: #FFF;
  color: #282828;
  background-color: #FFF;
}

.btn-light:hover, .btn-light:focus,
html.sticky-header-active .btn-sticky-light:hover,
html.sticky-header-active .btn-sticky-light:focus {
  border-color: white;
  background-color: #f9f9f9;
  color: #282828;
}

.btn-light:focus,
html.sticky-header-active .btn-sticky-light:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.btn-light:disabled, .btn-light:disabled:hover, .btn-light:disabled:active, .btn-light:disabled:focus, .btn-light.disabled, .btn-light.disabled:hover, .btn-light.disabled:active, .btn-light.disabled:focus,
html.sticky-header-active .btn-sticky-light:disabled,
html.sticky-header-active .btn-sticky-light:disabled:hover,
html.sticky-header-active .btn-sticky-light:disabled:active,
html.sticky-header-active .btn-sticky-light:disabled:focus,
html.sticky-header-active .btn-sticky-light.disabled,
html.sticky-header-active .btn-sticky-light.disabled:hover,
html.sticky-header-active .btn-sticky-light.disabled:active,
html.sticky-header-active .btn-sticky-light.disabled:focus {
  cursor: default;
  border-color: #FFF !important;
  color: #282828 !important;
  background-color: #FFF !important;
}

.btn-light.btn-outline,
html.sticky-header-active .btn-sticky-light.btn-outline {
  background: transparent;
  border-color: #FFF;
  color: #FFF;
}

.btn-light.btn-outline:hover, .btn-light.btn-outline:focus,
html.sticky-header-active .btn-sticky-light.btn-outline:hover,
html.sticky-header-active .btn-sticky-light.btn-outline:focus {
  border-color: white;
  background-color: #FFF;
  color: #282828;
}

.btn-light.btn-outline:focus,
html.sticky-header-active .btn-sticky-light.btn-outline:focus {
  -webkit-box-shadow: 0 0 0 3px fade(#FFF, 25%);
  box-shadow: 0 0 0 3px fade(#FFF, 25%);
}

.btn-light.btn-outline:disabled, .btn-light.btn-outline:disabled:hover, .btn-light.btn-outline:disabled:active, .btn-light.btn-outline:disabled:focus, .btn-light.btn-outline.disabled, .btn-light.btn-outline.disabled:hover, .btn-light.btn-outline.disabled:active, .btn-light.btn-outline.disabled:focus,
html.sticky-header-active .btn-sticky-light.btn-outline:disabled,
html.sticky-header-active .btn-sticky-light.btn-outline:disabled:hover,
html.sticky-header-active .btn-sticky-light.btn-outline:disabled:active,
html.sticky-header-active .btn-sticky-light.btn-outline:disabled:focus,
html.sticky-header-active .btn-sticky-light.btn-outline.disabled,
html.sticky-header-active .btn-sticky-light.btn-outline.disabled:hover,
html.sticky-header-active .btn-sticky-light.btn-outline.disabled:active,
html.sticky-header-active .btn-sticky-light.btn-outline.disabled:focus {
  background: transparent !important;
  border-color: #FFF !important;
  color: #FFF !important;
}

.btn-dark,
html.sticky-header-active .btn-sticky-dark {
  border-color: #282828;
  color: #FFF;
  background-color: #282828;
}

.btn-dark:hover, .btn-dark:focus,
html.sticky-header-active .btn-sticky-dark:hover,
html.sticky-header-active .btn-sticky-dark:focus {
  border-color: #33393d;
  background-color: #33393d;
  color: #FFF;
}

.btn-dark:focus,
html.sticky-header-active .btn-sticky-dark:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(28, 31, 33, 0.25);
  box-shadow: 0 0 0 3px rgba(28, 31, 33, 0.25);
}

.btn-dark:disabled, .btn-dark:disabled:hover, .btn-dark:disabled:active, .btn-dark:disabled:focus, .btn-dark.disabled, .btn-dark.disabled:hover, .btn-dark.disabled:active, .btn-dark.disabled:focus,
html.sticky-header-active .btn-sticky-dark:disabled,
html.sticky-header-active .btn-sticky-dark:disabled:hover,
html.sticky-header-active .btn-sticky-dark:disabled:active,
html.sticky-header-active .btn-sticky-dark:disabled:focus,
html.sticky-header-active .btn-sticky-dark.disabled,
html.sticky-header-active .btn-sticky-dark.disabled:hover,
html.sticky-header-active .btn-sticky-dark.disabled:active,
html.sticky-header-active .btn-sticky-dark.disabled:focus {
  cursor: default;
  border-color: #282828 !important;
  color: #FFF !important;
  background-color: #282828 !important;
}

.btn-dark.btn-outline,
html.sticky-header-active .btn-sticky-dark.btn-outline {
  background: transparent;
  border-color: #282828;
  color: #282828;
}

.btn-dark.btn-outline:hover, .btn-dark.btn-outline:focus,
html.sticky-header-active .btn-sticky-dark.btn-outline:hover,
html.sticky-header-active .btn-sticky-dark.btn-outline:focus {
  border-color: #050505;
  background-color: #282828;
  color: #FFF;
}

.btn-dark.btn-outline:focus,
html.sticky-header-active .btn-sticky-dark.btn-outline:focus {
  -webkit-box-shadow: 0 0 0 3px fade(#282828, 25%);
  box-shadow: 0 0 0 3px fade(#282828, 25%);
}

.btn-dark.btn-outline:disabled, .btn-dark.btn-outline:disabled:hover, .btn-dark.btn-outline:disabled:active, .btn-dark.btn-outline:disabled:focus, .btn-dark.btn-outline.disabled, .btn-dark.btn-outline.disabled:hover, .btn-dark.btn-outline.disabled:active, .btn-dark.btn-outline.disabled:focus,
html.sticky-header-active .btn-sticky-dark.btn-outline:disabled,
html.sticky-header-active .btn-sticky-dark.btn-outline:disabled:hover,
html.sticky-header-active .btn-sticky-dark.btn-outline:disabled:active,
html.sticky-header-active .btn-sticky-dark.btn-outline:disabled:focus,
html.sticky-header-active .btn-sticky-dark.btn-outline.disabled,
html.sticky-header-active .btn-sticky-dark.btn-outline.disabled:hover,
html.sticky-header-active .btn-sticky-dark.btn-outline.disabled:active,
html.sticky-header-active .btn-sticky-dark.btn-outline.disabled:focus {
  background: transparent !important;
  border-color: #282828 !important;
  color: #282828 !important;
}

/* Button Dots */
.btn-dots {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 0.2;
  padding-top: 0;
  padding-bottom: 19.2px;
  padding-bottom: 1.2rem;
}

/* Colorpicker Button */
.colorpicker-button-style-1 {
  padding: 11.2px 32px 11.2px 48px;
  padding: 0.7rem 2rem 0.7rem 3rem;
  margin-left: -22.4px;
  margin-left: -1.4rem;
}

/* Btn Pull Down */
.btn-pull-down {
  position: relative;
  top: 20px;
}

/* Badges */
.badge.badge-xs {
  padding: 0.3em 0.5em;
}

.badge.badge-sm {
  padding: 0.5em 0.8em;
}

.badge.badge-md {
  padding: 1em 1.6em;
  font-size: 85%;
}

.badge.badge-lg {
  padding: 1.5em 2em;
  font-size: 90%;
}

.badge.badge-xl {
  padding: 2em 2.5em;
  font-size: 100%;
}

/* Shop Badges */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  z-index: 1;
}

.product-badge > span {
  font-size: 11.2px;
  font-size: 0.7rem;
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1.6px 14.4px;
  padding: 0.1rem 0.9rem;
  border-radius: 4px;
  min-width: 57px;
  display: block;
}

.product-badge > span.discount {
  background-color: #2186EB;
}

.product-badge > span.hot {
  background-color: #F73B3B;
}

.product-badge + .product-badge {
  top: 40px;
}

/* Forms */
.form-control {
  border-color: #dbdbdb;
  font-size: 14px;
  padding: 9px 13px;
  line-height: 25px;
  height: auto !important;
  border-radius: 5px;
}

/* Form Control */
.form-control:not(.form-control-lg) {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
}

.form-control:not(.form-control-sm):not(.form-control-lg) {
  font-size: 14px;
  line-height: 25px;
}

.form-control.form-control-focused {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  border-color: #e2e2e2;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ced4da;
}

.form-control.error {
  border-color: rgba(181, 81, 79, 0.3);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-control.error:focus {
  border-color: rgba(181, 81, 79, 0.3);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* Form Control Errors Light */
.form-errors-light .form-control.error {
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-errors-light .form-control.error:focus {
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(255, 255, 255, 0.3);
}

.form-errors-light label.error {
  color: #FFF;
}

/* Transparent Fields */
form.transparent-fields .form-control {
  background: transparent;
  border-bottom: 1px solid #353535;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  color: #ababab;
  font-weight: 100;
  font-size: 14.4px;
  font-size: 0.9rem;
}

form.transparent-fields .form-control::-webkit-input-placeholder {
  color: #FFF;
}

form.transparent-fields .form-control::-moz-placeholder {
  color: #FFF;
}

form.transparent-fields .form-control:-ms-input-placeholder {
  color: #FFF;
}

form.transparent-fields .form-control:focus {
  border-bottom-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Form Style 2 */
form.form-style-2 .form-control {
  background-color: #f1f3f7;
}

/* Form Style 3 */
form.form-style-3 .form-control {
  background-color: rgba(255, 255, 255, 0.13);
  color: #FFF;
}

form.form-style-3 .form-control::-webkit-input-placeholder {
  color: #FFF;
}

form.form-style-3 .form-control::-moz-placeholder {
  color: #FFF;
}

form.form-style-3 .form-control:-ms-input-placeholder {
  color: #FFF;
}

form.form-style-3 .form-control.form-control-focused {
  border-color: rgba(226, 226, 226, 0.4);
}

form.form-style-3 .form-control:focus {
  border-color: rgba(226, 226, 226, 0.4);
}

/* Contact Form - Dark Style */
.contact-form-dark .form-control {
  background-color: #222527;
  color: #FFF;
}

.contact-form-dark .form-control.form-control-focused {
  border-color: rgba(226, 226, 226, 0.1);
}

.contact-form-dark .form-control:focus {
  border-color: rgba(226, 226, 226, 0.1);
}

/* Forms Validations */
label.valid {
  display: inline-block;
  text-indent: -9999px;
}

label.error {
  color: #c10000;
  font-size: 0.9em;
  line-height: 18px;
  padding: 5px 0 0;
}

label.error#captcha-error {
  margin-top: 15px;
}

/* Custom Checkbox */
.checkbox-custom {
  position: relative;
  padding: 0 0 0 25px;
  margin-bottom: 7px;
  margin-top: 0;
}

.checkbox-custom.form-check .form-check-input {
  margin-left: 0;
}

.checkbox-custom.form-check .form-check-label {
  padding-left: 0;
}

.checkbox-custom.checkbox-inline {
  display: inline-block;
  vertical-align: middle;
}

.form-group .checkbox-custom.checkbox-inline {
  margin-top: 7px;
  padding-top: 0;
}

.checkbox-custom:last-child, .checkbox-custom:last-of-type {
  margin-bottom: 0;
}

.checkbox-custom input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 3px;
  margin: -6px 0 0 0;
  z-index: 2;
  cursor: pointer;
}

.checkbox-custom input[type="checkbox"]:checked + label:after {
  position: absolute;
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  content: '\F00C';
  top: 50%;
  left: 4px;
  margin-top: -5px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  width: 16px;
  height: 16px;
  color: #333;
}

.checkbox-custom input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

.checkbox-custom input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled + label:before {
  background-color: #eee;
}

.checkbox-custom label {
  cursor: pointer;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.5;
}

.checkbox-custom label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
  width: 19px;
  height: 18px;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid #dadada;
  background: #fff;
}

.checkbox-custom label + label.error {
  display: block;
}

.checkbox-custom.checkbox-custom-transparent label:before {
  background: transparent;
}

.checkbox-custom.checkbox-custom-transparent input[type="checkbox"]:checked + label:after {
  color: #FFF;
}

.checkbox-custom.checkbox-custom-transparent input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

/* Custom Radio */
.radio-custom {
  position: relative;
  padding: 0 0 0 25px;
  margin-bottom: 7px;
  margin-top: 0;
}

.radio-custom.radio-inline {
  display: inline-block;
  vertical-align: middle;
}

.form-group .radio-custom.radio-inline {
  margin-top: 7px;
  padding-top: 0;
}

.radio-custom:last-child, .radio-custom:last-of-type {
  margin-bottom: 0;
}

.radio-custom input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 3px;
  margin: -6px 0 0 0;
  z-index: 2;
  cursor: pointer;
}

.radio-custom input[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -5px;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  width: 10px;
  height: 10px;
  background-color: #444;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 1px #444;
  box-shadow: 0px 0px 1px #444;
}

.radio-custom input[type="radio"]:disabled {
  cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled:checked + label:after {
  color: #999;
}

.radio-custom input[type="radio"]:disabled + label {
  cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled + label:before {
  background-color: #eee;
}

.radio-custom label {
  cursor: pointer;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.2;
}

.radio-custom label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #bbb;
  background: #fff;
}

.radio-custom label + label.error {
  display: block;
}

/* Select */
.custom-select-1 {
  position: relative;
}

.custom-select-1:before {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  display: block;
  top: 11px;
  right: 18px;
  color: #b5b5b5;
  font-weight: 900;
  pointer-events: none;
}

.custom-select-1 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/* Colorpicker */
.colorpicker-element .input-group-addon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 12px;
  padding: .375rem .75rem;
  margin-bottom: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  background-color: #E5E5E5;
  border: 1px solid #ced4da;
  border-radius: 0 .25rem .25rem 0;
  border-left: 0;
}

.colorpicker-element .input-group-addon i {
  width: 22px;
  height: 22px;
}

.colorpicker-element .input-group-addon i.colorpicker-default-color {
  background-color: #272422 !important;
}

.colorpicker-element .add-on i {
  width: 22px;
  height: 22px;
}

.colorpicker-element .form-control {
  border: 0;
  border-radius: 50px 0 0 50px;
  line-height: 1.6 !important;
  padding-left: 20.8px;
  padding-left: 1.3rem;
  padding-right: 20.8px;
  padding-right: 1.3rem;
}

.colorpicker-element .form-control.left-rounded {
  border-radius: 4px 0 0 4px;
  padding-left: 8px;
  padding-left: 0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}

@media (max-width: 576px) {
  .colorpicker-element .d-flex.align-items-stretch {
    display: block !important;
  }

  .colorpicker-element .colorpicker-button-style-1 {
    margin: 10px 0 0;
  }

  .colorpicker-element .input-group-addon {
    border-radius: 0 50px 50px 0 !important;
  }
}

@media (max-width: 576px) {
  .skin-color-picker .d-flex.align-items-stretch {
    display: block !important;
  }

  .skin-color-picker .align-self-sm-center {
    text-align: center;
  }

  .skin-color-picker .colorpicker-button-style-1 {
    margin: 10px 0 0;
    padding: 0.5rem 2.8rem 0.5rem 3rem;
  }

  .skin-color-picker .input-group-addon {
    border-radius: 0 50px 50px 0 !important;
  }
}

/* Tables */
.table-active {
  color: #fff;
}

.table-active > td, .table-active > th {
  color: #fff;
}

/* Table Dark */
.table-dark > td,
.table-dark > th {
  background: transparent;
}

/* Icons */
[data-icon],
.animated-icon {
  position: relative;
  opacity: 0;
}

.sample-icon {
  line-height: 40px;
  font-size: 11px;
}

.sample-icon .fa, .sample-icon .fas, .sample-icon .far, .sample-icon .fal, .sample-icon .fab, .sample-icon .sl, .sample-icon .lnr {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  text-align: center;
  width: 32px;
  color: #282828;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 1px;
}

.sample-icon:hover .fa, .sample-icon:hover .fas, .sample-icon:hover .far, .sample-icon:hover .fal, .sample-icon:hover .fab, .sample-icon:hover .sl, .sample-icon:hover .lnr {
  font-size: 28px;
  top: 5px;
}

.sample-icon .sl {
  font-size: 18px;
  top: 4px;
}

.sample-icon:hover .sl {
  font-size: 24px;
}

.sample-icon.sample-icon-sl {
  line-height: 50px;
}

.sample-icon .lnr {
  font-size: 18px;
  top: 4px;
}

.sample-icon:hover .lnr {
  font-size: 24px;
}

.sample-icon.sample-icon-lnr {
  line-height: 50px;
}

/* Image */
.object-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.img-thumbnail-small {
  max-width: 25px;
}

.img-thumbnail-medium {
  max-width: 80px;
}

.img-thumbnail-big {
  max-width: 125px;
}

/* Image Frames */
.image-frame {
  position: relative;
  display: block;
  text-decoration: none;
  max-width: 100%;
  z-index: 0;
  /* Image Frames Styles */
}

.image-frame img {
  position: relative;
  z-index: 1;
}

.image-frame .image-frame-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.image-frame .image-frame-wrapper > img {
  -webkit-transition: ease transform 300ms;
  transition: ease transform 300ms;
}

.image-frame .image-frame-wrapper .image-frame-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.image-frame .image-frame-wrapper .image-frame-inner-border {
  position: absolute;
  top: 13px;
  right: 13px;
  bottom: 13px;
  left: 13px;
  border: solid rgba(255, 255, 255, 0.1);
  border-width: 0;
  z-index: 2;
  -webkit-transition: ease border-width 300ms 200ms;
  transition: ease border-width 300ms 200ms;
}

.image-frame .image-frame-wrapper .image-frame-action {
  position: absolute;
  opacity: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: ease opacity 300ms 100ms;
  transition: ease opacity 300ms 100ms;
}

.image-frame .image-frame-wrapper .image-frame-action .image-frame-action-icon {
  display: block;
  color: #FFF;
  font-size: 1.2307692308em;
  line-height: 2.9230769231em;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100%;
  width: 2.9230769231em;
  height: 2.9230769231em;
  text-align: center;
  margin: 3.2px;
  margin: 0.2rem;
}

.image-frame .image-frame-wrapper .image-frame-action.image-frame-action-absolute-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.image-frame .image-frame-wrapper .image-frame-action.image-frame-action-style-2 .image-frame-action-icon {
  border: 0;
  background: rgba(28, 31, 33, 0.95);
  border-radius: 0;
}

.image-frame .image-frame-wrapper .image-frame-action.image-frame-action-effect-1 .image-frame-action-icon {
  -webkit-transition: ease transform 200ms;
  transition: ease transform 200ms;
}

.image-frame .image-frame-wrapper .image-frame-action.image-frame-action-effect-1 .image-frame-action-icon:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.image-frame .image-frame-wrapper .image-frame-action.image-frame-action-sm .image-frame-action-icon {
  font-size: 0.9230769231em;
}

.image-frame .image-frame-wrapper .image-frame-action.image-frame-action-md .image-frame-action-icon {
  font-size: 1.0769230769em;
}

.image-frame .image-frame-wrapper .image-frame-info {
  position: absolute;
  width: 100%;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: ease opacity 300ms 100ms;
  transition: ease opacity 300ms 100ms;
}

.image-frame .image-frame-wrapper .image-frame-info.image-frame-info-show {
  opacity: 1;
}

.image-frame .image-frame-wrapper .image-frame-info-box-style-1 {
  background: #FFF;
  padding: 10px 20px;
  text-align: center;
  display: block;
  font-family: Poppins !important;
}

.image-frame .image-frame-wrapper .image-frame-info-box-style-2 {
  max-width: 70%;
  margin: 0 auto;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.image-frame .image-frame-wrapper .image-frame-info-box-style-2 .image-frame-info-box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}

.image-frame .image-frame-wrapper .image-frame-info-box-style-2 .image-frame-info-box-title > span {
  position: relative;
  font-size: 56px;
  font-size: 3.5rem;
  -ms-flex-item-align: end;
  align-self: flex-end;
  left: -4px;
  top: -4px;
}

.image-frame .image-frame-wrapper .image-frame-info-box-style-2 .image-frame-info-box-title > span:after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  top: 65%;
  background: #FFF;
}

.image-frame .image-frame-wrapper .image-frame-info-box-style-2 > p {
  padding: 32px 41.6px 32px;
  padding: 2rem 2.6rem 2rem;
  margin-top: -35.2px;
  margin-top: -2.2rem;
}

@media (min-width: 992px) and (max-width: 1300px) {
  .image-frame .image-frame-wrapper .image-frame-info-box-style-2 {
    max-width: 95%;
  }
}

@media (max-width: 1199px) {
  .image-frame .image-frame-wrapper .image-frame-info-box-style-2 > p {
    padding: 2rem 0.8rem 1rem;
  }
}

.image-frame .image-frame-wrapper .image-frame-bottom-bar {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #2E3237;
  z-index: 2;
  -webkit-transition: ease transform 300ms;
  transition: ease transform 300ms;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.image-frame .image-frame-wrapper .image-frame-bottom-bar .image-frame-bottom-bar-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  opacity: 0;
  -webkit-transition: ease opacity 300ms 300ms;
  transition: ease opacity 300ms 300ms;
}

.image-frame .image-frame-wrapper .image-frame-bottom-bar .image-frame-bottom-bar-action {
  display: block;
  color: #FFF;
  font-size: 1.2307692308em;
  line-height: 2.4615384615em;
  border: 1px solid rgba(72, 72, 72, 0.85);
  border-radius: 100%;
  width: 2.4615384615em;
  height: 2.4615384615em;
  text-align: center;
  margin: 3.2px;
  margin: 0.2rem;
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: ease opacity 300ms 300ms, ease transform 300ms;
  transition: ease opacity 300ms 300ms, ease transform 300ms;
}

.image-frame .image-frame-wrapper .image-frame-bottom-bar .image-frame-bottom-bar-action:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.image-frame .image-frame-wrapper .image-frame-bottom-bar.image-frame-bottom-bar-style-2 {
  background: -webkit-gradient(linear, left bottom, left top, from(#2E3237), to(rgba(241, 243, 247, 0)));
  background: linear-gradient(to top, #2E3237, rgba(241, 243, 247, 0));
}

.image-frame:hover .image-frame-info {
  opacity: 1;
}

.image-frame:hover .image-frame-bottom-bar {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.image-frame:hover .image-frame-bottom-bar .image-frame-bottom-bar-info,
.image-frame:hover .image-frame-bottom-bar .image-frame-bottom-bar-action {
  opacity: 1;
}

.image-frame.image-frame-border {
  border: 1px solid rgba(28, 31, 33, 0.1);
}

.image-frame.image-frame-style-1 {
  background-color: #FFF;
}

.image-frame.image-frame-style-1 .image-frame-wrapper:after {
  content: "";
  position: absolute;
  display: block;
  background: rgba(28, 31, 33, 0.8);
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  bottom: -4px;
  color: #FFF;
  left: -4px;
  right: -4px;
  top: -4px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.image-frame.image-frame-style-1 .image-frame-wrapper.image-frame-wrapper-overlay-bottom:after {
  top: auto;
  height: 30%;
}

.image-frame.image-frame-style-1 .image-frame-wrapper.image-frame-wrapper-overlay-light:after {
  background: rgba(255, 255, 255, 0.8);
}

.image-frame.image-frame-style-1 .image-frame-wrapper.image-frame-wrapper-justify-left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.image-frame.image-frame-style-1 .image-frame-wrapper.image-frame-wrapper-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.image-frame.image-frame-style-1 .image-frame-wrapper.image-frame-wrapper-align-end .image-frame-action {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 30%;
  margin-bottom: -4px;
}

.image-frame.image-frame-style-1.image-frame-effect-1:hover .image-frame-wrapper:after {
  opacity: 1;
}

.image-frame.image-frame-style-1.image-frame-effect-1:hover .image-frame-wrapper > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.image-frame.image-frame-style-1.image-frame-effect-1:hover .image-frame-wrapper .image-frame-inner-border {
  border-width: 10px;
  -webkit-transition: ease border-width 300ms 200ms;
  transition: ease border-width 300ms 200ms;
}

.image-frame.image-frame-style-1.image-frame-effect-1:hover .image-frame-wrapper .image-frame-action {
  opacity: 1;
}

.image-frame.image-frame-style-1.image-frame-effect-2 .image-frame-wrapper:after {
  -webkit-transition: ease all 100ms;
  transition: ease all 100ms;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}

.image-frame.image-frame-style-1.image-frame-effect-2 .image-frame-wrapper .image-frame-action {
  opacity: 0;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}

.image-frame.image-frame-style-1.image-frame-effect-2:hover .image-frame-wrapper:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.image-frame.image-frame-style-1.image-frame-effect-2:hover .image-frame-wrapper .image-frame-action {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.image-frame.image-frame-style-2:after, .image-frame.image-frame-style-3:after, .image-frame.image-frame-style-4:after {
  content: ' ';
  position: absolute;
  top: 13px;
  right: 13px;
  bottom: 13px;
  left: 13px;
  border: 5px solid #FFF;
  z-index: 3;
}

.image-frame.image-frame-style-3 {
  overflow: hidden;
}

.image-frame.image-frame-style-3:after {
  bottom: -15px;
}

.image-frame.image-frame-style-3 .image-frame-wrapper .image-frame-info {
  padding-top: 15px;
}

.image-frame.image-frame-style-4 {
  overflow: hidden;
}

.image-frame.image-frame-style-4:after {
  top: -15px;
}

.image-frame.image-frame-style-4 .image-frame-wrapper .image-frame-info {
  padding-bottom: 15px;
}

.image-frame.image-frame-style-5 {
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.image-frame.image-frame-style-5.image-frame-effect-1:hover .image-frame-wrapper:after {
  opacity: 1;
}

.image-frame.image-frame-style-5.image-frame-effect-1:hover .image-frame-wrapper > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.image-frame.image-frame-style-5.image-frame-effect-1:hover .image-frame-wrapper .image-frame-inner-border {
  border-width: 10px;
  -webkit-transition: ease border-width 300ms 200ms;
  transition: ease border-width 300ms 200ms;
}

.image-frame.image-frame-style-5.image-frame-effect-1:hover .image-frame-wrapper .image-frame-action {
  opacity: 1;
}

.image-frame.image-frame-style-6 img {
  position: relative;
  z-index: 2;
  border: 4px solid #FFF;
}

.image-frame.image-frame-style-6:before {
  background: #252a2c none repeat scroll 0 0;
  border-radius: 50%;
  bottom: -5px;
  content: " ";
  -webkit-filter: blur(2px);
  filter: blur(2px);
  height: 10px;
  left: -10px;
  opacity: 0.1;
  position: absolute;
  right: -10px;
  z-index: 1;
}

.image-frame.image-frame-style-7 {
  padding: 4px;
  border: 5px solid #777;
  border-radius: 50%;
}

.image-frame.image-frame-style-8 .image-frame-action-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: ease transform 300ms;
  transition: ease transform 300ms;
}

.image-frame.image-frame-style-8:hover .image-frame-action, .image-frame.image-frame-style-8.show .image-frame-action {
  opacity: 1;
}

.image-frame.image-frame-style-8:hover .image-frame-action-bottom, .image-frame.image-frame-style-8.show .image-frame-action-bottom {
  -webkit-transform: none;
  transform: none;
}

/* Hover Effect 3d */
.hover-effect-3d .image-frame-style-1 {
  will-change: box-shadow;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms;
}

.hover-effect-3d .image-frame-style-1:hover {
  -webkit-box-shadow: 0px 17px 20px -15px rgba(28, 31, 33, 0.6);
  box-shadow: 0px 17px 20px -15px rgba(28, 31, 33, 0.6);
}

.hover-effect-3d .image-frame-style-1 .image-frame-action .image-frame-action-icon {
  pointer-events: none;
}

/* IE */
html.ie {
  /* Image Frames */
  /* Image Frame Inside Carousel */
}

html.ie .image-frame {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

html.ie .image-frame .image-frame-wrapper img,
html.ie .image-frame .image-frame-wrapper a > img {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

html.ie .image-frame .image-frame-wrapper .image-frame-info {
  position: relative;
  left: -100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

html.ie .image-frame .image-frame-wrapper .image-frame-info-box-style-2 {
  margin: 0;
}

html.ie .image-frame .image-frame-wrapper .image-frame-action {
  position: relative;
  left: -100%;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

html.ie .image-frame .image-frame-wrapper .image-frame-background + .image-frame-info, html.ie .image-frame .image-frame-wrapper .image-frame-background + .image-frame-inner-border + .image-frame-action {
  left: 0;
}

html.ie .image-frame.image-frame-style-1 .image-frame-wrapper.image-frame-wrapper-align-end .image-frame-action {
  height: 30%;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

html.ie .image-frame.image-frame-effect-2 .image-frame-wrapper .image-frame-action:not(.image-frame-action-style-2) {
  position: absolute;
  left: 0;
  bottom: 0;
}

html.ie .owl-carousel .image-frame .image-frame-wrapper img,
html.ie .owl-carousel .image-frame .image-frame-wrapper a > img {
  z-index: -1;
}

/* Input Group Styles */
.input-group.input-group-style-1 .form-control {
  background: transparent;
  border-width: 2px;
  border-color: #FFF;
  border-style: solid;
  color: #FFF;
}

.input-group.input-group-style-1 .form-control::-webkit-input-placeholder {
  color: #e2e2e2;
}

.input-group.input-group-style-1 .form-control::-moz-placeholder {
  color: #e2e2e2;
}

.input-group.input-group-style-1 .form-control:-ms-input-placeholder {
  color: #e2e2e2;
}

.input-group.input-group-style-1 .form-control:hover, .input-group.input-group-style-1 .form-control:focus {
  z-index: 2;
}

.input-group.input-group-style-1 .form-control:not(:last-child) {
  border-radius: 50px 0 0 50px;
  padding-right: 65px;
  padding-left: 20px;
}

.input-group.input-group-style-1 .form-control:not(:first-child) {
  border-radius: 0 50px 50px 0;
  padding-left: 65px;
  padding-right: 20px;
}

.input-group.input-group-style-1 .input-group-btn {
  z-index: 2;
}

.input-group.input-group-style-1 .input-group-btn .btn {
  height: 100%;
}

.input-group.input-group-style-1 .input-group-btn:not(:last-child) .btn {
  border-radius: 50px !important;
  margin-right: -50px;
  border-width: 2px;
  border-color: #FFF;
  border-style: solid;
  z-index: 3;
}

.input-group.input-group-style-1 .input-group-btn:not(:first-child) .btn {
  border-radius: 50px !important;
  margin-left: -50px;
  border-width: 2px;
  border-color: #FFF;
  border-style: solid;
}

.input-group.input-group-style-2 {
  position: relative;
}

.input-group.input-group-style-2 .form-control {
  padding-right: 45px;
}

.input-group.input-group-style-2 .input-group-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 3;
}

.input-group.input-group-style-2 .input-group-btn button,
.input-group.input-group-style-2 .input-group-btn input {
  height: 100%;
  background: transparent !important;
  border: none;
  border-radius: 0;
}

.input-group.input-group-style-2 .input-group-btn button:focus, .input-group.input-group-style-2 .input-group-btn button:active,
.input-group.input-group-style-2 .input-group-btn input:focus,
.input-group.input-group-style-2 .input-group-btn input:active {
  background: #e0e0e0 !important;
}

.input-group.input-group-style-3 {
  position: relative;
}

.input-group.input-group-style-3 .form-control {
  padding-right: 155px;
}

.input-group.input-group-style-3 .input-group-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 150px;
  height: 100%;
  background: transparent !important;
  z-index: 3;
}

.input-group.input-group-style-3 .input-group-btn button,
.input-group.input-group-style-3 .input-group-btn input {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  border: none;
}

.input-group-btn:not(:first-child) > .btn-group:first-child,
.input-group-btn:not(:first-child) > .btn:first-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* List */
.list li > a + .list {
  padding-left: 44.8px;
  padding-left: 2.8rem;
}

.list li > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 3.2px;
  margin-right: 0.2rem;
}

.list:not(.list-unstyled) li:not(.list-group-item) {
  margin-bottom: 0.25em;
}

.list:not(.list-unstyled) ul {
  margin-top: 0.25em;
  margin-bottom: 0.5em;
}

.list:not(.list-unstyled).list-style-1 {
  list-style: outside none none;
  padding-left: 0;
}

.list:not(.list-unstyled).list-style-1 li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  padding-left: 22px;
  position: relative;
}

.list:not(.list-unstyled).list-style-1 li:before {
  content: ' ';
  display: block;
  width: 12px;
  height: 1px;
  border-bottom: 1px solid #282828;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list:not(.list-unstyled).list-light li {
  color: #e2e2e2;
}

.list:not(.list-unstyled).list-light li:before {
  border-color: #e2e2e2;
}

/* List Icon */
.list-icon li {
  position: relative;
  padding-left: 20.8px;
  padding-left: 1.3rem;
}

.list-icon li > i {
  position: absolute;
  left: 0;
  top: 7px;
}

/* List Icons Size */
.list.list-icons-size-1 li > i {
  font-size: 16px;
  font-size: 1rem;
}

.list.list-icons-size-2 li > i {
  font-size: 20px;
  font-size: 1.25rem;
}

.list.list-icons-size-3 li > i {
  font-size: 24px;
  font-size: 1.50rem;
}

.list.list-icons-size-4 li > i {
  font-size: 28px;
  font-size: 1.75rem;
}

.list.list-icons-size-5 li > i {
  font-size: 32px;
  font-size: 2rem;
}

/* List Borders */
.list.list-borders li {
  border-bottom: 1px solid #DBDBDB;
  margin-top: 9px;
  margin-bottom: 0;
  padding-bottom: 9px;
}

.list.list-borders li:last-child {
  border-bottom: 0;
}

/* List Filter */
.list.list-filter li {
  margin-bottom: 10px !important;
}

.list.list-filter li a {
  border: 1px solid #dadada;
  padding: 4.8px 6.4px;
  padding: 0.3rem 0.4rem;
  min-width: 40px;
  display: inline-block;
  text-align: center;
}

.list.list-filter li a:hover {
  border-color: #CCC;
}

.list.list-filter li a.active {
  color: #FFF !important;
  background-color: #CCC;
  border-color: #CCC;
}

/* Accordion */
.accordion .card {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  border: 0;
}

.accordion .card .card-body {
  padding: 17.6px 1.6px;
  padding: 1.1rem 0.1rem;
}

.accordion .accordion-header {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background-color: #f1f3f7;
  border-radius: 5px;
  border: 0;
  padding: 0;
}

.accordion .accordion-header a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 40px;
  padding: 1rem 2.5rem;
  font-size: 0.9em;
  border-radius: 5px;
}

.accordion .accordion-header a, .accordion .accordion-header a:hover, .accordion .accordion-header a:focus {
  color: #282828;
}

.accordion .accordion-header a:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 20px;
  border-color: #CCC;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 10px;
  height: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(-45deg) translate3d(0, -50%, 0);
  transform: rotate(-45deg) translate3d(0, -50%, 0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
}

.accordion .accordion-header a.collapsed:before {
  top: calc(50% - 8px);
  left: 16px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion.accordion-minimal .card {
  margin-bottom: 0;
}

.accordion.accordion-minimal .accordion-header {
  border-radius: 0;
  border-bottom: 1px solid #e1e1e1;
  background: transparent;
}

.accordion.accordion-minimal .accordion-header a {
  margin-left: 0;
}

.accordion:not(.accordion-minimal):not(.accordion-style-1):not(.accordion-style-2) .accordion-header a.collapsed {
  background-color: #f1f3f7 !important;
}

.accordion:not(.accordion-minimal):not(.accordion-style-1):not(.accordion-style-2) .accordion-header a.collapsed, .accordion:not(.accordion-minimal):not(.accordion-style-1):not(.accordion-style-2) .accordion-header a.collapsed:hover, .accordion:not(.accordion-minimal):not(.accordion-style-1):not(.accordion-style-2) .accordion-header a.collapsed:focus {
  color: #282828 !important;
}

/* Toggle */
.accordion-toggle .accordion-header a:before {
  content: '+';
  top: calc(50% - 13px);
  left: 16px;
  font-weight: 300;
  border: none;
  width: auto;
  height: auto;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion-toggle .accordion-header a.collapsed:before {
  top: calc(50% - 13px);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Sizes */
.accordion.accordion-sm .accordion-header a {
  padding: 11.2px 35.2px;
  padding: 0.7rem 2.2rem;
  font-size: 0.8em;
}

.accordion.accordion-sm .accordion-header a:before {
  width: 8px;
  height: 8px;
  margin-top: 2px;
}

.accordion.accordion-lg .accordion-header a {
  padding: 20.8px 41.6px;
  padding: 1.3rem 2.6rem;
  font-size: 1em;
}

/* Accordion Colors */
.accordion:not(.accordion-minimal).accordion-dark .accordion-header a {
  background-color: #282828;
}

.accordion:not(.accordion-minimal).accordion-dark .accordion-header a, .accordion:not(.accordion-minimal).accordion-dark .accordion-header a:hover, .accordion:not(.accordion-minimal).accordion-dark .accordion-header a:focus {
  color: #FFF;
}

/* Styles */
.accordion.accordion-style-1 .card {
  margin-bottom: 0;
}

.accordion.accordion-style-1 .card + .card .accordion-header a {
  border-top-width: 0;
}

.accordion.accordion-style-1 .accordion-header {
  background-color: transparent;
}

.accordion.accordion-style-1 .accordion-header a {
  padding: 28.8px 24px;
  padding: 1.8rem 1.5rem;
  font-weight: 600;
  border-width: 1px;
  border-style: solid;
  border-color: #DAE2E6;
  border-bottom-width: 0;
  border-radius: 0;
}

.accordion.accordion-style-1 .accordion-header a:before {
  content: " ";
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  left: auto;
  border-color: #CCC;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion.accordion-style-1 .accordion-header a.collapsed {
  background-color: transparent !important;
  border-bottom-width: 1px;
  -webkit-transition: ease border-bottom-width 100ms 350ms;
  transition: ease border-bottom-width 100ms 350ms;
}

.accordion.accordion-style-1 .accordion-header a.collapsed:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion.accordion-style-1 .accordion-header.accordion-header-shrink a {
  padding: 19.2px 24px;
  padding: 1.2rem 1.5rem;
}

.accordion.accordion-style-1 .accordion-body {
  border-width: 1px;
  border-style: solid;
  border-color: #DAE2E6;
  border-top-width: 0;
  border-radius: 0;
}

.accordion.accordion-style-1 .accordion-body .card-body {
  padding: 0 24px 22.4px;
  padding: 0 1.5rem 1.4rem;
}

.accordion.accordion-style-1 .accordion-body.accordion-body-show-border-top {
  border-top-width: 1px;
}

.accordion.accordion-style-1.accordion-style-1-no-borders .accordion-header a {
  border: none;
}

.accordion.accordion-style-1.accordion-style-1-no-borders .accordion-body {
  border: none;
}

.accordion.accordion-style-1.accordion-style-1-no-borders-divider .accordion-header a {
  border: none;
  padding: 20.8px 0;
  padding: 1.3rem 0;
}

.accordion.accordion-style-1.accordion-style-1-no-borders-divider .accordion-header a:before {
  right: 10px;
}

.accordion.accordion-style-1.accordion-style-1-no-borders-divider .accordion-body {
  border: none;
}

.accordion.accordion-style-1.accordion-style-1-no-borders-divider .card-body {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.accordion.accordion-style-1.accordion-style-1-no-borders-divider .card + .card .accordion-header {
  border-top: 1px solid #DAE2E6;
}

.accordion.accordion-style-1.accordion-style-1-no-expand .accordion-header a {
  pointer-events: none;
}

.accordion.accordion-style-1.accordion-style-1-no-expand .accordion-header a:before {
  content: none;
}

.accordion.accordion-style-2 .card {
  margin-bottom: 0;
  padding: 32px 0;
  padding: 2rem 0;
}

.accordion.accordion-style-2 .card + .card {
  border-top: 1px solid #E2E2E2;
}

.accordion.accordion-style-2 .accordion-header {
  background: transparent;
}

.accordion.accordion-style-2 .accordion-header a,
.accordion.accordion-style-2 .accordion-header a:hover,
.accordion.accordion-style-2 .accordion-header a:focus {
  color: #FFF;
}

.accordion.accordion-style-2 .accordion-header a {
  width: 200px;
  height: 40px;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
}

.accordion.accordion-style-2 .accordion-header a.btn-rounded {
  border-radius: 50px;
}

.accordion.accordion-style-2 .accordion-header a:before {
  content: none;
}

.accordion.accordion-style-2 .accordion-header a .title {
  -webkit-transition: ease opacity 300ms 300ms;
  transition: ease opacity 300ms 300ms;
}

.accordion.accordion-style-2 .accordion-header a > i {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease opacity 300ms 300ms;
  transition: ease opacity 300ms 300ms;
}

.accordion.accordion-style-2 .accordion-header a:not(.collapsed) {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  background-color: #E6E6E6;
  border-color: #E6E6E6;
  color: #B9B9B9;
}

.accordion.accordion-style-2 .accordion-header a:not(.collapsed) .title {
  opacity: 0;
  visibility: hidden;
}

.accordion.accordion-style-2 .accordion-header a:not(.collapsed) > i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-size: 20.8px;
  font-size: 1.3rem;
  opacity: 1;
  visibility: visible;
}

/* IE */
html.ie .accordion .accordion-body {
  height: 100%;
}

/* Tabs */
.nav-tabs {
  border-bottom: 1px solid #e1e1e1;
}

.nav-tabs .nav-item .nav-link {
  color: #000 !important;
  border: 0;
  background: transparent;
  padding: 20.8px;
  padding: 1.3rem;
  font-size: 1.1em;
  position: relative;
  overflow: hidden;
  font-family: Poppins !important;
  border-radius: 0;
}

.nav-tabs .nav-item .nav-link:after {
  height: 4px;
  width: 100%;
  content: ' ';
  background-color: #000;
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.nav-tabs .nav-item .nav-link.active {
  color: #282828;
}

.nav-tabs .nav-item .nav-link.active:after {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.nav-tabs.nav-tabs-centered {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-tabs.nav-tabs-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nav-tabs.nav-tabs-minimal {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 0;
}

.nav-tabs.nav-tabs-vertical {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 0;
  border-right: 1px solid #e1e1e1;
}

.nav-tabs.nav-tabs-vertical .nav-item .nav-link {
  padding-left: 0;
}

.nav-tabs.nav-tabs-vertical .nav-item .nav-link:after {
  height: 100%;
  width: 4px;
  left: auto;
  right: -4px;
  bottom: 0;
}

.nav-tabs.nav-tabs-vertical .nav-item .nav-link.active:after {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}

/* Carousel */
.owl-carousel {
  /* Rounded Style 1 */
  /* Owl Dots Styles */
  /* Owl Nav Styles */
  /* Nav Colors */
  /* Nav Size */
}

.owl-carousel.stage-py-1 .owl-stage-outer {
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.owl-carousel .owl-item {
  -ms-touch-action: auto !important;
  touch-action: auto !important;
}

.owl-carousel .owl-nav {
  top: 50%;
  position: absolute;
  margin-top: -23px;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  outline: none;
}

.owl-carousel .owl-nav .owl-prev {
  left: -5px;
}

.owl-carousel .owl-nav .owl-prev:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f053";
  position: relative;
  left: -1px;
  top: 1px;
  font-weight: 900;
}

.owl-carousel .owl-nav .owl-next {
  right: -5px;
}

.owl-carousel .owl-nav .owl-next:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f054";
  position: relative;
  left: 2px;
  top: 1px;
  font-weight: 900;
}

.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 16px;
  margin-top: 1rem;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
  outline: none;
}

.owl-carousel .owl-dots {
  margin-top: 32px;
  margin-top: 2rem;
}

.owl-carousel .owl-dots .owl-dot {
  outline: none;
}

.owl-carousel.rounded-style-1 .owl-stage-outer {
  border-radius: 100%;
}

.owl-carousel.rounded-style-1 .owl-stage-outer:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid;
  border-color: #CCC;
  border-radius: 100%;
  z-index: 1;
}

.owl-carousel.rounded-style-1 .owl-stage-outer:after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 6px solid;
  border-color: #FFF;
  border-radius: 100%;
  z-index: 1;
}

.owl-carousel.dots-style-1 {
  margin-bottom: 30px;
}

.owl-carousel.dots-style-1 .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 4px 4px;
  -webkit-transition: ease background 300ms 100ms;
  transition: ease background 300ms 100ms;
}

.owl-carousel.dots-style-1 .owl-dots .owl-dot.active span {
  background: #CCC;
  -webkit-transition: ease background 300ms;
  transition: ease background 300ms;
}

.owl-carousel.dots-style-2 .owl-dots {
  position: absolute;
  bottom: 7px;
  right: 10px;
}

.owl-carousel.dots-style-2 .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 4px 4px;
}

.owl-carousel.dots-style-2 .owl-dots .owl-dot.active span {
  background: #CCC;
}

.owl-carousel.dots-style-2.dots-style-2-left .owl-dots {
  right: auto;
  left: 10px;
}

.owl-carousel.dots-style-2.dots-style-2-center .owl-dots {
  right: auto;
  left: auto;
  width: 100%;
}

.owl-carousel.dots-style-2.dots-style-2-center-more-up .owl-dots {
  bottom: 30px;
  right: auto;
  left: auto;
  width: 100%;
}

.owl-carousel.dots-style-3 {
  margin-bottom: 30px;
}

.owl-carousel.dots-style-3 .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot span {
  width: 4px;
  height: 4px;
  -webkit-transition: ease all 300ms 300ms;
  transition: ease all 300ms 300ms;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot.active span {
  background: #CCC;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  -webkit-transform: scale(2);
  transform: scale(2);
}

.owl-carousel.nav-style-1 {
  padding-bottom: 30px;
}

.owl-carousel.nav-style-1 .owl-nav {
  left: 50%;
  margin-top: 0;
  position: absolute;
  top: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 65px;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev,
.owl-carousel.nav-style-1 .owl-nav .owl-next {
  background: transparent;
  color: #CCC;
  font-size: 22.4px;
  font-size: 1.4rem;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev:before {
  content: '\f104';
}

.owl-carousel.nav-style-1 .owl-nav .owl-next:before {
  content: '\f105';
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev,
.owl-carousel.nav-style-2 .owl-nav .owl-next {
  background: transparent;
  color: #CCC;
  font-size: 22.4px;
  font-size: 1.4rem;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev:before {
  content: '\f104';
}

.owl-carousel.nav-style-2 .owl-nav .owl-next {
  right: 0;
}

.owl-carousel.nav-style-2 .owl-nav .owl-next:before {
  content: '\f105';
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev,
.owl-carousel.nav-style-3 .owl-nav .owl-next {
  background: transparent;
  color: #CCC;
  font-size: 28.8px;
  font-size: 1.8rem;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev {
  left: -45px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev:before {
  content: '\f104';
}

.owl-carousel.nav-style-3 .owl-nav .owl-next {
  right: -45px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-next:before {
  content: '\f105';
}

.owl-carousel.nav-style-4 .owl-nav {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: -20px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev,
.owl-carousel.nav-style-4 .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  color: #666 !important;
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 17px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev {
  left: 3px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-prev:before {
  content: '\f104';
}

.owl-carousel.nav-style-4 .owl-nav .owl-next {
  right: 3px;
}

.owl-carousel.nav-style-4 .owl-nav .owl-next:before {
  content: '\f105';
}

.owl-carousel.nav-style-4:hover .owl-nav {
  opacity: 1;
}

.owl-carousel.nav-style-5 .owl-nav {
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 0;
  height: 100%;
  pointer-events: none;
}

.owl-carousel.nav-style-5 .owl-nav .owl-prev,
.owl-carousel.nav-style-5 .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
  border-radius: 0;
  font-size: 22.4px;
  font-size: 1.4rem;
  height: 100%;
  line-height: 17px;
  margin: 0;
  color: #666 !important;
  width: 35px;
  pointer-events: auto;
}

.owl-carousel.nav-style-5 .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel.nav-style-5 .owl-nav .owl-prev:before {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '\f104';
}

.owl-carousel.nav-style-5 .owl-nav .owl-next {
  right: 0;
}

.owl-carousel.nav-style-5 .owl-nav .owl-next:before {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '\f105';
}

.owl-carousel.nav-style-5:hover .owl-nav {
  opacity: 1;
}

.owl-carousel.nav-style-6 .owl-nav .owl-next,
.owl-carousel.nav-style-6 .owl-nav .owl-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: transparent;
}

.owl-carousel.nav-style-6 .owl-nav .owl-next:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.owl-carousel.nav-style-6 .owl-nav .owl-next:after {
  content: '';
  display: block;
  position: absolute;
  width: 35px;
  right: 19px;
  border-top: 1px solid #FFF;
}

.owl-carousel.nav-style-6 .owl-nav .owl-prev:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.owl-carousel.nav-style-6 .owl-nav .owl-prev:after {
  content: '';
  display: block;
  position: absolute;
  width: 35px;
  left: 19px;
  border-top: 1px solid #FFF;
}

.owl-carousel.nav-style-7 .owl-nav .owl-prev,
.owl-carousel.nav-style-7 .owl-nav .owl-next {
  background: transparent;
  color: #CCC;
  font-size: 22.4px;
  font-size: 1.4rem;
}

.owl-carousel.nav-style-7 .owl-nav .owl-prev {
  left: 15px;
}

.owl-carousel.nav-style-7 .owl-nav .owl-prev:before {
  content: '\f104';
}

.owl-carousel.nav-style-7 .owl-nav .owl-next {
  right: 15px;
}

.owl-carousel.nav-style-7 .owl-nav .owl-next:before {
  content: '\f105';
}

.owl-carousel.nav-color-light .owl-nav .owl-prev,
.owl-carousel.nav-color-light .owl-nav .owl-next {
  color: #FFF !important;
}

.owl-carousel.nav-color-light.nav-style-5 .owl-nav .owl-prev,
.owl-carousel.nav-color-light.nav-style-5 .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
  color: #282828 !important;
}

.owl-carousel.nav-color-dark .owl-nav .owl-prev,
.owl-carousel.nav-color-dark .owl-nav .owl-next {
  color: #282828 !important;
}

.owl-carousel.nav-color-dark.nav-style-5 .owl-nav .owl-prev,
.owl-carousel.nav-color-dark.nav-style-5 .owl-nav .owl-next {
  background: rgba(28, 31, 33, 0.6) none repeat scroll 0 0;
  color: #FFF !important;
}

.owl-carousel.nav-size-1 .owl-nav .owl-prev,
.owl-carousel.nav-size-1 .owl-nav .owl-next {
  font-size: 27.2px;
  font-size: 1.7rem;
}

.owl-carousel.nav-size-2 .owl-nav .owl-prev,
.owl-carousel.nav-size-2 .owl-nav .owl-next {
  font-size: 32px;
  font-size: 2rem;
}

/* Responsive Nav Syles */
@media (max-width: 575px) {
  .owl-carousel.nav-style-3 {
    margin-right: auto;
    margin-left: auto;
  }
}
/* Carousel Horizontal Degrade */
.owl-carousel.carousel-horizontal-degrade:after {
  content: ' ';
  display: block;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(241, 243, 247, 0)), to(#f1f3f7));
  background: linear-gradient(to right, rgba(241, 243, 247, 0), #f1f3f7);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.owl-carousel.carousel-horizontal-degrade:before {
  content: ' ';
  display: block;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f1f3f7), to(rgba(241, 243, 247, 0)));
  background: linear-gradient(to right, #f1f3f7, rgba(241, 243, 247, 0));
  position: absolute;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.owl-carousel.carousel-horizontal-degrade.rm-degrade-now:before, .owl-carousel.carousel-horizontal-degrade.rm-degrade-now:after {
  content: none;
}

@media (max-width: 767px) {
  .owl-carousel.carousel-horizontal-degrade.mobile-disable-degrade:before, .owl-carousel.carousel-horizontal-degrade.mobile-disable-degrade:after {
    content: none;
  }
}

/* Carousel Style 1 */
.owl-carousel.carousel-style-1 .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.owl-carousel.carousel-style-1 .left-content {
  position: relative;
  padding: 0 32px;
  padding: 0 2rem;
  text-align: center;
  min-width: 100px;
}

.owl-carousel.carousel-style-1 .left-content > span span {
  font-size: 60.8px;
  font-size: 3.8rem;
  line-height: 1;
  margin-left: 2px;
}

.owl-carousel.carousel-style-1 .left-content:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  top: 6.4px;
  top: 0.4rem;
  right: 8px;
  right: 0.5rem;
  height: 68.8px;
  height: 4.3rem;
  border-right: 1px solid #e1e1e1;
}

.owl-carousel.carousel-style-1 .right-content {
  padding-left: 16px;
  padding-left: 1rem;
  padding-top: 30.4px;
  padding-top: 1.9rem;
}

.owl-carousel.carousel-style-1 .owl-dots {
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 30.4px;
  left: 1.9rem;
  z-index: 1;
}

/* Carousel Style - Left Bottom Corner */
.owl-carousel.carousel-corner-left-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  margin-bottom: 0;
  min-width: 300px;
  /* Carousel Corner Style 1 */
}

.owl-carousel.carousel-corner-left-bottom:before {
  content: '';
  display: block;
  position: absolute;
  top: -60px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background: rgba(28, 31, 33, 0.3);
  border-radius: 100%;
  z-index: -1;
}

.owl-carousel.carousel-corner-left-bottom .owl-stage-outer:before {
  content: '';
  display: block;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.owl-carousel.carousel-corner-left-bottom.stage-top-gap .owl-stage-outer:before {
  top: 22px;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2 {
  position: relative;
  top: -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.5em;
  letter-spacing: 1.2px;
  font-weight: 800;
  margin-bottom: 5px;
  -webkit-transition: ease top 300ms;
  transition: ease top 300ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2 > span {
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item .content {
  padding: 0 15%;
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more {
  font-weight: bold;
  -webkit-transition: ease transform 300ms, ease opacity 300ms;
  transition: ease transform 300ms, ease opacity 300ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more:hover i {
  margin-left: 8px;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more i {
  margin-left: 5px;
  -webkit-transition: ease margin-left 300ms;
  transition: ease margin-left 300ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing h2 {
  top: 20px;
  -webkit-transition: ease top 100ms;
  transition: ease top 100ms;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing h2 > span {
  opacity: 0;
  -webkit-transition: ease opacity 100ms;
  transition: ease opacity 100ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing .content {
  opacity: 0;
  -webkit-transition: ease opacity 100ms;
  transition: ease opacity 100ms;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item.changing a.learn-more {
  opacity: 0;
  -webkit-transition: ease transform 100ms, ease opacity 100ms;
  transition: ease transform 100ms, ease opacity 100ms;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}

.owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-dots {
  margin-top: 0;
  padding: 20px 0;
  background: #FFF;
}

@media (max-width: 575px) {
  .owl-carousel.carousel-corner-left-bottom {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* Carousel Style - Center Active Items */
.owl-carousel.carousel-center-active-items {
  padding-bottom: 60px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  /* Change Color On Current Item */
}

@media (min-width: 992px) {
  .owl-carousel.carousel-center-active-items {
    width: 114vw;
  }
}

@media (min-width: 1200px) {
  .owl-carousel.carousel-center-active-items {
    width: 102vw;
  }
}

.owl-carousel.carousel-center-active-items .owl-item .card {
  background-color: #FFF;
  padding: 24.615px;
  padding: 1.5384615385rem;
  -webkit-transition: ease background-color 300ms;
  transition: ease background-color 300ms;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.owl-carousel.carousel-center-active-items .owl-item:not(.current):not(.remove-blur) .card {
  -webkit-filter: blur(2px);
}

.owl-carousel.carousel-center-active-items .owl-nav {
  left: 50%;
  margin-top: 10px;
  position: absolute;
  top: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 65px;
  transform: translateX(-50%);
}

.owl-carousel.carousel-center-active-items .owl-nav .owl-prev,
.owl-carousel.carousel-center-active-items .owl-nav .owl-next {
  background: transparent;
  color: #CCC;
  font-size: 22.4px;
  font-size: 1.4rem;
}

.owl-carousel.carousel-center-active-items .owl-nav .owl-prev:before {
  content: '\f104';
}

.owl-carousel.carousel-center-active-items .owl-nav .owl-next:before {
  content: '\f105';
}

.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card {
  background: #CCC;
}

.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card i,
.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card strong,
.owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card p {
  color: #FFF !important;
}

@media (min-width: 768px) {
  .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-2, .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 {
    width: 160%;
  }
}

@media (min-width: 1200px) {
  .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-2, .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 {
    width: 133vw;
  }
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 .owl-item .card {
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-3 .owl-item:not(.current):not(.remove-blur) .card {
  opacity: 0.2;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-4 {
  max-width: 100%;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-6 {
  width: 133vw;
  max-height: 40vw;
  cursor: move;
  cursor: -webkit-grab;
  overflow: hidden;
}

.owl-carousel.carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 36vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 90%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-7 {
    width: 133vw;
  }
}

.bg-light-1 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(252, 253, 253, 0)), color-stop(90%, #fcfdfd));
  background: linear-gradient(to bottom, rgba(252, 253, 253, 0) 0%, #fcfdfd 90%);
}

.bg-light-2 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 253, 0)), color-stop(90%, #fbfbfd));
  background: linear-gradient(to bottom, rgba(251, 251, 253, 0) 0%, #fbfbfd 90%);
}

.bg-light-3 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 249, 251, 0)), color-stop(90%, #f7f9fb));
  background: linear-gradient(to bottom, rgba(247, 249, 251, 0) 0%, #f7f9fb 90%);
}

.bg-light-4 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 246, 249, 0)), color-stop(90%, #f4f6f9));
  background: linear-gradient(to bottom, rgba(244, 246, 249, 0) 0%, #f4f6f9 90%);
}

.bg-light-5 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 243, 247, 0)), color-stop(90%, #f1f3f7));
  background: linear-gradient(to bottom, rgba(241, 243, 247, 0) 0%, #f1f3f7 90%);
}

.bg-dark-1 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 10, 11, 0)), color-stop(90%, #090a0b));
  background: linear-gradient(to bottom, rgba(9, 10, 11, 0) 0%, #090a0b 90%);
}

.bg-dark-2 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 30, 33, 0)), color-stop(90%, #1b1e21));
  background: linear-gradient(to bottom, rgba(27, 30, 33, 0) 0%, #1b1e21 90%);
}

.bg-dark-3 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 35, 38, 0)), color-stop(90%, #202326));
  background: linear-gradient(to bottom, rgba(32, 35, 38, 0) 0%, #202326 90%);
}

.bg-dark-4 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 45, 49, 0)), color-stop(90%, #292d31));
  background: linear-gradient(to bottom, rgba(41, 45, 49, 0) 0%, #292d31 90%);
}

.bg-dark-5 .carousel-center-active-items.carousel-center-active-items-style-6.bottom-degrade:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 50, 55, 0)), color-stop(90%, #2e3237));
  background: linear-gradient(to bottom, rgba(46, 50, 55, 0) 0%, #2e3237 90%);
}

@media (max-width: 991px) {
  .owl-carousel.carousel-center-active-items .owl-nav {
    width: 100px;
  }

  .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-6 {
    max-height: 68vw;
  }
}

@media (max-width: 767px) {
  .owl-carousel.carousel-center-active-items .owl-dots {
    display: none;
  }

  .owl-carousel.carousel-center-active-items.carousel-center-active-items-style-6 {
    max-height: 72vw;
  }
}
/* Carousel Style - Stripes */
.owl-carousel.carousel-stripes .carousel-stripe-item {
  height: calc(100vh - 118px);
}

/* Carousel Items Border Divider */
.owl-carousel.carousel-items-border-divider .owl-item.active + .owl-item.active {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Carousel - Gallery Thumbs */
.owl-carousel.thumb-gallery-thumbs .owl-item {
  cursor: pointer;
}

/* Carousel Style - Grid Style 1 */
.owl-carousel.carousel-grid-style-1 {
  height: 100%;
}

.owl-carousel.carousel-grid-style-1 .owl-stage-outer,
.owl-carousel.carousel-grid-style-1 .owl-stage,
.owl-carousel.carousel-grid-style-1 .owl-item {
  height: 100%;
}

/* Edge */
html.edge {
  /* Carousel Style - Left Bottom Corner */
}

html.edge .owl-carousel.carousel-corner-left-bottom {
  /* Carousel Corner Style 1 */
}

html.edge .owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2 {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* IE */
html.ie {
  /* Carousel Style - Left Bottom Corner */
  /* Owl Carousel Vertical */
}

html.ie .owl-carousel.carousel-corner-left-bottom {
  /* Carousel Corner Style 1 */
}

html.ie .owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item {
  overflow: hidden;
}

html.ie .owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2 {
  -webkit-transition: none;
  transition: none;
}

html.ie .owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item h2 > span {
  -webkit-transition: none;
  transition: none;
}

html.ie .owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item .content {
  -webkit-transition: none;
  transition: none;
}

html.ie .owl-carousel.carousel-corner-left-bottom.carousel-corner-style-1 .owl-item a.learn-more {
  -webkit-transition: none;
  transition: none;
}

html.ie .owl-carousel.owl-carousel-vertical {
  overflow: hidden;
}

html.ie .owl-carousel.owl-carousel-vertical .owl-stage-outer {
  -webkit-transform: translateZ(-1px);
  transform: translateZ(-1px);
}

/* Videos */
.embed-responsive.embed-soundcloud {
  padding-top: 19.25%;
}

/* Modals */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Ajax Container */
.mfp-content .ajax-container {
  background: none repeat scroll 0 0 #FFF;
  margin: 40px auto;
  max-width: 1140px;
  padding: 48px 36.8px;
  padding: 3rem 2.3rem;
  position: relative;
  text-align: left;
  display: block;
}

.mfp-content .ajax-container .mfp-close {
  display: none;
}

@media (min-width: 768px) {
  .mfp-content .ajax-container a[data-ajax-portfolio-close] {
    position: absolute;
    top: -26px;
    right: 2px;
  }
}
/* Lightbox */
.lightbox-open body {
  overflow: hidden;
  padding-right: 16px;
}

.lightbox-open #header {
  right: 8px;
}

/* Close */
.mfp-close,
.mfp-close-btn-in .mfp-close {
  font-family: Poppins !important;
  font-weight: 600;
  font-size: 22px;
  color: #838383;
}

/* No Margins */
.mfp-no-margins img.mfp-img {
  padding: 0;
}

.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

.mfp-no-margins .mfp-container {
  padding: 0;
}

/* Zoom */
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
  opacity: 0.001;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Animnate */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0.001;
  /* Chrome opacity transition bug */
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
  opacity: 0.01;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Fade */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Dialog */
.dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  margin: 40px auto;
  position: relative;
  max-width: 600px;
}

.dialog.dialog-xs {
  max-width: 200px;
}

.dialog.dialog-sm {
  max-width: 400px;
}

.dialog.dialog-md {
  max-width: 600px;
}

.dialog.dialog-lg {
  max-width: 900px;
}

/* White Popup Block */
.white-popup-block {
  background: #FFF;
  padding: 20px 30px;
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.white-popup-block.white-popup-block-xs {
  max-width: 200px;
}

.white-popup-block.white-popup-block-sm {
  max-width: 400px;
}

.white-popup-block.white-popup-block-md {
  max-width: 600px;
}

.white-popup-block.white-popup-block-lg {
  max-width: 900px;
}

/* Lightbox Opened */
html.lightbox-opened.sticky-header-active #header .header-body {
  padding-right: 17px;
}

/* Full Screen No Scroll */
html.full-screen-no-scroll .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
}

html.full-screen-no-scroll .main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

/* Outline */
.outline-none {
  outline: 0 !important;
}

/* Text Decoration */
.text-decoration-none {
  text-decoration: none !important;
}

/* No Borders */
.border-0 {
  border: none !important;
}

/* Container */
@media (min-width: 1200px) {
  .container-xl {
    width: 100%;
    max-width: 1440px;
  }
}
/* Top Sub Title */
.top-sub-title {
  font-family: Poppins !important;
  font-size: 0.9em;
}

/* Title Number */
.title-number-style-1 {
  position: absolute;
  top: -4.8px;
  top: -0.3rem;
  left: -36.8px;
  left: -2.3rem;
  font-size: 57.6px;
  font-size: 3.6rem;
}

/* Lead */
.lead {
  font-size: 1.2em;
  line-height: 1.8;
  color: #777;
}

/* Clear */
.clear-both {
  clear: both;
}

/* Absolute Vertical Center */
.absolute-y-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 767px) {
  .absolute-y-center {
    position: relative;
    top: auto;
    -webkit-transform: none;
    transform: none;
  }
}

html.ie .absolute-y-center {
  width: 100%;
}

/* Absolute Horizontal Center */
.absolute-x-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

/* Absolute Horizontal & Vertical Center */
.absolute-xy-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

/* Text with Background Effect */
.effect-text-background {
  background-image: url(../img/gif/people.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 35%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.ie .effect-text-background {
  background: none !important;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}

/* Grid */
.col-half-section {
  max-width: 555px;
  width: 100%;
}

@media (max-width: 1199px) {
  .col-half-section {
    max-width: 465px;
  }
}

@media (max-width: 991px) {
  .col-half-section {
    max-width: 345px;
  }
}

@media (max-width: 767px) {
  .col-half-section {
    max-width: 515px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .col-half-section {
    width: 100%;
    max-width: none;
    margin-left: 15px;
    margin-right: 15px;
  }
}
/* Highlight Boxes */
.highlight-boxes {
  position: relative;
}

.highlight-boxes .particles {
  width: 114%;
  position: absolute;
  top: 47%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.highlight-boxes .particles .g-particles {
  -webkit-transform-origin: center;
  transform-origin: center;
}

.highlight-boxes .wrap-boxes {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: baseline;
  -webkit-box-align: baseline;
  align-items: baseline;
}

.highlight-boxes .wrap-boxes > div {
  overflow: hidden;
}

.highlight-boxes .wrap-boxes > div:nth-child(1), .highlight-boxes .wrap-boxes > div:nth-child(3) {
  height: 90%;
}

.highlight-boxes .wrap-boxes > div:nth-child(1) {
  right: -5px;
  padding: 92.8px 43.2px 92.8px 38.4px;
  padding: 5.8rem 2.7rem 5.8rem 2.4rem;
}

.highlight-boxes .wrap-boxes > div:nth-child(2) {
  margin: 0 auto;
  padding: 112px 38.4px;
  padding: 7rem 2.4rem;
}

.highlight-boxes .wrap-boxes > div:nth-child(2) p {
  color: #bbb;
}

.highlight-boxes .wrap-boxes > div:nth-child(3) {
  left: -5px;
  padding: 92.8px 38.4px 92.8px 43.2px;
  padding: 5.8rem 2.4rem 5.8rem 2.7rem;
  z-index: -1;
}

.highlight-boxes .wrap-boxes > div .background-icon {
  position: absolute;
  font-size: 148.8px;
  font-size: 9.3rem;
  opacity: 0.1;
}

.highlight-boxes .wrap-boxes > div .background-icon.background-icon-top {
  top: -54.4px;
  top: -3.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.highlight-boxes .wrap-boxes > div .background-icon.background-icon-right {
  top: 47%;
  right: -54.4px;
  right: -3.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.highlight-boxes .wrap-boxes > div .background-icon.background-icon-bottom {
  bottom: -36.8px;
  bottom: -2.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.highlight-boxes .wrap-boxes > div .background-icon.background-icon-left {
  font-size: 160px;
  font-size: 10rem;
  top: 47%;
  left: -80px;
  left: -5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.highlight-boxes.highlight-boxes-rounded .wrap-boxes > div {
  border-radius: 7px;
}

@media (max-width: 767px) {
  .highlight-boxes .particles {
    display: none;
  }

  .highlight-boxes .wrap-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .highlight-boxes .wrap-boxes > div:nth-child(1) {
    right: 0;
    margin-bottom: 2rem;
  }

  .highlight-boxes .wrap-boxes > div:nth-child(2) {
    margin-bottom: 2rem;
  }

  .highlight-boxes .wrap-boxes > div:nth-child(3) {
    left: 0;
  }
}

@media (max-width: 575px) {
  .highlight-boxes {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/* Static Tooltip */
.tooltip-static {
  display: inline-block;
  margin: 10px 20px;
  opacity: 1;
  position: relative;
}

.tooltip-static-top .arrow {
  left: 50%;
}

.tooltip-static-right .arrow {
  top: 50%;
}

.tooltip-static-top .arrow {
  left: 50%;
}

.tooltip-static-right .arrow {
  top: 50%;
}

/* Link Underline */
.link-underline-dark {
  color: #282828;
  border-bottom: 1px solid #282828;
  padding: 0 0 3px;
}

.link-underline-dark:hover {
  color: #969696 !important;
  border-color: #969696 !important;
}

.link-underline-light {
  color: #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  padding: 0 0 3px;
}

.link-underline-light:hover {
  color: #FFF !important;
  border-color: #FFF !important;
}

/* Text Underline Style */
.text-underline-style-1 {
  border-bottom: 1px solid #282828;
  padding: 0 0 3px;
}

/* Scrollable Element */
.scrollable-element {
  overflow-y: auto;
  overflow-x: hidden;
}

.scrollable-element::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #292d31;
}

.scrollable-element::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}

.scrollable-element::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #CCC;
}

.scrollable-element.scrollable-element-light::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f1f3f7;
}

/* Box Shadow */
.box-shadow-1 {
  -webkit-box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.4);
}

/* Twitter Feed */
.twitter > ul {
  padding: 0;
}

.twitter > ul > li {
  list-style: none;
}

/* Mask Desktop */
.mask-desktop {
  position: relative;
  width: 320px;
  height: 270px;
  margin: 0 auto;
}

.mask-desktop > img {
  position: absolute;
  left: -29px;
  width: 540px;
  z-index: 1;
}

.mask-desktop .parallax {
  width: 320px;
  height: 210px;
}

/* Content Grid */
.content-grid {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.content-grid .content-grid-item {
  position: relative;
  padding: 10px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.content-grid .content-grid-item:before, .content-grid .content-grid-item:after {
  content: '';
  position: absolute;
}

.content-grid .content-grid-item:before {
  height: 100%;
  top: 0;
  left: -1px;
  border-left: 1px solid #DADADA;
}

.content-grid .content-grid-item:after {
  width: 100%;
  height: 0;
  top: auto;
  left: 0;
  bottom: -1px;
  border-bottom: 1px solid #DADADA;
}

.content-grid .content-grid-item .img-fluid {
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.content-grid.content-grid-dashed .content-grid-item:before {
  border-left: 1px dashed #DADADA;
}

.content-grid.content-grid-dashed .content-grid-item:after {
  border-bottom: 1px dashed #DADADA;
}

/* Show Grid */
.show-grid [class*="col"] .show-grid-block {
  background-color: #EEE;
  line-height: 40px;
  min-height: 40px;
  text-align: center;
  border: 1px solid #FFF;
  display: block;
}

/* Masonry Loading */
.masonry-loader {
  height: auto;
  overflow: visible;
  position: relative;
}

.masonry-loader:after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  content: ' ';
  background: #FFF;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
}

.masonry-loader .bounce-loader {
  display: none;
}

.masonry-loader.masonry-loader-showing {
  height: 200px;
  overflow: hidden;
}

.masonry-loader.masonry-loader-showing:after {
  opacity: 1;
}

.masonry-loader.masonry-loader-showing .bounce-loader {
  display: block;
}

.masonry-loader.masonry-loader-loaded:after {
  display: none;
}

/* Isotope Item */
.isotope-item {
  min-width: 1px;
}

/* Sticky Wrapper */
.sticky-wrapper {
  width: 100%;
}

.sticky-wrapper .sticky-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 10;
  -webkit-transition: ease background 300ms;
  transition: ease background 300ms;
}

.sticky-wrapper.sticky-wrapper-transparent {
  position: absolute;
  z-index: 11;
}

html.sticky-wrapper-active .sticky-wrapper.sticky-wrapper-effect-1 .sticky-body {
  position: fixed;
  background: #FFF;
  -webkit-animation: headerReveal 0.4s ease-in;
  animation: headerReveal 0.4s ease-in;
}

/* Full Width Half Background */
.full-width-half-background {
  position: relative;
}

.full-width-half-background:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: 50%;
  left: 50%;
  width: 100vw;
  background-color: #f1f3f7;
  z-index: -1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

/* Featured Boxes */
.featured-boxes {
  position: relative;
}

.featured-boxes::after {
  clear: both;
  content: "";
  display: block;
}

.featured-boxes:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 99vw;
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.featured-boxes h4 {
  font-size: 1.2em;
}

.featured-boxes [class*="col-"] {
  padding: 0;
}

.featured-boxes .featured-box {
  position: relative;
  padding: 35px 35px 35px 90px;
  border-right: 1px solid rgba(119, 119, 119, 0.2);
}

.featured-boxes .featured-box:last-child {
  border-right: none;
}

.featured-boxes .featured-box > a {
  display: block;
}

.featured-boxes .featured-box i, .featured-boxes .featured-box img {
  position: absolute;
  top: 35px;
  left: 32px;
  font-size: 40px;
}

.featured-boxes .featured-box h4, .featured-boxes .featured-box p {
  margin-bottom: 0;
}

.featured-boxes.featured-boxes-no-border-bottom:before {
  content: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .featured-boxes h4 {
    font-size: 1em;
  }

  .featured-boxes p {
    margin-top: 6px;
  }
}

@media (max-width: 991px) {
  .featured-boxes .featured-box {
    position: relative;
    border-right: 0;
  }

  .featured-boxes .featured-box:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid rgba(119, 119, 119, 0.2);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .featured-boxes .featured-box:last-child:after {
    content: none;
  }
}

@media (max-width: 767px) {
  .featured-boxes p {
    margin-top: 6px;
  }
}
/* Hover Effects */
.hover-effect-1 {
  position: relative;
}

.hover-effect-1:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-width: 0.2px;
  border-style: solid;
  border-color: inherit;
  opacity: 0;
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
  -webkit-transition: ease opacity 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease transform 300ms;
}

.hover-effect-1:hover:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hover-effect-2 {
  opacity: 1;
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
}

.hover-effect-2:hover {
  opacity: 0.9;
}

.hover-effect-3:not(.portfolio-item) {
  -webkit-box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0);
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0);
  -webkit-transition: ease transform 300ms, ease box-shadow 300ms;
  transition: ease transform 300ms, ease box-shadow 300ms;
}

.hover-effect-3:not(.portfolio-item):hover {
  -webkit-box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}

.hover-effect-3.portfolio-item {
  -webkit-transition: ease transform 300ms;
  transition: ease transform 300ms;
}

.hover-effect-3.portfolio-item .image-frame {
  -webkit-box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0);
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0);
  -webkit-transition: ease box-shadow 300ms;
  transition: ease box-shadow 300ms;
}

.hover-effect-3.portfolio-item:hover, .hover-effect-3.portfolio-item.show {
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}

.hover-effect-3.portfolio-item:hover .image-frame, .hover-effect-3.portfolio-item.show .image-frame {
  -webkit-box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
}

.hover-effect-3.portfolio-item:hover h2 > a, .hover-effect-3.portfolio-item.show h2 > a {
  color: #CCC;
}

/* Box Shadow Effects */
.box-shadow-effect-1 {
  -webkit-box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.1);
  -webkit-transition: ease box-shadow 300ms;
  transition: ease box-shadow 300ms;
}

.box-shadow-effect-1:hover {
  -webkit-box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb li + li:before {
  color: inherit;
  opacity: 0.5;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  padding: 0 7px 0 5px;
}

/* Quantity Button */
.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quantity .plus,
.quantity .minus,
.quantity .qty {
  background-color: #f1f3f7;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 9.6px 20.8px;
  padding: 0.6rem 1.3rem;
  font-size: 20.8px;
  font-size: 1.3rem;
  outline: none;
}

.quantity .qty {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 9.6px 4.8px;
  padding: 0.6rem 0.3rem;
  text-align: center;
  max-width: 35px;
  -moz-appearance: textfield;
}

.quantity .qty::-webkit-inner-spin-button, .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.quantity .minus {
  padding-top: 4.8px;
  padding-top: 0.3rem;
}

.quantity .plus {
  padding-top: 8px;
  padding-top: 0.5rem;
}

.quantity .plus,
.quantity .minus {
  cursor: pointer;
  -webkit-transition: ease background-color 300ms;
  transition: ease background-color 300ms;
}

.quantity .plus:hover,
.quantity .minus:hover {
  background-color: #eaeaea;
}

/* Google Maps */
.google-map {
  background: #f1f3f7;
  height: 400px;
  width: 100%;
}

@media (min-width: 992px) {
  .google-map.google-map-burst-height {
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(100% - 15px);
    overflow: hidden;
    height: calc(100% + 100px);
    -webkit-box-shadow: 0px 0px 64px -14px rgba(28, 31, 33, 0.2);
    box-shadow: 0px 0px 64px -14px rgba(28, 31, 33, 0.2);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}

@media (max-width: 991px) {
  .google-map.google-map-burst-height {
    width: 100vw;
    height: 400px;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

.google-map.google-map-style-2 {
  -webkit-transform: translate3d(0, 60px, 0);
  transform: translate3d(0, 60px, 0);
}

/* Ajax Box */
.ajax-box {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.ajax-box .ajax-box-content {
  opacity: 1;
  overflow: hidden;
  height: auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.ajax-box .bounce-loader {
  opacity: 0;
}

.ajax-box.ajax-box-init {
  height: 0;
}

.ajax-box.ajax-box-init .ajax-box-content {
  opacity: 0;
  visibility: hidden;
}

.ajax-box.ajax-box-loading {
  height: 300px;
}

.ajax-box.ajax-box-loading .ajax-box-content {
  opacity: 0;
  height: 300px;
}

.ajax-box.ajax-box-loading .bounce-loader {
  opacity: 1;
}

/* Vertical Divider */
.vertical-divider {
  background: #CCC;
  width: 1px;
  min-height: 20px;
}

.vertical-divider.vertical-divider-size-1 {
  height: 30px;
}

.vertical-divider.vertical-divider-size-2 {
  height: 40px;
}

.vertical-divider.vertical-divider-size-3 {
  height: 50px;
}

.vertical-divider.vertical-divider-size-4 {
  height: 60px;
}

.vertical-divider.vertical-divider-size-5 {
  height: 70px;
}

/* Countdown */
.countdown.countdown-style-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.countdown.countdown-style-1 > span {
  position: relative;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem;
}

.countdown.countdown-style-1 > span:first-child {
  padding-left: 0;
}

.countdown.countdown-style-1 > span:first-child:before {
  content: none;
}

.countdown.countdown-style-1 > span:last-child {
  padding-right: 0;
}

.countdown.countdown-style-1 > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5.6px;
  left: -0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #282828;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.countdown.countdown-style-1 > span span {
  display: block;
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 900;
}

@media (max-width: 575px) {
  .countdown.countdown-style-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .countdown.countdown-style-1 > span {
    padding: 0;
    margin-bottom: 2rem;
  }

  .countdown.countdown-style-1 > span:last-child {
    margin-bottom: 0;
  }

  .countdown.countdown-style-1 > span:before {
    content: none;
  }
}
/* Skew Text Bar */
@media (min-width: 1200px) {
  .skew-text-bar-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .skew-text-bar-1:before {
    content: '';
    position: relative;
    top: 3px;
    left: 16px;
    -webkit-transform: skewX(22deg);
    transform: skewX(22deg);
    background: #CCC;
    width: 18px;
    height: 110px;
    z-index: -1;
  }
}
/* Rating */
.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating input {
  position: absolute;
  left: -999999px;
}

.rating label {
  display: inline-block;
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}

.rating > label:before {
  position: relative;
  font: 24px/1 "Font Awesome 5 Free";
  display: block;
  content: "\f005";
  color: #e1e5ee;
  background: #e1e5ee;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating > label:hover:before, .rating > label:hover ~ label:before {
  color: #282828;
  background-color: #282828;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating > label.selected:before, .rating > label.selected ~ label:before {
  color: #282828;
  background-color: #282828;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Images */
.responsive-images {
  position: absolute;
  width: 510px;
  height: 100%;
}

.responsive-images.responsive-images-left {
  top: 0;
  right: 74%;
}

.responsive-images.responsive-images-left div:nth-child(1) {
  left: 0;
  top: -16px;
  top: -1rem;
}

.responsive-images.responsive-images-left div:nth-child(2) {
  left: 0;
  top: 288px;
  top: 18rem;
}

.responsive-images.responsive-images-left div:nth-child(3) {
  left: 384px;
  left: 24rem;
  top: 304px;
  top: 19rem;
}

.responsive-images.responsive-images-right {
  top: 0;
  left: 74%;
}

.responsive-images.responsive-images-right div:nth-child(1) {
  right: 0;
  top: 0;
}

.responsive-images.responsive-images-right div:nth-child(2) {
  right: 0;
  top: 169.6px;
  top: 10.6rem;
}

.responsive-images.responsive-images-right div:nth-child(3) {
  right: 0;
  top: 200px;
  top: 12.5rem;
}

.responsive-images.responsive-images-right div:nth-child(4) {
  right: 0;
  top: 411.2px;
  top: 25.7rem;
}

@media (min-width: 1920px) {
  .responsive-images.responsive-images-left {
    right: auto;
    left: 0;
  }

  .responsive-images.responsive-images-right {
    left: auto;
    right: 0;
  }
}

html.boxed .responsive-images {
  display: none;
}

/* Expandable Selector */
.expandable-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  white-space: nowrap;
}

.expandable-selector .btn {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  min-width: 24px;
  min-width: 1.5rem;
  margin: 0 4.8px;
  margin: 0 0.3rem;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
}

.expandable-selector .btn:not(.btn-colorpicker):not(.main-color) {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
  -webkit-transition: cubic-bezier(0.55, 0, 0.1, 1) transform 300ms, cubic-bezier(0.55, 0, 0.1, 1) opacity 300ms;
  transition: cubic-bezier(0.55, 0, 0.1, 1) transform 300ms, cubic-bezier(0.55, 0, 0.1, 1) opacity 300ms;
}

.expandable-selector .btn:not(.btn-colorpicker):not(.main-color):nth-child(6) {
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
}

.expandable-selector .btn:not(.btn-colorpicker):not(.main-color):nth-child(5) {
  -webkit-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0);
}

.expandable-selector .btn:not(.btn-colorpicker):not(.main-color):nth-child(4) {
  -webkit-transform: translate3d(60px, 0, 0);
  transform: translate3d(60px, 0, 0);
}

.expandable-selector .btn:not(.btn-colorpicker):not(.main-color):nth-child(3) {
  -webkit-transform: translate3d(80px, 0, 0);
  transform: translate3d(80px, 0, 0);
}

.expandable-selector .btn:not(.btn-colorpicker):not(.main-color):nth-child(2) {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.expandable-selector .title {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 14.4px;
  padding: 0 0.9rem;
  height: 100%;
  top: 0;
  right: 70.4px;
  right: 4.4rem;
  width: 100%;
  background: #FFF;
  -webkit-transition: cubic-bezier(0.55, 0, 0.1, 1) right 300ms;
  transition: cubic-bezier(0.55, 0, 0.1, 1) right 300ms;
  font-size: 11.2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.expandable-selector:hover .title {
  right: 100%;
  -webkit-transition-duration: 660ms;
  transition-duration: 660ms;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color) {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):nth-child(7) {
  -webkit-transition-duration: 700ms;
  transition-duration: 700ms;
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):nth-child(6) {
  -webkit-transition-duration: 650ms;
  transition-duration: 650ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):nth-child(5) {
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):nth-child(4) {
  -webkit-transition-duration: 550ms;
  transition-duration: 550ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):nth-child(3) {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
}

.expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):nth-child(2) {
  -webkit-transition-duration: 450ms;
  transition-duration: 450ms;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.expandable-selector:hover .btn:hover, .expandable-selector:hover .btn:not(.btn-colorpicker):not(.main-color):hover {
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  opacity: 0.8;
}

@media (max-width: 1870px) {
  .expandable-selector:hover .title {
    opacity: 0;
  }
}

@media (max-width: 1480px) {
  .expandable-selector .title {
    right: 3.3rem;
  }

  .expandable-selector .btn {
    margin: 0 0.1rem;
  }
}

@media (max-width: 1199px) {
  .expandable-selector .btn:not(.btn-colorpicker):not(.main-color) {
    display: none;
  }

  .expandable-selector:hover .title {
    right: 3.3rem;
    opacity: 1;
  }
}
/* Conpect Position */
.concept-pos-1 {
  position: relative;
  top: 13%;
  right: -120px;
}

@media (max-width: 991px) {
  .concept-pos-1 {
    right: 0;
  }
}
/* Lamp Style */
.lamp-style-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.lamp-style-wrapper .lamp,
.lamp-style-wrapper .logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  z-index: -1;
}

.lamp-style-wrapper .lamp {
  top: 32px;
  top: 2rem;
}

.lamp-style-wrapper .logo {
  top: 288px;
  top: 18rem;
}

.lamp-style-2 {
  position: absolute;
  top: 0;
  min-width: 520px;
}

/* Rect Size */
.rect-size {
  height: 320px;
}

@media (max-width: 575px) {
  .rect-size {
    height: 52vw;
  }

  .rect-size.rect-size-style-2 {
    height: 82vw;
  }
}
/* Extra Image Header */
.extra-image-header {
  position: absolute;
}

.extra-image-header .pos-left {
  left: 0;
  bottom: -30px;
}

.extra-image-header .pos-right {
  right: -275px;
  bottom: -165px;
}

/* Stile Switcher Required */
.style-switcher-required {
  visibility: hidden !important;
}

.style-switcher-active .style-switcher-required {
  visibility: visible !important;
}

/* Dividers */
hr {
  /* Divider Width */
  /* Divider Size */
}

hr.divider-w-1 {
  width: 50px;
}

hr.divider-w-2 {
  width: 100px;
}

hr.divider-w-3 {
  width: 150px;
}

hr.divider-w-4 {
  width: 200px;
}

hr.divider-w-5 {
  width: 250px;
}

hr.divider-size-1 {
  border-width: 1px;
}

hr.divider-size-2 {
  border-width: 2px;
}

hr.divider-size-3 {
  border-width: 4px;
}

hr.divider-size-4 {
  border-width: 6px;
}

hr.divider-size-5 {
  border-width: 8px;
}

/* Custom Dividers */
.custom-divider-1 {
  background: #ccc;
  width: 30px;
  height: 1px;
}

/* Sort */
.sort-source > div > a,
.sort-source > li > a {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Poppins !important;
  font-weight: 500;
}

.sort-source > div.active > a,
.sort-source > li.active > a {
  font-weight: 700;
}

.sort-source > div:first-child > a,
.sort-source > li:first-child > a {
  padding-left: 0;
}

/* Sort Loading */
.sort-destination-loader {
  height: auto;
  overflow: hidden;
  position: relative;
}

.sort-destination-loader:after {
  content: ' ';
  background: #FFF;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.sort-destination-loader .bounce-loader {
  display: none;
}

.sort-destination-loader.sort-destination-loader-showing {
  max-height: 200px;
}

.sort-destination-loader.sort-destination-loader-showing:after {
  opacity: 1;
}

.sort-destination-loader.sort-destination-loader-showing .bounce-loader {
  display: block;
}

.sort-destination-loader.sort-destination-loader-loaded {
  overflow: visible;
}

.sort-destination-loader.sort-destination-loader-loaded:after {
  display: none;
}

/* Pricing Tables */
.pricing-table.pricing-table-style-1 {
  padding-left: 15px;
  padding-right: 15px;
}

.pricing-table.pricing-table-style-1 [class^='col'] {
  border: 1px solid #EDEDEE;
  border-right-color: transparent;
}

.pricing-table.pricing-table-style-1 [class^='col']:last-child {
  border-right-color: #EDEDEE;
}

.pricing-table .plan {
  text-align: center;
}

.pricing-table .plan-title {
  border-bottom: 1px solid #EDEDEE;
  padding: 25.6px 0;
  padding: 1.6rem 0;
}

.pricing-table .plan-title h3 {
  text-transform: uppercase;
  font-size: 1.0769230769em;
  margin: 0;
  padding: 0;
  color: #969696;
}

.pricing-table .plan-title em {
  font-family: Poppins !important;
  font-size: 1em;
  color: #a3a3a3;
  margin: 0;
  padding: 0;
  opacity: 0.6;
}

.pricing-table .plan-price {
  padding: 40px 0 19.2px;
  padding: 2.5rem 0 1.2rem;
}

.pricing-table .plan-price strong {
  font-size: 3.6923076923em;
  color: #2E3237;
  font-weight: 800;
}

.pricing-table .plan-price strong em {
  font-size: 0.5em;
  font-style: normal;
}

.pricing-table .plan-price p {
  font-family: Poppins !important;
  font-size: 1.2307692308em;
  color: #a3a3a3;
  margin: 0;
}

.pricing-table .plan-detail {
  padding: 0 0 32px;
  padding: 0 0 2rem;
}

.pricing-table .plan-detail ul {
  list-style: none;
  margin: 0 0 24px;
  margin: 0 0 1.5rem;
  padding: 0;
}

.pricing-table .plan-detail ul li {
  margin: 0;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.pricing-table .plan.plan-most-popular {
  z-index: 1;
}

@media (min-width: 992px) {
  .pricing-table .plan.plan-most-popular {
    margin-top: -0.8rem;
  }
}

.pricing-table .plan.plan-most-popular .plan-title h3, .pricing-table .plan.plan-most-popular .plan-title em {
  color: #FFF;
}

.pricing-table.pricing-table-style-2 table td, .pricing-table.pricing-table-style-2 table th {
  border: 0;
  border-right: 1px solid #EDEDEE;
  text-align: center;
}

.pricing-table.pricing-table-style-2 table td {
  border-left: 1px solid #EDEDEE;
}

.pricing-table.pricing-table-style-2 table td:first-child {
  text-align: right;
}

.pricing-table.pricing-table-style-2 table tbody tr:nth-of-type(2n+1) {
  background: rgba(0, 0, 0, 0.02);
}

.pricing-table.pricing-table-style-2 table thead tr th {
  vertical-align: top;
  border-bottom: 1px solid #EDEDEE;
  border-top: 1px solid #EDEDEE;
  background: rgba(0, 0, 0, 0.02);
}

.pricing-table.pricing-table-style-2 table thead tr th:first-child {
  border-top: 0;
  background: transparent;
}

.pricing-table.pricing-table-style-2 table tr:last-child {
  background: transparent !important;
}

.pricing-table.pricing-table-style-2 table tr:last-child td {
  border-top: 1px solid #EDEDEE;
  border-left: 0;
}

.pricing-table.pricing-table-style-2 table tr:last-child td.plan-action {
  border-bottom: 1px solid #EDEDEE;
}

.pricing-table.pricing-table-style-2 .plan.plan-most-popular {
  position: relative;
}

@media (min-width: 992px) {
  .pricing-table.pricing-table-style-2 .plan.plan-most-popular {
    margin-top: -0.8rem;
  }
}

.pricing-table.pricing-table-style-2 .plan.plan-most-popular .plan-title h3, .pricing-table.pricing-table-style-2 .plan.plan-most-popular .plan-title em {
  color: #FFF;
}

/* Icon Box */
.icon-box h1, .icon-box h2, .icon-box h3, .icon-box h4 {
  font-weight: 700;
  margin-bottom: 9.6px;
  margin-bottom: 0.6rem;
}

.icon-box .icon-box-sub-title {
  font-family: Poppins !important;
  font-size: 0.9em;
}

.icon-box .icon-box-icon i.fa,
.icon-box .icon-box-icon i.fas,
.icon-box .icon-box-icon i.far,
.icon-box .icon-box-icon i.fal,
.icon-box .icon-box-icon i.fab,
.icon-box .icon-box-icon i.icons,
.icon-box .icon-box-icon i.lnr {
  position: relative;
}

.icon-box .icon-box-icon object,
.icon-box .icon-box-icon img {
  position: relative;
}

.icon-box .icon-box-icon object:not([width]),
.icon-box .icon-box-icon img:not([width]) {
  width: 42px;
}

.icon-box .icon-box-icon i {
  font-size: 40px;
  font-size: 2.5rem;
}

.icon-box .icon-box-icon.icon-box-icon-no-top i,
.icon-box .icon-box-icon.icon-box-icon-no-top .animated-icon {
  top: 0 !important;
}

.icon-box .icon-box-icon .stick-icon {
  margin-left: -26px;
}

.icon-box .icon-box-icon-offset-border {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  padding: 4px;
}

.icon-box .icon-box-icon-offset-border .icon-box-icon {
  margin: 0 !important;
}

.icon-box .icon-box-icon-square {
  border-radius: 4px !important;
}

.icon-box.icon-box-style-1 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.icon-box.icon-box-style-1 .icon-box-icon {
  padding-right: 16px;
  padding-right: 1rem;
}

.icon-box.icon-box-style-1 .icon-box-icon i.fa,
.icon-box.icon-box-style-1 .icon-box-icon i.fas,
.icon-box.icon-box-style-1 .icon-box-icon i.far,
.icon-box.icon-box-style-1 .icon-box-icon i.fal,
.icon-box.icon-box-style-1 .icon-box-icon i.fab,
.icon-box.icon-box-style-1 .icon-box-icon i.icons,
.icon-box.icon-box-style-1 .icon-box-icon i.lnr {
  font-size: 36.8px;
  font-size: 2.3rem;
  top: 8px;
}

.icon-box.icon-box-style-1 .animated-icon {
  top: 8px;
}

.icon-box.icon-box-style-1 h1, .icon-box.icon-box-style-1 h2, .icon-box.icon-box-style-1 h3, .icon-box.icon-box-style-1 h4 {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.icon-box.icon-box-style-1 .icon-box-info p {
  font-size: 14.4px;
  font-size: 0.9rem;
}

.icon-box.icon-box-style-1.icon-box-reverse .icon-box-icon {
  padding-right: 0;
  padding-left: 16px;
  padding-left: 1rem;
}

.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.fa,
.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.fas,
.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.far,
.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.fal,
.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.fab,
.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.icons,
.icon-box.icon-box-style-1.align-items-center .icon-box-icon i.lnr {
  top: 0;
}

.icon-box.icon-box-style-2 .icon-box-icon {
  display: inline-block;
  float: left;
  padding-right: 12.8px;
  padding-right: 0.8rem;
}

.icon-box.icon-box-style-2 .icon-box-icon i.fa,
.icon-box.icon-box-style-2 .icon-box-icon i.fas,
.icon-box.icon-box-style-2 .icon-box-icon i.far,
.icon-box.icon-box-style-2 .icon-box-icon i.fal,
.icon-box.icon-box-style-2 .icon-box-icon i.fab,
.icon-box.icon-box-style-2 .icon-box-icon i.icons,
.icon-box.icon-box-style-2 .icon-box-icon i.lnr {
  font-size: 32px;
  font-size: 2rem;
  top: -3px;
}

.icon-box.icon-box-style-2 h1, .icon-box.icon-box-style-2 h2, .icon-box.icon-box-style-2 h3, .icon-box.icon-box-style-2 h4 {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.icon-box.icon-box-style-2 .icon-box-info-title {
  display: inline-block;
}

.icon-box.icon-box-style-2.icon-box-reverse .icon-box-icon {
  padding-right: 0;
  float: right;
  padding-left: 12.8px;
  padding-left: 0.8rem;
}

.icon-box.icon-box-style-3 .icon-box-icon {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.icon-box.icon-box-style-3 .icon-box-icon i.fa,
.icon-box.icon-box-style-3 .icon-box-icon i.fas,
.icon-box.icon-box-style-3 .icon-box-icon i.far,
.icon-box.icon-box-style-3 .icon-box-icon i.fal,
.icon-box.icon-box-style-3 .icon-box-icon i.fab,
.icon-box.icon-box-style-3 .icon-box-icon i.icons,
.icon-box.icon-box-style-3 .icon-box-icon i.lnr {
  font-size: 44.8px;
  font-size: 2.8rem;
  position: relative;
}

.icon-box.icon-box-style-3 h1, .icon-box.icon-box-style-3 h2, .icon-box.icon-box-style-3 h3, .icon-box.icon-box-style-3 h4 {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.icon-box.icon-box-style-4, .icon-box.icon-box-style-7 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.icon-box.icon-box-style-4 .icon-box-icon-offset-border, .icon-box.icon-box-style-7 .icon-box-icon-offset-border {
  margin-right: 16px;
  margin-right: 1rem;
}

.icon-box.icon-box-style-4 .icon-box-icon, .icon-box.icon-box-style-7 .icon-box-icon {
  margin-right: 16px;
  margin-right: 1rem;
  border-radius: 100%;
  width: auto;
  height: auto;
  padding: 36.8px;
  padding: 2.3rem;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.icon-box.icon-box-style-4 .icon-box-icon i.fa,
.icon-box.icon-box-style-4 .icon-box-icon i.fas,
.icon-box.icon-box-style-4 .icon-box-icon i.far,
.icon-box.icon-box-style-4 .icon-box-icon i.fal,
.icon-box.icon-box-style-4 .icon-box-icon i.fab,
.icon-box.icon-box-style-4 .icon-box-icon i.icons,
.icon-box.icon-box-style-4 .icon-box-icon i.lnr, .icon-box.icon-box-style-7 .icon-box-icon i.fa,
.icon-box.icon-box-style-7 .icon-box-icon i.fas,
.icon-box.icon-box-style-7 .icon-box-icon i.far,
.icon-box.icon-box-style-7 .icon-box-icon i.fal,
.icon-box.icon-box-style-7 .icon-box-icon i.fab,
.icon-box.icon-box-style-7 .icon-box-icon i.icons,
.icon-box.icon-box-style-7 .icon-box-icon i.lnr {
  font-size: 30.4px;
  font-size: 1.9rem;
  color: #FFF;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.icon-box.icon-box-style-4 .icon-box-icon object,
.icon-box.icon-box-style-4 .icon-box-icon img, .icon-box.icon-box-style-7 .icon-box-icon object,
.icon-box.icon-box-style-7 .icon-box-icon img {
  margin: 0 auto;
}

.icon-box.icon-box-style-4.icon-box-reverse .icon-box-icon, .icon-box.icon-box-style-7.icon-box-reverse .icon-box-icon {
  margin-right: 0;
  margin-left: 16px;
  margin-left: 1rem;
}

.icon-box.icon-box-style-5, .icon-box.icon-box-style-8 {
  text-align: center;
}

.icon-box.icon-box-style-5 .icon-box-icon-offset-border, .icon-box.icon-box-style-8 .icon-box-icon-offset-border {
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
  width: 109px;
  height: 109px;
  padding: 4px;
}

.icon-box.icon-box-style-5 .icon-box-icon, .icon-box.icon-box-style-8 .icon-box-icon {
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-box.icon-box-style-5 .icon-box-icon i.fa,
.icon-box.icon-box-style-5 .icon-box-icon i.fas,
.icon-box.icon-box-style-5 .icon-box-icon i.far,
.icon-box.icon-box-style-5 .icon-box-icon i.fal,
.icon-box.icon-box-style-5 .icon-box-icon i.fab,
.icon-box.icon-box-style-5 .icon-box-icon i.icons,
.icon-box.icon-box-style-5 .icon-box-icon i.lnr, .icon-box.icon-box-style-8 .icon-box-icon i.fa,
.icon-box.icon-box-style-8 .icon-box-icon i.fas,
.icon-box.icon-box-style-8 .icon-box-icon i.far,
.icon-box.icon-box-style-8 .icon-box-icon i.fal,
.icon-box.icon-box-style-8 .icon-box-icon i.fab,
.icon-box.icon-box-style-8 .icon-box-icon i.icons,
.icon-box.icon-box-style-8 .icon-box-icon i.lnr {
  font-size: 46.4px;
  font-size: 2.9rem;
  color: #FFF;
  margin: 0 auto;
}

.icon-box.icon-box-style-5 .icon-box-icon object,
.icon-box.icon-box-style-5 .icon-box-icon img, .icon-box.icon-box-style-8 .icon-box-icon object,
.icon-box.icon-box-style-8 .icon-box-icon img {
  margin: 0 auto;
}

.icon-box.icon-box-style-6 {
  text-align: center;
}

.icon-box.icon-box-style-6 .icon-box-icon {
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-box.icon-box-style-6 .icon-box-icon i.fa,
.icon-box.icon-box-style-6 .icon-box-icon i.fas,
.icon-box.icon-box-style-6 .icon-box-icon i.far,
.icon-box.icon-box-style-6 .icon-box-icon i.fal,
.icon-box.icon-box-style-6 .icon-box-icon i.fab,
.icon-box.icon-box-style-6 .icon-box-icon i.icons,
.icon-box.icon-box-style-6 .icon-box-icon i.lnr {
  font-size: 44.8px;
  font-size: 2.8rem;
  margin: 0 auto;
}

.icon-box.icon-box-style-6 .icon-box-icon object,
.icon-box.icon-box-style-6 .icon-box-icon img {
  margin: 0 auto;
}

.icon-box.icon-box-style-7 .icon-box-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-box.icon-box-style-8 .icon-box-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-box.icon-box-reverse {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

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

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

.icon-box.icon-box-pull-top {
  margin-top: -48px;
  margin-top: -3rem;
}

/* Icon Box Animations */
.icon-box-animation-1 {
  position: relative;
  /* Icon Box Animation 1 - Light */
}

.icon-box-animation-1:before, .icon-box-animation-1:after {
  content: '';
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  border-bottom: 3px solid #CCC;
  -webkit-transition: cubic-bezier(0.55, 0, 0.1, 1) width 400ms;
  transition: cubic-bezier(0.55, 0, 0.1, 1) width 400ms;
}

.icon-box-animation-1:after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.icon-box-animation-1 .icon-box {
  padding: 48px;
  padding: 3rem;
}

.icon-box-animation-1 .icon-box:before, .icon-box-animation-1 .icon-box:after {
  content: '';
  position: absolute;
  height: 0;
  top: 0;
  left: 0;
  border-right: 3px solid #CCC;
  -webkit-transition: cubic-bezier(0.55, 0, 0.1, 1) height 400ms;
  transition: cubic-bezier(0.55, 0, 0.1, 1) height 400ms;
}

.icon-box-animation-1 .icon-box:after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.icon-box-animation-1:hover:before, .icon-box-animation-1:hover:after {
  width: 100%;
}

.icon-box-animation-1:hover .icon-box:before, .icon-box-animation-1:hover .icon-box:after {
  height: 100%;
}

.icon-box-animation-1.icon-box-animation-1-light:before, .icon-box-animation-1.icon-box-animation-1-light:after {
  border-color: #FFF;
}

.icon-box-animation-1.icon-box-animation-1-light .icon-box:before, .icon-box-animation-1.icon-box-animation-1-light .icon-box:after {
  border-color: #FFF;
}

/* Cards */
.card {
  border-radius: 0px !important;
  box-shadow: none;
  border: 1px solid #efefef;
}

.card .card-body {
  padding: 35.2px;
  padding: 2.2rem;
}

.card .card-body.card-body-flex-0 {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}

.card.overlay .card-body {
  z-index: 2;
}

.card.card-style-1 {
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.card.card-style-2 .card-body {
  margin: 10px;
  border: 5px solid #EDEDEE;
}

.card.card-style-3 .card-img-top {
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -30px);
  transform: translate(-50%, -30px);
  border: 5px solid #FFF;
}

.card.card-style-4 .card-img-top {
  position: relative;
  z-index: 1;
}

.card.card-style-4 .card-body {
  margin: -5px 20px 0;
}

.card.card-style-5:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f1f3f7;
  border-radius: .25rem;
  opacity: 1;
  z-index: 0;
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms;
}

.card.card-style-5:hover:before {
  opacity: 0;
}

.card.card-style-5:hover .card-body {
  background: rgba(255, 255, 255, 0.8);
}

.card.card-style-5 .card-body {
  background: rgba(255, 255, 255, 0);
  z-index: 1;
  -webkit-transition: ease background 300ms;
  transition: ease background 300ms;
}

/* IE */
html.ie .card > a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

html.ie .card .card-body {
  height: 100%;
}

html.ie .card-img-top {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline:after {
  background: #505050;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(80, 80, 80, 0)), color-stop(8%, #505050), color-stop(92%, #505050), to(rgba(80, 80, 80, 0)));
  background: linear-gradient(to bottom, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  content: "";
  display: block;
  height: 103%;
  left: 50%;
  margin-left: -2px;
  position: absolute;
  top: 0;
  width: 3px;
  z-index: 0;
  filter: alpha(opacity=10);
  opacity: 0.1;
}

.timeline .timeline-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 128px;
  padding-bottom: 8rem;
}

.timeline .timeline-title {
  background: #F4F4F4;
  padding: 12px;
}

.timeline .timeline-title h4 {
  padding: 0;
  margin: 0;
  color: #171717;
  font-size: 1.4em;
}

.timeline .timeline-title a {
  color: #171717;
}

.timeline .timeline-title .timeline-title-tags {
  color: #B1B1B1;
  font-size: 0.9em;
}

.timeline .timeline-title .timeline-title-tags a {
  color: #B1B1B1;
  font-size: 0.9em;
}

.timeline .timeline-box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 45.8%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  margin: 20px 10px 10px 10px;
  padding: 32px;
  padding: 2rem;
  z-index: 1;
  margin-bottom: -80px;
  margin-bottom: -5rem;
  background: #FFF;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.timeline .timeline-box.left {
  margin-bottom: 27.2px;
  margin-bottom: 1.7rem;
}

.timeline .timeline-box.left:before {
  background: #CCC;
  border-radius: 50%;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  left: 50%;
  margin-top: 66px;
  width: 14px;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.timeline .timeline-box.left .timeline-box-arrow {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #FFF;
  border-right: 1px solid #E5E5E5;
  border-top: 1px solid #E5E5E5;
  float: right;
  height: 14px;
  margin-top: 66px;
  margin-right: -40px;
  width: 14px;
  z-index: 0;
}

.timeline .timeline-box.right {
  margin-top: 128px;
  margin-top: 8rem;
  margin-left: auto;
}

.timeline .timeline-box.right:before {
  background: #CCC;
  border-radius: 50%;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  left: 50%;
  margin-top: 66px;
  width: 14px;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.timeline .timeline-box.right .timeline-box-arrow {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #FFF;
  border-left: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  float: left;
  height: 14px;
  margin-top: 66px;
  margin-left: -40px;
  width: 14px;
  z-index: 0;
}

.timeline .timeline-box .owl-carousel {
  border-radius: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .timeline .timeline-box {
    width: 100%;
    margin: 0 !important;
    margin-bottom: 2rem !important;
  }

  .timeline .timeline-box.left:before {
    content: none;
  }

  .timeline .timeline-box.left .timeline-box-arrow {
    display: none;
  }

  .timeline .timeline-box.right:before {
    content: none;
  }

  .timeline .timeline-box.right .timeline-box-arrow {
    display: none;
  }
}
/* Testimonials */
.testimonial .testimonial-author > span strong {
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #282828;
  letter-spacing: -0.8px;
}

.testimonial .testimonial-author > span span {
  display: block;
}

.testimonial.testimonial-style-1 blockquote p {
  font-size: 19.2px;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: #282828;
}

.testimonial.testimonial-style-2 {
  position: relative;
}

.testimonial.testimonial-style-3 .card {
  position: relative;
  z-index: 2;
}

.testimonial.testimonial-style-3 .testimonial-author-image img {
  margin: 32px auto 0;
  max-height: 65px;
  max-width: 65px;
}

.testimonial.testimonial-style-3 .testimonial-arrow {
  display: block;
  height: 25px;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 25px;
  z-index: 1;
}

/* Blockquote */
.blockquote {
  font-size: 20px;
  font-size: 1.25rem;
}

.blockquote .blockquote-footer-style-1:before {
  content: '';
}

.blockquote.blockquote-style-1 {
  padding: 40px 0 0 50px;
  position: relative;
}

.blockquote.blockquote-style-1:before {
  font-family: Poppins !important;
  display: block;
  font-style: italic;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: 0;
}

.blockquote.blockquote-style-1.blockquote-dark:before {
  color: #282828;
}

.blockquote.blockquote-style-1.blockquote-light:before {
  color: #FFF;
}

.blockquote.blockquote-style-2 {
  border-left: 5px solid #282828;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.blockquote.blockquote-style-2.blockquote-dark {
  border-left-color: #282828;
}

.blockquote.blockquote-style-2.blockquote-light {
  border-left-color: #FFF;
}

/* Social Icons */
.social-icons {
  margin: 0;
  padding: 0;
  width: auto;
}

.social-icons li {
  display: inline-block;
  margin: -1px 1px 0 2px;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.social-icons li a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #FFF;
  border-radius: 100%;
  display: block;
  height: 2.4em;
  font-size: 1.1em;
  line-height: 2.4em;
  width: 2.4em;
  text-align: center;
  color: #999;
  text-decoration: none;
}

.social-icons li:hover a {
  background: #171717;
  color: #FFF !important;
}

.social-icons li:hover.social-icons-twitter a {
  background: #1aa9e1 !important;
}

.social-icons li:hover.social-icons-facebook a {
  background: #3b5a9a !important;
}

.social-icons li:hover.social-icons-linkedin a {
  background: #0073b2 !important;
}

.social-icons li:hover.social-icons-rss a {
  background: #ff8201 !important;
}

.social-icons li:hover.social-icons-googleplus a {
  background: #dd4b39 !important;
}

.social-icons li:hover.social-icons-pinterest a {
  background: #cc2127 !important;
}

.social-icons li:hover.social-icons-youtube a {
  background: #c3191e !important;
}

.social-icons li:hover.social-icons-instagram a {
  background: #7c4a3a !important;
}

.social-icons li:hover.social-icons-skype a {
  background: #00b0f6 !important;
}

.social-icons li:hover.social-icons-email a {
  background: #dd4b39 !important;
}

.social-icons li:hover.social-icons-vk a {
  background: #6383a8 !important;
}

.social-icons li:hover.social-icons-xing a {
  background: #1a7576 !important;
}

.social-icons li:hover.social-icons-tumblr a {
  background: #304e6c !important;
}

.social-icons li:hover.social-icons-reddit a {
  background: #ff4107 !important;
}

.social-icons li:hover.social-icons-dribbble a {
  background: #ea4c89 !important;
}

.social-icons.header-top-social-icons li:hover a {
  color: #FFF;
}

.social-icons.header-social-icons li a {
  width: 2.6em;
  height: 2.6em;
  font-size: 0.9em;
  line-height: 2.6em;
  color: #282828;
}

.social-icons.header-social-icons li:hover a {
  color: #FFF;
}

.social-icons.social-icons-border li a {
  background: transparent;
  border: 2px solid #FFF;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.social-icons.social-icons-transparent li {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.social-icons.social-icons-transparent li a {
  background: transparent;
}

.social-icons.social-icons-dark li a {
  color: #FFF;
  background: #2E3237;
}

.social-icons.social-icons-light li a {
  color: #2E3237;
  background: #f1f3f7;
}

.social-icons.social-icons-icon-light li a {
  color: #FFF;
}

.social-icons.social-icons-icon-dark li a {
  color: #282828;
}

.social-icons.social-icons-icon-dark li:hover a {
  color: #FFF !important;
}

.social-icons.social-icons-pills li a {
  color: #FFF;
  background-color: #CCC;
  border-radius: 0;
}

.social-icons.social-icons-1 li a {
  font-size: 11.2px;
  font-size: 0.7rem;
}

.social-icons.social-icons-2 li a {
  font-size: 12.8px;
  font-size: 0.8rem;
}

.social-icons.social-icons-3 li a {
  font-size: 16px;
  font-size: 1rem;
}

.social-icons.social-icons-4 li a {
  font-size: 19.2px;
  font-size: 1.2rem;
}

.social-icons.social-icons-5 li a {
  font-size: 1.5em;
}

html.sticky-header-active #header.header-transparent .header-social-icons li a i {
  color: #282828;
}

html.sticky-header-active #header.header-transparent .header-social-icons li:hover a i {
  color: #FFF;
}

/* Call to Action */
.call-to-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 4.6153846154em 0;
  /* If have parallax */
  /* Call To Action with Text Background */
}

.call-to-action h1, .call-to-action h2, .call-to-action h3, .call-to-action h4, .call-to-action h5, .call-to-action h6 {
  margin-bottom: 0;
}

.call-to-action h2 {
  font-size: 2.1em;
}

.call-to-action p {
  font-size: 1.1em;
}

.call-to-action .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.call-to-action .btn:not([class*="btn-icon-effect"]) strong {
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-left: 12.8px;
  margin-left: 0.8rem;
}

.call-to-action > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.call-to-action > [class*="col-"]:nth-child(2) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: center;
}

@media (max-width: 767px) {
  .call-to-action > [class*="col-"]:nth-child(2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.call-to-action .container, .call-to-action .container-fluid {
  position: relative;
  z-index: 3;
}

.call-to-action .container > .row, .call-to-action .container-fluid > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.call-to-action .container > .row > [class*="col-"], .call-to-action .container-fluid > .row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.call-to-action .container > .row > [class*="col-"]:nth-child(2), .call-to-action .container-fluid > .row > [class*="col-"]:nth-child(2) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: center;
}

@media (max-width: 767px) {
  .call-to-action .container > .row > [class*="col-"]:nth-child(2), .call-to-action .container-fluid > .row > [class*="col-"]:nth-child(2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .call-to-action > [class*="col-"]:not([class*="col-xs"]) {
    width: 100%;
  }

  .call-to-action .container > .row [class*="col-"]:not([class*="col-xs"]) {
    width: 100%;
  }
}

.call-to-action.call-to-action-height-1 {
  padding: 24.615px 0;
  padding: 1.5384615385rem 0;
}

.call-to-action.call-to-action-height-2 {
  padding: 49.23px 0;
  padding: 3.0769230769rem 0;
}

.call-to-action.call-to-action-height-3 {
  padding: 73.846px 0;
  padding: 4.6153846154rem 0;
}

.call-to-action.call-to-action-height-4 {
  padding: 98.461px 0;
  padding: 6.1538461538rem 0;
}

.call-to-action.call-to-action-height-5 {
  padding: 123.076px 0;
  padding: 7.6923076923rem 0;
}

.call-to-action.call-to-action-text-light .call-to-action-content h1, .call-to-action.call-to-action-text-light .call-to-action-content h2, .call-to-action.call-to-action-text-light .call-to-action-content h3, .call-to-action.call-to-action-text-light .call-to-action-content h4, .call-to-action.call-to-action-text-light .call-to-action-content h5, .call-to-action.call-to-action-text-light .call-to-action-content h6, .call-to-action.call-to-action-text-light .call-to-action-content p, .call-to-action.call-to-action-text-light .call-to-action-content a:not(.btn), .call-to-action.call-to-action-text-light .call-to-action-content span {
  color: #FFF;
}

.call-to-action .parallax-background {
  z-index: 0 !important;
}

.call-to-action.call-to-action-text-background {
  position: relative;
  overflow: hidden;
}

.call-to-action.call-to-action-text-background .text-background {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  font-size: 5em;
  line-height: 0.1;
  opacity: 0.1;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .call-to-action.call-to-action-text-background .text-background {
    max-width: 710px;
    font-size: 8em;
  }
}

@media (min-width: 992px) {
  .call-to-action.call-to-action-text-background .text-background {
    max-width: 940px;
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .call-to-action.call-to-action-text-background .text-background {
    max-width: 1140px;
    font-size: 11em;
  }
}

.call-to-action.call-to-action-text-background .text-background.appear-animation {
  opacity: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .call-to-action .call-to-action-content,
  .call-to-action .call-to-action-btn {
    margin: 0;
    padding: 20px;
    position: static;
    width: auto;
  }
}
/* Progress Bars */
.progress-bar-wrapper.progress-bar-style-1 .progress-bar-info {
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
  position: relative;
}

.progress-bar-wrapper.progress-bar-style-1 .progress-bar-info label {
  font-weight: 700 !important;
  font-size: 1.0769230769em;
  color: #282828;
}

.progress-bar-wrapper.progress-bar-style-1 .progress-bar-info .progress-bar-percent {
  float: right;
  font-size: 0.85em;
  margin-top: 0.2em;
}

.progress-bar-wrapper.progress-bar-style-1 .progress {
  overflow: visible;
  text-align: right;
  height: auto;
}

.progress-bar-wrapper.progress-bar-style-1 .progress-bar {
  position: relative;
  height: 3.2px;
  height: 0.2rem;
}

.progress-bar-wrapper.progress-bar-style-1 .progress-bar:after {
  content: '';
  width: 12px;
  height: 12px;
  border: 3.2px solid #333;
  border: 0.2rem solid #333;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -4px;
  margin: 0 -4px -4px;
  background: #FFF;
}

.progress-bar-wrapper.progress-bar-style-2 {
  text-align: center;
}

.progress-bar-wrapper.progress-bar-style-2 .progress-bar-info {
  margin: 0 auto 11.2px;
  margin: 0 auto 0.7rem;
  position: relative;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.progress-bar-wrapper.progress-bar-style-2 .progress-bar-info label {
  font-weight: 700 !important;
  font-size: 1.0769230769em;
  color: #282828;
}

.progress-bar-wrapper.progress-bar-style-2 .progress-bar-info .progress-bar-percent {
  font-size: 0.85em;
  margin-top: 0.2em;
}

.progress-bar-wrapper.progress-bar-style-2 .progress {
  width: 3.2px;
  width: 0.2rem;
  height: 3.2px;
  height: 0.2rem;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
  overflow: visible;
}

.progress-bar-wrapper.progress-bar-style-2 .progress-bar {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.progress-bar-wrapper.progress-bar-style-2 .progress-bar:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 3.2px solid #333;
  border: 0.2rem solid #333;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -4px;
  margin: -6px 0 0 0px;
  background: #FFF;
}

.progress {
  height: auto;
}

.progress .progress-bar {
  height: 16px;
  height: 1rem;
  width: 0;
  -webkit-transition: ease-in-out width 900ms, ease-in-out height 900ms;
  transition: ease-in-out width 900ms, ease-in-out height 900ms;
}

.progress .progress-bar.bg-dark {
  background-color: #282828;
}

.progress .progress-bar.bg-dark:after {
  border-color: #282828;
}

.progress .progress-bar.bg-light {
  background-color: #FFF;
}

.progress .progress-bar.bg-light:after {
  border-color: #FFF;
}

.progress .progress-bar.progress-bar-small {
  height: 10px;
}

/* Circular Bar */
.circular-bar {
  text-align: center;
  position: relative;
  min-height: 150px;
}

.circular-bar label {
  display: block;
  font-size: 1.8461538462em;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80%;
  font-weight: 800;
  color: #282828;
}

/* Counters */
.counters .counter {
  text-align: center;
  margin: 50px 0;
}

@media (max-width: 767px) {
  .counters .counter {
    margin: 80px 0;
  }
}

.counters strong,
.counters label {
  font-family: Poppins !important;
}

.counters i {
  display: block;
  font-size: 3.6923076923em;
  line-height: 1;
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem;
}

.counters strong {
  display: block;
  font-weight: 900;
  font-size: 3.6923076923em;
  line-height: 1;
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem;
}

.counters label {
  display: block;
  font-weight: 100;
  font-size: 1.1538461538em;
  line-height: 1;
  letter-spacing: 0.5px;
}

.counters.counters-xs strong, .counters.counters-xs i {
  font-size: 1.3846153846em;
}

.counters.counters-xs label {
  font-size: 0.7692307692em;
}

.counters.counters-sm strong, .counters.counters-sm i {
  font-size: 2.1538461538em;
}

.counters.counters-sm label {
  font-size: 0.9230769231em;
}

.counters.counters-lg strong, .counters.counters-lg i {
  font-size: 4.4615384615em;
}

.counters.counters-lg label {
  font-size: 1.3076923077em;
}

.counters.counters-xl strong, .counters.counters-xl i {
  font-size: 5.2307692308em;
}

.counters.counters-xl label {
  font-size: 1.3846153846em;
}

.counters.counters-light .counter {
  color: #FFF !important;
}

.counters.counters-light .counter strong, .counters.counters-light .counter i, .counters.counters-light .counter label {
  color: #FFF !important;
}

.counters.counters-dark .counter {
  color: #282828 !important;
}

.counters.counters-dark .counter strong, .counters.counters-dark .counter i, .counters.counters-dark .counter label {
  color: #282828 !important;
}

/* Scroll to Top */
html .scroll-to-top {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #404040;
  border-radius: 100%;
  bottom: 10px;
  color: #FFF;
  display: block;
  height: 35px;
  opacity: 0;
  padding: 5px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  width: 35px;
  z-index: 1040;
  font-size: 10px;
  right: 10px;
}

html .scroll-to-top:hover {
  opacity: 1;
}

html .scroll-to-top.visible {
  opacity: 0.75;
}

html .scroll-to-top i {
  position: relative;
  top: 1px;
}

html.lightbox-open .scroll-to-top {
  right: 27px;
}

html.ie11 .scroll-to-top {
  right: 25px;
}

/* Responsive */
@media (max-width: 991px) {
  html .scroll-to-top.hidden-mobile {
    display: none !important;
  }
}
/* Flags */
.flag {
  width: 16px;
  height: 11px;
  background: url(../img/flags.png) no-repeat;
  margin-top: -1px;
}

.flag.flag-ad {
  background-position: -16px 0;
}

.flag.flag-ae {
  background-position: -32px 0;
}

.flag.flag-af {
  background-position: -48px 0;
}

.flag.flag-ag {
  background-position: -64px 0;
}

.flag.flag-ai {
  background-position: -80px 0;
}

.flag.flag-al {
  background-position: -96px 0;
}

.flag.flag-am {
  background-position: -112px 0;
}

.flag.flag-an {
  background-position: -128px 0;
}

.flag.flag-ao {
  background-position: -144px 0;
}

.flag.flag-ar {
  background-position: -160px 0;
}

.flag.flag-as {
  background-position: -176px 0;
}

.flag.flag-at {
  background-position: -192px 0;
}

.flag.flag-au {
  background-position: -208px 0;
}

.flag.flag-aw {
  background-position: -224px 0;
}

.flag.flag-az {
  background-position: -240px 0;
}

.flag.flag-ba {
  background-position: 0 -11px;
}

.flag.flag-bb {
  background-position: -16px -11px;
}

.flag.flag-bd {
  background-position: -32px -11px;
}

.flag.flag-be {
  background-position: -48px -11px;
}

.flag.flag-bf {
  background-position: -64px -11px;
}

.flag.flag-bg {
  background-position: -80px -11px;
}

.flag.flag-bh {
  background-position: -96px -11px;
}

.flag.flag-bi {
  background-position: -112px -11px;
}

.flag.flag-bj {
  background-position: -128px -11px;
}

.flag.flag-bm {
  background-position: -144px -11px;
}

.flag.flag-bn {
  background-position: -160px -11px;
}

.flag.flag-bo {
  background-position: -176px -11px;
}

.flag.flag-br {
  background-position: -192px -11px;
}

.flag.flag-bs {
  background-position: -208px -11px;
}

.flag.flag-bt {
  background-position: -224px -11px;
}

.flag.flag-bv {
  background-position: -240px -11px;
}

.flag.flag-bw {
  background-position: 0 -22px;
}

.flag.flag-by {
  background-position: -16px -22px;
}

.flag.flag-bz {
  background-position: -32px -22px;
}

.flag.flag-ca {
  background-position: -48px -22px;
}

.flag.flag-catalonia {
  background-position: -64px -22px;
}

.flag.flag-cd {
  background-position: -80px -22px;
}

.flag.flag-cf {
  background-position: -96px -22px;
}

.flag.flag-cg {
  background-position: -112px -22px;
}

.flag.flag-ch {
  background-position: -128px -22px;
}

.flag.flag-ci {
  background-position: -144px -22px;
}

.flag.flag-ck {
  background-position: -160px -22px;
}

.flag.flag-cl {
  background-position: -176px -22px;
}

.flag.flag-cm {
  background-position: -192px -22px;
}

.flag.flag-cn {
  background-position: -208px -22px;
}

.flag.flag-co {
  background-position: -224px -22px;
}

.flag.flag-cr {
  background-position: -240px -22px;
}

.flag.flag-cu {
  background-position: 0 -33px;
}

.flag.flag-cv {
  background-position: -16px -33px;
}

.flag.flag-cw {
  background-position: -32px -33px;
}

.flag.flag-cy {
  background-position: -48px -33px;
}

.flag.flag-cz {
  background-position: -64px -33px;
}

.flag.flag-de {
  background-position: -80px -33px;
}

.flag.flag-dj {
  background-position: -96px -33px;
}

.flag.flag-dk {
  background-position: -112px -33px;
}

.flag.flag-dm {
  background-position: -128px -33px;
}

.flag.flag-do {
  background-position: -144px -33px;
}

.flag.flag-dz {
  background-position: -160px -33px;
}

.flag.flag-ec {
  background-position: -176px -33px;
}

.flag.flag-ee {
  background-position: -192px -33px;
}

.flag.flag-eg {
  background-position: -208px -33px;
}

.flag.flag-eh {
  background-position: -224px -33px;
}

.flag.flag-england {
  background-position: -240px -33px;
}

.flag.flag-er {
  background-position: 0 -44px;
}

.flag.flag-es {
  background-position: -16px -44px;
}

.flag.flag-et {
  background-position: -32px -44px;
}

.flag.flag-eu {
  background-position: -48px -44px;
}

.flag.flag-fi {
  background-position: -64px -44px;
}

.flag.flag-fj {
  background-position: -80px -44px;
}

.flag.flag-fk {
  background-position: -96px -44px;
}

.flag.flag-fm {
  background-position: -112px -44px;
}

.flag.flag-fo {
  background-position: -128px -44px;
}

.flag.flag-fr {
  background-position: -144px -44px;
}

.flag.flag-ga {
  background-position: -160px -44px;
}

.flag.flag-gb {
  background-position: -176px -44px;
}

.flag.flag-gd {
  background-position: -192px -44px;
}

.flag.flag-ge {
  background-position: -208px -44px;
}

.flag.flag-gf {
  background-position: -224px -44px;
}

.flag.flag-gg {
  background-position: -240px -44px;
}

.flag.flag-gh {
  background-position: 0 -55px;
}

.flag.flag-gi {
  background-position: -16px -55px;
}

.flag.flag-gl {
  background-position: -32px -55px;
}

.flag.flag-gm {
  background-position: -48px -55px;
}

.flag.flag-gn {
  background-position: -64px -55px;
}

.flag.flag-gp {
  background-position: -80px -55px;
}

.flag.flag-gq {
  background-position: -96px -55px;
}

.flag.flag-gr {
  background-position: -112px -55px;
}

.flag.flag-gs {
  background-position: -128px -55px;
}

.flag.flag-gt {
  background-position: -144px -55px;
}

.flag.flag-gu {
  background-position: -160px -55px;
}

.flag.flag-gw {
  background-position: -176px -55px;
}

.flag.flag-gy {
  background-position: -192px -55px;
}

.flag.flag-hk {
  background-position: -208px -55px;
}

.flag.flag-hm {
  background-position: -224px -55px;
}

.flag.flag-hn {
  background-position: -240px -55px;
}

.flag.flag-hr {
  background-position: 0 -66px;
}

.flag.flag-ht {
  background-position: -16px -66px;
}

.flag.flag-hu {
  background-position: -32px -66px;
}

.flag.flag-ic {
  background-position: -48px -66px;
}

.flag.flag-id {
  background-position: -64px -66px;
}

.flag.flag-ie {
  background-position: -80px -66px;
}

.flag.flag-il {
  background-position: -96px -66px;
}

.flag.flag-im {
  background-position: -112px -66px;
}

.flag.flag-in {
  background-position: -128px -66px;
}

.flag.flag-io {
  background-position: -144px -66px;
}

.flag.flag-iq {
  background-position: -160px -66px;
}

.flag.flag-ir {
  background-position: -176px -66px;
}

.flag.flag-is {
  background-position: -192px -66px;
}

.flag.flag-it {
  background-position: -208px -66px;
}

.flag.flag-je {
  background-position: -224px -66px;
}

.flag.flag-jm {
  background-position: -240px -66px;
}

.flag.flag-jo {
  background-position: 0 -77px;
}

.flag.flag-jp {
  background-position: -16px -77px;
}

.flag.flag-ke {
  background-position: -32px -77px;
}

.flag.flag-kg {
  background-position: -48px -77px;
}

.flag.flag-kh {
  background-position: -64px -77px;
}

.flag.flag-ki {
  background-position: -80px -77px;
}

.flag.flag-km {
  background-position: -96px -77px;
}

.flag.flag-kn {
  background-position: -112px -77px;
}

.flag.flag-kp {
  background-position: -128px -77px;
}

.flag.flag-kr {
  background-position: -144px -77px;
}

.flag.flag-kurdistan {
  background-position: -160px -77px;
}

.flag.flag-kw {
  background-position: -176px -77px;
}

.flag.flag-ky {
  background-position: -192px -77px;
}

.flag.flag-kz {
  background-position: -208px -77px;
}

.flag.flag-la {
  background-position: -224px -77px;
}

.flag.flag-lb {
  background-position: -240px -77px;
}

.flag.flag-lc {
  background-position: 0 -88px;
}

.flag.flag-li {
  background-position: -16px -88px;
}

.flag.flag-lk {
  background-position: -32px -88px;
}

.flag.flag-lr {
  background-position: -48px -88px;
}

.flag.flag-ls {
  background-position: -64px -88px;
}

.flag.flag-lt {
  background-position: -80px -88px;
}

.flag.flag-lu {
  background-position: -96px -88px;
}

.flag.flag-lv {
  background-position: -112px -88px;
}

.flag.flag-ly {
  background-position: -128px -88px;
}

.flag.flag-ma {
  background-position: -144px -88px;
}

.flag.flag-mc {
  background-position: -160px -88px;
}

.flag.flag-md {
  background-position: -176px -88px;
}

.flag.flag-me {
  background-position: -192px -88px;
}

.flag.flag-mg {
  background-position: -208px -88px;
}

.flag.flag-mh {
  background-position: -224px -88px;
}

.flag.flag-mk {
  background-position: -240px -88px;
}

.flag.flag-ml {
  background-position: 0 -99px;
}

.flag.flag-mm {
  background-position: -16px -99px;
}

.flag.flag-mn {
  background-position: -32px -99px;
}

.flag.flag-mo {
  background-position: -48px -99px;
}

.flag.flag-mp {
  background-position: -64px -99px;
}

.flag.flag-mq {
  background-position: -80px -99px;
}

.flag.flag-mr {
  background-position: -96px -99px;
}

.flag.flag-ms {
  background-position: -112px -99px;
}

.flag.flag-mt {
  background-position: -128px -99px;
}

.flag.flag-mu {
  background-position: -144px -99px;
}

.flag.flag-mv {
  background-position: -160px -99px;
}

.flag.flag-mw {
  background-position: -176px -99px;
}

.flag.flag-mx {
  background-position: -192px -99px;
}

.flag.flag-my {
  background-position: -208px -99px;
}

.flag.flag-mz {
  background-position: -224px -99px;
}

.flag.flag-na {
  background-position: -240px -99px;
}

.flag.flag-nc {
  background-position: 0 -110px;
}

.flag.flag-ne {
  background-position: -16px -110px;
}

.flag.flag-nf {
  background-position: -32px -110px;
}

.flag.flag-ng {
  background-position: -48px -110px;
}

.flag.flag-ni {
  background-position: -64px -110px;
}

.flag.flag-nl {
  background-position: -80px -110px;
}

.flag.flag-no {
  background-position: -96px -110px;
}

.flag.flag-np {
  background-position: -112px -110px;
}

.flag.flag-nr {
  background-position: -128px -110px;
}

.flag.flag-nu {
  background-position: -144px -110px;
}

.flag.flag-nz {
  background-position: -160px -110px;
}

.flag.flag-om {
  background-position: -176px -110px;
}

.flag.flag-pa {
  background-position: -192px -110px;
}

.flag.flag-pe {
  background-position: -208px -110px;
}

.flag.flag-pf {
  background-position: -224px -110px;
}

.flag.flag-pg {
  background-position: -240px -110px;
}

.flag.flag-ph {
  background-position: 0 -121px;
}

.flag.flag-pk {
  background-position: -16px -121px;
}

.flag.flag-pl {
  background-position: -32px -121px;
}

.flag.flag-pm {
  background-position: -48px -121px;
}

.flag.flag-pn {
  background-position: -64px -121px;
}

.flag.flag-pr {
  background-position: -80px -121px;
}

.flag.flag-ps {
  background-position: -96px -121px;
}

.flag.flag-pt {
  background-position: -112px -121px;
}

.flag.flag-pw {
  background-position: -128px -121px;
}

.flag.flag-py {
  background-position: -144px -121px;
}

.flag.flag-qa {
  background-position: -160px -121px;
}

.flag.flag-re {
  background-position: -176px -121px;
}

.flag.flag-ro {
  background-position: -192px -121px;
}

.flag.flag-rs {
  background-position: -208px -121px;
}

.flag.flag-ru {
  background-position: -224px -121px;
}

.flag.flag-rw {
  background-position: -240px -121px;
}

.flag.flag-sa {
  background-position: 0 -132px;
}

.flag.flag-sb {
  background-position: -16px -132px;
}

.flag.flag-sc {
  background-position: -32px -132px;
}

.flag.flag-scotland {
  background-position: -48px -132px;
}

.flag.flag-sd {
  background-position: -64px -132px;
}

.flag.flag-se {
  background-position: -80px -132px;
}

.flag.flag-sg {
  background-position: -96px -132px;
}

.flag.flag-sh {
  background-position: -112px -132px;
}

.flag.flag-si {
  background-position: -128px -132px;
}

.flag.flag-sk {
  background-position: -144px -132px;
}

.flag.flag-sl {
  background-position: -160px -132px;
}

.flag.flag-sm {
  background-position: -176px -132px;
}

.flag.flag-sn {
  background-position: -192px -132px;
}

.flag.flag-so {
  background-position: -208px -132px;
}

.flag.flag-somaliland {
  background-position: -224px -132px;
}

.flag.flag-sr {
  background-position: -240px -132px;
}

.flag.flag-ss {
  background-position: 0 -143px;
}

.flag.flag-st {
  background-position: -16px -143px;
}

.flag.flag-sv {
  background-position: -32px -143px;
}

.flag.flag-sx {
  background-position: -48px -143px;
}

.flag.flag-sy {
  background-position: -64px -143px;
}

.flag.flag-sz {
  background-position: -80px -143px;
}

.flag.flag-tc {
  background-position: -96px -143px;
}

.flag.flag-td {
  background-position: -112px -143px;
}

.flag.flag-tf {
  background-position: -128px -143px;
}

.flag.flag-tg {
  background-position: -144px -143px;
}

.flag.flag-th {
  background-position: -160px -143px;
}

.flag.flag-tibet {
  background-position: -176px -143px;
}

.flag.flag-tj {
  background-position: -192px -143px;
}

.flag.flag-tk {
  background-position: -208px -143px;
}

.flag.flag-tl {
  background-position: -224px -143px;
}

.flag.flag-tm {
  background-position: -240px -143px;
}

.flag.flag-tn {
  background-position: 0 -154px;
}

.flag.flag-to {
  background-position: -16px -154px;
}

.flag.flag-tr {
  background-position: -32px -154px;
}

.flag.flag-tt {
  background-position: -48px -154px;
}

.flag.flag-tv {
  background-position: -64px -154px;
}

.flag.flag-tw {
  background-position: -80px -154px;
}

.flag.flag-tz {
  background-position: -96px -154px;
}

.flag.flag-ua {
  background-position: -112px -154px;
}

.flag.flag-ug {
  background-position: -128px -154px;
}

.flag.flag-um {
  background-position: -144px -154px;
}

.flag.flag-us {
  background-position: -160px -154px;
}

.flag.flag-uy {
  background-position: -176px -154px;
}

.flag.flag-uz {
  background-position: -192px -154px;
}

.flag.flag-va {
  background-position: -208px -154px;
}

.flag.flag-vc {
  background-position: -224px -154px;
}

.flag.flag-ve {
  background-position: -240px -154px;
}

.flag.flag-vg {
  background-position: 0 -165px;
}

.flag.flag-vi {
  background-position: -16px -165px;
}

.flag.flag-vn {
  background-position: -32px -165px;
}

.flag.flag-vu {
  background-position: -48px -165px;
}

.flag.flag-wales {
  background-position: -64px -165px;
}

.flag.flag-wf {
  background-position: -80px -165px;
}

.flag.flag-ws {
  background-position: -96px -165px;
}

.flag.flag-xk {
  background-position: -112px -165px;
}

.flag.flag-ye {
  background-position: -128px -165px;
}

.flag.flag-yt {
  background-position: -144px -165px;
}

.flag.flag-za {
  background-position: -160px -165px;
}

.flag.flag-zanzibar {
  background-position: -176px -165px;
}

.flag.flag-zm {
  background-position: -192px -165px;
}

.flag.flag-zw {
  background-position: -208px -165px;
}

.loading-overlay-showing {
  overflow: hidden;
}

.loading-overlay-showing > .loading-overlay {
  opacity: 1;
  visibility: visible;
}

.loading-overlay {
  -webkit-transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
  transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
  visibility: hidden;
  background: #FFF;
}

body > .loading-overlay {
  position: fixed;
  z-index: 999999;
}

/* Bounce Loading */
.bounce-loader {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: -9px 0 0 -35px;
  text-align: center;
  width: 70px;
  left: 50%;
  position: absolute;
  top: 50%;
  z-index: 10000;
}

.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
  -webkit-animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
  animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
  background-color: #CCC;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  display: inline-block;
  height: 18px;
  width: 18px;
}

.bounce-loader .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.bounce-loader .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

html.safari.iphone .bounce-loader .bounce1,
html.safari.iphone .bounce-loader .bounce2,
html.safari.iphone .bounce-loader .bounce3 {
  -webkit-animation: 1.4s ease-in-out infinite bouncedelay;
  animation: 1.4s ease-in-out infinite bouncedelay;
}

/* Dropdowns */
.dropdown-menu {
  padding: 5px 0;
  border-radius: 5px;
  filter: drop-shadow(-1.509px 1.312px 15.5px rgba(0,0,0,0.12));
  background-color: #ffffff;
  border: 1px solid #ededed;
  text-align: left;
  min-width: 0rem;
}

.dropdown-item {
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 5px 25px;
}

.dropdown-menu > li {
  border-bottom: 1px solid #303537;
}

.dropdown-menu > li > a {
  display: block;
  padding: 7px;
  line-height: 1.42857143;
}

.dropdown-menu > li:last-child {
  border-bottom: 0;
}

.dropdown-menu li a:not(.btn) {
  color: #9D9D9D;
}

.dropdown-menu li:hover a:not(.btn) {
  color: #FFF;
}

.dropdown-toggle:after {
  content: none;
}

/* Particles */
@-webkit-keyframes expandParticles {
  from {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes expandParticles {
  from {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.expandParticles {
  -webkit-animation-name: expandParticles;
  animation-name: expandParticles;
}

/* Particles */
.particles {
  position: relative;
  min-height: 380px;
  /* Rect */
  /* Particles SVG */
  /* Counter Style */
}

.particles .particles-rect {
  position: absolute;
  right: 3%;
  width: 45%;
  min-width: 150px;
  height: 83%;
}

.particles .svg-particles {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 114%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.particles .svg-particles .g-particles {
  -webkit-transform-origin: center;
  transform-origin: center;
}

.particles .particles-counter {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0px 4px 50px -19px rgba(28, 31, 33, 0.4);
  box-shadow: 0px 4px 50px -19px rgba(28, 31, 33, 0.4);
}

.particles .particles-counter .counters {
  padding: 28.8px;
  padding: 1.8rem;
}

.particles .particles-counter .counters [class*="col-"] {
  border-color: rgba(46, 50, 55, 0.1);
  border-style: solid;
  border-width: 0;
}

.particles .particles-counter .counters [class*="col-"]:nth-child(1) {
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.particles .particles-counter .counters [class*="col-"]:nth-child(2) {
  border-bottom-width: 1px;
}

.particles .particles-counter .counters [class*="col-"]:nth-child(3) {
  border-right-width: 1px;
}

/* IE */
html.ie .particles .img-fluid {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Particles Responsive */
@media (max-width: 1199px) {
  .particles .particles-rect {
    right: -6%;
  }

  .particles .svg-particles {
    width: 134%;
  }
}

@media (max-width: 991px) {
  .particles {
    min-height: 318px;
  }

  .particles > img {
    max-height: 181px;
  }

  .particles .particles-rect {
    height: 70%;
  }

  .particles .svg-particles {
    width: 114%;
  }

  .particles .particles-counter .counters {
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  .particles {
    min-height: 50vw;
    margin: 6vw 0 0;
  }

  .particles > img {
    height: auto;
    max-height: none;
  }

  .particles .svg-particles {
    display: none;
  }
}

@media (max-width: 575px) {
  .particles .particles-counter .counters {
    padding: 1.8rem;
  }

  .particles .particles-counter .counters [class*="col-"]:nth-child(1) {
    border-right-width: 0;
    border-bottom-width: 1px;
  }

  .particles .particles-counter .counters [class*="col-"]:nth-child(2) {
    border-bottom-width: 1px;
  }

  .particles .particles-counter .counters [class*="col-"]:nth-child(3) {
    border-right-width: 0;
    border-bottom-width: 1px;
  }
}
/* Steps */
.steps {
  position: relative;
  min-height: 320px;
  /* Steps Style 2 */
  /* Steps Style 3 */
  /* Steps Style 4 */
}

.steps .item {
  position: absolute;
  background-size: cover;
  top: 50%;
  padding: 1.5384615385em;
  text-align: center;
  width: 155px;
  height: 155px;
  border: 6px solid #000;
  border-color: #CCC;
  border-radius: 100%;
  overflow: hidden;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.steps .item:not(.active):not(.no-bg-color) {
  background: #f1f3f7 !important;
}

.steps .item:nth-child(2) {
  left: 10.4%;
}

.steps .item:nth-child(3) {
  left: 50%;
}

.steps .item:nth-child(4) {
  left: 89.5%;
}

.steps .item .item-title {
  position: absolute;
  top: 63%;
  left: 50%;
  width: 100%;
  color: #282828;
  font-size: 1.3076923077em;
  font-weight: 900;
  padding: 0.7692307692em 0;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.steps .item .item-title:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f1f3f7;
  z-index: -1;
}

.steps .item .item-title span {
  position: absolute;
  top: -49px;
  left: 50%;
  font-size: 5.3846153846em;
  line-height: 1;
  font-weight: 700;
  color: #CCC;
  z-index: -2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps .item p, .steps .item a {
  display: none;
}

.steps .item.active {
  width: 280px;
  height: 280px;
  border-color: #282828;
}

.steps .item.active:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 6px solid #f1f3f7;
  border-radius: 100%;
  z-index: 1;
}

.steps .item.active:after {
  content: '';
  display: block;
  position: absolute;
  background: #FFF;
  top: 40%;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 0;
}

.steps .item.active .item-title {
  top: 39%;
  color: #FFF;
  font-size: 2.6153846154em;
  z-index: 1;
}

.steps .item.active .item-title span {
  position: static;
  font-size: inherit;
  font-weight: 900;
  margin-right: 7px;
}

.steps .item.active .item-title:after {
  content: none;
}

.steps .item.active p, .steps .item.active a {
  display: block;
}

.steps .item.active p {
  position: relative;
  color: #282828;
  top: 50%;
  margin: 0;
  line-height: 1.8461538462em;
  z-index: 1;
}

.steps .item.active a {
  position: absolute;
  left: 50%;
  bottom: 32px;
  font-weight: bold;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps .dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73%;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.steps .dots .dots-mask {
  position: relative;
  z-index: 2;
}

.steps .dots .dots-color {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 7px;
  left: 0;
  background: #CCC;
}

.steps .dots .dots-color-dark {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 190px;
  background: #282828;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps .dots .dots-color-dark._left {
  left: 10%;
}

.steps .dots .dots-color-dark._center {
  left: 50%;
}

.steps .dots .dots-color-dark._right {
  left: 90%;
}

.steps.steps-style-2 .item {
  width: 280px;
  height: 280px;
  border: none;
}

.steps.steps-style-2 .item:before, .steps.steps-style-2 .item:after {
  content: none;
}

.steps.steps-style-2 .item:not(.active) {
  background: transparent !important;
}

.steps.steps-style-2 .item .item-title {
  top: 30%;
  color: #282828;
  font-size: 16px;
  font-size: 1rem;
}

.steps.steps-style-2 .item .item-title span {
  position: static;
  font-size: 4em;
  font-weight: 900;
  margin-right: 7px;
  -webkit-transition: ease color 300ms;
  transition: ease color 300ms;
}

.steps.steps-style-2 .item .item-title:after {
  content: '';
  right: 32px;
  left: 32px;
  background: #FFF;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.steps.steps-style-2 .item > i {
  position: absolute;
  top: 51.2px;
  top: 3.2rem;
  left: 50%;
  font-size: 33.6px;
  font-size: 2.1rem;
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  -webkit-transition: ease color 300ms;
  transition: ease color 300ms;
}

.steps.steps-style-2 .item p, .steps.steps-style-2 .item a {
  display: block;
}

.steps.steps-style-2 .item p {
  position: relative;
  color: #282828;
  top: 50%;
  margin: 0;
  line-height: 1.8461538462em;
  z-index: 1;
}

.steps.steps-style-2 .item a {
  position: absolute;
  left: 50%;
  bottom: 32px;
  font-weight: bold;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps.steps-style-2 .item.active .item-title {
  color: #CCC;
}

.steps.steps-style-2 .item.active .item-title span,
.steps.steps-style-2 .item.active > i {
  color: #282828;
}

.steps.steps-style-2 .dots {
  top: 38%;
  width: 85%;
}

.steps.steps-style-3 {
  min-height: 170px;
}

.steps.steps-style-3 .item {
  width: 280px;
  height: 180px;
  border: none;
  overflow: visible;
}

.steps.steps-style-3 .item:before, .steps.steps-style-3 .item:after {
  content: none;
}

.steps.steps-style-3 .item:not(.active) {
  background: transparent !important;
}

.steps.steps-style-3 .item .item-title {
  top: 50%;
  color: #282828;
  font-size: 16px;
  font-size: 1rem;
}

.steps.steps-style-3 .item .item-title span {
  font-size: 5em;
  top: -73px;
  font-weight: 700;
  -webkit-transition: ease color 300ms;
  transition: ease color 300ms;
}

.steps.steps-style-3 .item .item-title:after {
  content: '';
  right: 37px;
  left: 93px;
  background: #FFF;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.steps.steps-style-3 .item.active .item-title {
  color: #CCC;
}

.steps.steps-style-3 .item.active .item-title span {
  position: absolute;
  color: #282828;
}

.steps.steps-style-3 .item:nth-child(2) .item-title {
  padding-left: 113px;
}

.steps.steps-style-3 .item:nth-child(3) .item-title {
  padding-left: 55px;
}

.steps.steps-style-3 .item:nth-child(4) .item-title {
  padding-left: 48px;
}

.steps.steps-style-3 .dots {
  top: 50%;
  width: 73%;
  left: 53%;
}

.steps.steps-style-4 .item {
  background-size: cover !important;
  background-position: center !important;
}

.steps.steps-style-4 .item:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 6px solid #f1f3f7;
  border-radius: 100%;
  z-index: 1;
}

.steps.steps-style-4 .item:after {
  content: none;
}

.steps.steps-style-4 .item:not(.active) {
  background: inherit;
}

.steps.steps-style-4 .item:nth-child(2) {
  left: 16.2%;
}

.steps.steps-style-4 .item:nth-child(4) {
  left: 84.3%;
}

/* Responsive */
@media (max-width: 991px) {
  .steps {
    min-height: 750px;
    margin-top: 70px;
    margin-bottom: 30px;
    /* Steps Style 2 */
    /* Steps Style 3 */
  }

  .steps .item {
    left: 50% !important;
  }

  .steps .item:nth-child(2) {
    top: 10%;
  }

  .steps .item:nth-child(3) {
    top: 50%;
  }

  .steps .item:nth-child(4) {
    top: 90%;
  }

  .steps .dots {
    top: 48%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .steps.steps-style-2 .item:after {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 82%;
    background: #FFF;
    z-index: -1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .steps.steps-style-3 {
    min-height: 600px;
    margin-top: 0;
    margin-bottom: 2.2rem;
  }

  .steps.steps-style-3 .item {
    height: 130px;
    background-color: #FFF;
  }

  .steps.steps-style-3 .item:not(.active) {
    background: #FFF !important;
  }

  .steps.steps-style-3 .item .item-title {
    top: 80%;
  }

  .steps.steps-style-3 .dots {
    left: 50%;
  }
}

@media (max-width: 767px) {
  .steps {
    /* Steps Style 2 */
    /* Steps Style 3 */
  }

  .steps .dots {
    width: 510px;
  }

  .steps.steps-style-2 .dots {
    width: 590px;
  }

  .steps.steps-style-3 .dots {
    width: 430px;
  }
}
/* Steps Shadow */
@media (min-width: 992px) {
  .steps-shadow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    -webkit-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
  }

  .steps-shadow.active:before {
    visibility: visible;
    opacity: 1;
  }
}
/* Learn More */
.learn-more {
  color: #282828;
}

.learn-more:hover {
  color: #CCC;
}

.learn-more:hover i {
  margin-left: 8px;
}

.learn-more i {
  margin-left: 5px;
  -webkit-transition: ease margin-left 300ms;
  transition: ease margin-left 300ms;
}

/* IE */
html.ie .steps {
  /* Steps Style 2 */
}

html.ie .steps.steps-style-2 .item .item-title span {
  position: relative;
  top: 0;
  left: 27px;
  z-index: 0;
}

/* Double Carousel */
.double-carousel {
  overflow: hidden;
  /* Default Style */
}

.double-carousel .owl-carousel .owl-stage {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.double-carousel .owl-carousel .owl-item.active.current .card {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.double-carousel .owl-carousel .owl-item .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #FFF;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.double-carousel .owl-carousel .owl-item .card > *:not([class*="col-"]) {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.double-carousel .owl-carousel .owl-item .card p {
  line-height: 1.7;
}

.double-carousel .owl-carousel .owl-item .card strong {
  font-size: 0.9em;
  line-height: 1;
}

@supports ((-o-object-fit: scale-down) or (object-fit: scale-down)) {
  .double-carousel .owl-carousel .owl-item .card > img {
    -o-object-fit: scale-down;
    object-fit: scale-down;
  }
}

.double-carousel .owl-carousel .owl-item .card.card-logo {
  height: 140px;
  width: 100%;
}

.double-carousel .owl-carousel .owl-item .card.card-logo .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.double-carousel .owl-carousel .owl-item .card.card-logo .card-body img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  margin: 0 auto;
}

.double-carousel .owl-carousel .owl-item:not(.current) .card {
  -webkit-filter: blur(2px);
}

.double-carousel .owl-carousel .owl-item:not(.current) .card.card-logo .card-body img {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* Edge */
html.edge .double-carousel .owl-carousel .owl-item .card {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

html.edge .double-carousel .owl-carousel .owl-item:not(.current) .card {
  -webkit-filter: none;
}

/* IE */
html.ie .double-carousel .owl-carousel .owl-item .card > *:not([class*="col-"]) {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

html.ie .double-carousel .owl-carousel .owl-item .card.card-logo .card-body img {
  width: 100%;
}

@media (min-width: 768px) {
  .double-carousel {
    min-height: 200px;
    /* If have animation on wrapper */
  }

  .double-carousel .nav {
    position: absolute;
    top: 55.5%;
    left: 35vw;
    width: 30vw;
    margin-top: -10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .double-carousel .nav .title-left {
    position: absolute;
    width: 30%;
    left: 24%;
    top: 50%;
    text-align: right;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .double-carousel .nav .title-left span {
    color: #282828;
    font-size: 1.2307692308em;
    font-family: Poppins !important;
    font-weight: 600;
  }

  .double-carousel .nav .title-left span > span {
    display: none;
  }

  .double-carousel .nav .title-right {
    position: absolute;
    width: 30%;
    left: 76%;
    top: 50%;
    text-align: left;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .double-carousel .nav .title-right span {
    color: #282828;
    font-size: 1.2307692308em;
    font-family: Poppins !important;
    font-weight: 600;
  }

  .double-carousel .nav .arrows {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .double-carousel .nav .arrows .arrow-left,
  .double-carousel .nav .arrows .arrow-right {
    color: #CCC;
    width: 2.3076923077em;
    height: 2.3076923077em;
    line-height: 2.3076923077em;
    text-align: center;
    cursor: pointer;
    font-size: 1.9230769231em;
  }

  .double-carousel .nav .arrows .arrow-left {
    float: left;
  }

  .double-carousel .nav .arrows .arrow-right {
    float: right;
  }

  .double-carousel .owl-carousel .owl-dots {
    position: absolute;
    top: 50%;
    left: -18vw;
    width: 6vw;
    margin-top: 0 !important;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .double-carousel .owl-carousel .owl-dots .owl-dot {
    margin-top: 8px;
  }

  .double-carousel .owl-carousel .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 4px 4px;
  }

  .double-carousel .owl-carousel .owl-dots .owl-dot.active span {
    background: #CCC;
  }

  .double-carousel .wrapper-left {
    position: absolute;
    top: 50%;
    right: 65vw;
    width: 35vw;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .double-carousel .wrapper-left .owl-carousel {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
  }

  .double-carousel .wrapper-left .owl-carousel.show-carousel {
    opacity: 1;
    visibility: visible;
  }

  .double-carousel .wrapper-left .owl-carousel .owl-dots {
    display: none !important;
  }

  .double-carousel .wrapper-right {
    position: absolute;
    top: 50%;
    left: 65vw;
    width: 35vw;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .double-carousel .wrapper-right .owl-carousel {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease opacity 300ms;
    transition: ease opacity 300ms;
  }

  .double-carousel .wrapper-right .owl-carousel.show-carousel {
    opacity: 1;
    visibility: visible;
  }

  .double-carousel .wrapper-right.appear-animation .owl-carousel .owl-dots {
    opacity: 0;
    -webkit-transition: ease opacity 500ms;
    transition: ease opacity 500ms;
    -webkit-transition-delay: 900ms;
    transition-delay: 900ms;
  }

  .double-carousel .wrapper-right.appear-animation.appear-animation-visible .owl-carousel .owl-dots {
    opacity: 1;
  }

  /* Internet Explorer 10/11 */
  html.ie10 .double-carousel .nav,
  html.ie11 .double-carousel .nav {
    min-height: 200px;
    z-index: 1;
  }
}
/* Double Carousel Responsive */
@media (min-width: 768px) and (max-width: 1199px) {
  .double-carousel .nav {
    top: 60%;
  }

  .double-carousel .nav .title-left {
    width: 80%;
    left: 50%;
    top: -62px;
    text-align: center;
  }

  .double-carousel .nav .title-left span > span {
    display: inline-block;
  }

  .double-carousel .nav .title-right {
    width: 80%;
    left: 50%;
    top: -40px;
    text-align: center;
  }

  .double-carousel .owl-carousel .owl-dots {
    top: 70%;
    left: -22.6vw;
    width: 15vw;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .double-carousel .wrapper-left, .double-carousel .wrapper-right {
    width: 32vw;
  }
}

@media (max-width: 1199px) {
  .double-carousel .nav {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .double-carousel .nav {
    display: none;
  }

  .double-carousel .owl-carousel {
    margin-bottom: 0;
  }

  .double-carousel .owl-carousel .owl-item .card {
    min-height: 120px;
    margin-top: 20px;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .double-carousel .owl-carousel .owl-dots {
    display: none;
  }
}
/* Slider Range */
.slider-range-wrapper {
  padding-top: 10px;
}

.slider-range-wrapper .slider-range {
  height: 3px;
  border: none;
  background: #f1f1f1;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.slider-range-wrapper .slider-range .noUi-connect {
  background-color: #CCC;
}

.slider-range-wrapper .slider-range .noUi-handle {
  background-color: #CCC;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: -5px;
  left: -11px;
  right: -7px !important;
  cursor: pointer;
  outline: none;
}

.slider-range-wrapper .slider-range .noUi-handle:after, .slider-range-wrapper .slider-range .noUi-handle:before {
  content: none;
}

.slider-range-wrapper form input {
  background: transparent;
  border: none;
  max-width: 40px;
  color: #282828;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* Pagination */
.pagination .page-item + .page-item {
  margin-left: 5px;
}

.pagination .page-item + .page-item.active .page-link {
  background: #CCC;
  color: #FFF !important;
}

.pagination .page-link {
  color: #282828;
  background: transparent;
  font-weight: bold;
}

.pagination .page-link.next, .pagination .page-link.prev {
  border: none;
}

.pagination .page-link:hover:not(.next):not(.prev) {
  color: #CCC;
  border: 1px solid #CCC;
}

/* Shop */
.product-info-rate.product-info-rate-sm i {
  font-size: 11.2px;
  font-size: 0.7rem;
}

.product-info-rate.product-info-rate-lg i {
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* Shop Cart */
.shop-cart .shop-cart-table thead tr > th {
  padding: 19.2px 0;
  padding: 1.2rem 0;
  color: #282828;
  font-family: Poppins !important;
}

.shop-cart .shop-cart-table thead tr > th strong {
  font-weight: 700;
}

.shop-cart .shop-cart-table tbody {
  border-top: 1px solid #DAE2E6;
}

.shop-cart .shop-cart-table tbody > tr:first-child {
  border-top: 0;
}

.shop-cart .shop-cart-table tbody > tr + tr {
  border-top: 1px solid #DAE2E6;
  border-bottom: 1px solid #DAE2E6;
}

.shop-cart .shop-cart-table tbody > tr > td {
  padding: 22.4px 9.6px;
  padding: 1.4rem 0.6rem;
}

.shop-cart .shop-cart-table tbody .product-subtotal {
  color: #282828;
  font-size: 14.4px;
  font-size: 0.9rem;
  font-family: Poppins !important;
}

.shop-cart .shop-cart-table .product-remove {
  width: 7%;
  text-align: center;
}

.shop-cart .shop-cart-table .product-thumbnail {
  width: 85px;
}

.shop-cart .shop-cart-table .product-name {
  width: 40%;
}

/* Cart Totals */
.cart-totals tbody {
  border-top: 1px solid #DAE2E6;
}

.cart-totals tbody > tr:first-child {
  border-top: 0;
}

.cart-totals tbody > tr + tr {
  border-top: 1px solid #DAE2E6;
  border-bottom: 1px solid #DAE2E6;
}

.cart-totals tbody > tr > td {
  padding: 14.4px 0;
  padding: 0.9rem 0;
}

.cart-totals tbody > tr > td:first-child {
  padding-left: 16px;
  padding-left: 1rem;
}

.cart-totals .cart-total-label {
  font-weight: 600;
}

.cart-totals .cart-total-value {
  font-weight: 700;
  font-size: 14.4px;
  font-size: 0.9rem;
  font-family: Poppins !important;
  color: #282828;
}

/* OFF Tag */
.off-tag-top-left {
  position: absolute;
  top: -11.2px;
  top: -0.7rem;
  left: -11.2px;
  left: -0.7rem;
  z-index: 1;
}

.off-tag-top-right {
  position: absolute;
  top: -11.2px;
  top: -0.7rem;
  right: -11.2px;
  right: -0.7rem;
  z-index: 1;
}

.off-tag-bottom-left {
  position: absolute;
  bottom: -11.2px;
  bottom: -0.7rem;
  left: -11.2px;
  left: -0.7rem;
  z-index: 1;
}

.off-tag-bottom-right {
  position: absolute;
  bottom: -11.2px;
  bottom: -0.7rem;
  right: -11.2px;
  right: -0.7rem;
  z-index: 1;
}

.shop-now-bottom {
  bottom: 29px;
}

/* Blog */
.blog-post .blog-post-header {
  position: relative;
  overflow: hidden;
}

.blog-post .blog-post-header:hover .post-format-icon {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.blog-post .blog-post-header .post-format-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  -webkit-transition: cubic-bezier(0.55, 0, 0.1, 1) transform 300ms 200ms, cubic-bezier(0.55, 0, 0.1, 1) opacity 300ms;
  transition: cubic-bezier(0.55, 0, 0.1, 1) transform 300ms 200ms, cubic-bezier(0.55, 0, 0.1, 1) opacity 300ms;
}

/* Comments */
ul.comments {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.comments li {
  padding: 10px 0 0 55px;
}

ul.comments li img.avatar {
  height: 55px;
  width: 55px;
}

ul.comments li ul.reply {
  margin: 0;
}

ul.comments li a {
  text-decoration: none;
}

ul.comments li .avatar {
  margin-left: -55px;
  margin-top: 16px;
  margin-top: 1rem;
}

ul.comments li .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

ul.comments .comment-block {
  border-radius: 5px;
  padding: 20px 20px 30px;
  position: relative;
  width: 100%;
}

ul.comments .comment-block p {
  font-size: 0.9em;
  line-height: 21px;
  margin: 0;
  padding: 0;
}

ul.comments .comment-block .comment-by {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1em;
  line-height: 21px;
  margin: 0;
  padding: 0 0 5px 0;
}

ul.comments .comment-block .comment-by .comment-date {
  padding: 0 16px;
  padding: 0 1rem;
  margin: 0 16px;
  margin: 0 1rem;
  border-right: 1px solid #dadada;
  border-left: 1px solid #dadada;
}

ul.comments .comment-block .comment-by .comment-rating {
  padding: 0 16px 0 0;
  padding: 0 1rem 0 0;
  margin: 0 16px 0 0;
  margin: 0 1rem 0 0;
  border-right: 1px solid #dadada;
}

/* Responsive */
@media (max-width: 991px) {
  ul.comments .comment-block .comment-by {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  ul.comments .comment-block .comment-by .comment-author {
    margin-bottom: 0.3rem;
  }

  ul.comments .comment-block .comment-by .comment-date {
    border: 0;
    margin: 0;
    padding: 0;
  }

  ul.comments .comment-block .comment-by .comment-reply {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 575px) {
  ul.comments li {
    border-left: 8px solid #DDDDDD;
    padding: 0 0 0 10px;
  }
}
/* Word Rotator */
.word-rotator i, .word-rotator em, .word-rotator b {
  font-style: normal;
  font-weight: inherit;
}

.word-rotator-words {
  display: inline-block;
  position: relative;
  text-align: left;
}

.word-rotator-words b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.word-rotator-words b.is-visible {
  position: relative;
}

/* rotate-1 */
.word-rotator.rotate-1 .word-rotator-words {
  -webkit-perspective: 300px;
  perspective: 300px;
}

.word-rotator.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.word-rotator.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: word-rotator-rotate-1-in 1.2s;
  animation: word-rotator-rotate-1-in 1.2s;
}

.word-rotator.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: word-rotator-rotate-1-out 1.2s;
  animation: word-rotator-rotate-1-out 1.2s;
}

@-webkit-keyframes word-rotator-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes word-rotator-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes word-rotator-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes word-rotator-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}
/* type */
.word-rotator.type .word-rotator-words {
  vertical-align: top;
  overflow: hidden;
  position: relative;
  padding-right: 3px;
}

.word-rotator.type .word-rotator-words::after {
  content: ' ';
  position: absolute;
  right: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  display: block;
  background-color: transparent;
}

.word-rotator.type .word-rotator-words.waiting::after {
  -webkit-animation: 1s word-rotator-pulse step-end infinite;
  animation: 1s word-rotator-pulse step-end infinite;
}

.word-rotator.type .word-rotator-words.selected {
  background-color: #282828;
}

.word-rotator.type .word-rotator-words.selected::after {
  visibility: hidden;
}

.word-rotator.type .word-rotator-words.selected b {
  color: #FFF;
}

.word-rotator.type b {
  visibility: hidden;
}

.word-rotator.type b.is-visible {
  visibility: visible;
}

.word-rotator.type i {
  position: absolute;
  visibility: hidden;
}

.word-rotator.type i.in {
  position: relative;
  visibility: visible;
}

@-webkit-keyframes word-rotator-pulse {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: black;
  }
}

@keyframes word-rotator-pulse {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: black;
  }
}

@-webkit-keyframes word-rotator-pulse-light {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: white;
  }
}

@keyframes word-rotator-pulse-light {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: white;
  }
}
/* rotate-2 */
.word-rotator.rotate-2 .word-rotator-words {
  -webkit-perspective: 300px;
  perspective: 300px;
}

.word-rotator.rotate-2 i, .word-rotator.rotate-2 em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.word-rotator.rotate-2 b {
  opacity: 0;
}

.word-rotator.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}

.is-visible .word-rotator.rotate-2 i {
  opacity: 1;
}

.word-rotator.rotate-2 i.in {
  -webkit-animation: word-rotator-rotate-2-in .4s forwards;
  animation: word-rotator-rotate-2-in .4s forwards;
}

.word-rotator.rotate-2 i.out {
  -webkit-animation: word-rotator-rotate-2-out .4s forwards;
  animation: word-rotator-rotate-2-out .4s forwards;
}

.word-rotator.rotate-2 em {
  -webkit-transform: translateZ(20px);
  transform: translateZ(20px);
}

.no-csstransitions .word-rotator.rotate-2 i {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 0;
}

.no-csstransitions .word-rotator.rotate-2 i em {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.no-csstransitions .word-rotator.rotate-2 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes word-rotator-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@keyframes word-rotator-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@-webkit-keyframes word-rotator-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}

@keyframes word-rotator-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}
/* loading-bar */
.word-rotator.loading-bar span {
  display: inline-block;
  padding: .2em 0;
}

.word-rotator.loading-bar .word-rotator-words {
  overflow: hidden;
  vertical-align: top;
}

.word-rotator.loading-bar .word-rotator-words::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #282828;
  z-index: 2;
  -webkit-transition: width .3s -0.1s;
  transition: width .3s -0.1s;
}

.word-rotator.loading-bar .word-rotator-words.is-loading::after {
  width: 100%;
  -webkit-transition: width 3s;
  transition: width 3s;
}

.word-rotator.loading-bar b {
  top: .2em;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.word-rotator.loading-bar b.is-visible {
  opacity: 1;
  top: 0;
}

/* slide */
.word-rotator.slide span {
  display: inline-block;
  padding: .2em 0;
}

.word-rotator.slide .word-rotator-words {
  overflow: hidden;
  vertical-align: top;
}

.word-rotator.slide b {
  opacity: 0;
  top: .2em;
}

.word-rotator.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in .6s;
  animation: slide-in .6s;
}

.word-rotator.slide b.is-hidden {
  -webkit-animation: slide-out .6s;
  animation: slide-out .6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* clip */
.word-rotator.clip span {
  display: inline-block;
  padding: .2em 0;
}

.word-rotator.clip .word-rotator-words {
  overflow: hidden;
  vertical-align: top;
}

.word-rotator.clip .word-rotator-words::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #282828;
}

.word-rotator.clip b {
  opacity: 0;
}

.word-rotator.clip b.is-visible {
  opacity: 1;
}

/* zoom */
.word-rotator.zoom .word-rotator-words {
  -webkit-perspective: 300px;
  perspective: 300px;
}

.word-rotator.zoom b {
  opacity: 0;
}

.word-rotator.zoom b.is-visible {
  opacity: 1;
  -webkit-animation: zoom-in .8s;
  animation: zoom-in .8s;
}

.word-rotator.zoom b.is-hidden {
  -webkit-animation: zoom-out .8s;
  animation: zoom-out .8s;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}

@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}

.word-rotator.rotate-3 .word-rotator-words {
  -webkit-perspective: 300px;
  perspective: 300px;
}

.word-rotator.rotate-3 b {
  opacity: 0;
}

.word-rotator.rotate-3 i {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-visible .word-rotator.rotate-3 i {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.word-rotator.rotate-3 i.in {
  -webkit-animation: word-rotator-rotate-3-in .6s forwards;
  animation: word-rotator-rotate-3-in .6s forwards;
}

.word-rotator.rotate-3 i.out {
  -webkit-animation: word-rotator-rotate-3-out .6s forwards;
  animation: word-rotator-rotate-3-out .6s forwards;
}

.no-csstransitions .word-rotator.rotate-3 i {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 0;
}

.no-csstransitions .word-rotator.rotate-3 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes word-rotator-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  100% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes word-rotator-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  100% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@-webkit-keyframes word-rotator-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  100% {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}

@keyframes word-rotator-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  100% {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}
/* scale */
.word-rotator.scale b {
  opacity: 0;
}

.word-rotator.scale i {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.is-visible .word-rotator.scale i {
  opacity: 1;
}

.word-rotator.scale i.in {
  -webkit-animation: scale-up .6s forwards;
  animation: scale-up .6s forwards;
}

.word-rotator.scale i.out {
  -webkit-animation: scale-down .6s forwards;
  animation: scale-down .6s forwards;
}

.no-csstransitions .word-rotator.scale i {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0;
}

.no-csstransitions .word-rotator.scale .is-visible i {
  opacity: 1;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}
/* push */
.word-rotator.push b {
  opacity: 0;
}

.word-rotator.push b.is-visible {
  opacity: 1;
  -webkit-animation: push-in .6s;
  animation: push-in .6s;
}

.word-rotator.push b.is-hidden {
  -webkit-animation: push-out .6s;
  animation: push-out .6s;
}

@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/* Content Rotator */
.owl-carousel-vertical .owl-item {
  position: relative;
}

.owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  content: ' ';
  display: block;
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  z-index: 10;
}

.owl-carousel-vertical.owl-carousel-vertical-style-1 .owl-stage-outer {
  padding-top: 70px;
  padding-bottom: 70px;
}

.owl-carousel-vertical.owl-carousel-vertical-style-1 .clone-inside {
  position: absolute;
  z-index: 1;
}

.owl-carousel-vertical.owl-carousel-vertical-style-1 .clone-inside.prev {
  top: -100%;
}

.owl-carousel-vertical.owl-carousel-vertical-style-1 .clone-inside.next {
  top: 100%;
}

.bg-light-1 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(252, 253, 253, 0)), to(#fcfdfd));
  background: linear-gradient(to bottom, rgba(252, 253, 253, 0), #fcfdfd);
}

.bg-light-1 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfdfd), to(rgba(252, 253, 253, 0)));
  background: linear-gradient(to bottom, #fcfdfd, rgba(252, 253, 253, 0));
}

.bg-light-2 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 253, 0)), to(#fbfbfd));
  background: linear-gradient(to bottom, rgba(251, 251, 253, 0), #fbfbfd);
}

.bg-light-2 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfd), to(rgba(251, 251, 253, 0)));
  background: linear-gradient(to bottom, #fbfbfd, rgba(251, 251, 253, 0));
}

.bg-light-3 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 249, 251, 0)), to(#f7f9fb));
  background: linear-gradient(to bottom, rgba(247, 249, 251, 0), #f7f9fb);
}

.bg-light-3 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f9fb), to(rgba(247, 249, 251, 0)));
  background: linear-gradient(to bottom, #f7f9fb, rgba(247, 249, 251, 0));
}

.bg-light-4 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 246, 249, 0)), to(#f4f6f9));
  background: linear-gradient(to bottom, rgba(244, 246, 249, 0), #f4f6f9);
}

.bg-light-4 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f9), to(rgba(244, 246, 249, 0)));
  background: linear-gradient(to bottom, #f4f6f9, rgba(244, 246, 249, 0));
}

.bg-light-5 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 243, 247, 0)), to(#f1f3f7));
  background: linear-gradient(to bottom, rgba(241, 243, 247, 0), #f1f3f7);
}

.bg-light-5 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1f3f7), to(rgba(241, 243, 247, 0)));
  background: linear-gradient(to bottom, #f1f3f7, rgba(241, 243, 247, 0));
}

.bg-dark-1 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 10, 11, 0)), to(#090a0b));
  background: linear-gradient(to bottom, rgba(9, 10, 11, 0), #090a0b);
}

.bg-dark-1 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#090a0b), to(rgba(9, 10, 11, 0)));
  background: linear-gradient(to bottom, #090a0b, rgba(9, 10, 11, 0));
}

.bg-dark-2 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 30, 33, 0)), to(#1b1e21));
  background: linear-gradient(to bottom, rgba(27, 30, 33, 0), #1b1e21);
}

.bg-dark-2 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#1b1e21), to(rgba(27, 30, 33, 0)));
  background: linear-gradient(to bottom, #1b1e21, rgba(27, 30, 33, 0));
}

.bg-dark-3 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 35, 38, 0)), to(#202326));
  background: linear-gradient(to bottom, rgba(32, 35, 38, 0), #202326);
}

.bg-dark-3 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#202326), to(rgba(32, 35, 38, 0)));
  background: linear-gradient(to bottom, #202326, rgba(32, 35, 38, 0));
}

.bg-dark-4 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 45, 49, 0)), to(#292d31));
  background: linear-gradient(to bottom, rgba(41, 45, 49, 0), #292d31);
}

.bg-dark-4 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#292d31), to(rgba(41, 45, 49, 0)));
  background: linear-gradient(to bottom, #292d31, rgba(41, 45, 49, 0));
}

.bg-dark-5 .owl-carousel-vertical.owl-carousel-vertical-style-1:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 50, 55, 0)), to(#2e3237));
  background: linear-gradient(to bottom, rgba(46, 50, 55, 0), #2e3237);
}

.bg-dark-5 .owl-carousel-vertical.owl-carousel-vertical-style-1:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#2e3237), to(rgba(46, 50, 55, 0)));
  background: linear-gradient(to bottom, #2e3237, rgba(46, 50, 55, 0));
}

/* Portfolio List */
.portfolio-list {
  list-style: none;
  margin: -8px;
  margin: -0.5rem;
  padding: 0;
}

.portfolio-list .portfolio-item {
  position: relative;
  margin: 8px;
  margin: 0.5rem;
}

.portfolio-list .portfolio-item.portfolio-item-style-2 {
  margin: 8px 8px 32px;
  margin: 0.5rem 0.5rem 2rem;
}

.portfolio-list.portfolio-list-no-gap .portfolio-item {
  margin: 0;
}

.portfolio-list.portfolio-list-style-2 {
  margin: -16px;
  margin: -1rem;
}

.portfolio-list.portfolio-list-style-2 .portfolio-item {
  margin: 16px;
  margin: 1rem;
}

.portfolio-list.portfolio-list-style-3 {
  margin: -19.2px -16px;
  margin: -1.2rem -1rem;
}

.portfolio-list.portfolio-list-style-3 .portfolio-item {
  margin: 19.2px 16px;
  margin: 1.2rem 1rem;
}

.portfolio-list.portfolio-list-style-4 {
  margin: -22.4px;
  margin: -1.4rem;
}

.portfolio-list.portfolio-list-style-4 .portfolio-item {
  margin: 22.4px;
  margin: 1.4rem;
}

/* Portfolio Load More Loader */
.portfolio-load-more-loader {
  display: none;
  position: relative;
  height: 45px;
}

/* Portfolio Load More Button */
#portfolioLoadMore {
  margin-top: 20px;
}
a:not(.no-skin):not(.btn):not(.badge):not(.nav-link){
  color: #272422;
}
a:not(.no-skin):not(.btn):not(.badge):not(.nav-link):hover,
a:not(.no-skin):not(.btn):not(.badge):not(.nav-link):focus {
  color: #272422cc;
}
a:not(.no-skin):not(.btn):not(.badge):not(.nav-link):hover.link-underline,
a:not(.no-skin):not(.btn):not(.badge):not(.nav-link):focus.link-underline {
  border-color: transparent;
}
html .text-color-primary:not(.no-skin),
html .text-primary:not(.no-skin) {
  color: #272422 !important;
}
html .text-color-secondary:not(.no-skin),
html .text-secondary:not(.no-skin) {
  color: #394c5f !important;
}
html .text-color-tertiary:not(.no-skin),
html .text-tertiary:not(.no-skin) {
  color: #ed153e !important;
}
html .text-color-quaternary:not(.no-skin),
html .text-quaternary:not(.no-skin) {
  color: #0f3964 !important;
}
html .border-color-primary:not(.no-skin) {
  border-color: #272422 !important;
}
html .border-color-secondary:not(.no-skin) {
  border-color: #394c5f !important;
}
html .border-color-tertiary:not(.no-skin) {
  border-color: #ed153e !important;
}
html .border-color-quaternary:not(.no-skin) {
  border-color: #0f3964 !important;
}
html .bg-primary-1:not(.no-skin) {
  background-color: #05223f !important;
}
html .bg-primary-2:not(.no-skin) {
  background-color: #093b6e !important;
}
html .bg-primary-3:not(.no-skin) {
  background-color: #0d559d !important;
}
html .bg-primary-4:not(.no-skin) {
  background-color: #116ecc !important;
}
html .bg-primary:not(.no-skin) {
  background-color: #272422 !important;
}
html .bg-primary-6:not(.no-skin) {
  background-color: #272422cc !important;
}
html .bg-primary-7:not(.no-skin) {
  background-color: #81bbf5 !important;
}
html .bg-primary-8:not(.no-skin) {
  background-color: #b0d4f9 !important;
}
html .bg-primary-9:not(.no-skin) {
  background-color: #e0eefc !important;
}
html .bg-secondary-1:not(.no-skin) {
  background-color: #081e13 !important;
}
html .bg-secondary-2:not(.no-skin) {
  background-color: #13462b !important;
}
html .bg-secondary-3:not(.no-skin) {
  background-color: #1e6e44 !important;
}
html .bg-secondary-4:not(.no-skin) {
  background-color: #29965d !important;
}
html .bg-secondary:not(.no-skin) {
  background-color: #394c5f !important;
}
html .bg-secondary-6:not(.no-skin) {
  background-color: #151f2a !important;
}
html .bg-secondary-7:not(.no-skin) {
  background-color: #7ddbaa !important;
}
html .bg-secondary-8:not(.no-skin) {
  background-color: #a5e6c4 !important;
}
html .bg-secondary-9:not(.no-skin) {
  background-color: #cdf1de !important;
}
html .bg-tertiary-1:not(.no-skin) {
  background-color: #32040d !important;
}
html .bg-tertiary-2:not(.no-skin) {
  background-color: #620819 !important;
}
html .bg-tertiary-3:not(.no-skin) {
  background-color: #910b25 !important;
}
html .bg-tertiary-4:not(.no-skin) {
  background-color: #c00f30 !important;
}
html .bg-tertiary:not(.no-skin) {
  background-color: #ed153e !important;
}
html .bg-tertiary-6:not(.no-skin) {
  background-color: #f14465 !important;
}
html .bg-tertiary-7:not(.no-skin) {
  background-color: #f4748c !important;
}
html .bg-tertiary-8:not(.no-skin) {
  background-color: #f8a3b3 !important;
}
html .bg-tertiary-9:not(.no-skin) {
  background-color: #fcd2da !important;
}
html .bg-quaternary-1:not(.no-skin) {
  background-color: #000000 !important;
}
html .bg-quaternary-2:not(.no-skin) {
  background-color: #000000 !important;
}
html .bg-quaternary-3:not(.no-skin) {
  background-color: #02060b !important;
}
html .bg-quaternary-4:not(.no-skin) {
  background-color: #082038 !important;
}
html .bg-quaternary:not(.no-skin) {
  background-color: #0f3964 !important;
}
html .bg-quaternary-6:not(.no-skin) {
  background-color: #165290 !important;
}
html .bg-quaternary-7:not(.no-skin) {
  background-color: #1c6cbd !important;
}
html .bg-quaternary-8:not(.no-skin) {
  background-color: #2d85df !important;
}
html .bg-quaternary-9:not(.no-skin) {
  background-color: #599fe6 !important;
}
html .overlay-color-primary:not(.no-skin):before {
  background-color: #272422 !important;
}
html .overlay-color-secondary:not(.no-skin):before {
  background-color: #394c5f !important;
}
html .overlay-color-tertiary:not(.no-skin):before {
  background-color: #ed153e !important;
}
html .overlay-color-quaternary:not(.no-skin):before {
  background-color: #0f3964 !important;
}
html .btn-primary,
html.sticky-header-active .btn-sticky-primary {
  border-color: transparent;
  color: #272422;
  background-color: #fbda16 !important;
}

html .btn-yellow {
  border-color: transparent;
  color: #272422;
  background-color: #fbda16 !important;
}

.btn:focus, .page-link:focus {
  box-shadow: none !important;
}
html .btn-primary:hover,
html.sticky-header-active .btn-sticky-primary:hover,
html .btn-primary:focus,
html.sticky-header-active .btn-sticky-primary:focus {
  border-color: #272422;
  background-color: #fff !important;
  color: #272422;
}

html .btn-yellow:hover,
html.sticky-header-active .btn-sticky-primary:hover,
html .btn-yellow:focus,
html.sticky-header-active .btn-sticky-primary:focus {
  border-color: #272422;
  background-color: #fff !important;
  color: #272422;
}
/*html .btn-primary:focus,
html.sticky-header-active .btn-sticky-primary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(35, 136, 237, 0.25);
          box-shadow: 0 0 0 3px rgba(35, 136, 237, 0.25);
}*/
html .btn-primary:disabled,
html.sticky-header-active .btn-sticky-primary:disabled,
html .btn-primary.disabled,
html.sticky-header-active .btn-sticky-primary.disabled,
html .btn-primary:disabled:hover,
html.sticky-header-active .btn-sticky-primary:disabled:hover,
html .btn-primary.disabled:hover,
html.sticky-header-active .btn-sticky-primary.disabled:hover,
html .btn-primary:disabled:active,
html.sticky-header-active .btn-sticky-primary:disabled:active,
html .btn-primary.disabled:active,
html.sticky-header-active .btn-sticky-primary.disabled:active,
html .btn-primary:disabled:focus,
html.sticky-header-active .btn-sticky-primary:disabled:focus,
html .btn-primary.disabled:focus,
html.sticky-header-active .btn-sticky-primary.disabled:focus {
  cursor: default;
  border-color: #272422 !important;
  color: #ffffff !important;
  background-color: #272422 !important;
}
html .btn-primary:not([disabled]):not(.disabled).active,
html.sticky-header-active .btn-sticky-primary:not([disabled]):not(.disabled).active,
html .btn-primary:not([disabled]):not(.disabled):active,
html.sticky-header-active .btn-sticky-primary:not([disabled]):not(.disabled):active {
  border-color: transparent;
  color: #ffffff;
  background-color: #272422 !important;
}
html .btn-secondary,
html.sticky-header-active .btn-sticky-secondary {
  border-color: #394c5f;
  color: #ffffff;
  background-color: #394c5f;
}
html .btn-secondary:hover,
html.sticky-header-active .btn-sticky-secondary:hover,
html .btn-secondary:focus,
html.sticky-header-active .btn-sticky-secondary:focus {
  border-color: #151f2a;
  background-color: #151f2a;
  color: #ffffff;
}
html .btn-secondary:focus,
html.sticky-header-active .btn-sticky-secondary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(52, 190, 118, 0.25);
          box-shadow: 0 0 0 3px rgba(52, 190, 118, 0.25);
}
html .btn-secondary:disabled,
html.sticky-header-active .btn-sticky-secondary:disabled,
html .btn-secondary.disabled,
html.sticky-header-active .btn-sticky-secondary.disabled,
html .btn-secondary:disabled:hover,
html.sticky-header-active .btn-sticky-secondary:disabled:hover,
html .btn-secondary.disabled:hover,
html.sticky-header-active .btn-sticky-secondary.disabled:hover,
html .btn-secondary:disabled:active,
html.sticky-header-active .btn-sticky-secondary:disabled:active,
html .btn-secondary.disabled:active,
html.sticky-header-active .btn-sticky-secondary.disabled:active,
html .btn-secondary:disabled:focus,
html.sticky-header-active .btn-sticky-secondary:disabled:focus,
html .btn-secondary.disabled:focus,
html.sticky-header-active .btn-sticky-secondary.disabled:focus {
  cursor: default;
  border-color: #394c5f !important;
  color: #ffffff !important;
  background-color: #394c5f !important;
}
html .btn-secondary:not([disabled]):not(.disabled).active,
html.sticky-header-active .btn-sticky-secondary:not([disabled]):not(.disabled).active,
html .btn-secondary:not([disabled]):not(.disabled):active,
html.sticky-header-active .btn-sticky-secondary:not([disabled]):not(.disabled):active {
  border-color: #394c5f;
  color: #ffffff;
  background-color: #394c5f;
  -webkit-box-shadow: 0 0 0 0.2rem #151f2a;
          box-shadow: 0 0 0 0.2rem #151f2a;
}
html .btn-tertiary,
html.sticky-header-active .btn-sticky-tertiary {
  border-color: #ed153e;
  color: #ffffff;
  background-color: #ed153e;
}
html .btn-tertiary:hover,
html.sticky-header-active .btn-sticky-tertiary:hover,
html .btn-tertiary:focus,
html.sticky-header-active .btn-sticky-tertiary:focus {
  border-color: #f14465;
  background-color: #f14465;
  color: #ffffff;
}
html .btn-tertiary:focus,
html.sticky-header-active .btn-sticky-tertiary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(237, 21, 62, 0.25);
          box-shadow: 0 0 0 3px rgba(237, 21, 62, 0.25);
}
html .btn-tertiary:disabled,
html.sticky-header-active .btn-sticky-tertiary:disabled,
html .btn-tertiary.disabled,
html.sticky-header-active .btn-sticky-tertiary.disabled,
html .btn-tertiary:disabled:hover,
html.sticky-header-active .btn-sticky-tertiary:disabled:hover,
html .btn-tertiary.disabled:hover,
html.sticky-header-active .btn-sticky-tertiary.disabled:hover,
html .btn-tertiary:disabled:active,
html.sticky-header-active .btn-sticky-tertiary:disabled:active,
html .btn-tertiary.disabled:active,
html.sticky-header-active .btn-sticky-tertiary.disabled:active,
html .btn-tertiary:disabled:focus,
html.sticky-header-active .btn-sticky-tertiary:disabled:focus,
html .btn-tertiary.disabled:focus,
html.sticky-header-active .btn-sticky-tertiary.disabled:focus {
  cursor: default;
  border-color: #ed153e !important;
  color: #ffffff !important;
  background-color: #ed153e !important;
}
html .btn-tertiary:not([disabled]):not(.disabled).active,
html.sticky-header-active .btn-sticky-tertiary:not([disabled]):not(.disabled).active,
html .btn-tertiary:not([disabled]):not(.disabled):active,
html.sticky-header-active .btn-sticky-tertiary:not([disabled]):not(.disabled):active {
  border-color: #ed153e;
  color: #ffffff;
  background-color: #ed153e;
  -webkit-box-shadow: 0 0 0 0.2rem #f14465;
          box-shadow: 0 0 0 0.2rem #f14465;
}
html .btn-quaternary,
html.sticky-header-active .btn-sticky-quaternary {
  border-color: #0f3964;
  color: #ffffff;
  background-color: #0f3964;
}
html .btn-quaternary:hover,
html.sticky-header-active .btn-sticky-quaternary:hover,
html .btn-quaternary:focus,
html.sticky-header-active .btn-sticky-quaternary:focus {
  border-color: #165290;
  background-color: #165290;
  color: #ffffff;
}
html .btn-quaternary:focus,
html.sticky-header-active .btn-sticky-quaternary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(15, 57, 100, 0.25);
          box-shadow: 0 0 0 3px rgba(15, 57, 100, 0.25);
}
html .btn-quaternary:disabled,
html.sticky-header-active .btn-sticky-quaternary:disabled,
html .btn-quaternary.disabled,
html.sticky-header-active .btn-sticky-quaternary.disabled,
html .btn-quaternary:disabled:hover,
html.sticky-header-active .btn-sticky-quaternary:disabled:hover,
html .btn-quaternary.disabled:hover,
html.sticky-header-active .btn-sticky-quaternary.disabled:hover,
html .btn-quaternary:disabled:active,
html.sticky-header-active .btn-sticky-quaternary:disabled:active,
html .btn-quaternary.disabled:active,
html.sticky-header-active .btn-sticky-quaternary.disabled:active,
html .btn-quaternary:disabled:focus,
html.sticky-header-active .btn-sticky-quaternary:disabled:focus,
html .btn-quaternary.disabled:focus,
html.sticky-header-active .btn-sticky-quaternary.disabled:focus {
  cursor: default;
  border-color: #0f3964 !important;
  color: #ffffff !important;
  background-color: #0f3964 !important;
}
html .btn-quaternary:not([disabled]):not(.disabled).active,
html.sticky-header-active .btn-sticky-quaternary:not([disabled]):not(.disabled).active,
html .btn-quaternary:not([disabled]):not(.disabled):active,
html.sticky-header-active .btn-sticky-quaternary:not([disabled]):not(.disabled):active {
  border-color: #0f3964;
  color: #ffffff;
  background-color: #0f3964;
  -webkit-box-shadow: 0 0 0 0.2rem #165290;
          box-shadow: 0 0 0 0.2rem #165290;
}
html .btn-outline.btn-primary,
html.sticky-header-active .btn-outline.btn-sticky-primary {
  background: transparent;
  border-color: #272422 !important;
  color: #272422 !important;
}
html .btn-outline.btn-primary:hover,
html.sticky-header-active .btn-outline.btn-sticky-primary:hover,
html .btn-outline.btn-primary:focus,
html.sticky-header-active .btn-outline.btn-sticky-primary:focus {
  border-color: transparent;
  background-color: #272422 !important;
  color: #ffffff !important;
}
html .btn-outline.btn-primary:disabled,
html.sticky-header-active .btn-outline.btn-sticky-primary:disabled,
html .btn-outline.btn-primary.disabled,
html.sticky-header-active .btn-outline.btn-sticky-primary.disabled,
html .btn-outline.btn-primary:disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-primary:disabled:hover,
html .btn-outline.btn-primary.disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-primary.disabled:hover,
html .btn-outline.btn-primary:disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-primary:disabled:active,
html .btn-outline.btn-primary.disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-primary.disabled:active,
html .btn-outline.btn-primary:disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-primary:disabled:focus,
html .btn-outline.btn-primary.disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-primary.disabled:focus {
  background: transparent !important;
  border-color: #272422 !important;
  color: #272422 !important;
}
html .btn-outline.btn-secondary,
html.sticky-header-active .btn-outline.btn-sticky-secondary {
  background: transparent;
  border-color: #394c5f;
  color: #394c5f;
}
html .btn-outline.btn-secondary:hover,
html.sticky-header-active .btn-outline.btn-sticky-secondary:hover,
html .btn-outline.btn-secondary:focus,
html.sticky-header-active .btn-outline.btn-sticky-secondary:focus {
  border-color: #151f2a;
  background-color: #394c5f !important;
  color: #ffffff;
}
html .btn-outline.btn-secondary:focus,
html.sticky-header-active .btn-outline.btn-sticky-secondary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(52, 190, 118, 0.25);
          box-shadow: 0 0 0 3px rgba(52, 190, 118, 0.25);
}
html .btn-outline.btn-secondary:disabled,
html.sticky-header-active .btn-outline.btn-sticky-secondary:disabled,
html .btn-outline.btn-secondary.disabled,
html.sticky-header-active .btn-outline.btn-sticky-secondary.disabled,
html .btn-outline.btn-secondary:disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-secondary:disabled:hover,
html .btn-outline.btn-secondary.disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-secondary.disabled:hover,
html .btn-outline.btn-secondary:disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-secondary:disabled:active,
html .btn-outline.btn-secondary.disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-secondary.disabled:active,
html .btn-outline.btn-secondary:disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-secondary:disabled:focus,
html .btn-outline.btn-secondary.disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-secondary.disabled:focus {
  background: transparent !important;
  border-color: #394c5f !important;
  color: #394c5f !important;
}
html .btn-outline.btn-tertiary,
html.sticky-header-active .btn-outline.btn-sticky-tertiary {
  background: transparent;
  border-color: #ed153e;
  color: #ed153e;
}
html .btn-outline.btn-tertiary:hover,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:hover,
html .btn-outline.btn-tertiary:focus,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:focus {
  border-color: #f14465;
  background-color: #ed153e !important;
  color: #ffffff;
}
html .btn-outline.btn-tertiary:focus,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(237, 21, 62, 0.25);
          box-shadow: 0 0 0 3px rgba(237, 21, 62, 0.25);
}
html .btn-outline.btn-tertiary:disabled,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:disabled,
html .btn-outline.btn-tertiary.disabled,
html.sticky-header-active .btn-outline.btn-sticky-tertiary.disabled,
html .btn-outline.btn-tertiary:disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:disabled:hover,
html .btn-outline.btn-tertiary.disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-tertiary.disabled:hover,
html .btn-outline.btn-tertiary:disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:disabled:active,
html .btn-outline.btn-tertiary.disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-tertiary.disabled:active,
html .btn-outline.btn-tertiary:disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-tertiary:disabled:focus,
html .btn-outline.btn-tertiary.disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-tertiary.disabled:focus {
  background: transparent !important;
  border-color: #ed153e !important;
  color: #ed153e !important;
}
html .btn-outline.btn-quaternary,
html.sticky-header-active .btn-outline.btn-sticky-quaternary {
  background: transparent;
  border-color: #0f3964;
  color: #0f3964;
}
html .btn-outline.btn-quaternary:hover,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:hover,
html .btn-outline.btn-quaternary:focus,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:focus {
  border-color: #165290;
  background-color: #0f3964 !important;
  color: #ffffff;
}
html .btn-outline.btn-quaternary:focus,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(15, 57, 100, 0.25);
          box-shadow: 0 0 0 3px rgba(15, 57, 100, 0.25);
}
html .btn-outline.btn-quaternary:disabled,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:disabled,
html .btn-outline.btn-quaternary.disabled,
html.sticky-header-active .btn-outline.btn-sticky-quaternary.disabled,
html .btn-outline.btn-quaternary:disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:disabled:hover,
html .btn-outline.btn-quaternary.disabled:hover,
html.sticky-header-active .btn-outline.btn-sticky-quaternary.disabled:hover,
html .btn-outline.btn-quaternary:disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:disabled:active,
html .btn-outline.btn-quaternary.disabled:active,
html.sticky-header-active .btn-outline.btn-sticky-quaternary.disabled:active,
html .btn-outline.btn-quaternary:disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-quaternary:disabled:focus,
html .btn-outline.btn-quaternary.disabled:focus,
html.sticky-header-active .btn-outline.btn-sticky-quaternary.disabled:focus {
  background: transparent !important;
  border-color: #0f3964 !important;
  color: #0f3964 !important;
}
.btn-link {
  color: #272422;
}
.btn-link:hover,
.btn-link:focus {
  color: #52a1f1;
}
.btn-link:disabled,
.btn-link.disabled,
.btn-link:disabled:hover,
.btn-link.disabled:hover,
.btn-link:disabled:active,
.btn-link.disabled:active,
.btn-link:disabled:focus,
.btn-link.disabled:focus {
  color: #272422 !important;
}
html .btn-link.btn-primary {
  color: #272422;
}
html .btn-link.btn-primary:hover,
html .btn-link.btn-primary:focus {
  color: #52a1f1;
}
html .btn-link.btn-primary:disabled,
html .btn-link.btn-primary.disabled,
html .btn-link.btn-primary:disabled:hover,
html .btn-link.btn-primary.disabled:hover,
html .btn-link.btn-primary:disabled:active,
html .btn-link.btn-primary.disabled:active,
html .btn-link.btn-primary:disabled:focus,
html .btn-link.btn-primary.disabled:focus {
  color: #272422 !important;
}
html .btn-link.btn-secondary {
  color: #394c5f;
}
html .btn-link.btn-secondary:hover,
html .btn-link.btn-secondary:focus {
  color: #151f2a;
}
html .btn-link.btn-secondary:disabled,
html .btn-link.btn-secondary.disabled,
html .btn-link.btn-secondary:disabled:hover,
html .btn-link.btn-secondary.disabled:hover,
html .btn-link.btn-secondary:disabled:active,
html .btn-link.btn-secondary.disabled:active,
html .btn-link.btn-secondary:disabled:focus,
html .btn-link.btn-secondary.disabled:focus {
  color: #394c5f !important;
}
html .btn-link.btn-tertiary {
  color: #ed153e;
}
html .btn-link.btn-tertiary:hover,
html .btn-link.btn-tertiary:focus {
  color: #f14465;
}
html .btn-link.btn-tertiary:disabled,
html .btn-link.btn-tertiary.disabled,
html .btn-link.btn-tertiary:disabled:hover,
html .btn-link.btn-tertiary.disabled:hover,
html .btn-link.btn-tertiary:disabled:active,
html .btn-link.btn-tertiary.disabled:active,
html .btn-link.btn-tertiary:disabled:focus,
html .btn-link.btn-tertiary.disabled:focus {
  color: #ed153e !important;
}
html .btn-link.btn-quaternary {
  color: #0f3964;
}
html .btn-link.btn-quaternary:hover,
html .btn-link.btn-quaternary:focus {
  color: #165290;
}
html .btn-link.btn-quaternary:disabled,
html .btn-link.btn-quaternary.disabled,
html .btn-link.btn-quaternary:disabled:hover,
html .btn-link.btn-quaternary.disabled:hover,
html .btn-link.btn-quaternary:disabled:active,
html .btn-link.btn-quaternary.disabled:active,
html .btn-link.btn-quaternary:disabled:focus,
html .btn-link.btn-quaternary.disabled:focus {
  color: #0f3964 !important;
}
html .badge-primary:not(.no-skin) {
  background-color: #272422 !important;
  color: #ffffff;
}
html .badge-secondary:not(.no-skin) {
  background: #394c5f;
  color: #ffffff;
}
html .badge-tertiary:not(.no-skin) {
  background: #ed153e;
  color: #ffffff;
}
html .badge-quaternary:not(.no-skin) {
  background: #0f3964;
  color: #ffffff;
}
.list-group-item.active {
  background-color: #272422 !important;
  border-color: transparent;
}
.list.list-filter li a:hover {
  border-color: transparent;
}
.list.list-filter li a.active {
  background-color: #272422 !important;
  border-color: transparent;
}
.pagination .page-item + .page-item.active .page-link {
  background-color: #272422 !important;
  border: 1px solid #272422;
}
.pagination .page-link:hover:not(.next):not(.prev) {
  color: #272422;
  border: 1px solid #272422;
}
html .accordion:not(.accordion-minimal).accordion-primary .accordion-header a {
  background-color: #272422 !important;
}
html .accordion:not(.accordion-minimal).accordion-primary .accordion-header a,
html .accordion:not(.accordion-minimal).accordion-primary .accordion-header a:hover,
html .accordion:not(.accordion-minimal).accordion-primary .accordion-header a:focus {
  color: #ffffff;
}
html .accordion:not(.accordion-minimal).accordion-secondary .accordion-header a {
  background-color: #394c5f;
}
html .accordion:not(.accordion-minimal).accordion-secondary .accordion-header a,
html .accordion:not(.accordion-minimal).accordion-secondary .accordion-header a:hover,
html .accordion:not(.accordion-minimal).accordion-secondary .accordion-header a:focus {
  color: #ffffff;
}
html .accordion:not(.accordion-minimal).accordion-tertiary .accordion-header a {
  background-color: #ed153e;
}
html .accordion:not(.accordion-minimal).accordion-tertiary .accordion-header a,
html .accordion:not(.accordion-minimal).accordion-tertiary .accordion-header a:hover,
html .accordion:not(.accordion-minimal).accordion-tertiary .accordion-header a:focus {
  color: #ffffff;
}
html .accordion:not(.accordion-minimal).accordion-quaternary .accordion-header a {
  background-color: #0f3964;
}
html .accordion:not(.accordion-minimal).accordion-quaternary .accordion-header a,
html .accordion:not(.accordion-minimal).accordion-quaternary .accordion-header a:hover,
html .accordion:not(.accordion-minimal).accordion-quaternary .accordion-header a:focus {
  color: #ffffff;
}
html section.section-primary {
  background-color: #272422 !important;
}
html section.section-primary-scale-2 {
  background-color: #116ecc !important;
  border-color: #0f62b5 !important;
}
html section.section-primary-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
  border-top-color: #116ecc;
}
html section.section-secondary {
  background-color: #394c5f !important;
}
html section.section-secondary-scale-2 {
  background-color: #29965d !important;
  border-color: #248251 !important;
}
html section.section-secondary-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
  border-top-color: #29965d;
}
html section.section-tertiary {
  background-color: #ed153e !important;
}
html section.section-tertiary-scale-2 {
  background-color: #c00f30 !important;
  border-color: #a90d2a !important;
}
html section.section-tertiary-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
  border-top-color: #c00f30;
}
html section.section-quaternary {
  background-color: #0f3964 !important;
}
html section.section-quaternary-scale-2 {
  background-color: #082038 !important;
  border-color: #051321 !important;
}
html section.section-quaternary-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
  border-top-color: #082038;
}
html .steps-primary .dots .dots-color {
  background-color: #272422 !important;
}
html .steps-primary .item {
  border-color: transparent;
}
html .steps-primary .item .item-title span {
  color: #272422;
}
html .steps-primary.steps-style-2 .item.active .item-title {
  color: #272422;
}
html .steps-primary.steps-style-2 .item.active > i {
  color: #272422;
}
html .steps-primary.steps-style-3 .item.active .item-title {
  color: #272422;
}
html .steps-secondary .dots .dots-color {
  background: #394c5f;
}
html .steps-secondary .item {
  border-color: #394c5f;
}
html .steps-secondary .item .item-title span {
  color: #394c5f;
}
html .steps-secondary.steps-style-2 .item.active .item-title {
  color: #394c5f;
}
html .steps-secondary.steps-style-2 .item.active > i {
  color: #394c5f;
}
html .steps-secondary.steps-style-3 .item.active .item-title {
  color: #394c5f;
}
html .steps-tertiary .dots .dots-color {
  background: #ed153e;
}
html .steps-tertiary .item {
  border-color: #ed153e;
}
html .steps-tertiary .item .item-title span {
  color: #ed153e;
}
html .steps-tertiary.steps-style-2 .item.active .item-title {
  color: #ed153e;
}
html .steps-tertiary.steps-style-2 .item.active > i {
  color: #ed153e;
}
html .steps-tertiary.steps-style-3 .item.active .item-title {
  color: #ed153e;
}
html .steps-quaternary .dots .dots-color {
  background: #0f3964;
}
html .steps-quaternary .item {
  border-color: #0f3964;
}
html .steps-quaternary .item .item-title span {
  color: #0f3964;
}
html .steps-quaternary.steps-style-2 .item.active .item-title {
  color: #0f3964;
}
html .steps-quaternary.steps-style-2 .item.active > i {
  color: #0f3964;
}
html .steps-quaternary.steps-style-3 .item.active .item-title {
  color: #0f3964;
}
html .nav:not(.nav-tabs) > .nav-item > .nav-link:not(.no-skin).active {
  color: #272422;
}
html .nav:not(.nav-tabs) > .nav-item > .nav-link:not(.no-skin):hover,
html .nav:not(.nav-tabs) > .nav-item > .nav-link:not(.no-skin):focus,
html .nav:not(.nav-tabs) > .nav-item > .nav-link:not(.no-skin):active {
  color: #272422;
}
html .nav-pills-primary .nav-link.active,
html .nav-pills-primary .show > .nav-link {
  background-color: #272422 !important;
}
html .nav-pills-secondary .nav-link.active,
html .nav-pills-secondary .show > .nav-link {
  background-color: #394c5f;
}
html .nav-pills-tertiary .nav-link.active,
html .nav-pills-tertiary .show > .nav-link {
  background-color: #ed153e;
}
html .nav-pills-quaternary .nav-link.active,
html .nav-pills-quaternary .show > .nav-link {
  background-color: #0f3964;
}
html .nav-tabs .nav-item .nav-link:after {
  background-color: #272422 !important;
}
html #header .header-top.header-top-dark span > a:hover {
  color: #272422;
}
html #header .header-top.header-top-dark .nav > li > a:hover,
html #header .header-top.header-top-dark .nav > li > a:focus {
  color: #272422;
}
html #header .header-top.header-top-dark .nav > li > a:hover > i,
html #header .header-top.header-top-dark .nav > li > a:focus > i {
  color: #272422;
}
html #header .header-nav-main nav > ul > li > a.active {
  color: #272422;
}
html #header .header-nav-main nav > ul > li.open > a,
html #header .header-nav-main nav > ul > li:hover > a,
html #header .header-nav-main nav > ul > li:focus > a {
  color: #272422;
}
html #header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin > .dropdown-menu li:hover > a {
  color: #272422;
}
@media (min-width: 992px) {
  html #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li > a.active:before {
    border-color: transparent;
  }
  html #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li:hover > a,
  html #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li:focus > a {
    color: #272422;
  }
  html #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li:hover > a:before,
  html #header .header-nav.header-nav-top-line .header-nav-main nav > ul > li:focus > a:before {
    border-color: transparent;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li > a.active {
    background: #1279df;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li:focus > a {
    background-color: #272422 !important;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li > .dropdown-menu:before {
    border-color: transparent;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color > a.active {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-full-color:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary > a.active {
    background: #1279df;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary:focus > a {
    background-color: #272422 !important;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary > .dropdown-menu:before {
    border-color: transparent;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary.dropdown-full-color > a.active {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary.dropdown-full-color:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-primary.dropdown-full-color:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary > a.active {
    background: #2da667;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary:focus > a {
    background: #394c5f;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary > .dropdown-menu:before {
    border-color: #394c5f;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary.dropdown-full-color > a.active {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary.dropdown-full-color:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-secondary.dropdown-full-color:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary > a.active {
    background: #d31035;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary:focus > a {
    background: #ed153e;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary > .dropdown-menu:before {
    border-color: #ed153e;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary.dropdown-full-color > a.active {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary.dropdown-full-color:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-tertiary.dropdown-full-color:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary > a.active {
    background: #0b2a49;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary:focus > a {
    background: #0f3964;
    color: #ffffff;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary > .dropdown-menu:before {
    border-color: #0f3964;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary.dropdown-full-color > a.active {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary.dropdown-full-color:hover > a,
  html #header .header-nav.header-nav-stripe .header-nav-main nav > ul > li.dropdown-quaternary.dropdown-full-color:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a:before {
    border-color: rgba(35, 136, 237, 0.5);
  }
  html #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a:hover:before,
  html #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a:focus:before,
  html #header .header-nav.header-nav-line-under-text .header-nav-main nav > ul > li > a.active:before {
    border-color: rgba(35, 136, 237, 0.5);
  }
  html #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a,
  html #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown .dropdown-menu li:focus > a {
    color: #272422;
  }
  html #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    background-color: #272422 !important;
  }
}
@media (max-width: 991px) {
  html #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li a:hover,
  html #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li a:focus,
  html #header .header-nav.header-nav-light-dropdown .header-nav-main nav > ul li a.active {
    color: #272422;
  }
}
@media (min-width: 992px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary > a {
    color: #272422;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu {
    background-color: #272422 !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li:hover > a,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li.dropdown-submenu .dropdown-menu {
    background-color: #272422 !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary.dropdown-mega .dropdown-mega-content > .row > div {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    background-color: rgba(255, 255, 255, 0.1);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block .content-block-button {
    color: #ffffff !important;
  }
}
@media (max-width: 991px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary > a {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary > .dropdown-menu {
    background-color: #272422 !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li > a:hover,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary .dropdown-menu li > a:focus {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary.opened {
    background-color: #272422 !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-primary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary > a {
    color: #394c5f;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu {
    background-color: #394c5f;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li:hover > a,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li.dropdown-submenu .dropdown-menu {
    background-color: #394c5f;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary.dropdown-mega .dropdown-mega-content > .row > div {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    background-color: rgba(255, 255, 255, 0.1);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block .content-block-button {
    color: #ffffff !important;
  }
}
@media (max-width: 991px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary > a {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary > .dropdown-menu {
    background-color: #394c5f;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li > a:hover,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary .dropdown-menu li > a:focus {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary.opened {
    background-color: #394c5f;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-secondary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary > a {
    color: #ed153e;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu {
    background-color: #ed153e;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li:hover > a,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li.dropdown-submenu .dropdown-menu {
    background-color: #ed153e;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary.dropdown-mega .dropdown-mega-content > .row > div {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    background-color: rgba(255, 255, 255, 0.1);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block .content-block-button {
    color: #ffffff !important;
  }
}
@media (max-width: 991px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary > a {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary > .dropdown-menu {
    background-color: #ed153e;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li > a:hover,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary .dropdown-menu li > a:focus {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary.opened {
    background-color: #ed153e;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-tertiary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary > a {
    color: #0f3964;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu {
    background-color: #0f3964;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li:hover > a,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li:focus > a {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li.dropdown-submenu .dropdown-menu {
    background-color: #0f3964;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary.dropdown-mega .dropdown-mega-content > .row > div {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
    background-color: rgba(255, 255, 255, 0.1);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block .content-block-button {
    color: #ffffff !important;
  }
}
@media (max-width: 991px) {
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary {
    border-color: rgba(255, 255, 255, 0.2);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary > a {
    color: #ffffff;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary > .dropdown-menu {
    background-color: #0f3964;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li > a {
    color: rgba(255, 255, 255, 0.7);
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li > a:hover,
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary .dropdown-menu li > a:focus {
    color: #ffffff !important;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary.opened {
    background-color: #0f3964;
  }
  html #header .header-nav-main nav > ul > li.dropdown.dropdown-full-color.dropdown-quaternary.dropdown-mega .dropdown-mega-sub-title {
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  html.side-header:not(.side-header-semi-transparent) #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a:not(.btn):focus,
  html.side-header:not(.side-header-semi-transparent) #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a:not(.btn):hover {
    color: #272422;
  }
  html.side-header:not(.side-header-semi-transparent) #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a,
  html.side-header:not(.side-header-semi-transparent) #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:focus > a {
    color: #272422;
  }
  html.side-header:not(.side-header-semi-transparent) #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:focus > a,
  html.side-header:not(.side-header-semi-transparent) #header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav li:hover > a {
    color: #272422;
  }
}
@media (min-width: 992px) {
  html:not(.sticky-header-active) #header.header-transparent .header-nav-main nav > ul > li:not(.active):hover > a,
  html:not(.sticky-header-active) #header.header-semi-transparent .header-nav-main nav > ul > li:not(.active):hover > a,
  html:not(.sticky-header-active) #header.header-semi-transparent-light .header-nav-main nav > ul > li:not(.active):hover > a {
    color: #272422;
  }
  html:not(.sticky-header-active) #header.header-transparent .header-nav-main.header-nav-main-dark nav > ul > li:not(.active):hover > a,
  html:not(.sticky-header-active) #header.header-semi-transparent .header-nav-main.header-nav-main-dark nav > ul > li:not(.active):hover > a,
  html:not(.sticky-header-active) #header.header-semi-transparent-light .header-nav-main.header-nav-main-dark nav > ul > li:not(.active):hover > a {
    color: #272422;
  }
}
.side-header-btn-toggle:hover {
  color: #272422;
}
html .page-header.page-header-primary {
  background-color: #272422 !important;
}
html .page-header.page-header-primary h1,
html .page-header.page-header-primary a,
html .page-header.page-header-primary span,
html .page-header.page-header-primary li,
html .page-header.page-header-primary p {
  color: #ffffff !important;
}
html .page-header.page-header-secondary {
  background-color: #394c5f;
}
html .page-header.page-header-secondary h1,
html .page-header.page-header-secondary a,
html .page-header.page-header-secondary span,
html .page-header.page-header-secondary li,
html .page-header.page-header-secondary p {
  color: #ffffff !important;
}
html .page-header.page-header-tertiary {
  background-color: #ed153e;
}
html .page-header.page-header-tertiary h1,
html .page-header.page-header-tertiary a,
html .page-header.page-header-tertiary span,
html .page-header.page-header-tertiary li,
html .page-header.page-header-tertiary p {
  color: #ffffff !important;
}
html .page-header.page-header-quaternary {
  background-color: #0f3964;
}
html .page-header.page-header-quaternary h1,
html .page-header.page-header-quaternary a,
html .page-header.page-header-quaternary span,
html .page-header.page-header-quaternary li,
html .page-header.page-header-quaternary p {
  color: #ffffff !important;
}
html .slide-overlay-primary .slotholder:after {
  background-color: #272422 !important;
}
html .slide-overlay-secondary .slotholder:after {
  background-color: #394c5f !important;
}
html .slide-overlay-tertiary .slotholder:after {
  background-color: #ed153e !important;
}
html .slide-overlay-quaternary .slotholder:after {
  background-color: #0f3964 !important;
}
html .tp-bullet.selected,
html .tp-bullet:hover {
  background-color: #272422 !important;
}
html .slider-scroll-button {
  background-color: #272422 !important;
}
html .owl-carousel:not(.mirrored) .owl-nav .owl-prev,
html .owl-carousel:not(.mirrored) .owl-nav .owl-next {
  color: #272422;
}
html .owl-carousel:not(.mirrored) .owl-dots .owl-dot.active span {
  background: #272422 !important;
}
html .owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .card,
html .owl-carousel.carousel-center-active-items:not(.carousel-center-active-items-style-2):not(.carousel-center-active-items-style-3) .owl-item.active.current .testimonial-arrow {
  background: #272422 !important;
}
html .owl-carousel.rounded-style-1 .owl-stage-outer:before {
  border-color: transparent;
}
html .owl-carousel.nav-style-5 .owl-nav .owl-prev,
html .owl-carousel.nav-style-5 .owl-nav .owl-next {
  background-color: #272422 !important;
  color: #FFF !important;
}
html .double-carousel .owl-carousel .owl-nav .owl-prev,
html .double-carousel .owl-carousel .owl-nav .owl-next {
  color: #272422;
}
html .double-carousel .nav .arrows .arrow-left,
html .double-carousel .nav .arrows .arrow-right {
  color: #272422 !important;
}
html .double-carousel .owl-carousel .owl-dots .owl-dot.active span {
  background: #272422 !important;
}
html .double-carousel.double-carousel-style-2 .owl-carousel .owl-item.active.current .card {
  background-color: #272422 !important;
}
html .blockquote.blockquote-style-1.blockquote-primary:before {
  color: #272422 !important;
}
html .blockquote.blockquote-style-2.blockquote-primary {
  border-left-color: #272422 !important;
}
html .blockquote.blockquote-style-1.blockquote-secondary:before {
  color: #394c5f !important;
}
html .blockquote.blockquote-style-2.blockquote-secondary {
  border-left-color: #394c5f !important;
}
html .blockquote.blockquote-style-1.blockquote-tertiary:before {
  color: #ed153e !important;
}
html .blockquote.blockquote-style-2.blockquote-tertiary {
  border-left-color: #ed153e !important;
}
html .blockquote.blockquote-style-1.blockquote-quaternary:before {
  color: #0f3964 !important;
}
html .blockquote.blockquote-style-2.blockquote-quaternary {
  border-left-color: #0f3964 !important;
}
.slider-range-wrapper .slider-range .noUi-connect {
  background-color: #272422 !important;
}
.slider-range-wrapper .slider-range .noUi-handle {
  background-color: #272422 !important;
}
.drop-caps.drop-caps-primary:first-letter {
  color: #272422;
}
.drop-caps.drop-caps-primary.drop-caps-style-2:first-letter {
  background-color: #272422 !important;
  color: #ffffff;
}
.drop-caps.drop-caps-secondary:first-letter {
  color: #394c5f;
}
.drop-caps.drop-caps-secondary.drop-caps-style-2:first-letter {
  background-color: #394c5f;
  color: #ffffff;
}
.drop-caps.drop-caps-tertiary:first-letter {
  color: #ed153e;
}
.drop-caps.drop-caps-tertiary.drop-caps-style-2:first-letter {
  background-color: #ed153e;
  color: #ffffff;
}
.drop-caps.drop-caps-quaternary:first-letter {
  color: #0f3964;
}
.drop-caps.drop-caps-quaternary.drop-caps-style-2:first-letter {
  background-color: #0f3964;
  color: #ffffff;
}
.table-active {
  background-color: #272422 !important;
}
.table-active td,
.table-active th {
  background-color: #272422 !important;
}
html .progress-bar-bg-primary:not(.no-skin) {
  background-color: #272422 !important;
}
html .progress-bar-bg-primary:not(.no-skin):after {
  border-color: #272422 !important;
}
html .progress-bar-bg-secondary:not(.no-skin) {
  background-color: #394c5f !important;
}
html .progress-bar-bg-secondary:not(.no-skin):after {
  border-color: #394c5f !important;
}
html .progress-bar-bg-tertiary:not(.no-skin) {
  background-color: #ed153e !important;
}
html .progress-bar-bg-tertiary:not(.no-skin):after {
  border-color: #ed153e !important;
}
html .progress-bar-bg-quaternary:not(.no-skin) {
  background-color: #0f3964 !important;
}
html .progress-bar-bg-quaternary:not(.no-skin):after {
  border-color: #0f3964 !important;
}
.word-rotator.type .word-rotator-words.selected {
  background-color: #272422 !important;
}
.word-rotator.loading-bar .word-rotator-words::after {
  background-color: #272422 !important;
}
.word-rotator.clip .word-rotator-words::after {
  background-color: #272422 !important;
}
.scrollable-element::-webkit-scrollbar-thumb {
  background-color: #272422 !important;
}
.social-icons.social-icons-pills li a {
  background-color: #272422 !important;
}
.social-icons.social-icons-primary:not(.no-skin) li a {
  background-color: #272422 !important;
  color: #ffffff !important;
}
.social-icons.social-icons-icon-primary:not(.no-skin) li a {
  color: #272422 !important;
}
.social-icons.social-icons-icon-primary:not(.no-skin) li:hover a {
  color: #ffffff !important;
}
.social-icons.social-icons-secondary:not(.no-skin) li a {
  background-color: #272422 !important;
  color: #ffffff !important;
}
.social-icons.social-icons-icon-secondary:not(.no-skin) li a {
  color: #272422 !important;
}
.social-icons.social-icons-icon-secondary:not(.no-skin) li:hover a {
  color: #ffffff !important;
}
.social-icons.social-icons-tertiary:not(.no-skin) li a {
  background-color: #272422 !important;
  color: #ffffff !important;
}
.social-icons.social-icons-icon-tertiary:not(.no-skin) li a {
  color: #272422 !important;
}
.social-icons.social-icons-icon-tertiary:not(.no-skin) li:hover a {
  color: #ffffff !important;
}
.social-icons.social-icons-quaternary:not(.no-skin) li a {
  background-color: #272422 !important;
  color: #ffffff !important;
}
.social-icons.social-icons-icon-quaternary:not(.no-skin) li a {
  color: #272422 !important;
}
.social-icons.social-icons-icon-quaternary:not(.no-skin) li:hover a {
  color: #ffffff !important;
}
.icon-box-animation-1:not(.icon-box-animation-1-light):before,
.icon-box-animation-1:not(.icon-box-animation-1-light):after {
  border-color: transparent;
}
.icon-box-animation-1:not(.icon-box-animation-1-light) .icon-box:before,
.icon-box-animation-1:not(.icon-box-animation-1-light) .icon-box:after {
  border-color: transparent;
}
.timeline .timeline-box.left:before {
  background-color: #272422 !important;
}
.timeline .timeline-box.right:before {
  background-color: #272422 !important;
}
.skew-text-bar-1:before {
  background-color: #272422 !important;
}
html #footer.footer-primary {
  background-color: #272422 !important;
}
html #footer.footer-primary p,
html #footer.footer-primary span,
html #footer.footer-primary a,
html #footer.footer-primary li {
  color: #ffffff;
}
html #footer.footer-secondary {
  background-color: #394c5f;
}
html #footer.footer-secondary p,
html #footer.footer-secondary span,
html #footer.footer-secondary a,
html #footer.footer-secondary li {
  color: #ffffff;
}
html #footer.footer-tertiary {
  background-color: #ed153e;
}
html #footer.footer-tertiary p,
html #footer.footer-tertiary span,
html #footer.footer-tertiary a,
html #footer.footer-tertiary li {
  color: #ffffff;
}
html #footer.footer-quaternary {
  background-color: #0f3964;
}
html #footer.footer-quaternary p,
html #footer.footer-quaternary span,
html #footer.footer-quaternary a,
html #footer.footer-quaternary li {
  color: #ffffff;
}
footer a {
    color: inherit !important;
}

nav .dropdown-item{
  transition: none !important;
}
/* line 1, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-title {
  font-weight: bold;
}

/* line 4, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/* line 8, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-message a,
.toast-message label {
  color: #ffffff;
}

/* line 12, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

/* line 16, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

/* line 30, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
/* line 42, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 49, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

/* line 54, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

/* line 59, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

/* line 64, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

/* line 69, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-top-left {
  top: 12px;
  left: 12px;
}

/* line 73, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-top-right {
  top: 12px;
  right: 12px;
}

/* line 77, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

/* line 81, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* line 85, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

/* line 91, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 96, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

/* line 115, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

/* line 124, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

/* line 127, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

/* line 130, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

/* line 133, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

/* line 136, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* line 142, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

/* line 148, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast {
  background-color: #030303;
}

/* line 151, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-success {
  background-color: #51a351;
}

/* line 154, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-error {
  background-color: #bd362f;
}

/* line 157, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-info {
  background-color: #2f96b4;
}

/* line 160, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-warning {
  background-color: #f89406;
}

/* line 164, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  /* line 177, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  /* line 181, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  /* line 187, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  /* line 191, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  /* line 197, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr.scss */
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* line 3, ../../.rvm/gems/ruby-2.7.2/gems/toastr_rails-2.1.3/app/assets/styleseets/toastr_rails.scss */
#toast-container {
  top: 70px;
}
@charset "UTF-8";
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*




*/
/* line 19, app/assets/stylesheets/application.css.scss */
body,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
div,
button,
input,
li,
ul,
ol,
table,
td,
tr,
th,
fieldset,
font,
strong,
b {
  font-family: Poppins !important;
}

/* line 44, app/assets/stylesheets/application.css.scss */
body {
  background: #f7f7f7 !important;
}

/* line 47, app/assets/stylesheets/application.css.scss */
.container-main {
  background: #f7f7f7 !important;
  min-height: calc(100vh - 454px);
}

/* line 52, app/assets/stylesheets/application.css.scss */
.container-main-sign {
  background: #f7f7f7 !important;
  min-height: calc(100vh - 164px);
}

/* line 57, app/assets/stylesheets/application.css.scss */
.container-main-admin {
  background: #f7f7f7 !important;
  min-height: calc(100vh - 118px);
}

/* line 62, app/assets/stylesheets/application.css.scss */
.container-main-footer {
  background: #f7f7f7 !important;
  min-height: calc(100vh - 90px);
}

@media (max-width: 767px) {
  /* line 68, app/assets/stylesheets/application.css.scss */
  .container-main-admin {
    background: #f7f7f7 !important;
    min-height: calc(100vh - 122px);
  }
  /* line 72, app/assets/stylesheets/application.css.scss */
  .banner-header {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  /* line 77, app/assets/stylesheets/application.css.scss */
  .container-main-footer {
    background: #f7f7f7 !important;
    min-height: calc(100vh - 122px);
  }
}

@media (max-width: 574px) {
  /* line 84, app/assets/stylesheets/application.css.scss */
  .container-main-admin {
    background: #f7f7f7 !important;
    min-height: calc(100vh - 148px);
  }
  /* line 89, app/assets/stylesheets/application.css.scss */
  .container-main-footer {
    background: #f7f7f7 !important;
    min-height: calc(100vh - 148px);
  }
}

/* line 95, app/assets/stylesheets/application.css.scss */
.card {
  background-color: #fff !important;
}

/* line 99, app/assets/stylesheets/application.css.scss */
.footer-bg-color {
  background-color: #ffffff;
}

/* line 103, app/assets/stylesheets/application.css.scss */
.footer-bg-color-admin {
  background-color: #fff;
}

/* line 107, app/assets/stylesheets/application.css.scss */
.social-size {
  font-size: 24px;
}

/* line 110, app/assets/stylesheets/application.css.scss */
.f-32 {
  font-size: 32px;
}

/* line 113, app/assets/stylesheets/application.css.scss */
.f-20 {
  font-size: 32px;
}

/* line 117, app/assets/stylesheets/application.css.scss */
.setting-headig {
  background: #f1f4f5;
}

/* line 121, app/assets/stylesheets/application.css.scss */
.setting-links ul a li {
  border-bottom: 1px solid #dadfe2;
  line-height: 14px;
}

/* line 126, app/assets/stylesheets/application.css.scss */
a.active li {
  border-left: 2px solid #499df3 !important;
  text-decoration: none !important;
  color: #272422 !important;
}

/* line 132, app/assets/stylesheets/application.css.scss */
.setting-links ul a li {
  color: #969ea2;
  padding: 15px 10px;
  display: inline-block;
  width: 100%;
}

/* line 139, app/assets/stylesheets/application.css.scss */
.setting-profile-image {
  border-radius: 50%;
  display: block;
  backface-visibility: hidden;
  opacity: 1;
}

/* line 146, app/assets/stylesheets/application.css.scss */
.setting-profile-image:hover {
  opacity: 0.1;
}

/* line 150, app/assets/stylesheets/application.css.scss */
.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  font-size: 50px;
}

/* line 162, app/assets/stylesheets/application.css.scss */
img#blah:hover {
  cursor: pointer;
}

/* line 166, app/assets/stylesheets/application.css.scss */
.profile-change-icon {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 auto !important;
}

/* line 173, app/assets/stylesheets/application.css.scss */
.profile-change-icon:hover .middle {
  opacity: 1 !important;
}

/* line 177, app/assets/stylesheets/application.css.scss */
.profile-show-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto !important;
}

/* line 184, app/assets/stylesheets/application.css.scss */
.profile-descriptin {
  border-bottom: 1px solid #dadfe2;
}

/* line 188, app/assets/stylesheets/application.css.scss */
.navbar {
  -webkit-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.17);
}

/* line 194, app/assets/stylesheets/application.css.scss */
.text-white {
  color: #fff !important;
}

/* line 198, app/assets/stylesheets/application.css.scss */
.text-yellow {
  color: orange !important;
}

/* line 202, app/assets/stylesheets/application.css.scss */
.lh-35 {
  line-height: 35px;
}

/* line 206, app/assets/stylesheets/application.css.scss */
.form-group {
  margin-bottom: 10px !important;
}

/* line 210, app/assets/stylesheets/application.css.scss */
.footer-large {
  padding-top: 58px;
  padding-bottom: 48px;
}

/* line 215, app/assets/stylesheets/application.css.scss */
.footer-small {
  padding-top: 23px;
  padding-bottom: 23px;
}

/* line 220, app/assets/stylesheets/application.css.scss */
.footer-large h4 {
  letter-spacing: 1px;
  font-weight: 500;
}

/* line 225, app/assets/stylesheets/application.css.scss */
.footer-large a {
  color: #282828 !important;
  line-height: 34px;
}

/* line 230, app/assets/stylesheets/application.css.scss */
.footer-large a:hover,
.nav-link:hover,
.nav-link:focus {
  color: #272422 !important;
}

/* line 236, app/assets/stylesheets/application.css.scss */
*:focus {
  outline: 0 !important;
}

/* line 240, app/assets/stylesheets/application.css.scss */
.nav-link.btn:hover,
.nav-link.btn:focus {
  color: #fff !important;
}

/* line 245, app/assets/stylesheets/application.css.scss */
.mr-20 {
  margin-right: 15px;
}

/* line 249, app/assets/stylesheets/application.css.scss */
.div-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #272422;
  overflow: hidden;
}

/* line 260, app/assets/stylesheets/application.css.scss */
.name-icon {
  max-width: 95%;
  max-height: 100%;
}

/* line 265, app/assets/stylesheets/application.css.scss */
.down-arrow {
  font-size: 12px;
  line-height: 14px;
}

/* line 270, app/assets/stylesheets/application.css.scss */
.container-dashboard {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* line 275, app/assets/stylesheets/application.css.scss */
.user-header {
  box-shadow: 1px 1.732px 7px rgba(136, 156, 176, 0.1);
  background: url("/user_background.png") center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 282, app/assets/stylesheets/application.css.scss */
.user-header-bg {
  background-color: #fafafa !important;
}

/* line 290, app/assets/stylesheets/application.css.scss */
.btn {
  font-weight: 500 !important;
}

/* line 294, app/assets/stylesheets/application.css.scss */
.bg-white {
  background: #fff !important;
}

/* line 297, app/assets/stylesheets/application.css.scss */
.bg-yellow {
  background-color: #fbda16;
}

/* line 301, app/assets/stylesheets/application.css.scss */
.user-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 1px 1.732px 7px rgba(136, 156, 176, 0.1);
}

/* line 307, app/assets/stylesheets/application.css.scss */
.user-fields {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 11.5px 20px !important;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #ededed;
}

/* line 318, app/assets/stylesheets/application.css.scss */
.user-fields span {
  font-size: 14px;
  line-height: 25px;
}

/* line 323, app/assets/stylesheets/application.css.scss */
.user-fields span.float-right {
  color: #5d5d5d;
}

/* line 327, app/assets/stylesheets/application.css.scss */
.footer-des a i {
  font-size: 14px;
  letter-spacing: -1px;
  color: #282828;
}

/* line 333, app/assets/stylesheets/application.css.scss */
.footer-des a:hover i {
  color: #272422 !important;
}

/* line 337, app/assets/stylesheets/application.css.scss */
::-webkit-scrollbar-track {
  width: 8px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

/* line 343, app/assets/stylesheets/application.css.scss */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #f9f9f9;
}

/* line 349, app/assets/stylesheets/application.css.scss */
::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 8px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, #272422), color-stop(0.72, #272422), color-stop(0.86, #272422));
}

/* line 360, app/assets/stylesheets/application.css.scss */
.sweet-alert button {
  background-color: #272422 !important;
}

/* line 364, app/assets/stylesheets/application.css.scss */
.card-admin .card-body {
  padding: 0 !important;
}

/* line 368, app/assets/stylesheets/application.css.scss */
.fixed-side, .side-small {
  background: #272422 !important;
  height: 100%;
}

/* line 373, app/assets/stylesheets/application.css.scss */
.container-admin {
  padding-top: 46px;
  padding-bottom: 46px;
}

/* line 378, app/assets/stylesheets/application.css.scss */
.dashboard-side-link,
.submenu-link .menu,
.sub-menu a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  padding: 14px 15px 14px 15px;
  display: block;
}

/* line 388, app/assets/stylesheets/application.css.scss */
.submenu-link .menu {
  padding: 14px 20px 14px 30px !important;
}

/* line 392, app/assets/stylesheets/application.css.scss */
.dashboard-side-link span,
.dashboard-side-link i,
.submenu-link .menu i {
  transition: 0.1s;
}

/* line 398, app/assets/stylesheets/application.css.scss */
.dashboard-side-link span,
.submenu-link .menu span,
.sub-menu a span {
  color: #fff;
}

/* line 404, app/assets/stylesheets/application.css.scss */
.dashboard-side-link:hover,
.dashboard-side-link.active {
  background-color: #ffffff22;
}

/* line 409, app/assets/stylesheets/application.css.scss */
.dashboard-side-link i,
.submenu-link .menu i {
  width: 18px;
  text-align: center;
  color: #fff;
  margin-right: 12px;
  font-size: 14px !important;
}

/* line 418, app/assets/stylesheets/application.css.scss */
.card-stats .card {
  padding: 32px 0 27px 0;
}

/* line 422, app/assets/stylesheets/application.css.scss */
.card-stats h1 {
  line-height: 36px;
  margin-bottom: 0 !important;
  font-weight: 500;
}

/* line 428, app/assets/stylesheets/application.css.scss */
.card-stats .col-lg-3 {
  margin-bottom: 30px;
}

/* line 432, app/assets/stylesheets/application.css.scss */
.table-responsive thead tr {
  background: #fff;
  color: #272422;
}

/* line 437, app/assets/stylesheets/application.css.scss */
.table-responsive .table-bordered th,
.table-responsive .table-bordered td {
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
}

/* line 444, app/assets/stylesheets/application.css.scss */
.table-responsive .table-responsive thead tr th {
  border-bottom: 2px solid #ededed !important;
}

/* line 448, app/assets/stylesheets/application.css.scss */
.table-responsive tbody tr:not(:last-child) {
  border-bottom: 1px solid #ededed !important;
}

/* line 452, app/assets/stylesheets/application.css.scss */
.table-responsive tbody tr {
  background: #fff;
  color: #282828;
}

/* line 457, app/assets/stylesheets/application.css.scss */
.align-middle {
  vertical-align: middle;
}

/* line 461, app/assets/stylesheets/application.css.scss */
.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 0px auto 30px auto;
}

/* line 467, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

/* line 474, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-edit input {
  display: none;
}

/* line 478, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid #dbdbdb;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

/* line 492, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-edit input + label:hover {
  background: #272422;
  border-color: #d6d6d6;
}

/* line 497, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-edit input + label:hover:after {
  color: #fff;
}

/* line 501, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-edit input + label:after {
  content: "\f030";
  font-family: 'Font Awesome 5 Free';
  color: #272422;
  position: absolute;
  top: 6px;
  left: 2px;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 20px;
  font-weight: 900;
}

/* line 515, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

/* line 524, app/assets/stylesheets/application.css.scss */
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* line 533, app/assets/stylesheets/application.css.scss */
.navbar-toggler {
  padding: 0 !important;
}

/* line 537, app/assets/stylesheets/application.css.scss */
.navbar-toggler-icon {
  vertical-align: super !important;
}

/* line 541, app/assets/stylesheets/application.css.scss */
.stripe-card {
  width: 300px;
  border: 1px solid grey;
}

/* line 546, app/assets/stylesheets/application.css.scss */
.stripe-card.complete {
  border-color: green;
}

/* line 550, app/assets/stylesheets/application.css.scss */
.action-links i {
  font-size: 18px;
}

/* line 554, app/assets/stylesheets/application.css.scss */
.action-links {
  text-align: center;
  padding: 19px 10px !important;
}

/* line 559, app/assets/stylesheets/application.css.scss */
.date_select select:nth-child(2) {
  padding-left: 5px !important;
  padding-right: 0px !important;
}

/* line 564, app/assets/stylesheets/application.css.scss */
.date_select select {
  width: 32.5% !important;
  display: inline-block !important;
}

/* line 569, app/assets/stylesheets/application.css.scss */
.new-form .edit-label {
  display: none;
}

/* line 573, app/assets/stylesheets/application.css.scss */
.table-tasks td,
.table-tasks th {
  padding-left: 8px !important;
  padding-right: 5px !important;
  font-size: 13px !important;
}

/* line 580, app/assets/stylesheets/application.css.scss */
.table-tasks .action-links i {
  padding: 4px;
}

/* line 584, app/assets/stylesheets/application.css.scss */
html {
  overflow-x: hidden !important;
}

/* line 588, app/assets/stylesheets/application.css.scss */
.table-bordered {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  border-left: 0;
  border-right: 0;
}

/* line 595, app/assets/stylesheets/application.css.scss */
.banner-header {
  border-bottom: 1px solid #dee2e6;
  padding: 11px 0;
}

/* line 600, app/assets/stylesheets/application.css.scss */
.center-row {
  padding: 15px 15px;
}

/* line 604, app/assets/stylesheets/application.css.scss */
.lh-34 {
  line-height: 34px;
}

/* line 608, app/assets/stylesheets/application.css.scss */
.lh-36 {
  line-height: 37px;
}

/* line 612, app/assets/stylesheets/application.css.scss */
.lh-17 {
  line-height: 17px;
}

/* line 616, app/assets/stylesheets/application.css.scss */
.font-22 {
  font-size: 20px !important;
}

/* line 620, app/assets/stylesheets/application.css.scss */
.cursor-pointer {
  cursor: pointer;
}

/* line 624, app/assets/stylesheets/application.css.scss */
.icon-sidebar.left {
  display: none;
}

/* line 628, app/assets/stylesheets/application.css.scss */
.sidebar-admin::-webkit-scrollbar-track {
  background-color: transparent !important;
}

/* line 632, app/assets/stylesheets/application.css.scss */
.sidebar-admin::-webkit-scrollbar {
  width: 4px;
  background-color: transparent !important;
}

/* line 637, app/assets/stylesheets/application.css.scss */
.submenu-link.open .menu {
  padding-bottom: 0 !important;
}

/* line 641, app/assets/stylesheets/application.css.scss */
.sub-menu a {
  border: none;
  padding: 3px 0;
}

/* line 646, app/assets/stylesheets/application.css.scss */
.submenu-link {
  cursor: pointer;
  position: relative;
}

/* line 651, app/assets/stylesheets/application.css.scss */
.submenu-link,
.submenu-link .menu,
.submenu-link .sub-menu a {
  transition: 0.3s;
}

/* line 657, app/assets/stylesheets/application.css.scss */
.submenu-link::after {
  line-height: 0px;
  font-weight: 900;
  position: absolute;
  top: 25px;
  right: 10px;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
}

/* line 667, app/assets/stylesheets/application.css.scss */
.submenu-link.open::after {
  content: "\f077";
}

/* line 671, app/assets/stylesheets/application.css.scss */
.submenu-link.no-after::after {
  content: "" !important;
}

/* line 675, app/assets/stylesheets/application.css.scss */
.submenu-link .menu {
  z-index: 1;
  border-bottom: 0;
}

/* line 680, app/assets/stylesheets/application.css.scss */
.submenu-link .sub-menu span {
  font-size: 90%;
  padding-left: 60px !important;
}

/* line 685, app/assets/stylesheets/application.css.scss */
.sub-menu a:hover {
  background: #f5f5f5;
}

/* line 689, app/assets/stylesheets/application.css.scss */
.admincol-1,
.admincol-2 {
  transition: 0.3s;
}

/* line 694, app/assets/stylesheets/application.css.scss */
.side-small .dashboard-side-link,
.side-small .submenu-link .menu {
  padding: 14.5px 0 !important;
  text-align: center !important;
}

/* line 700, app/assets/stylesheets/application.css.scss */
.side-small .dashboard-side-link i,
.side-small .submenu-link .menu i {
  margin-right: 0 !important;
}

/* line 705, app/assets/stylesheets/application.css.scss */
.card-header:first-child {
  border-radius: 10px 10px 0 0;
}

/* line 709, app/assets/stylesheets/application.css.scss */
.card.r-1 {
  border-radius: 10px;
  box-shadow: none;
}

/* line 714, app/assets/stylesheets/application.css.scss */
.card.r-2 {
  border-radius: 5px;
  box-shadow: none;
}

/* line 719, app/assets/stylesheets/application.css.scss */
.card-footer:last-child {
  border-radius: 0 0 10px 10px;
  line-height: 17px;
}

/* line 724, app/assets/stylesheets/application.css.scss */
.font-weight-500,
.font-weight-500 a {
  font-weight: 500 !important;
}

/* line 729, app/assets/stylesheets/application.css.scss */
.font-weight-600 {
  font-weight: 600 !important;
}

/* line 732, app/assets/stylesheets/application.css.scss */
.f-20 {
  font-size: 20px;
}

/* line 735, app/assets/stylesheets/application.css.scss */
.f-24 {
  font-size: 24px;
}

/* line 739, app/assets/stylesheets/application.css.scss */
.img-card {
  width: 40px;
}

/* line 743, app/assets/stylesheets/application.css.scss */
.p-30 {
  padding: 29px !important;
}

/* line 747, app/assets/stylesheets/application.css.scss */
.p-c-footer {
  padding: 18px 29px;
}

/* line 751, app/assets/stylesheets/application.css.scss */
strong {
  font-weight: 500 !important;
}

/* line 755, app/assets/stylesheets/application.css.scss */
.vl-m {
  vertical-align: middle;
}

/* line 759, app/assets/stylesheets/application.css.scss */
.ml-sm-n15 {
  margin-left: -15px !important;
}

/* line 763, app/assets/stylesheets/application.css.scss */
.icon-sidebar,
.icon-dashboard-mobile {
  cursor: pointer;
}

/* line 768, app/assets/stylesheets/application.css.scss */
.header-avatar {
  max-width: 45px;
  max-height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

/* line 775, app/assets/stylesheets/application.css.scss */
.flex-coll {
  display: flex;
  justify-content: flex-end;
}

/* line 780, app/assets/stylesheets/application.css.scss */
.flex-coll .dropdown-toggle {
  align-items: center;
}

/* line 784, app/assets/stylesheets/application.css.scss */
.form-control[type="search"] {
  border-radius: 23px;
  padding: 9px 19px;
  width: 300px;
  display: inline-block;
  border-color: #ededed !important;
}

/* line 792, app/assets/stylesheets/application.css.scss */
select[name="DataTables_Table_0_length"] {
  padding: 9px 5px !important;
  border: 0 !important;
}

/* line 797, app/assets/stylesheets/application.css.scss */
.dropdown-toggle:after {
  content: "";
  margin-left: 10px;
}

/* line 802, app/assets/stylesheets/application.css.scss */
.div-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 809, app/assets/stylesheets/application.css.scss */
.search-header img {
  cursor: pointer;
  position: absolute;
  right: 21px;
}

/* line 815, app/assets/stylesheets/application.css.scss */
.search-img {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 21px;
}

/* line 822, app/assets/stylesheets/application.css.scss */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* line 829, app/assets/stylesheets/application.css.scss */
.search-dropdown .dropdown-menu {
  background: transparent;
  left: -135px !important;
  border: 0;
  top: 25px !important;
}

/* line 836, app/assets/stylesheets/application.css.scss */
.m-menu-dropdown .dropdown-menu {
  left: -10px !important;
  top: 15px !important;
}

/* line 841, app/assets/stylesheets/application.css.scss */
.search-dropdown .dropdown-toggle:after {
  content: none !important;
}

/* line 845, app/assets/stylesheets/application.css.scss */
.search-dropdown,
.icon-dashboard-mobile {
  padding: 18px 0;
}

/* line 850, app/assets/stylesheets/application.css.scss */
.mb-30 {
  margin-bottom: 25px;
}

/* line 854, app/assets/stylesheets/application.css.scss */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #AEAEAE !important;
}

/* line 859, app/assets/stylesheets/application.css.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: #AEAEAE !important;
}

/* line 864, app/assets/stylesheets/application.css.scss */
:-ms-input-placeholder {
  /* IE 10+ */
  color: #AEAEAE !important;
}

/* line 869, app/assets/stylesheets/application.css.scss */
:-moz-placeholder {
  /* Firefox 18- */
  color: #AEAEAE !important;
}

/* line 874, app/assets/stylesheets/application.css.scss */
.dataTables_info,
.dataTables_length {
  display: inline-block;
}

/* line 879, app/assets/stylesheets/application.css.scss */
.dataTables_length::before {
  content: "| ";
}

/* line 883, app/assets/stylesheets/application.css.scss */
.dataTables_length {
  padding-left: 5px;
}

/* line 887, app/assets/stylesheets/application.css.scss */
.r_name,
.modal-title {
  font-size: 19px;
  font-weight: 500;
}

/* line 893, app/assets/stylesheets/application.css.scss */
.dataTables_filter label,
.dataTables_length label,
.table-responsive .pagination {
  margin-bottom: 0 !important;
}

/* line 899, app/assets/stylesheets/application.css.scss */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

/* line 904, app/assets/stylesheets/application.css.scss */
.dropdown-actions .dropdown-toggle {
  padding: 7.5px 28px;
  border-radius: 5px;
  border: 1px solid #ededed;
  font-weight: 400 !important;
}

/* line 911, app/assets/stylesheets/application.css.scss */
label {
  font-weight: 500;
}

/* line 915, app/assets/stylesheets/application.css.scss */
.file-i {
  font-size: 20px !important;
}

/* line 919, app/assets/stylesheets/application.css.scss */
.accordion [data-toggle="collapse"] {
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* line 926, app/assets/stylesheets/application.css.scss */
.accordion [data-toggle="collapse"]:after {
  position: absolute;
  content: "\f077";
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
}

/* line 935, app/assets/stylesheets/application.css.scss */
.accordion .collapsed[data-toggle="collapse"]:after {
  content: "\f078";
}

/* line 939, app/assets/stylesheets/application.css.scss */
input[type="checkbox"],
input[type="radio"] {
  width: 15px !important;
  height: 15px !important;
  -webkit-filter: grayscale(100%) !important;
  filter: grayscale(100%) !important;
}

/* line 947, app/assets/stylesheets/application.css.scss */
.tooltip-i {
  cursor: default;
  background: #272422;
  color: #fff;
  width: 13px !important;
  display: inline-block;
  text-align: center;
  height: 13px;
  vertical-align: middle;
  font-size: 8px;
  border-radius: 50%;
  font-family: Montserrat !important;
  font-weight: 900;
  line-height: 4.5px;
  padding: 5px 0;
}

/* line 964, app/assets/stylesheets/application.css.scss */
.table-responsive tr.border-0,
.table-responsive tr.border-0 td {
  border-bottom: 0 !important;
}

/* line 969, app/assets/stylesheets/application.css.scss */
.close {
  font-weight: 100;
  padding: 15px 20px !important;
  font-size: 28px;
}

/* line 975, app/assets/stylesheets/application.css.scss */
.loading-screen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999 !important;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  color: #fff;
  font-size: 25px;
  align-items: center;
  justify-content: center;
}

/* line 989, app/assets/stylesheets/application.css.scss */
.close-confirm {
  position: absolute;
  right: 0;
  top: 0;
}

/* line 995, app/assets/stylesheets/application.css.scss */
th {
  font-weight: 500 !important;
}

/* line 999, app/assets/stylesheets/application.css.scss */
.modal-open {
  padding-right: 0 !important;
}

/* line 1003, app/assets/stylesheets/application.css.scss */
.btn-icon {
  display: inline-flex;
  align-items: center;
}

/* line 1008, app/assets/stylesheets/application.css.scss */
.btn-link:hover, .btn-link:focus, .btn-link:active {
  text-decoration: none;
  color: #272422cc;
}

/* line 1013, app/assets/stylesheets/application.css.scss */
.report-section .arrow-icon:before {
  content: "\f077" !important;
}

/* line 1017, app/assets/stylesheets/application.css.scss */
.report-section .collapsed .arrow-icon:before {
  content: "\f078" !important;
}

/* line 1021, app/assets/stylesheets/application.css.scss */
.report-section .collapsed {
  border-bottom: 1px solid #ededed;
}

/* line 1025, app/assets/stylesheets/application.css.scss */
.arrow-icon {
  font-size: 16px;
}

/* line 1029, app/assets/stylesheets/application.css.scss */
.table-edit-report table tbody tr td {
  border-bottom: 0 !important;
}

/* line 1033, app/assets/stylesheets/application.css.scss */
.collapse-header .counts {
  display: none;
}

/* line 1037, app/assets/stylesheets/application.css.scss */
.collapse-header.collapsed .counts {
  display: block;
}

/* line 1041, app/assets/stylesheets/application.css.scss */
.ri_check {
  width: 20px !important;
  height: 20px !important;
}

/* line 1046, app/assets/stylesheets/application.css.scss */
.row-subtotal {
  background: #f1f1f1;
}

/* line 1050, app/assets/stylesheets/application.css.scss */
.d-non {
  display: none;
}

/* line 1054, app/assets/stylesheets/application.css.scss */
.display-flex {
  display: flex;
}

/* line 1058, app/assets/stylesheets/application.css.scss */
.bulk-icon {
  font-size: 20px;
}

/* line 1062, app/assets/stylesheets/application.css.scss */
.font-13 {
  font-size: 12px !important;
}

/* line 1066, app/assets/stylesheets/application.css.scss */
.label-credits {
  font-weight: 400;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  padding: 15px 15px 14px 15px;
  border: 1px solid #ededed;
  display: block;
  border-radius: 5px;
}

/* line 1077, app/assets/stylesheets/application.css.scss */
.label-credits:hover {
  border-color: #d1d1d1;
}

/* line 1081, app/assets/stylesheets/application.css.scss */
.label-credits:after {
  content: "\f111";
  color: #d1d1d1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  bottom: 5px;
  right: 10px;
  font-size: 14px;
}

/* line 1092, app/assets/stylesheets/application.css.scss */
input:checked + .label-credits {
  background: #fbda16;
}

/* line 1096, app/assets/stylesheets/application.css.scss */
input:checked + .label-credits:after {
  content: "\f192";
  color: #272422;
}

/* line 1101, app/assets/stylesheets/application.css.scss */
.w-1040 {
  width: 100%;
}

/* line 1105, app/assets/stylesheets/application.css.scss */
.w-1200 {
  width: 100%;
}

/* line 1110, app/assets/stylesheets/application.css.scss */
.btn-sm {
  font-size: 13px;
  padding: 10px 16px;
}

/* line 1115, app/assets/stylesheets/application.css.scss */
.btn-success, .btn-danger, .btn-dark {
  color: #fff !important;
}

/* line 1119, app/assets/stylesheets/application.css.scss */
.available-credits, .future-credits {
  font-weight: 400;
}

/* line 1123, app/assets/stylesheets/application.css.scss */
.input-credits {
  display: none;
}

/* line 1127, app/assets/stylesheets/application.css.scss */
.h-step {
  position: relative;
  font-weight: 500;
  opacity: 0.3;
}

/* line 1133, app/assets/stylesheets/application.css.scss */
.w-signup .h-step {
  padding: 0 14px;
}

@media (min-width: 1364px) {
  /* line 1138, app/assets/stylesheets/application.css.scss */
  .w-signup .h-step {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

/* line 1146, app/assets/stylesheets/application.css.scss */
.h-step.active, .h-step.completed {
  opacity: 1;
}

/* line 1150, app/assets/stylesheets/application.css.scss */
.h-step:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  position: absolute;
  right: -6px;
  top: 4px;
  font-weight: 900;
}

/* line 1160, app/assets/stylesheets/application.css.scss */
.w-signup .h-step:after {
  right: -2px;
}

/* line 1164, app/assets/stylesheets/application.css.scss */
.btn[disabled] {
  cursor: default;
}

@media (max-width: 1200px) {
  /* line 1169, app/assets/stylesheets/application.css.scss */
  .h-step:after {
    right: 13%;
  }
}

/* line 1174, app/assets/stylesheets/application.css.scss */
.h-step:last-child:after {
  content: '';
}

/* line 1178, app/assets/stylesheets/application.css.scss */
.multistep_icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 7px;
  background: #272422;
}

/* line 1189, app/assets/stylesheets/application.css.scss */
.w-signup .multistep_icon {
  margin-right: 3px;
}

/* line 1193, app/assets/stylesheets/application.css.scss */
.multistep_icon i, .active .multistep_count, .completed .multistep_count {
  display: none;
}

/* line 1197, app/assets/stylesheets/application.css.scss */
.active .multistep_icon i, .completed .multistep_icon i {
  display: inline;
  font-size: 12px;
}

/* line 1202, app/assets/stylesheets/application.css.scss */
.completed .multistep_icon i:before {
  content: '\f00c';
}

/* line 1206, app/assets/stylesheets/application.css.scss */
.active .multistep_icon i:before, .completed.active .multistep_icon i:before {
  content: '\f124';
}

/* line 1210, app/assets/stylesheets/application.css.scss */
.multistep_count {
  color: #fff;
}

/* line 1214, app/assets/stylesheets/application.css.scss */
.active .multistep_icon, .completed .multistep_icon {
  background: #fbda16;
}

/* line 1218, app/assets/stylesheets/application.css.scss */
.completed .text {
  opacity: 0.3;
}

/* line 1222, app/assets/stylesheets/application.css.scss */
.completed.active .text {
  opacity: 1;
}

/* line 1226, app/assets/stylesheets/application.css.scss */
.w-actions span {
  height: 25px;
}

/* line 1230, app/assets/stylesheets/application.css.scss */
.custom-file input {
  width: auto;
  cursor: pointer;
}

/* line 1235, app/assets/stylesheets/application.css.scss */
.custom-file-label {
  right: unset;
  font-weight: 500;
  font-size: 13px;
  color: #272422;
  border: 0;
  background: transparent;
}

/* line 1244, app/assets/stylesheets/application.css.scss */
.custom-file-label span {
  display: inline-block;
  margin-left: 100px;
}

/* line 1249, app/assets/stylesheets/application.css.scss */
::-webkit-file-upload-button {
  cursor: pointer;
}

/* line 1253, app/assets/stylesheets/application.css.scss */
.custom-file-label::after {
  font-weight: 500;
  font-size: 13px;
  left: 0;
  right: unset;
  display: block;
  color: #272422;
  content: "Choose File";
  background-color: #FFFFFF;
  border: 1px solid #272422;
  border-radius: 0.25rem;
}

/* line 1266, app/assets/stylesheets/application.css.scss */
a[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* line 1271, app/assets/stylesheets/application.css.scss */
.w-45 {
  width: 45%;
}

/* line 1275, app/assets/stylesheets/application.css.scss */
.edit-users-mobile .td-checkbox-1, .edit-users-mobile .th-checkbox-1 {
  padding: 0 5px !important;
}

/* line 1279, app/assets/stylesheets/application.css.scss */
.edit-users-mobile .td-checkbox-1 input, .edit-users-mobile .th-checkbox-1 input {
  margin: 13px 0;
}

/* line 1283, app/assets/stylesheets/application.css.scss */
.select2-container .select2-search--inline .select2-search__field {
  padding: 0;
  margin: 0;
}

/* line 1288, app/assets/stylesheets/application.css.scss */
.select2-results__option span, .select2-selection__choice span {
  display: inline-block;
  line-height: 17px;
}

/* line 1293, app/assets/stylesheets/application.css.scss */
.select2-results__option {
  padding: 6px 6px 2px 6px;
}

/* line 1297, app/assets/stylesheets/application.css.scss */
.table-word-break tr td:nth-child(2) {
  word-break: break-all;
}

/* line 1301, app/assets/stylesheets/application.css.scss */
.select2-container .select2-selection--multiple {
  display: flex;
}

/* line 1305, app/assets/stylesheets/application.css.scss */
.bg-muted {
  background: #f7f7f7;
}

/* line 1309, app/assets/stylesheets/application.css.scss */
.bg-yellow {
  background: #fbda16;
}

/* line 1313, app/assets/stylesheets/application.css.scss */
#transactions-tab .nav-link {
  padding: 15px 20px;
  color: #d1d1d1;
  border-bottom: 2px solid #f2f2f2;
}

/* line 1319, app/assets/stylesheets/application.css.scss */
#transactions-tab .nav-link.active {
  color: #272422;
  border-color: #fbda16;
}

/* line 1324, app/assets/stylesheets/application.css.scss */
.card-payment {
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  padding: 10px 15px 11px 15px;
  margin-bottom: 10px;
}

/* line 1331, app/assets/stylesheets/application.css.scss */
.badge-yellow {
  padding-top: 4px;
  font-size: 10px;
  background: #fbda16;
}

/* line 1337, app/assets/stylesheets/application.css.scss */
.img-payment {
  height: 17px;
}

/* line 1341, app/assets/stylesheets/application.css.scss */
.close-payment {
  cursor: pointer;
  font-size: 22px;
  line-height: 17px;
  font-weight: 500;
  color: #a1a1a1 !important;
  display: inline-block;
}

/* line 1350, app/assets/stylesheets/application.css.scss */
.options-payment {
  cursor: pointer;
  font-size: 20px;
  line-height: 16px;
  font-weight: 500;
  display: inline-block;
  width: 16px;
}

/* line 1359, app/assets/stylesheets/application.css.scss */
.dropdown-ellipsis .dropdown-toggle:after {
  display: none;
}

/* line 1363, app/assets/stylesheets/application.css.scss */
.position-none {
  position: unset;
}

/* line 1367, app/assets/stylesheets/application.css.scss */
.word-break {
  word-break: break-word;
}

/* line 1371, app/assets/stylesheets/application.css.scss */
.w-103 {
  width: 103px;
}

/* line 1375, app/assets/stylesheets/application.css.scss */
.card-report .card-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 20px;
  font-size: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-weight: 500;
  background: #fbda16;
}

/* line 1388, app/assets/stylesheets/application.css.scss */
.card-report .card-body {
  padding: 15px 11px 5px 11px;
}

/* line 1392, app/assets/stylesheets/application.css.scss */
.card-report li {
  font-weight: 500;
  margin-bottom: 10px;
}

/* line 1397, app/assets/stylesheets/application.css.scss */
.card-report {
  border: 1px solid #d1d1d1;
  border-radius: 5px !important;
}

/* line 1402, app/assets/stylesheets/application.css.scss */
.check-report {
  padding: 16px 0px 14px 49px;
}

/* line 1406, app/assets/stylesheets/application.css.scss */
.check-report input {
  margin-top: 3px;
}

/* line 1410, app/assets/stylesheets/application.css.scss */
.price-report {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
}

/* line 1416, app/assets/stylesheets/application.css.scss */
.price-report.report_order_rush, .price-report.report_order_pool, .price-report.premium-addon-pool {
  display: none;
}

/* line 1420, app/assets/stylesheets/application.css.scss */
.price-report .credits {
  display: inline-block;
  width: 82px;
  margin-right: 15px;
}

/* line 1426, app/assets/stylesheets/application.css.scss */
.price-report .or {
  display: inline-block;
  width: 23px;
  font-weight: bold;
  margin-right: 25px;
}

/* line 1433, app/assets/stylesheets/application.css.scss */
.price-report .price {
  display: inline-block;
  width: 64px;
  text-align: right;
}

/* line 1439, app/assets/stylesheets/application.css.scss */
.total-report {
  margin-top: 8px;
  padding: 15px 0;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}

/* line 1446, app/assets/stylesheets/application.css.scss */
.back[heading='h-step-1'] {
  display: none;
}

/* line 1450, app/assets/stylesheets/application.css.scss */
.btn-save[heading='h-step-1'] {
  margin-bottom: 15px;
}

/* line 1454, app/assets/stylesheets/application.css.scss */
a.dropdown-item {
  transition: none !important;
}

/* line 1458, app/assets/stylesheets/application.css.scss */
.dropdown-item.active, .dropdown-item:active {
  color: #fff !important;
}

/* line 1462, app/assets/stylesheets/application.css.scss */
.price-report .price {
  display: inline-block;
  text-align: right;
}

@media print {
  /* line 1469, app/assets/stylesheets/application.css.scss */
  .no-print,
.no-print * {
    display: none !important;
  }
  /* line 1474, app/assets/stylesheets/application.css.scss */
  .page-break {
    page-break-after: always;
  }
}

@media (min-width: 1400px) {
  /* line 1481, app/assets/stylesheets/application.css.scss */
  .admincol-1.col-xl-2 {
    -ms-flex: 0 0 17.509% !important;
    flex: 0 0 17.509% !important;
    max-width: 17.509% !important;
  }
  /* line 1487, app/assets/stylesheets/application.css.scss */
  .admincol-2.col-xl-10 {
    -ms-flex: 0 0 calc(100% - 17.509%) !important;
    flex: 0 0 calc(100% - 17.509%) !important;
    max-width: calc(100% - 17.509%) !important;
  }
}

@media (min-width: 1360px) {
  /* line 1495, app/assets/stylesheets/application.css.scss */
  .w-1040 {
    width: 1040px;
  }
}

@media (min-width: 1200px) {
  /* line 1501, app/assets/stylesheets/application.css.scss */
  .w-1200 {
    width: 1200px;
  }
  /* line 1504, app/assets/stylesheets/application.css.scss */
  .preview-logo-bg {
    height: 40px;
  }
}

@media (min-width: 1199px) and (max-width: 1400px) {
  /* line 1511, app/assets/stylesheets/application.css.scss */
  .admincol-1.col-xl-2 {
    -ms-flex: 0 0 17.309% !important;
    flex: 0 0 17.309% !important;
    max-width: 17.309% !important;
  }
  /* line 1517, app/assets/stylesheets/application.css.scss */
  .admincol-2.col-xl-10 {
    -ms-flex: 0 0 calc(100% - 17.309%) !important;
    flex: 0 0 calc(100% - 17.309%) !important;
    max-width: calc(100% - 17.309%) !important;
  }
}

@media (min-width: 1200px) {
  /* line 1525, app/assets/stylesheets/application.css.scss */
  .h-61p {
    height: 61px;
  }
  /* line 1529, app/assets/stylesheets/application.css.scss */
  .container {
    max-width: 1200px;
  }
  /* line 1533, app/assets/stylesheets/application.css.scss */
  .w-770 {
    width: 770px;
  }
  /* line 1537, app/assets/stylesheets/application.css.scss */
  .fixed-side {
    transition: 0.3s;
    width: 100%;
  }
  /* line 1542, app/assets/stylesheets/application.css.scss */
  .modal-xl {
    max-width: 1290px !important;
  }
  /* line 1546, app/assets/stylesheets/application.css.scss */
  .modal-lg {
    max-width: 1030px !important;
  }
  /* line 1550, app/assets/stylesheets/application.css.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  /* line 1557, app/assets/stylesheets/application.css.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  /* line 1562, app/assets/stylesheets/application.css.scss */
  .modal-xl, .modal-lg {
    max-width: 950px !important;
  }
}

@media (max-width: 1199px) {
  /* line 1568, app/assets/stylesheets/application.css.scss */
  h5 {
    font-size: 23px;
  }
  /* line 1572, app/assets/stylesheets/application.css.scss */
  .w-750 {
    width: 100%;
  }
  /* line 1576, app/assets/stylesheets/application.css.scss */
  .btn-icon {
    padding: 10px 12px;
  }
}

@media (max-width: 992px) {
  /* line 1582, app/assets/stylesheets/application.css.scss */
  .summary-box {
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  /* line 1588, app/assets/stylesheets/application.css.scss */
  .dashboard-img {
    background-image: url("/dashboard.png");
    padding: 230px 0px;
  }
  /* line 1592, app/assets/stylesheets/application.css.scss */
  .ml-50 {
    margin-left: 45px !important;
  }
  /* line 1596, app/assets/stylesheets/application.css.scss */
  .price-report .price {
    width: 64px;
  }
  /* line 1600, app/assets/stylesheets/application.css.scss */
  .w-input {
    width: 600px;
  }
  /* line 1604, app/assets/stylesheets/application.css.scss */
  .w-130 {
    width: 115px;
  }
  /* line 1608, app/assets/stylesheets/application.css.scss */
  .row-subtotal {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 1613, app/assets/stylesheets/application.css.scss */
  .row-subtotal .col-auto {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* line 1618, app/assets/stylesheets/application.css.scss */
  .row-subtotal {
    font-size: 16px;
    font-weight: 500;
  }
  /* line 1623, app/assets/stylesheets/application.css.scss */
  .font-20 {
    font-size: 18px !important;
  }
  /* line 1627, app/assets/stylesheets/application.css.scss */
  .font-28 {
    font-size: 26px !important;
  }
  /* line 1631, app/assets/stylesheets/application.css.scss */
  .font-15 {
    font-size: 13px !important;
  }
  /* line 1635, app/assets/stylesheets/application.css.scss */
  .font-16 {
    font-size: 14px !important;
  }
  /* line 1639, app/assets/stylesheets/application.css.scss */
  .font-17 {
    font-size: 15px !important;
  }
  /* line 1643, app/assets/stylesheets/application.css.scss */
  .font-18 {
    font-size: 16px !important;
  }
  /* line 1647, app/assets/stylesheets/application.css.scss */
  .w-72 {
    min-width: 72px !important;
  }
  /* line 1651, app/assets/stylesheets/application.css.scss */
  .w-192 {
    min-width: 192px !important;
  }
  /* line 1655, app/assets/stylesheets/application.css.scss */
  .w-84 {
    min-width: 84px !important;
  }
  /* line 1659, app/assets/stylesheets/application.css.scss */
  .container-admin {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* line 1664, app/assets/stylesheets/application.css.scss */
  .container-admin.px-30 {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 1669, app/assets/stylesheets/application.css.scss */
  .table-reports {
    overflow: visible;
  }
  /* line 1673, app/assets/stylesheets/application.css.scss */
  .w-210 {
    width: 210px !important;
  }
  /* line 1677, app/assets/stylesheets/application.css.scss */
  .w-150 {
    width: 150px !important;
  }
  /* line 1681, app/assets/stylesheets/application.css.scss */
  .w-145 {
    width: 145px !important;
  }
  /* line 1685, app/assets/stylesheets/application.css.scss */
  .w-135 {
    width: 135px !important;
  }
  /* line 1689, app/assets/stylesheets/application.css.scss */
  .table-datatable table,
.table-nodatatable {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* line 1695, app/assets/stylesheets/application.css.scss */
  .px-25 {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* line 1700, app/assets/stylesheets/application.css.scss */
  .mx-n25 {
    margin-left: -30px;
    margin-right: -30px;
  }
  /* line 1705, app/assets/stylesheets/application.css.scss */
  .px-10 {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 1710, app/assets/stylesheets/application.css.scss */
  .px-50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  /* line 1715, app/assets/stylesheets/application.css.scss */
  .user-body {
    padding: 50px !important;
  }
  /* line 1719, app/assets/stylesheets/application.css.scss */
  .table-datatable td, .table-edit-report td {
    font-size: 14px;
    font-weight: 400;
    padding: 13px 17px 13px 0;
  }
  /* line 1725, app/assets/stylesheets/application.css.scss */
  .table-pagy td {
    font-size: 14px;
    font-weight: 400;
    padding: 13px 17px 13px 17px;
  }
  /* line 1731, app/assets/stylesheets/application.css.scss */
  .table-datatable thead th, .table-edit-report thead th {
    font-size: 14px;
    font-weight: 500;
    border-top: 0 !important;
    padding: 15px 17px 15px 0;
  }
  /* line 1738, app/assets/stylesheets/application.css.scss */
  .table-pagy thead th {
    font-size: 14px;
    font-weight: 500;
    border-top: 0 !important;
    padding: 15px 17px 15px 17px;
  }
  /* line 1745, app/assets/stylesheets/application.css.scss */
  .container-top {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
}

@media (max-width: 991px) {
  /* line 1752, app/assets/stylesheets/application.css.scss */
  .price-report .price {
    width: 56px;
  }
  /* line 1756, app/assets/stylesheets/application.css.scss */
  .dashboard-side-link,
.submenu-link .menu,
.sub-menu a {
    font-size: 13.5px;
    padding: 10px;
  }
  /* line 1763, app/assets/stylesheets/application.css.scss */
  .dashboard-side-link i, .submenu-link .menu i {
    margin-right: 5px;
    width: 15px;
    font-size: 12px !important;
  }
  /* line 1769, app/assets/stylesheets/application.css.scss */
  .check-report {
    padding: 11px 0px 9px 30px;
  }
  /* line 1773, app/assets/stylesheets/application.css.scss */
  h5 {
    font-size: 22px;
  }
  /* line 1777, app/assets/stylesheets/application.css.scss */
  .dashboard-side-link, .submenu-link .menu, .sub-menu a {
    padding-left: 15px;
  }
  /* line 1780, app/assets/stylesheets/application.css.scss */
  .label-credits {
    padding: 12px 10px 11px 10px;
  }
  /* line 1784, app/assets/stylesheets/application.css.scss */
  .row-subtotal {
    font-size: 15px;
    font-weight: 500;
  }
  /* line 1789, app/assets/stylesheets/application.css.scss */
  .font-20 {
    font-size: 17px !important;
  }
  /* line 1793, app/assets/stylesheets/application.css.scss */
  .label-credits .font-20 {
    font-size: 16px !important;
  }
  /* line 1797, app/assets/stylesheets/application.css.scss */
  .font-16 {
    font-size: 14px !important;
  }
  /* line 1801, app/assets/stylesheets/application.css.scss */
  .font-28 {
    font-size: 24px !important;
  }
  /* line 1805, app/assets/stylesheets/application.css.scss */
  .close {
    font-size: 22px !important;
  }
  /* line 1809, app/assets/stylesheets/application.css.scss */
  .div-icon {
    width: 25px;
    height: 25px;
  }
  /* line 1814, app/assets/stylesheets/application.css.scss */
  .name-icon {
    max-width: 95%;
  }
  /* line 1818, app/assets/stylesheets/application.css.scss */
  .r_name,
.modal-title {
    font-size: 17px !important;
  }
  /* line 1823, app/assets/stylesheets/application.css.scss */
  .btn {
    font-size: 13px !important;
    padding: 9.5px 15px !important;
  }
  /* line 1828, app/assets/stylesheets/application.css.scss */
  .form-control {
    font-size: 13px !important;
    padding: 6.5px 13px !important;
  }
  /* line 1833, app/assets/stylesheets/application.css.scss */
  .w-72 {
    min-width: 47px !important;
  }
  /* line 1837, app/assets/stylesheets/application.css.scss */
  .w-192 {
    min-width: 192px !important;
  }
  /* line 1841, app/assets/stylesheets/application.css.scss */
  .w-84 {
    min-width: 56px !important;
  }
  /* line 1845, app/assets/stylesheets/application.css.scss */
  td span.mr-20 {
    margin-right: 7px !important;
  }
  /* line 1849, app/assets/stylesheets/application.css.scss */
  .container-admin {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 1856, app/assets/stylesheets/application.css.scss */
  .table-datatable table,
.table-nodatatable {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 1862, app/assets/stylesheets/application.css.scss */
  .px-25 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  /* line 1867, app/assets/stylesheets/application.css.scss */
  .mx-n25 {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  /* line 1872, app/assets/stylesheets/application.css.scss */
  table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    right: 5px !important;
  }
  /* line 1880, app/assets/stylesheets/application.css.scss */
  table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    right: 15px !important;
  }
  /* line 1888, app/assets/stylesheets/application.css.scss */
  table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    font-size: 23px !important;
    bottom: 10px !important;
  }
  /* line 1902, app/assets/stylesheets/application.css.scss */
  .table-responsive td,
.table-responsive thead th {
    padding: 10px 5px 10px 5px;
    font-size: 12px !important;
  }
  /* line 1908, app/assets/stylesheets/application.css.scss */
  .user-body {
    padding: 20px 15px !important;
  }
  /* line 1912, app/assets/stylesheets/application.css.scss */
  .container-top {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  /* line 1917, app/assets/stylesheets/application.css.scss */
  .row-subtotal .col-auto {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  /* line 1921, app/assets/stylesheets/application.css.scss */
  .container-admin.px-30 {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 1926, app/assets/stylesheets/application.css.scss */
  .modal-dialog {
    max-width: 99%;
  }
  /* line 1930, app/assets/stylesheets/application.css.scss */
  .modal {
    padding-right: 0 !important;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  /* line 1936, app/assets/stylesheets/application.css.scss */
  .container,
.container-sm {
    max-width: 100%;
  }
}

@media (min-width: 800px) {
  /* line 1943, app/assets/stylesheets/application.css.scss */
  .modal-confirm {
    max-width: 790px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  /* line 1948, app/assets/stylesheets/application.css.scss */
  .admincol-2 {
    margin-top: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 1953, app/assets/stylesheets/application.css.scss */
  .admincol-1.col-xl-1 {
    -ms-flex: 0 0 5.548%;
    flex: 0 0 5.548%;
    max-width: 5.548%;
  }
  /* line 1959, app/assets/stylesheets/application.css.scss */
  .admincol-2.col-xl-11 {
    -ms-flex: 0 0 94.452%;
    flex: 0 0 94.452%;
    max-width: 94.452%;
  }
  /* line 1965, app/assets/stylesheets/application.css.scss */
  .admincol-1.col-xl-2 {
    -ms-flex: 0 0 21.609%;
    flex: 0 0 21.609%;
    max-width: 21.609%;
  }
  /* line 1971, app/assets/stylesheets/application.css.scss */
  .admincol-2.col-xl-10 {
    -ms-flex: 0 0 calc(100% - 20.609%);
    flex: 0 0 calc(100% - 20.609%);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* line 1979, app/assets/stylesheets/application.css.scss */
  .admincol-1.col-xl-2 {
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
    max-width: 24%;
  }
  /* line 1985, app/assets/stylesheets/application.css.scss */
  .admincol-2.col-xl-10 {
    -ms-flex: 0 0 calc(100% - 24%);
    flex: 0 0 calc(100% - 24%);
    max-width: calc(100% - 24%);
  }
}

@media (min-width: 768px) {
  /* line 1993, app/assets/stylesheets/application.css.scss */
  .range-card {
    padding: 60px 60px 40px;
  }
  /* line 1996, app/assets/stylesheets/application.css.scss */
  .thankyou-c {
    padding-left: 90px;
    padding-right: 90px;
    max-width: 900px;
  }
  /* line 2001, app/assets/stylesheets/application.css.scss */
  .fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  /* line 2008, app/assets/stylesheets/application.css.scss */
  .ml-50 {
    margin-left: 20px;
  }
  /* line 2011, app/assets/stylesheets/application.css.scss */
  .modal-md {
    max-width: 730px !important;
  }
  /* line 2015, app/assets/stylesheets/application.css.scss */
  .side-small .center-row {
    padding: 9px 0;
  }
  /* line 2019, app/assets/stylesheets/application.css.scss */
  .fixed-side {
    transition: 0.1s;
    position: fixed;
    top: 75px;
  }
  /* line 2025, app/assets/stylesheets/application.css.scss */
  .sidebar-admin {
    padding-top: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 76px) !important;
  }
  /* line 2032, app/assets/stylesheets/application.css.scss */
  .w-570 {
    width: 570px;
  }
  /* line 2036, app/assets/stylesheets/application.css.scss */
  .p-settings {
    padding: 45px 30px;
  }
  /* line 2040, app/assets/stylesheets/application.css.scss */
  .ml-15 {
    margin-left: 15px;
  }
  /* line 2044, app/assets/stylesheets/application.css.scss */
  .mr-15 {
    margin-right: 15px;
  }
  /* line 2048, app/assets/stylesheets/application.css.scss */
  .ml-30 {
    margin-left: 25px;
  }
  /* line 2052, app/assets/stylesheets/application.css.scss */
  .submenu-link::after {
    z-index: -1 !important;
  }
  /* line 2056, app/assets/stylesheets/application.css.scss */
  .side-small {
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: sticky;
    padding-top: 25px;
  }
}

@media (max-width: 767px) {
  /* line 2066, app/assets/stylesheets/application.css.scss */
  .range-card {
    padding: 60px 10px 40px;
  }
  /* line 2069, app/assets/stylesheets/application.css.scss */
  .thankyou-c {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 900px;
  }
  /* line 2075, app/assets/stylesheets/application.css.scss */
  .mt-n2 {
    margin-top: -0.8rem !important;
  }
  /* line 2079, app/assets/stylesheets/application.css.scss */
  .w-570 {
    width: 100%;
  }
  /* line 2082, app/assets/stylesheets/application.css.scss */
  .container-admin {
    margin-top: 25px;
  }
  /* line 2086, app/assets/stylesheets/application.css.scss */
  .card-report .card-body {
    padding: 5px 5px 0px 0px;
  }
  /* line 2090, app/assets/stylesheets/application.css.scss */
  .card-report li {
    margin-bottom: 5px;
  }
  /* line 2094, app/assets/stylesheets/application.css.scss */
  .check-report {
    padding: 5px 0px 4px 25px;
  }
  /* line 2098, app/assets/stylesheets/application.css.scss */
  .card-report .card-header {
    padding: 10px 15px 10px 15px;
    font-size: 18px;
  }
  /* line 2103, app/assets/stylesheets/application.css.scss */
  .price-report .credits, .price-report .or {
    margin-right: 5px;
  }
  /* line 2107, app/assets/stylesheets/application.css.scss */
  .price-report {
    padding: 4px 0;
  }
  /* line 2111, app/assets/stylesheets/application.css.scss */
  h5 {
    font-size: 20px;
  }
  /* line 2115, app/assets/stylesheets/application.css.scss */
  .p-settings {
    padding: 30px 15px;
  }
  /* line 2119, app/assets/stylesheets/application.css.scss */
  .icon-sidebar {
    display: none !important;
  }
  /* line 2123, app/assets/stylesheets/application.css.scss */
  .dashboard-row {
    display: none;
  }
  /* line 2127, app/assets/stylesheets/application.css.scss */
  .submenu-link::after {
    z-index: -1 !important;
  }
  /* line 2131, app/assets/stylesheets/application.css.scss */
  .row-user-fields {
    margin-top: 30px;
  }
  /* line 2135, app/assets/stylesheets/application.css.scss */
  .pr-md-15 {
    padding-right: 15px !important;
  }
}

@media (min-width: 576px) {
  /* line 2141, app/assets/stylesheets/application.css.scss */
  .modal-normal {
    max-width: 560px;
  }
}

@media (max-width: 575px) {
  /* line 2147, app/assets/stylesheets/application.css.scss */
  .w-250 {
    width: 250px !important;
  }
  /* line 2150, app/assets/stylesheets/application.css.scss */
  .ml-40 {
    margin-left: 40px;
  }
  /* line 2154, app/assets/stylesheets/application.css.scss */
  .card-payment {
    position: relative;
    padding: 7px 22px 4px 10px;
  }
  /* line 2159, app/assets/stylesheets/application.css.scss */
  .close-payment {
    position: absolute;
    right: 5px;
    top: 5px;
  }
  /* line 2165, app/assets/stylesheets/application.css.scss */
  .dropdown-ellipsis {
    position: absolute;
    right: 5px;
    top: 10px;
  }
  /* line 2171, app/assets/stylesheets/application.css.scss */
  .badge-yellow {
    position: absolute;
    right: 5px;
    bottom: 5px;
  }
  /* line 2176, app/assets/stylesheets/application.css.scss */
  .user-header {
    padding: 20px;
  }
  /* line 2180, app/assets/stylesheets/application.css.scss */
  .r_name, .modal-title {
    font-size: 15px !important;
  }
  /* line 2184, app/assets/stylesheets/application.css.scss */
  .user-header img {
    width: 100px;
  }
  /* line 2188, app/assets/stylesheets/application.css.scss */
  .navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  /* line 2193, app/assets/stylesheets/application.css.scss */
  .container-top {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 520px) {
  /* line 2200, app/assets/stylesheets/application.css.scss */
  .mr-xs-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 505px) {
  /* line 2206, app/assets/stylesheets/application.css.scss */
  .price-report .credits, .price-report .or {
    margin-right: 0px;
  }
  /* line 2210, app/assets/stylesheets/application.css.scss */
  .price-report .credits {
    width: 75px;
  }
  /* line 2214, app/assets/stylesheets/application.css.scss */
  .font-13 {
    font-size: 12px !important;
  }
  /* line 2218, app/assets/stylesheets/application.css.scss */
  h4 {
    font-size: 14px !important;
  }
}

@media (max-width: 479.98px) {
  /* line 2225, app/assets/stylesheets/application.css.scss */
  .price-report .price {
    width: 52px;
  }
  /* line 2229, app/assets/stylesheets/application.css.scss */
  .card-report li {
    line-height: 20px;
  }
}

@media (max-width: 395px) {
  /* line 2235, app/assets/stylesheets/application.css.scss */
  .d-xxs-none {
    display: none;
  }
}

@media (min-width: 400px) {
  /* line 2241, app/assets/stylesheets/application.css.scss */
  .w-325 {
    width: 325px;
  }
}

@media (min-width: 515px) {
  /* line 2247, app/assets/stylesheets/application.css.scss */
  .w-155 {
    width: 325px;
  }
}

@media (max-width: 399px) {
  /* line 2253, app/assets/stylesheets/application.css.scss */
  .w-325 {
    width: 220px;
  }
  /* line 2256, app/assets/stylesheets/application.css.scss */
  .w-155 {
    width: 155px;
  }
}

@media (max-width: 514px) {
  /* line 2262, app/assets/stylesheets/application.css.scss */
  .w-155 {
    width: 205px;
  }
}

@media (max-width: 370px) {
  /* line 2268, app/assets/stylesheets/application.css.scss */
  .w-155 {
    width: 155px;
  }
}

@media (max-width: 370px) {
  /* line 2274, app/assets/stylesheets/application.css.scss */
  .font-12-5 {
    font-size: 12.5px;
  }
  /* line 2278, app/assets/stylesheets/application.css.scss */
  .img-stripe {
    width: 120px;
  }
  /* line 2282, app/assets/stylesheets/application.css.scss */
  .hide-xxs {
    display: none;
  }
  /* line 2286, app/assets/stylesheets/application.css.scss */
  div.dataTables_wrapper div.dataTables_filter input {
    display: block !important;
    width: 100% !important;
  }
  /* line 2291, app/assets/stylesheets/application.css.scss */
  div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0em;
  }
}

@media (max-width: 323px) {
  /* line 2297, app/assets/stylesheets/application.css.scss */
  .mr-xxs-0 {
    margin-right: 0px !important;
  }
}

@media (max-width: 991px) {
  /* line 2303, app/assets/stylesheets/application.css.scss */
  .btn {
    font-size: 13px !important;
    padding: 9.5px 15px;
  }
}

/* line 2309, app/assets/stylesheets/application.css.scss */
.icon-large {
  font-size: 120px;
}

/* line 2313, app/assets/stylesheets/application.css.scss */
.search-absolute {
  position: absolute;
  right: 30px;
  top: -50px;
}

@media (max-width: 1100px) {
  /* line 2320, app/assets/stylesheets/application.css.scss */
  .search-absolute {
    width: 250px !important;
  }
}

@media (max-width: 991px) {
  /* line 2326, app/assets/stylesheets/application.css.scss */
  .search-absolute {
    display: none !important;
  }
}

/* line 2331, app/assets/stylesheets/application.css.scss */
.font-signup {
  font-size: 17px;
}

/* line 2335, app/assets/stylesheets/application.css.scss */
.remove-fields a:after {
  font-family: 'Font Awesome 5 Free';
  content: '\f00d';
  font-weight: 900;
  color: #EE422B;
  font-size: 23px;
  margin-left: 10px;
}

/* line 2344, app/assets/stylesheets/application.css.scss */
.py-18 {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* line 2349, app/assets/stylesheets/application.css.scss */
.dropdown-r .dropdown-toggle:after {
  display: none;
}

/* line 2353, app/assets/stylesheets/application.css.scss */
.pr-45 {
  padding-right: 45px;
}

/* line 2368, app/assets/stylesheets/application.css.scss */
.custom-switch .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none !important;
}

/* line 2372, app/assets/stylesheets/application.css.scss */
.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #272422;
  background-color: #272422;
}

/* line 2377, app/assets/stylesheets/application.css.scss */
.h-45 {
  height: 45px;
}

/* line 2381, app/assets/stylesheets/application.css.scss */
.w-40p {
  width: 40%;
}

/* line 2385, app/assets/stylesheets/application.css.scss */
span.sort {
  background: #fbda16;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 2px;
  margin-bottom: 10px;
}

/* line 2396, app/assets/stylesheets/application.css.scss */
.table-pagy .dataTables_paginate {
  display: none;
}

/* line 2400, app/assets/stylesheets/application.css.scss */
.pagy-bootstrap-nav .pagination {
  justify-content: center;
}

/* line 2404, app/assets/stylesheets/application.css.scss */
.table-pagy .pagy-bootstrap-nav .pagination {
  justify-content: flex-end;
}

/* line 2408, app/assets/stylesheets/application.css.scss */
.pagy-bootstrap-nav {
  margin-top: 10px;
  margin-right: 20px;
}

/* line 2413, app/assets/stylesheets/application.css.scss */
.btn-search {
  padding: 0 !important;
  position: absolute;
  right: 15px;
  top: 13px;
}

/* line 2420, app/assets/stylesheets/application.css.scss */
.sort_link:not(.asc, .desc):after {
  content: ' ▲';
  opacity: 0.2;
}

/* line 2425, app/assets/stylesheets/application.css.scss */
.trial-notice {
  background: #fbda16;
  color: #272422;
  font-size: 20px;
  padding: 15px 25px 15px 10px;
  text-align: center;
  font-weight: 500;
  position: relative;
}

/* line 2435, app/assets/stylesheets/application.css.scss */
.trial-notice i {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

@media (min-width: 1200px) {
  /* line 2444, app/assets/stylesheets/application.css.scss */
  .px-xl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  /* line 2449, app/assets/stylesheets/application.css.scss */
  .w-160input {
    width: 20%;
  }
  /* line 2452, app/assets/stylesheets/application.css.scss */
  .w-170input {
    width: 21%;
  }
  /* line 2455, app/assets/stylesheets/application.css.scss */
  .w-185input {
    width: 24%;
  }
}

@media (min-width: 1278px) {
  /* line 2460, app/assets/stylesheets/application.css.scss */
  .w-160input {
    width: 20%;
  }
  /* line 2463, app/assets/stylesheets/application.css.scss */
  .w-170input {
    width: 22%;
  }
  /* line 2466, app/assets/stylesheets/application.css.scss */
  .w-185input {
    width: 25%;
  }
}

/* line 2471, app/assets/stylesheets/application.css.scss */
.report-item.checked, .estimate {
  background-color: #fff;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
  border: 1px solid #ededed;
}

/* line 2477, app/assets/stylesheets/application.css.scss */
.estimate {
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  font-size: 24px;
  color: #282828;
  font-weight: 700;
}

/* line 2489, app/assets/stylesheets/application.css.scss */
.report-checkbox {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 30px;
}

/* line 2496, app/assets/stylesheets/application.css.scss */
.report-item {
  cursor: pointer;
  border-radius: 10px;
  padding: 25px 15px;
  border: 2px solid #ededed;
  text-align: center;
  margin-bottom: 30px;
}

/* line 2503, app/assets/stylesheets/application.css.scss */
.report-item .img-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #272422;
  padding: 12px;
}

/* line 2513, app/assets/stylesheets/application.css.scss */
.report-item .item-name {
  margin: 20px 0;
  font-size: 19px;
  color: #333333;
}

/* line 2518, app/assets/stylesheets/application.css.scss */
.report-item .item-price {
  font-size: 19px;
  color: #333333;
  font-weight: 700;
}

@media (max-width: 1399.98px) and (min-width: 992px) {
  /* line 2527, app/assets/stylesheets/application.css.scss */
  .reports-row .col {
    padding: 0 5px;
  }
  /* line 2529, app/assets/stylesheets/application.css.scss */
  .reports-row .col .report-item {
    padding: 20px 10px;
  }
}

@media (max-width: 991.98px) {
  /* line 2537, app/assets/stylesheets/application.css.scss */
  .report-item {
    margin-bottom: 15px;
  }
  /* line 2540, app/assets/stylesheets/application.css.scss */
  .estimate {
    padding: 20px;
    font-size: 18px;
  }
}

/* line 2546, app/assets/stylesheets/application.css.scss */
.report-single-item {
  margin-bottom: 20px;
  border: 2px solid #fff;
  background-color: #f7f7f7;
  padding: 25px 20px;
  border-radius: 10px;
}

/* line 2552, app/assets/stylesheets/application.css.scss */
.report-single-item .item-single-name {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 2px solid #d3d3d3;
  margin-bottom: 15px;
}

/* line 2559, app/assets/stylesheets/application.css.scss */
.report-single-item .item-single-des {
  font-size: 14px;
  color: #b80909;
}

/* line 2563, app/assets/stylesheets/application.css.scss */
.report-single-item .item-single-actions {
  font-size: 14px;
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 15px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

/* line 2574, app/assets/stylesheets/application.css.scss */
.report-single-item .item-single-info {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

/* line 2578, app/assets/stylesheets/application.css.scss */
.report-single-item .item-single-info .item-single-price {
  font-size: 14px;
  color: #333333;
  font-weight: 700;
}

/* line 2586, app/assets/stylesheets/application.css.scss */
.report-single-item:not(.checked) {
  border: 2px solid #d3d3d3;
  background-color: #fff;
}

/* line 2589, app/assets/stylesheets/application.css.scss */
.report-single-item:not(.checked) .item-single-actions {
  border: 2px solid #d3d3d3;
}

/* line 2592, app/assets/stylesheets/application.css.scss */
.report-single-item:not(.checked) .item-single-name, .report-single-item:not(.checked) .item-single-des, .report-single-item:not(.checked) .item-single-info, .report-single-item:not(.checked) .item-single-info span, .report-single-item:not(.checked) .item-single-actions i {
  color: #d3d3d3;
}

/* line 2595, app/assets/stylesheets/application.css.scss */
.report-single-item:not(.checked) .h-39 {
  opacity: 0.5;
}

/* line 2600, app/assets/stylesheets/application.css.scss */
.click-text {
  font-size: 14px;
  color: #707070;
}

/* line 2605, app/assets/stylesheets/application.css.scss */
.c-a2a2a2 {
  color: #a2a2a2;
}

/* line 2609, app/assets/stylesheets/application.css.scss */
.signup-height {
  min-height: 650px;
}

/* line 2613, app/assets/stylesheets/application.css.scss */
.mw-600 {
  margin: 0 auto;
  max-width: 600px;
}

/* line 2618, app/assets/stylesheets/application.css.scss */
.signup-bg {
  background-image: url("/signup-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 1570px) {
  /* line 2625, app/assets/stylesheets/application.css.scss */
  .signup-form {
    padding: 15px !important;
  }
}

@media (min-width: 1600px) {
  /* line 2631, app/assets/stylesheets/application.css.scss */
  .signup-form {
    padding: 25px !important;
  }
}

/* line 2635, app/assets/stylesheets/application.css.scss */
.signup-form {
  width: 100%;
}

/* line 2639, app/assets/stylesheets/application.css.scss */
.signup-des {
  margin: 24px 0 34px 0;
  font-size: 18px;
  color: #999999;
}

/* line 2643, app/assets/stylesheets/application.css.scss */
.signup-des a {
  color: #000;
  font-weight: 700;
}

/* line 2649, app/assets/stylesheets/application.css.scss */
.signup-form .steps-heading {
  width: 100%;
  justify-content: space-between;
  margin-left: 0;
}

/* line 2655, app/assets/stylesheets/application.css.scss */
.signup-heading {
  text-align: center;
  font-weight: 700;
  font-size: 46px;
}

/* line 2661, app/assets/stylesheets/application.css.scss */
.signup-form .steps-heading .h-step {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  padding: 5px !important;
}

@media (max-width: 1450px) and (min-width: 1200px) {
  /* line 2668, app/assets/stylesheets/application.css.scss */
  .signup-form .steps-heading .h-step .text {
    font-size: 13px;
    max-width: 92px;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  /* line 2676, app/assets/stylesheets/application.css.scss */
  .signup-heading {
    font-size: 30px;
  }
  /* line 2679, app/assets/stylesheets/application.css.scss */
  .signup-des {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  /* line 2685, app/assets/stylesheets/application.css.scss */
  .signup-form .steps-heading .h-step .text {
    font-size: 13px;
  }
  /* line 2688, app/assets/stylesheets/application.css.scss */
  .signup-form {
    padding: 0 !important;
  }
  /* line 2691, app/assets/stylesheets/application.css.scss */
  .signup-heading {
    font-size: 25px;
  }
}

/* line 2696, app/assets/stylesheets/application.css.scss */
.signup-form .steps-heading .h-step .multistep_icon {
  margin-right: 0;
  margin-bottom: 5px;
}

/* line 2701, app/assets/stylesheets/application.css.scss */
.signup-form .steps-heading .h-step:after {
  content: '';
}

/* line 2705, app/assets/stylesheets/application.css.scss */
.signup-form .steps-content {
  margin-top: 20px;
}

/* line 2709, app/assets/stylesheets/application.css.scss */
.image-text {
  max-width: 665px;
  padding: 30px;
}

/* line 2712, app/assets/stylesheets/application.css.scss */
.image-text .image-text-bold {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
}

/* line 2717, app/assets/stylesheets/application.css.scss */
.image-text .image-text-normal {
  font-size: 24px;
  color: #00000080;
  margin-top: 20px;
  line-height: 30px;
}

@media (max-width: 1590px) {
  /* line 2726, app/assets/stylesheets/application.css.scss */
  .image-text {
    margin-top: 0;
  }
}

@media (max-width: 1420px) {
  /* line 2732, app/assets/stylesheets/application.css.scss */
  .image-text {
    padding: 30px 20px;
  }
}

@media (max-width: 1290px) {
  /* line 2738, app/assets/stylesheets/application.css.scss */
  .image-text {
    padding: 30px 15px;
  }
  /* line 2740, app/assets/stylesheets/application.css.scss */
  .image-text .image-text-bold {
    font-size: 30px;
    line-height: 35px;
  }
  /* line 2744, app/assets/stylesheets/application.css.scss */
  .image-text .image-text-normal {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (max-width: 991.98px) {
  /* line 2752, app/assets/stylesheets/application.css.scss */
  .signup-bg {
    background: transparent;
    border-bottom: 1px solid;
  }
  /* line 2756, app/assets/stylesheets/application.css.scss */
  .signup-des {
    margin: 15px 0 25px 0;
  }
  /* line 2759, app/assets/stylesheets/application.css.scss */
  .signup-form .steps-content {
    margin-top: 30px;
  }
}

/* line 2764, app/assets/stylesheets/application.css.scss */
.faqs-signup {
  background-color: #f5f5f5;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* line 2768, app/assets/stylesheets/application.css.scss */
.faqs-signup .faqs-heading {
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #14395B;
  text-align: center;
}

/* line 2776, app/assets/stylesheets/application.css.scss */
.faqs-signup .card {
  border-radius: 10px !important;
  margin-bottom: 20px;
}

/* line 2779, app/assets/stylesheets/application.css.scss */
.faqs-signup .card.collaps {
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #E8E8E8;
}

/* line 2783, app/assets/stylesheets/application.css.scss */
.faqs-signup .card:not(.collaps) {
  border: 5px solid #FBDA16 !important;
}

/* line 2786, app/assets/stylesheets/application.css.scss */
.faqs-signup .card .card-header {
  padding: 44px 119px 12px 50px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 700;
  color: #14395BC9;
  border-radius: 10px !important;
  border-bottom: 0;
}

/* line 2794, app/assets/stylesheets/application.css.scss */
.faqs-signup .card .card-header.collapsed {
  padding-top: 39px;
  padding-bottom: 32px;
}

/* line 2799, app/assets/stylesheets/application.css.scss */
.faqs-signup .card .card-body {
  color: #8d9598;
  font-size: 16px;
  padding: 5px 119px 60px 50px;
}

/* line 2808, app/assets/stylesheets/application.css.scss */
#faqs.accordion [data-toggle="collapse"]:after {
  position: absolute;
  color: #14395B;
  content: "\f068";
  right: 35px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30.9px;
}

/* line 2818, app/assets/stylesheets/application.css.scss */
#faqs.accordion .collapsed[data-toggle="collapse"]:after {
  content: "\f067";
  color: #8D9598;
}

/* line 2823, app/assets/stylesheets/application.css.scss */
.testimonials-signup {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* line 2827, app/assets/stylesheets/application.css.scss */
.testimonials-signup .testimonials-heading {
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #14395B;
  text-align: center;
}

/* line 2835, app/assets/stylesheets/application.css.scss */
.testimonials-signup .text {
  font-size: 25px;
  text-align: center;
  color: #8d9598;
  line-height: 32px;
}

@media (max-width: 991.98px) {
  /* line 2845, app/assets/stylesheets/application.css.scss */
  .faqs-signup {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* line 2848, app/assets/stylesheets/application.css.scss */
  .faqs-signup .faqs-heading {
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 30px;
  }
  /* line 2853, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card {
    margin-bottom: 15px;
  }
  /* line 2855, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card:not(.collaps) {
    border: 3px solid #FBDA16 !important;
  }
  /* line 2858, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-header {
    padding: 34px 109px 12px 40px;
    font-size: 18px;
  }
  /* line 2861, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-header.collapsed {
    padding-top: 29px;
    padding-bottom: 22px;
  }
  /* line 2866, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-body {
    font-size: 15px;
    padding: 5px 109px 50px 40px;
  }
  /* line 2874, app/assets/stylesheets/application.css.scss */
  #faqs.accordion [data-toggle="collapse"]:after {
    font-size: 28px;
  }
  /* line 2878, app/assets/stylesheets/application.css.scss */
  .testimonials-signup {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* line 2881, app/assets/stylesheets/application.css.scss */
  .testimonials-signup .testimonials-heading {
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 30px;
  }
  /* line 2886, app/assets/stylesheets/application.css.scss */
  .testimonials-signup .text {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (max-width: 767.98px) {
  /* line 2894, app/assets/stylesheets/application.css.scss */
  .faqs-signup {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* line 2897, app/assets/stylesheets/application.css.scss */
  .faqs-signup .faqs-heading {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  /* line 2903, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-header {
    padding: 30px 99px 12px 35px;
  }
  /* line 2905, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-header.collapsed {
    padding-top: 20px;
  }
  /* line 2909, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-body {
    padding: 5px 35px 40px 35px;
  }
  /* line 2916, app/assets/stylesheets/application.css.scss */
  #faqs.accordion [data-toggle="collapse"]:after {
    font-size: 24px;
  }
  /* line 2920, app/assets/stylesheets/application.css.scss */
  .testimonials-signup {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* line 2923, app/assets/stylesheets/application.css.scss */
  .testimonials-signup .testimonials-heading {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  /* line 2932, app/assets/stylesheets/application.css.scss */
  .faqs-signup {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  /* line 2935, app/assets/stylesheets/application.css.scss */
  .faqs-signup .faqs-heading {
    font-size: 28px;
    line-height: 37px;
  }
  /* line 2940, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-header {
    padding: 25px 60px 12px 20px;
  }
  /* line 2942, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-header.collapsed {
    padding-top: 20px;
  }
  /* line 2946, app/assets/stylesheets/application.css.scss */
  .faqs-signup .card .card-body {
    padding: 5px 20px 30px 20px;
  }
  /* line 2953, app/assets/stylesheets/application.css.scss */
  #faqs.accordion [data-toggle="collapse"]:after {
    right: 15px;
  }
  /* line 2957, app/assets/stylesheets/application.css.scss */
  .testimonials-signup {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  /* line 2960, app/assets/stylesheets/application.css.scss */
  .testimonials-signup .testimonials-heading {
    font-size: 28px;
    line-height: 37px;
  }
}

/* line 2967, app/assets/stylesheets/application.css.scss */
.h-39 {
  height: 39px;
  overflow: hidden;
}

/* line 2972, app/assets/stylesheets/application.css.scss */
.two-records-padding td, .two-records-padding th {
  padding-top: 25.5px !important;
  padding-bottom: 25.5px !important;
}

/* line 2977, app/assets/stylesheets/application.css.scss */
.one-record-padding th, .one-record-padding td {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

/* line 2982, app/assets/stylesheets/application.css.scss */
.one-record-padding .dropdown-menu {
  top: -6.75px !important;
}

/* line 2986, app/assets/stylesheets/application.css.scss */
.collapse-card {
  position: relative;
}

/* line 2988, app/assets/stylesheets/application.css.scss */
.collapse-card .form-row[data-toggle="collapse"] {
  height: 55px;
}

/* line 2991, app/assets/stylesheets/application.css.scss */
.collapse-card .collapse-input {
  position: absolute;
  right: 65px;
  top: 11px;
}

/* line 2996, app/assets/stylesheets/application.css.scss */
.collapse-card table.dataTable {
  margin-top: 0 !important;
}

/* line 2999, app/assets/stylesheets/application.css.scss */
.collapse-card .toggle {
  font-size: 24px !important;
  -webkit-text-stroke: 2px #fff;
  transition: linear;
  transition-duration: 0.3s;
}

/* line 3005, app/assets/stylesheets/application.css.scss */
.collapse-card .collapsed .toggle {
  transform: rotate(180deg);
}

@media (max-width: 1199px) {
  /* line 3011, app/assets/stylesheets/application.css.scss */
  .collapse-input {
    right: 45px !important;
  }
}

@media (max-width: 991px) {
  /* line 3017, app/assets/stylesheets/application.css.scss */
  .collapse-input {
    right: 40px !important;
  }
}

@media (max-width: 530px) {
  /* line 3024, app/assets/stylesheets/application.css.scss */
  .collapse-input {
    width: 200px !important;
  }
}

@media (max-width: 425px) {
  /* line 3030, app/assets/stylesheets/application.css.scss */
  .breaked-name {
    max-width: 145px;
    display: flex;
    align-items: center;
    max-height: 21px;
  }
  /* line 3036, app/assets/stylesheets/application.css.scss */
  .collapse-input {
    width: 175px !important;
    right: 35px !important;
  }
  /* line 3040, app/assets/stylesheets/application.css.scss */
  .collapse-card .toggle {
    font-size: 18px !important;
    -webkit-text-stroke: 1px #fff;
    margin-top: 2px;
  }
}

@media (max-width: 375px) {
  /* line 3049, app/assets/stylesheets/application.css.scss */
  .collapse-input {
    width: 155px !important;
  }
}

/* line 3055, app/assets/stylesheets/application.css.scss */
.col-reports-mobile .table-responsive {
  margin: 0 5px;
  border: 1px solid lightgray;
  border-radius: 5px;
  width: auto;
}

/* line 3061, app/assets/stylesheets/application.css.scss */
.col-reports-mobile table {
  border: 0 !important;
  margin-bottom: 0;
}

/* line 3064, app/assets/stylesheets/application.css.scss */
.col-reports-mobile table th, .col-reports-mobile table td {
  border-bottom: 0;
}

/* line 3070, app/assets/stylesheets/application.css.scss */
#q_is_partner_eq, #q_role_eq, #q_group_name_eq {
  display: inline-block;
  width: auto;
  padding: 5px !important;
  margin: 5px 5px;
}

/* line 3077, app/assets/stylesheets/application.css.scss */
#q_role_eq {
  width: 190px;
}

/* line 3081, app/assets/stylesheets/application.css.scss */
#q_lastname_or_firstname_or_email_cont {
  width: 210px;
  margin: 5px 0;
}

/* line 3086, app/assets/stylesheets/application.css.scss */
#q_lastname_or_firstname_or_email_cont ~ .btn-search {
  top: 18px;
}

/* line 3090, app/assets/stylesheets/application.css.scss */
.label_is_partner {
  margin-bottom: 1px;
  margin-left: 5px;
  line-height: 1.6;
  vertical-align: text-bottom;
}

/* line 3097, app/assets/stylesheets/application.css.scss */
.text-break-all {
  word-break: break-all;
}

/* line 3101, app/assets/stylesheets/application.css.scss */
.ui-front {
  z-index: 9999999 !important;
}

/* line 3105, app/assets/stylesheets/application.css.scss */
.admincol-1 {
  position: relative;
}

/* line 3109, app/assets/stylesheets/application.css.scss */
.admin-users-table .pagy-bootstrap-nav {
  opacity: 0;
}

/* line 3113, app/assets/stylesheets/application.css.scss */
.fixTableHead {
  overflow-y: auto;
  height: calc(100vh - 20px);
}

/* line 3117, app/assets/stylesheets/application.css.scss */
.fixTableHead thead th {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 2;
}

/* line 3123, app/assets/stylesheets/application.css.scss */
.fixTableHead table {
  border: 0;
  margin-bottom: 100px;
}

/* line 3127, app/assets/stylesheets/application.css.scss */
.card-sticky {
  position: sticky;
  height: calc(100vh - 164px);
}

/* line 3133, app/assets/stylesheets/application.css.scss */
.btn-sort:active {
  color: #fff !important;
}

/* line 3137, app/assets/stylesheets/application.css.scss */
.sidebar-admin .accordion [data-toggle="collapse"]:after {
  color: #fff;
}

/* line 3140, app/assets/stylesheets/application.css.scss */
.f-12 {
  font-size: 12px;
}

/* line 3143, app/assets/stylesheets/application.css.scss */
.f-18 {
  font-size: 18px;
}

/* line 3146, app/assets/stylesheets/application.css.scss */
.text-gray {
  color: #626262;
}

/* line 3149, app/assets/stylesheets/application.css.scss */
.order-radio {
  border: 1px solid #C2C2C2;
  border-radius: 5px;
  padding: 13px 13px 13px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* line 3157, app/assets/stylesheets/application.css.scss */
.timer-box {
  background: #F6F6F6;
  border-radius: 5px;
  padding: 12px;
  text-align: center;
  max-width: 120px;
}

/* line 3164, app/assets/stylesheets/application.css.scss */
.timer-box h6 {
  font-weight: 600;
  font-size: 20px;
}

/* line 3168, app/assets/stylesheets/application.css.scss */
.timer-box p {
  font-size: 14px;
}

/* line 3171, app/assets/stylesheets/application.css.scss */
.order-card.card {
  height: 100%;
}

@media (max-width: 1500px) and (min-width: 1200px) {
  /* line 3176, app/assets/stylesheets/application.css.scss */
  .signup-form .timer-box {
    padding: 5px;
  }
  /* line 3179, app/assets/stylesheets/application.css.scss */
  .signup-form .timer-box h6 {
    font-size: 16px;
  }
  /* line 3182, app/assets/stylesheets/application.css.scss */
  .signup-form .timer-box p {
    font-size: 13px;
  }
}

/* line 3187, app/assets/stylesheets/application.css.scss */
.order-card .card-header {
  background-color: #fbda16;
}

/* line 3190, app/assets/stylesheets/application.css.scss */
.subtitle-lg {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

/* line 3196, app/assets/stylesheets/application.css.scss */
.order-bar {
  border-radius: 100px;
}

/* line 3198, app/assets/stylesheets/application.css.scss */
.order-bar .progress-bar {
  text-align: right;
  padding-right: 16px;
  height: 20px;
  background-color: #fbda16;
  color: #000;
  border-radius: 100px;
}

/* line 3207, app/assets/stylesheets/application.css.scss */
.radio-hightlihght {
  border: 1px solid #fbda16;
}

/* line 3211, app/assets/stylesheets/application.css.scss */
.ls-i {
  letter-spacing: 0.3em;
}

/* line 3215, app/assets/stylesheets/application.css.scss */
.custom-file-designed {
  height: 61px;
  background: #F6F6F6;
  border: 1px dashed #AAAAAA;
  border-radius: 5px;
}

/* line 3220, app/assets/stylesheets/application.css.scss */
.custom-file-designed ::-webkit-file-upload-button {
  width: 100% !important;
}

/* line 3223, app/assets/stylesheets/application.css.scss */
.custom-file-designed .custom-file-input {
  width: 100%;
  height: 61px;
}

/* line 3226, app/assets/stylesheets/application.css.scss */
.custom-file-designed .custom-file-input:focus ~ .custom-file-label {
  box-shadow: none !important;
}

/* line 3230, app/assets/stylesheets/application.css.scss */
.custom-file-designed .custom-file-label {
  display: flex;
  top: 15px;
  right: 0;
}

/* line 3234, app/assets/stylesheets/application.css.scss */
.custom-file-designed .custom-file-label::after {
  right: 15px;
  content: 'Choose File';
  background-color: #fbda16;
  left: auto;
}

@media (max-width: 1200px) {
  /* line 3244, app/assets/stylesheets/application.css.scss */
  .timer-box {
    padding: 8px;
  }
  /* line 3246, app/assets/stylesheets/application.css.scss */
  .timer-box h6 {
    font-size: 20px;
  }
  /* line 3250, app/assets/stylesheets/application.css.scss */
  .preview-logo-bg {
    height: 40px;
    display: block;
    margin: 0px auto 30px auto;
  }
}

/* line 3258, app/assets/stylesheets/application.css.scss */
#orderTimer.timer-danger h6, #orderTimer.timer-danger p, #orderTimer.timer-danger span {
  color: #F30000;
}

/* line 3262, app/assets/stylesheets/application.css.scss */
.c-primary_500 {
  color: #F7DA4D;
}

/* line 3265, app/assets/stylesheets/application.css.scss */
.disclaimer-box {
  width: 100%;
  background-color: #F6F6F6;
  padding: 32px;
  border-radius: 12px;
}

/* line 3271, app/assets/stylesheets/application.css.scss */
.divider {
  height: 8px;
  background-color: #F6F6F6;
  width: 100%;
}

/* line 3276, app/assets/stylesheets/application.css.scss */
.summary-box {
  max-width: 360px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 30px 7px 15px;
}

/* line 3283, app/assets/stylesheets/application.css.scss */
.bg-272421 {
  background-color: #272421;
}

/* line 3286, app/assets/stylesheets/application.css.scss */
.sub-heading-large {
  font-size: 16px;
  font-weight: 500;
}

/* line 3290, app/assets/stylesheets/application.css.scss */
.f-16 {
  font-size: 16px;
}

/* line 3295, app/assets/stylesheets/application.css.scss */
.range-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: 2.9rem;
  margin-bottom: 50px;
}

/* line 3302, app/assets/stylesheets/application.css.scss */
.word-break {
  word-break: break-word;
}

/* line 3305, app/assets/stylesheets/application.css.scss */
#range {
  -webkit-appearance: none;
  width: 100%;
}

/* line 3306, app/assets/stylesheets/application.css.scss */
#range:focus {
  outline: none;
}

/* line 3322, app/assets/stylesheets/application.css.scss */
.range-value {
  background-color: #fff;
  border-radius: 40px;
  padding: 4px 14px 2px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

/* line 3330, app/assets/stylesheets/application.css.scss */
#range::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: linear-gradient(90deg, #000000 var(--range-progress), #dee4ec var(--range-progress));
  border-radius: 1rem;
}

/* line 3338, app/assets/stylesheets/application.css.scss */
#range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 6px solid #fff;
  box-shadow: 0px 2px 12px rgba(46, 46, 46, 0.46);
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  height: 20px;
  width: 20px;
  transform: translateY(calc(-80% + 8px));
}

/* line 3350, app/assets/stylesheets/application.css.scss */
#tooltip {
  position: absolute;
  top: -65px;
}

/* line 3354, app/assets/stylesheets/application.css.scss */
#tooltip span {
  position: absolute;
  text-align: center;
  display: block;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 14px;
  margin-top: 10px;
  color: #000000;
  background: #fff;
  box-shadow: 0px 4px 16px rgba(46, 46, 46, 0.12);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  left: 50%;
  transform: translate(-50%, 0);
}

/* line 3371, app/assets/stylesheets/application.css.scss */
#tooltip span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-top: 22px solid #fff;
}

/* line 3382, app/assets/stylesheets/application.css.scss */
.bg-gray {
  background-color: #F6F6F6;
}

/* line 3385, app/assets/stylesheets/application.css.scss */
.dashboard-img {
  background-size: 100%;
  background-repeat: no-repeat;
}

/* line 3389, app/assets/stylesheets/application.css.scss */
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* line 3393, app/assets/stylesheets/application.css.scss */
.f-42 {
  font-size: 42px;
  line-height: 52px;
}

/* line 3397, app/assets/stylesheets/application.css.scss */
.f-48 {
  font-size: 48px;
  line-height: 72px;
}

/* line 3401, app/assets/stylesheets/application.css.scss */
.preview-text-bg {
  padding: 15px;
}

/* line 3404, app/assets/stylesheets/application.css.scss */
.text-yl {
  color: #fbda16;
}

/* line 3407, app/assets/stylesheets/application.css.scss */
.range-card {
  background: #F7DA4D;
  box-shadow: 4px 24px 60px rgba(173, 147, 109, 0.65);
  border-radius: 12px;
}

/* line 3413, app/assets/stylesheets/application.css.scss */
.w-480 {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  display: block;
}

/* line 3419, app/assets/stylesheets/application.css.scss */
.py-70 {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* line 3423, app/assets/stylesheets/application.css.scss */
.s-divider {
  width: 50px;
  height: 8px;
  display: block;
  margin: 0 auto;
}

/* line 3429, app/assets/stylesheets/application.css.scss */
.est-head-line:after {
  content: "";
  width: 100%;
  background: linear-gradient(90deg, #F7DA4D 80%, #272421 100%);
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* line 3438, app/assets/stylesheets/application.css.scss */
.esti-bg-img {
  background-image: url("/estimate_bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

/* line 3443, app/assets/stylesheets/application.css.scss */
.border-radius-50 {
  border-radius: 50px;
}

/* line 3446, app/assets/stylesheets/application.css.scss */
span.text {
  display: block;
  position: absolute;
  top: 40px;
}

/* line 3451, app/assets/stylesheets/application.css.scss */
#tooltip:after {
  content: "ESTIMATED";
  position: absolute;
  left: -37px;
  top: -15px;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

/* line 3461, app/assets/stylesheets/application.css.scss */
.btn-black {
  border-color: #272421;
  color: #ffffff;
  background-color: #272421;
}

/* line 3466, app/assets/stylesheets/application.css.scss */
.btn-black:hover {
  border-color: #fff;
  color: #000;
  background-color: #fff;
}

/* line 3471, app/assets/stylesheets/application.css.scss */
.report-date-field {
  border-radius: 23px;
  padding: 9px 19px;
  width: 300px;
  display: inline-block;
  border-color: #ededed !important;
  border: 1px solid;
}

/* line 3479, app/assets/stylesheets/application.css.scss */
.gap-8 {
  gap: 8px;
}

/* line 3483, app/assets/stylesheets/application.css.scss */
.w-182 {
  width: 182px;
}

/* line 3487, app/assets/stylesheets/application.css.scss */
.w-215 {
  width: 215px !important;
}
