@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* # Global Font Family Section
================================================
================================================*/
/* # Global Font Size Section
================================================
================================================*/
/* # Settings Size Avatar Section
================================================
================================================*/
/* # Settings Size Thumbnail Section
================================================
================================================*/
/* # Global Colors Section
================================================
================================================*/
/* # Global Opacity Section
================================================
================================================*/
/* # Global Function to print color Section
================================================
================================================*/
.box-text {
  background: rgba(0, 0, 0, 0.6);
}

/* # Global Settings Color Google Card Page
================================================
================================================*/
/* # Global Settings Color Sticky List Header
================================================
================================================*/
/* # Global Settings Color Login Page
================================================
================================================*/
/* # Global Settings Color Register Page
================================================
================================================*/
/* # Global Settings Wizard Color
================================================
================================================*/
/* # Global Settings Color Parallax Page
================================================
================================================*/
/* # Global Settings Gallery Color
================================================
================================================*/
/* # Global Settings Search Color
================================================
================================================*/
/* # Global Settings Maps Color
================================================
================================================*/
/* # Global Settings Image Filetr Section
================================================
================================================*/
[images-filter] {
  mix-blend-mode: luminosity;
  -webkit-filter: grayscale(100%) contrast(1.2);
  filter: grayscale(100%) contrast(1);
}

img {
  -o-object-fit: cover;
  object-fit: cover;
}

/* # Settings Header Animation Section
================================================
================================================*/
/* # Settings List Item Section
================================================
================================================*/
/* 11# Settings Background Ionic App Section
================================================
================================================*/
/* 12# Settings Divider Section
================================================
================================================*/
[border]::before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #c7c7cc;
  left: 16px;
  bottom: 0;
  right: 0;
  z-index: 999;
}

/* # Settings Border Radius Section
================================================
================================================*/
ion-thumbnail img {
  border-radius: 5px !important;
}

/* # Settings Shadows Section
================================================
================================================*/
[box-shadow] {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2) !important;
  z-index: 999;
}

.box-shadow {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2) !important;
  z-index: 999;
}

[font-bold] {
  font-weight: bold;
}

[font-small] {
  font-size: 17px;
}

.big-box-shadow, [header-background-image]::before {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,212121+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#212121));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #212121 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#212121',GradientType=0 );
  /* IE6-9 */
  position: absolute;
  opacity: 0.7;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}

/* # Settings Color and Size Icon Section
================================================
================================================*/
[icon-small] {
  color: #30384c !important;
  font-size: 17px !important;
}

[icon-medium] {
  color: #0167b1 !important;
  font-size: 22px !important;
}

[icon-large] {
  color: #7f8490 !important;
  font-size: 32px !important;
}

/* # Settings Span Section
================================================
================================================*/
[span-small] {
  color: #bfc1c7;
  font-size: 10px !important;
  font-weight: 400;
}

[span-medium] {
  color: #30384c;
  font-size: 15px !important;
  font-weight: 700;
  line-height: 17px;
}

[span-large] {
  color: #8e8e93;
  font-size: 22px !important;
  line-height: 22px;
  font-weight: 400;
}

/* # Settings Header Section
================================================
================================================*/
.header-md::after {
  background-image: none !important;
}

[header-section] {
  background-color: white !important;
  border-top: none !important;
}

[header-section] ion-label {
  margin: 13px 8px 5px 0 !important;
}

[header-title] {
  color: #0167b1;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 24px;
  margin-bottom: 9px !important;
  padding-top: 10px;
}

[header-subtitle] {
  color: #7f8490 !important;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 300;
}

/* # LIST VIEWS - Item Parameters Section
================================================
================================================*/
[item-title] {
  color: #30384c !important;
  font-size: 17px !important;
  font-weight: bold !important;
  line-height: 19px;
  letter-spacing: 1px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: initial !important;
}

[item-subtitle] {
  color: #30384c !important;
  font-size: 13px !important;
  font-weight: normal !important;
  line-height: 18px;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: initial !important;
}

/* # LIST VIEWS - Subitem Parameters Section
================================================
================================================*/
[subitem-title] {
  color: #30384c !important;
  font-size: 17px !important;
  font-weight: bold !important;
  line-height: normal;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
}

[subitem-subtitle] {
  color: #30384c !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
}

ion-note {
  color: #30384c !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
}

/* # Settings Button Section
================================================
================================================*/
[default-button] {
  background: #0167b1 !important;
  color: white !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 22px !important;
  line-height: 15px;
  border-radius: 5px !important;
}

[button-clear] {
  color: #30384c !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
}

[button-clear-outline] {
  color: #0167b1 !important;
  font-size: 13px !important;
  border: 2px solid #0167b1 !important;
  padding: 15px 18px !important;
  font-weight: 300 !important;
}

[button-action-shit] {
  border-radius: 50% !important;
  height: 30px !important;
  width: 30px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

[button-action-shit] ion-icon {
  font-size: 34px;
}

[button-action-shit] ion-icon.ion-md-more:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

[button-icon] {
  background: white !important;
  color: #30384c !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  height: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 5px !important;
  text-transform: capitalize !important;
  padding: 6px 10px 6px 8px !important;
}

[button-icon-clear] {
  background-color: white !important;
  color: #30384c !important;
  font-size: 13px !important;
  border-radius: 5px !important;
  padding: 20px 15px !important;
  height: auto !important;
}

[button-follow] {
  background-color: #3d90d1 !important;
  font-size: 17px !important;
  color: white;
  border-radius: 5px !important;
  font-weight: bold !important;
  padding: 37px 9px !important;
}

/* # Settings Badges Section
================================================
================================================*/
ion-badge {
  border-radius: 5px !important;
  padding: 6px 12px !important;
}

[badge-clear].badge {
  color: #30384c !important;
  background-color: transparent !important;
  font-size: 22px !important;
  font-weight: bold !important;
  line-height: 34px;
  background-color: transparent !important;
  padding: 0 !important;
}

[badge-light].badge {
  color: white;
  background-color: #3d90d1;
}

/* # Settings Login Section
================================================
================================================*/
[login-title] {
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 20px;
}

[login-subtitle] {
  font-size: 17px !important;
  font-weight: 300;
  line-height: 19px;
}

[register-title] {
  font-size: 17px !important;
  font-weight: 400;
  line-height: 20px;
}

/* # Settings Google Cards Section
================================================
================================================*/
[card-title] {
  font-size: 24px !important;
  font-weight: 400 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

[card-subtitle] {
  font-size: 17px !important;
  font-weight: bold !important;
  letter-spacing: 1px;
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
}

[card-body-text] {
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 17px !important;
  letter-spacing: 1px;
}

/* # Settings Swipe Section
================================================
================================================*/
/* # Settings Parallax Section
================================================
================================================*/
[parallax-title] {
  font-size: 34px !important;
  font-weight: bold !important;
  line-height: 34px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

[parallax-subtitle] {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

[parallax-description] {
  font-size: 17px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

/* # Settings Gallery Section
================================================
================================================*/
[gallery-title] {
  font-size: 24px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-wrap: initial !important;
}

[gallery-subtitle] {
  font-size: 13px !important;
}

/* # Settings Checkbox Section
================================================
================================================*/
.checkbox-md .checkbox-icon {
  height: 20px !important;
  width: 20px !important;
}

.checkbox-md .checkbox-inner {
  top: 1px !important;
  left: 6px !important;
  width: 6px !important;
  height: 11px !important;
}

/* # Settings Wizard Section
================================================
================================================*/
[wizard-title] {
  font-size: 17px !important;
  font-weight: 300;
  line-height: 20px;
}

[wizard-subtitle] {
  font-size: 13px !important;
  font-weight: 300;
  line-height: 20px;
}

[wizard-description] {
  font-size: 13px !important;
  font-weight: 300;
  line-height: 18px;
}

/* # Settings Wizard Section
================================================
================================================*/
.text-input {
  color: #30384c !important;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
}

/* # Settings Tabs Section
================================================
================================================*/
/* 27# Settings Search Bar Section
================================================
================================================*/
[search-bar-title] {
  font-size: 24px !important;
  font-weight: 400 !important;
}

/* Radio Settings Section
================================================
================================================*/
/* Toggle Settings Section
================================================
================================================*/
/* Settings Action Sheet Section
================================================
================================================*/
.action-sheet-selected {
  background-color: white !important;
}

/* Settings Seggments Section
================================================
================================================*/
[segment-block] {
  background: white !important;
}

.segment-button {
  color: #30384c !important;
}

.segment-activated {
  font-weight: bold !important;
  color: #0167b1 !important;
}

/* Settings Google Maps Section
================================================
================================================*/
[maps-title] {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
}

[map-content] [maps-description-title] {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
}

[map-content] [maps-description] {
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 18px !important;
}

[map-content] [maps-info-description] {
  font-size: 17px !important;
  font-weight: bold !important;
  line-height: 19px !important;
}

/* Settings Settings Divider Background Section
================================================
================================================*/
/* Settings Toolbar Section
================================================
================================================*/
.toolbar .toolbar-title {
  font-weight: 400;
}

.alert-title {
  color: #30384c !important;
  font-weight: 300;
}

.alert-button {
  color: #30384c !important;
}

.item-radio {
  color: #30384c !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7f8490 !important;
  font-weight: 300 !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #7f8490 !important;
  font-weight: 300 !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #7f8490 !important;
  font-weight: 300 !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #7f8490 !important;
  font-weight: 300 !important;
}

[has-header] .scroll-content {
  top: 56px;
}

.platform-ios [has-header] .scroll-content {
  top: 64px !important;
}

.platform-ios .header-ios .toolbar-background-ios {
  border-color: transparent;
}

.item-md ion-reorder,
.item-ios ion-reorder {
  opacity: 1 !important;
}

ion-reorder {
  max-width: 50px;
  border-left: none;
  background: whitesmoke !important;
}

ion-reorder .ion-md-reorder, ion-reorder .ion-ios-reorder {
  color: #c7c7cc !important;
}

[background-size] {
  background-size: cover !important;
  background-position-x: 50% !important;
  background-repeat: no-repeat !important;
}

[transparent] {
  background-color: transparent !important;
}

[no-margin] {
  margin: 0 !important;
}

[no-padding] {
  padding: 0 !important;
}

/* Settings Color Select
================================================
================================================*/
.select-text {
  color: #7f8490;
}

/* Settings Range
================================================
================================================*/
[new-category] {
  background-color: #0167b1;
  color: white;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  padding: 10px 20px;
}

/* Settings Alert Info
================================================
================================================*/
.info-dialog .alert-head,
.info-dialog .alert-message {
  text-align: center !important;
  color: #30384c !important;
}

.info-dialog .alert-message {
  color: #30384c !important;
}

.info-dialog .alert-sub-title {
  color: #0167b1;
}

/* Settings Alert Warning
================================================
================================================*/
.alert-warning .alert-head,
.alert-warning .alert-message {
  text-align: center !important;
}

.alert-warning .alert-message {
  color: #30384c !important;
}

.alert-warning .alert-sub-title {
  color: #0167b1;
}

.alert-warning .alert-button-group {
  padding: 8px 0 8px 8px !important;
}

.alert-warning .alert-button {
  width: 100%;
  margin-bottom: 20px;
  background: #0167b1 !important;
  text-align: center;
  color: white !important;
  display: block;
}

.alert-warning .alert-button .button-inner {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

/* Settings Alert Subscribe
================================================
================================================*/
.alert-subscribe .alert-head,
.alert-subscribe .alert-message {
  text-align: center !important;
}

.alert-subscribe .alert-message {
  color: #30384c !important;
}

.alert-subscribe .alert-sub-title {
  color: #0167b1;
}

.options {
  float: right;
  background-color: transparent !important;
  color: white !important;
}

.no-data {
  font-size: 15px;
  text-align: center;
  margin-top: calc(50% - 50px);
}

.no-data h3 {
  margin: 0;
  font-size: 18px;
  color: #444;
}

.no-data img {
  width: 120px;
}

.toolbar .toolbar-title {
  color: white !important;
}

.bar-button {
  color: white !important;
}

ion-col {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-ellipsis {
  white-space: inherit;
  text-overflow: inherit;
  word-wrap: unset !important;
}

.tabs-md .tab-button {
  min-height: 4rem !important;
}

.logout {
  color: red !important;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button {
  text-transform: none !important;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button.title-only .title {
  line-height: 35px !important;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button {
  height: 40px !important;
}

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

.loader img {
  width: 30px;
}

ion-navbar ion-icon {
  font-size: 20px;
  padding: 0 2px;
}

.eventBlip {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 6.5px;
}

.refresher-pulling-text, .refresher-refreshing-text {
  margin-top: -5px;
}

.title-md {
  display: inline-block;
}

ion-content.has-refresher > .scroll-content {
  border-top: none;
}

.button-loader {
  height: 80%;
  margin-right: 5px;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

.align-right input {
  text-align: right;
}

.required {
  color: red;
}

.datetime {
  font-size: 13px;
  font-weight: 400;
}

.item.item-md.item-input.input-has-focus .item-inner {
  border-bottom-color: #0167b1 !important;
}

.list-md .item.item-md.item-input.input-has-focus:last-child {
  border-bottom-color: #0167b1 !important;
}

.item.item-md.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
  border-bottom-color: #0167b1 !important;
}

.list-md .item.item-md.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child {
  border-bottom-color: #0167b1 !important;
}

.item.item-ios.item-input.input-has-focus .item-inner {
  border-bottom-color: #0167b1 !important;
}

.list-ios .item.item-ios.item-input.input-has-focus:last-child {
  border-bottom-color: #0167b1 !important;
}

.item.item-ios.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
  border-bottom-color: #0167b1 !important;
}

.list-ios .item.item-ios.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child {
  border-bottom-color: #0167b1 !important;
}

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

ionic2-datepicker .datepicker-wrapper .datepicker-header {
  background-color: deepskyblue !important;
}

.weekday-header {
  background-color: #0167b1 !important;
}

.datepicker-calendar button {
  background-color: deepskyblue !important;
}

.datepicker-calendar select {
  padding: 5px;
  border: 1px solid #0167b1;
  border-radius: 10px;
  background-color: white;
}

.datepicker-footer button {
  border-radius: 10px !important;
}

ionic2-datepicker .datepicker-wrapper .datepicker-header .date-header .datepicker-year, ionic2-datepicker .datepicker-wrapper .datepicker-header .date-header .datepicker-month {
  margin: 0px !important;
}

.toast-md .toast-message {
  text-align: center !important;
}

.content-ios hr {
  height: 1px !important;
}

hr {
  background-color: #c7c7cc !important;
}

.label-md[stacked], .stacked, .label-ios[stacked] {
  font-size: 15px !important;
}

.success .toast-wrapper {
  background-color: #00C851 !important;
}

.danger .toast-wrapper {
  background-color: #ff4444 !important;
}

.primary .toast-wrapper {
  background-color: #33b5e5 !important;
}

@font-face {
  font-family: 'fontello';
  src: url("../assets/fontello/fontello.eot?89574879");
  src: url("../assets/fontello/fontello.eot?89574879#iefix") format("embedded-opentype"), url("../assets/fontello/fontello.woff?89574879") format("woff"), url("../assets/fontello/fontello.ttf?89574879") format("truetype"), url("../assets/fontello/fontello.svg?89574879#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?89574879#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-account:before {
  content: '\e800';
}

/* '' */
.icon-zip-box:before {
  content: '\e801';
}

/* '' */
.icon-airballoon:before {
  content: '\e802';
}

/* '' */
.icon-airplane-off:before {
  content: '\e803';
}

/* '' */
.icon-airplane:before {
  content: '\e804';
}

/* '' */
.icon-alarm-check:before {
  content: '\e805';
}

/* '' */
.icon-alarm-multiple:before {
  content: '\e806';
}

/* '' */
.icon-alarm-off:before {
  content: '\e807';
}

/* '' */
.icon-alarm-plus:before {
  content: '\e808';
}

/* '' */
.icon-apple:before {
  content: '\e809';
}

/* '' */
.icon-appnet:before {
  content: '\e80a';
}

/* '' */
.icon-apps:before {
  content: '\e80b';
}

/* '' */
.icon-arrange-bring-forward:before {
  content: '\e80c';
}

/* '' */
.icon-arrange-bring-to-front:before {
  content: '\e80d';
}

/* '' */
.icon-arrange-send-backward:before {
  content: '\e80e';
}

/* '' */
.icon-arrange-send-to-back:before {
  content: '\e80f';
}

/* '' */
.icon-arrow-collapse:before {
  content: '\e810';
}

/* '' */
.icon-arrow-right:before {
  content: '\e811';
}

/* '' */
.icon-arrow-up-bold-circle-outline:before {
  content: '\e812';
}

/* '' */
.icon-arrow-up-bold-circle:before {
  content: '\e813';
}

/* '' */
.icon-arrow-up-bold-hexagon-outline:before {
  content: '\e814';
}

/* '' */
.icon-arrow-up:before {
  content: '\e815';
}

/* '' */
.icon-attachment:before {
  content: '\e816';
}

/* '' */
.icon-auto-fix:before {
  content: '\e817';
}

/* '' */
.icon-auto-upload:before {
  content: '\e818';
}

/* '' */
.icon-battery-90:before {
  content: '\e819';
}

/* '' */
.icon-battery-alert:before {
  content: '\e81a';
}

/* '' */
.icon-battery-charging-100:before {
  content: '\e81b';
}

/* '' */
.icon-battery-charging-20:before {
  content: '\e81c';
}

/* '' */
.icon-battery-charging-30:before {
  content: '\e81d';
}

/* '' */
.icon-battery-charging-40:before {
  content: '\e81e';
}

/* '' */
.icon-battery-charging-60:before {
  content: '\e81f';
}

/* '' */
.icon-battery-charging-80:before {
  content: '\e820';
}

/* '' */
.icon-beats:before {
  content: '\e821';
}

/* '' */
.icon-behance:before {
  content: '\e822';
}

/* '' */
.icon-bell-off:before {
  content: '\e823';
}

/* '' */
.icon-bell-outline:before {
  content: '\e824';
}

/* '' */
.icon-bell-ring-outline:before {
  content: '\e825';
}

/* '' */
.icon-bell-ring:before {
  content: '\e826';
}

/* '' */
.icon-bell-sleep:before {
  content: '\e827';
}

/* '' */
.icon-bell:before {
  content: '\e828';
}

/* '' */
.icon-blur-off:before {
  content: '\e829';
}

/* '' */
.icon-blur-radial:before {
  content: '\e82a';
}

/* '' */
.icon-blur:before {
  content: '\e82b';
}

/* '' */
.icon-book-multiple-variant:before {
  content: '\e82c';
}

/* '' */
.icon-book-multiple:before {
  content: '\e82d';
}

/* '' */
.icon-book-variant:before {
  content: '\e82e';
}

/* '' */
.icon-book:before {
  content: '\e82f';
}

/* '' */
.icon-bookmark-outline:before {
  content: '\e830';
}

/* '' */
.icon-bowling:before {
  content: '\e831';
}

/* '' */
.icon-briefcase-check:before {
  content: '\e832';
}

/* '' */
.icon-briefcase-download:before {
  content: '\e833';
}

/* '' */
.icon-briefcase-upload:before {
  content: '\e834';
}

/* '' */
.icon-briefcase:before {
  content: '\e835';
}

/* '' */
.icon-brightness-1:before {
  content: '\e836';
}

/* '' */
.icon-brightness-2:before {
  content: '\e837';
}

/* '' */
.icon-brightness-3:before {
  content: '\e838';
}

/* '' */
.icon-brightness-4:before {
  content: '\e839';
}

/* '' */
.icon-brightness-5:before {
  content: '\e83a';
}

/* '' */
.icon-brightness-6:before {
  content: '\e83b';
}

/* '' */
.icon-brightness-7:before {
  content: '\e83c';
}

/* '' */
.icon-brightness-auto:before {
  content: '\e83d';
}

/* '' */
.icon-broom:before {
  content: '\e83e';
}

/* '' */
.icon-brush:before {
  content: '\e83f';
}

/* '' */
.icon-bug:before {
  content: '\e840';
}

/* '' */
.icon-bus:before {
  content: '\e841';
}

/* '' */
.icon-cake-variant:before {
  content: '\e842';
}

/* '' */
.icon-cake:before {
  content: '\e843';
}

/* '' */
.icon-calculator:before {
  content: '\e844';
}

/* '' */
.icon-calendar-check:before {
  content: '\e845';
}

/* '' */
.icon-calendar-remove:before {
  content: '\e846';
}

/* '' */
.icon-calendar-text:before {
  content: '\e847';
}

/* '' */
.icon-calendar-today:before {
  content: '\e848';
}

/* '' */
.icon-calendar:before {
  content: '\e849';
}

/* '' */
.icon-camcorder-box-off:before {
  content: '\e84a';
}

/* '' */
.icon-camcorder-box:before {
  content: '\e84b';
}

/* '' */
.icon-camcorder-off:before {
  content: '\e84c';
}

/* '' */
.icon-camcorder:before {
  content: '\e84d';
}

/* '' */
.icon-camera-iris:before {
  content: '\e84e';
}

/* '' */
.icon-camera-party-mode:before {
  content: '\e84f';
}

/* '' */
.icon-camera-switch:before {
  content: '\e850';
}

/* '' */
.icon-camera-timer:before {
  content: '\e851';
}

/* '' */
.icon-camera:before {
  content: '\e852';
}

/* '' */
.icon-candycane:before {
  content: '\e853';
}

/* '' */
.icon-car-wash:before {
  content: '\e854';
}

/* '' */
.icon-car:before {
  content: '\e855';
}

/* '' */
.icon-carrot:before {
  content: '\e856';
}

/* '' */
.icon-cart-outline:before {
  content: '\e857';
}

/* '' */
.icon-cart:before {
  content: '\e858';
}

/* '' */
.icon-cash:before {
  content: '\e859';
}

/* '' */
.icon-cast-connected:before {
  content: '\e85a';
}

/* '' */
.icon-cast:before {
  content: '\e85b';
}

/* '' */
.icon-cellphone-android:before {
  content: '\e85c';
}

/* '' */
.icon-cellphone-dock:before {
  content: '\e85d';
}

/* '' */
.icon-cellphone-iphone:before {
  content: '\e85e';
}

/* '' */
.icon-cellphone-link-off:before {
  content: '\e85f';
}

/* '' */
.icon-cellphone-link:before {
  content: '\e860';
}

/* '' */
.icon-cellphone-settings:before {
  content: '\e861';
}

/* '' */
.icon-cellphone:before {
  content: '\e862';
}

/* '' */
.icon-chart-bar:before {
  content: '\e863';
}

/* '' */
.icon-chart-histogram:before {
  content: '\e864';
}

/* '' */
.icon-chart-line:before {
  content: '\e865';
}

/* '' */
.icon-check-all:before {
  content: '\e866';
}

/* '' */
.icon-check:before {
  content: '\e867';
}

/* '' */
.icon-checkbox-blank-circle-outline:before {
  content: '\e868';
}

/* '' */
.icon-checkbox-blank-circle:before {
  content: '\e869';
}

/* '' */
.icon-checkbox-blank-outline:before {
  content: '\e86a';
}

/* '' */
.icon-checkbox-blank:before {
  content: '\e86b';
}

/* '' */
.icon-checkbox-marked-circle-outline:before {
  content: '\e86c';
}

/* '' */
.icon-checkbox-marked-circle:before {
  content: '\e86d';
}

/* '' */
.icon-checkbox-marked-outline:before {
  content: '\e86e';
}

/* '' */
.icon-checkbox-marked:before {
  content: '\e86f';
}

/* '' */
.icon-checkbox-multiple-blank-outline:before {
  content: '\e870';
}

/* '' */
.icon-checkbox-multiple-blank:before {
  content: '\e871';
}

/* '' */
.icon-checkbox-multiple-marked-outline:before {
  content: '\e872';
}

/* '' */
.icon-checkbox-multiple-marked:before {
  content: '\e873';
}

/* '' */
.icon-chevron-down:before {
  content: '\e874';
}

/* '' */
.icon-chevron-left:before {
  content: '\e875';
}

/* '' */
.icon-chevron-right:before {
  content: '\e876';
}

/* '' */
.icon-chevron-up:before {
  content: '\e877';
}

/* '' */
.icon-city:before {
  content: '\e878';
}

/* '' */
.icon-clipboard-account:before {
  content: '\e879';
}

/* '' */
.icon-clipboard-alert:before {
  content: '\e87a';
}

/* '' */
.icon-clipboard-arrow-down:before {
  content: '\e87b';
}

/* '' */
.icon-clipboard-arrow-left:before {
  content: '\e87c';
}

/* '' */
.icon-clipboard-check:before {
  content: '\e87d';
}

/* '' */
.icon-clipboard-outline:before {
  content: '\e87e';
}

/* '' */
.icon-clipboard-text:before {
  content: '\e87f';
}

/* '' */
.icon-clipboard:before {
  content: '\e880';
}

/* '' */
.icon-clock:before {
  content: '\e881';
}

/* '' */
.icon-close-box-outline:before {
  content: '\e882';
}

/* '' */
.icon-close-box:before {
  content: '\e883';
}

/* '' */
.icon-close-circle-outline:before {
  content: '\e884';
}

/* '' */
.icon-close-circle:before {
  content: '\e885';
}

/* '' */
.icon-close-network:before {
  content: '\e886';
}

/* '' */
.icon-close:before {
  content: '\e887';
}

/* '' */
.icon-closed-caption:before {
  content: '\e888';
}

/* '' */
.icon-cloud-check:before {
  content: '\e889';
}

/* '' */
.icon-cloud-circle:before {
  content: '\e88a';
}

/* '' */
.icon-cloud-download:before {
  content: '\e88b';
}

/* '' */
.icon-cloud-outline-off:before {
  content: '\e88c';
}

/* '' */
.icon-cloud-outline:before {
  content: '\e88d';
}

/* '' */
.icon-cloud-upload:before {
  content: '\e88e';
}

/* '' */
.icon-cloud:before {
  content: '\e88f';
}

/* '' */
.icon-coffee-to-go:before {
  content: '\e890';
}

/* '' */
.icon-coffee:before {
  content: '\e891';
}

/* '' */
.icon-coin:before {
  content: '\e892';
}

/* '' */
.icon-color-helper:before {
  content: '\e893';
}

/* '' */
.icon-comment-account-outline:before {
  content: '\e894';
}

/* '' */
.icon-comment-account:before {
  content: '\e895';
}

/* '' */
.icon-comment-alert-outline:before {
  content: '\e896';
}

/* '' */
.icon-comment-alert:before {
  content: '\e897';
}

/* '' */
.icon-comment-check-outline:before {
  content: '\e898';
}

/* '' */
.icon-comment-check:before {
  content: '\e899';
}

/* '' */
.icon-comment-multipe-outline:before {
  content: '\e89a';
}

/* '' */
.icon-comment-outline:before {
  content: '\e89b';
}

/* '' */
.icon-comment-plus-outline:before {
  content: '\e89c';
}

/* '' */
.icon-comment-processing-outline:before {
  content: '\e89d';
}

/* '' */
.icon-comment-processing:before {
  content: '\e89e';
}

/* '' */
.icon-comment-remove-outline:before {
  content: '\e89f';
}

/* '' */
.icon-comment-text-outline:before {
  content: '\e8a0';
}

/* '' */
.icon-comment-text:before {
  content: '\e8a1';
}

/* '' */
.icon-comment:before {
  content: '\e8a2';
}

/* '' */
.icon-compare:before {
  content: '\e8a3';
}

/* '' */
.icon-compass-outline:before {
  content: '\e8a4';
}

/* '' */
.icon-compass:before {
  content: '\e8a5';
}

/* '' */
.icon-content-copy:before {
  content: '\e8a6';
}

/* '' */
.icon-content-cut:before {
  content: '\e8a7';
}

/* '' */
.icon-content-paste:before {
  content: '\e8a8';
}

/* '' */
.icon-content-save:before {
  content: '\e8a9';
}

/* '' */
.icon-contrast-box:before {
  content: '\e8aa';
}

/* '' */
.icon-contrast-circle:before {
  content: '\e8ab';
}

/* '' */
.icon-contrast:before {
  content: '\e8ac';
}

/* '' */
.icon-cow:before {
  content: '\e8ad';
}

/* '' */
.icon-credit-card:before {
  content: '\e8ae';
}

/* '' */
.icon-crop-free:before {
  content: '\e8af';
}

/* '' */
.icon-crop-landscape:before {
  content: '\e8b0';
}

/* '' */
.icon-crop-portrait:before {
  content: '\e8b1';
}

/* '' */
.icon-crop-square:before {
  content: '\e8b2';
}

/* '' */
.icon-crop:before {
  content: '\e8b3';
}

/* '' */
.icon-crosshairs-gps:before {
  content: '\e8b4';
}

/* '' */
.icon-crosshairs:before {
  content: '\e8b5';
}

/* '' */
.icon-cube-outline:before {
  content: '\e8b6';
}

/* '' */
.icon-cube:before {
  content: '\e8b7';
}

/* '' */
.icon-cup-water:before {
  content: '\e8b8';
}

/* '' */
.icon-cup:before {
  content: '\e8b9';
}

/* '' */
.icon-currency-btc:before {
  content: '\e8ba';
}

/* '' */
.icon-currency-usd:before {
  content: '\e8bb';
}

/* '' */
.icon-cursor-default-outline:before {
  content: '\e8bc';
}

/* '' */
.icon-cursor-default:before {
  content: '\e8bd';
}

/* '' */
.icon-cursor-pointer:before {
  content: '\e8be';
}

/* '' */
.icon-database-minus:before {
  content: '\e8bf';
}

/* '' */
.icon-database-outline:before {
  content: '\e8c0';
}

/* '' */
.icon-database-plus:before {
  content: '\e8c1';
}

/* '' */
.icon-database:before {
  content: '\e8c2';
}

/* '' */
.icon-debug-step-into:before {
  content: '\e8c3';
}

/* '' */
.icon-debug-step-out:before {
  content: '\e8c4';
}

/* '' */
.icon-debug-step-over:before {
  content: '\e8c5';
}

/* '' */
.icon-delete:before {
  content: '\e8c6';
}

/* '' */
.icon-desktop-mac:before {
  content: '\e8c7';
}

/* '' */
.icon-deviantart:before {
  content: '\e8c8';
}

/* '' */
.icon-dice:before {
  content: '\e8c9';
}

/* '' */
.icon-directions:before {
  content: '\e8ca';
}

/* '' */
.icon-disk-alert:before {
  content: '\e8cb';
}

/* '' */
.icon-disqus-outline:before {
  content: '\e8cc';
}

/* '' */
.icon-disqus:before {
  content: '\e8cd';
}

/* '' */
.icon-dots-horizontal:before {
  content: '\e8ce';
}

/* '' */
.icon-dots-vertical:before {
  content: '\e8cf';
}

/* '' */
.icon-download:before {
  content: '\e8d0';
}

/* '' */
.icon-drawing-box:before {
  content: '\e8d1';
}

/* '' */
.icon-account-alert:before {
  content: '\e8d2';
}

/* '' */
.icon-account-box-outline:before {
  content: '\e8d3';
}

/* '' */
.icon-account-box:before {
  content: '\e8d4';
}

/* '' */
.icon-account-check:before {
  content: '\e8d5';
}

/* '' */
.icon-account-circle:before {
  content: '\e8d6';
}

/* '' */
.icon-account-key:before {
  content: '\e8d7';
}

/* '' */
.icon-account-location:before {
  content: '\e8d8';
}

/* '' */
.icon-account-minus:before {
  content: '\e8d9';
}

/* '' */
.icon-account-multiple-outline:before {
  content: '\e8da';
}

/* '' */
.icon-account-multiple-plus:before {
  content: '\e8db';
}

/* '' */
.icon-account-multiple:before {
  content: '\e8dc';
}

/* '' */
.icon-account-network:before {
  content: '\e8dd';
}

/* '' */
.icon-account-outline:before {
  content: '\e8de';
}

/* '' */
.icon-account-plus:before {
  content: '\e8df';
}

/* '' */
.icon-account-remove:before {
  content: '\e8e0';
}

/* '' */
.icon-account-search:before {
  content: '\e8e1';
}

/* '' */
.icon-account-star-variant:before {
  content: '\e8e2';
}

/* '' */
.icon-account-star:before {
  content: '\e8e3';
}

/* '' */
.icon-account-switch:before {
  content: '\e8e4';
}

/* '' */
.icon-alarm:before {
  content: '\e8e5';
}

/* '' */
.icon-album:before {
  content: '\e8e6';
}

/* '' */
.icon-alert-box:before {
  content: '\e8e7';
}

/* '' */
.icon-alert-circle:before {
  content: '\e8e8';
}

/* '' */
.icon-alert-octagon:before {
  content: '\e8e9';
}

/* '' */
.icon-alert:before {
  content: '\e8ea';
}

/* '' */
.icon-alphabetical:before {
  content: '\e8eb';
}

/* '' */
.icon-amazon:before {
  content: '\e8ec';
}

/* '' */
.icon-ambulance:before {
  content: '\e8ed';
}

/* '' */
.icon-android-debug-bridge:before {
  content: '\e8ee';
}

/* '' */
.icon-android:before {
  content: '\e8ef';
}

/* '' */
.icon-apple-mobileme:before {
  content: '\e8f0';
}

/* '' */
.icon-arrow-down-bold-circle-outline:before {
  content: '\e8f1';
}

/* '' */
.icon-arrow-down-bold-circle:before {
  content: '\e8f2';
}

/* '' */
.icon-arrow-down-bold-hexagon-outline:before {
  content: '\e8f3';
}

/* '' */
.icon-arrow-down:before {
  content: '\e8f4';
}

/* '' */
.icon-arrow-expand:before {
  content: '\e8f5';
}

/* '' */
.icon-arrow-left-bold-circle-outline:before {
  content: '\e8f6';
}

/* '' */
.icon-arrow-left-bold-circle:before {
  content: '\e8f7';
}

/* '' */
.icon-arrow-left-bold-hexagon-outline:before {
  content: '\e8f8';
}

/* '' */
.icon-arrow-left:before {
  content: '\e8f9';
}

/* '' */
.icon-arrow-right-bold-circle-outline:before {
  content: '\e8fa';
}

/* '' */
.icon-arrow-right-bold-circle:before {
  content: '\e8fb';
}

/* '' */
.icon-arrow-right-bold-hexagon-outline:before {
  content: '\e8fc';
}

/* '' */
.icon-backup-restore:before {
  content: '\e8fd';
}

/* '' */
.icon-bank:before {
  content: '\e8fe';
}

/* '' */
.icon-barcode:before {
  content: '\e8ff';
}

/* '' */
.icon-basecamp:before {
  content: '\e900';
}

/* '' */
.icon-basket-fill:before {
  content: '\e901';
}

/* '' */
.icon-basket-unfill:before {
  content: '\e902';
}

/* '' */
.icon-basket:before {
  content: '\e903';
}

/* '' */
.icon-battery-20:before {
  content: '\e904';
}

/* '' */
.icon-battery-30:before {
  content: '\e905';
}

/* '' */
.icon-battery-40:before {
  content: '\e906';
}

/* '' */
.icon-battery-60:before {
  content: '\e907';
}

/* '' */
.icon-battery-80:before {
  content: '\e908';
}

/* '' */
.icon-battery-charging-90:before {
  content: '\e909';
}

/* '' */
.icon-battery-minus:before {
  content: '\e90a';
}

/* '' */
.icon-battery-negative:before {
  content: '\e90b';
}

/* '' */
.icon-battery-outline:before {
  content: '\e90c';
}

/* '' */
.icon-battery-plus:before {
  content: '\e90d';
}

/* '' */
.icon-battery-positive:before {
  content: '\e90e';
}

/* '' */
.icon-battery-unknown:before {
  content: '\e90f';
}

/* '' */
.icon-battery:before {
  content: '\e910';
}

/* '' */
.icon-beaker-empty-outline:before {
  content: '\e911';
}

/* '' */
.icon-beaker-empty:before {
  content: '\e912';
}

/* '' */
.icon-beaker-outline:before {
  content: '\e913';
}

/* '' */
.icon-beaker:before {
  content: '\e914';
}

/* '' */
.icon-bike:before {
  content: '\e915';
}

/* '' */
.icon-bing:before {
  content: '\e916';
}

/* '' */
.icon-bio:before {
  content: '\e917';
}

/* '' */
.icon-blackberry:before {
  content: '\e918';
}

/* '' */
.icon-blinds:before {
  content: '\e919';
}

/* '' */
.icon-block-helper:before {
  content: '\e91a';
}

/* '' */
.icon-blogger:before {
  content: '\e91b';
}

/* '' */
.icon-bluetooth-audio:before {
  content: '\e91c';
}

/* '' */
.icon-bluetooth-connect:before {
  content: '\e91d';
}

/* '' */
.icon-bluetooth-settings:before {
  content: '\e91e';
}

/* '' */
.icon-bluetooth:before {
  content: '\e91f';
}

/* '' */
.icon-blur-linear:before {
  content: '\e920';
}

/* '' */
.icon-bookmark:before {
  content: '\e921';
}

/* '' */
.icon-border-all:before {
  content: '\e922';
}

/* '' */
.icon-border-bottom:before {
  content: '\e923';
}

/* '' */
.icon-border-color:before {
  content: '\e924';
}

/* '' */
.icon-border-horizontal:before {
  content: '\e925';
}

/* '' */
.icon-border-inside:before {
  content: '\e926';
}

/* '' */
.icon-border-left:before {
  content: '\e927';
}

/* '' */
.icon-border-none:before {
  content: '\e928';
}

/* '' */
.icon-border-outside:before {
  content: '\e929';
}

/* '' */
.icon-border-right:before {
  content: '\e92a';
}

/* '' */
.icon-border-top:before {
  content: '\e92b';
}

/* '' */
.icon-border-vertical:before {
  content: '\e92c';
}

/* '' */
.icon-drawing:before {
  content: '\e92d';
}

/* '' */
.icon-dribbble-box:before {
  content: '\e92e';
}

/* '' */
.icon-dribbble:before {
  content: '\e92f';
}

/* '' */
.icon-duck:before {
  content: '\e930';
}

/* '' */
.icon-earth-off:before {
  content: '\e931';
}

/* '' */
.icon-earth:before {
  content: '\e932';
}

/* '' */
.icon-elevation-decline:before {
  content: '\e933';
}

/* '' */
.icon-elevation-rise:before {
  content: '\e934';
}

/* '' */
.icon-email-outline:before {
  content: '\e935';
}

/* '' */
.icon-email:before {
  content: '\e936';
}

/* '' */
.icon-emoticon-cool:before {
  content: '\e937';
}

/* '' */
.icon-emoticon-happy:before {
  content: '\e938';
}

/* '' */
.icon-emoticon-neutral:before {
  content: '\e939';
}

/* '' */
.icon-emoticon-poop:before {
  content: '\e93a';
}

/* '' */
.icon-emoticon-sad:before {
  content: '\e93b';
}

/* '' */
.icon-emoticon-tongue:before {
  content: '\e93c';
}

/* '' */
.icon-emoticon:before {
  content: '\e93d';
}

/* '' */
.icon-eraser:before {
  content: '\e93e';
}

/* '' */
.icon-etsy:before {
  content: '\e93f';
}

/* '' */
.icon-evernote:before {
  content: '\e940';
}

/* '' */
.icon-exit-to-app:before {
  content: '\e941';
}

/* '' */
.icon-eye-off:before {
  content: '\e942';
}

/* '' */
.icon-eye:before {
  content: '\e943';
}

/* '' */
.icon-eyedropper-variant:before {
  content: '\e944';
}

/* '' */
.icon-eyedropper:before {
  content: '\e945';
}

/* '' */
.icon-facebook-box:before {
  content: '\e946';
}

/* '' */
.icon-facebook:before {
  content: '\e947';
}

/* '' */
.icon-factory:before {
  content: '\e948';
}

/* '' */
.icon-fast-forward:before {
  content: '\e949';
}

/* '' */
.icon-ferry:before {
  content: '\e94a';
}

/* '' */
.icon-file-cloud:before {
  content: '\e94b';
}

/* '' */
.icon-file-delimited:before {
  content: '\e94c';
}

/* '' */
.icon-file-document-box:before {
  content: '\e94d';
}

/* '' */
.icon-file-document:before {
  content: '\e94e';
}

/* '' */
.icon-file-excel-box:before {
  content: '\e94f';
}

/* '' */
.icon-file-excel:before {
  content: '\e950';
}

/* '' */
.icon-file-find:before {
  content: '\e951';
}

/* '' */
.icon-file-image-box:before {
  content: '\e952';
}

/* '' */
.icon-file-image:before {
  content: '\e953';
}

/* '' */
.icon-file-music:before {
  content: '\e954';
}

/* '' */
.icon-file-pdf-box:before {
  content: '\e955';
}

/* '' */
.icon-file-pdf:before {
  content: '\e956';
}

/* '' */
.icon-file-powerpoint-box:before {
  content: '\e957';
}

/* '' */
.icon-file-powerpoint:before {
  content: '\e958';
}

/* '' */
.icon-file-presentation-box:before {
  content: '\e959';
}

/* '' */
.icon-file-video:before {
  content: '\e95a';
}

/* '' */
.icon-file-word-box:before {
  content: '\e95b';
}

/* '' */
.icon-file-word:before {
  content: '\e95c';
}

/* '' */
.icon-file:before {
  content: '\e95d';
}

/* '' */
.icon-film:before {
  content: '\e95e';
}

/* '' */
.icon-filmstrip-off:before {
  content: '\e95f';
}

/* '' */
.icon-filmstrip:before {
  content: '\e960';
}

/* '' */
.icon-filter-outline:before {
  content: '\e961';
}

/* '' */
.icon-filter-remove-outline:before {
  content: '\e962';
}

/* '' */
.icon-filter-remove:before {
  content: '\e963';
}

/* '' */
.icon-filter-variant:before {
  content: '\e964';
}

/* '' */
.icon-filter:before {
  content: '\e965';
}

/* '' */
.icon-fire:before {
  content: '\e966';
}

/* '' */
.icon-fish:before {
  content: '\e967';
}

/* '' */
.icon-flag-checkered:before {
  content: '\e968';
}

/* '' */
.icon-flag-outline-variant:before {
  content: '\e969';
}

/* '' */
.icon-flag-outline:before {
  content: '\e96a';
}

/* '' */
.icon-flag-variant:before {
  content: '\e96b';
}

/* '' */
.icon-flag:before {
  content: '\e96c';
}

/* '' */
.icon-flash-auto:before {
  content: '\e96d';
}

/* '' */
.icon-flash-off:before {
  content: '\e96e';
}

/* '' */
.icon-flash:before {
  content: '\e96f';
}

/* '' */
.icon-flip-to-back:before {
  content: '\e970';
}

/* '' */
.icon-flip-to-front:before {
  content: '\e971';
}

/* '' */
.icon-floppy:before {
  content: '\e972';
}

/* '' */
.icon-flower:before {
  content: '\e973';
}

/* '' */
.icon-folder-account:before {
  content: '\e974';
}

/* '' */
.icon-folder-google-drive:before {
  content: '\e975';
}

/* '' */
.icon-folder-image:before {
  content: '\e976';
}

/* '' */
.icon-folder-move:before {
  content: '\e977';
}

/* '' */
.icon-folder-multiple-image:before {
  content: '\e978';
}

/* '' */
.icon-folder-multiple-outline:before {
  content: '\e979';
}

/* '' */
.icon-folder-multiple:before {
  content: '\e97a';
}

/* '' */
.icon-folder-outline:before {
  content: '\e97b';
}

/* '' */
.icon-folder-plus:before {
  content: '\e97c';
}

/* '' */
.icon-folder-remove:before {
  content: '\e97d';
}

/* '' */
.icon-folder:before {
  content: '\e97e';
}

/* '' */
.icon-food-apple:before {
  content: '\e97f';
}

/* '' */
.icon-food:before {
  content: '\e980';
}

/* '' */
.icon-format-align-center:before {
  content: '\e981';
}

/* '' */
.icon-format-align-justify:before {
  content: '\e982';
}

/* '' */
.icon-format-align-left:before {
  content: '\e983';
}

/* '' */
.icon-format-align-right:before {
  content: '\e984';
}

/* '' */
.icon-format-bold:before {
  content: '\e985';
}

/* '' */
.icon-format-clear:before {
  content: '\e986';
}

/* '' */
.icon-format-color-fill:before {
  content: '\e987';
}

/* '' */
.icon-format-line-spacing:before {
  content: '\e988';
}

/* '' */
.icon-format-list-numbers:before {
  content: '\e989';
}

/* '' */
.icon-format-paint:before {
  content: '\e98a';
}

/* '' */
.icon-format-strikethrough:before {
  content: '\e98b';
}

/* '' */
.icon-format-subscript:before {
  content: '\e98c';
}

/* '' */
.icon-format-superscript:before {
  content: '\e98d';
}

/* '' */
.icon-format-underline:before {
  content: '\e98e';
}

/* '' */
.icon-foursquare:before {
  content: '\e98f';
}

/* '' */
.icon-fullscreen-exit:before {
  content: '\e990';
}

/* '' */
.icon-fullscreen:before {
  content: '\e991';
}

/* '' */
.icon-gamepad-variant:before {
  content: '\e992';
}

/* '' */
.icon-gamepad:before {
  content: '\e993';
}

/* '' */
.icon-gas-station:before {
  content: '\e994';
}

/* '' */
.icon-gavel:before {
  content: '\e995';
}

/* '' */
.icon-gender-female:before {
  content: '\e996';
}

/* '' */
.icon-gender-male:before {
  content: '\e997';
}

/* '' */
.icon-gender-transgender:before {
  content: '\e998';
}

/* '' */
.icon-gift:before {
  content: '\e999';
}

/* '' */
.icon-github-box:before {
  content: '\e99a';
}

/* '' */
.icon-github-circle:before {
  content: '\e99b';
}

/* '' */
.icon-gmail:before {
  content: '\e99c';
}

/* '' */
.icon-google-chrome:before {
  content: '\e99d';
}

/* '' */
.icon-google-circles-communities:before {
  content: '\e99e';
}

/* '' */
.icon-google-circles-extended:before {
  content: '\e99f';
}

/* '' */
.icon-google-circles:before {
  content: '\e9a0';
}

/* '' */
.icon-google-drive:before {
  content: '\e9a1';
}

/* '' */
.icon-google-earth:before {
  content: '\e9a2';
}

/* '' */
.icon-google-glass:before {
  content: '\e9a3';
}

/* '' */
.icon-google-maps:before {
  content: '\e9a4';
}

/* '' */
.icon-google-pages:before {
  content: '\e9a5';
}

/* '' */
.icon-google-play:before {
  content: '\e9a6';
}

/* '' */
.icon-google-plus-box:before {
  content: '\e9a7';
}

/* '' */
.icon-google-plus:before {
  content: '\e9a8';
}

/* '' */
.icon-google:before {
  content: '\e9a9';
}

/* '' */
.icon-guitar-pick-outline:before {
  content: '\e9aa';
}

/* '' */
.icon-guitar-pick:before {
  content: '\e9ab';
}

/* '' */
.icon-hand-pointing-right:before {
  content: '\e9ac';
}

/* '' */
.icon-hanger:before {
  content: '\e9ad';
}

/* '' */
.icon-hangouts:before {
  content: '\e9ae';
}

/* '' */
.icon-harddisk:before {
  content: '\e9af';
}

/* '' */
.icon-headphones-box:before {
  content: '\e9b0';
}

/* '' */
.icon-headphones:before {
  content: '\e9b1';
}

/* '' */
.icon-headset:before {
  content: '\e9b2';
}

/* '' */
.icon-heart-box-outline:before {
  content: '\e9b3';
}

/* '' */
.icon-heart-box:before {
  content: '\e9b4';
}

/* '' */
.icon-heart-outline:before {
  content: '\e9b5';
}

/* '' */
.icon-heart:before {
  content: '\e9b6';
}

/* '' */
.icon-help-circle:before {
  content: '\e9b7';
}

/* '' */
.icon-help:before {
  content: '\e9b8';
}

/* '' */
.icon-hexagon-outline:before {
  content: '\e9b9';
}

/* '' */
.icon-hexagon:before {
  content: '\e9ba';
}

/* '' */
.icon-history:before {
  content: '\e9bb';
}

/* '' */
.icon-home-modern:before {
  content: '\e9bc';
}

/* '' */
.icon-home-variant:before {
  content: '\e9bd';
}

/* '' */
.icon-home:before {
  content: '\e9be';
}

/* '' */
.icon-hospital-building:before {
  content: '\e9bf';
}

/* '' */
.icon-hospital-marker:before {
  content: '\e9c0';
}

/* '' */
.icon-hospital:before {
  content: '\e9c1';
}

/* '' */
.icon-hotel:before {
  content: '\e9c2';
}

/* '' */
.icon-houzz-box:before {
  content: '\e9c3';
}

/* '' */
.icon-houzz:before {
  content: '\e9c4';
}

/* '' */
.icon-human-child:before {
  content: '\e9c5';
}

/* '' */
.icon-human-male-female:before {
  content: '\e9c6';
}

/* '' */
.icon-human:before {
  content: '\e9c7';
}

/* '' */
.icon-image-album:before {
  content: '\e9c8';
}

/* '' */
.icon-image-area-close:before {
  content: '\e9c9';
}

/* '' */
.icon-image-area:before {
  content: '\e9ca';
}

/* '' */
.icon-image-filter-black-white:before {
  content: '\e9cb';
}

/* '' */
.icon-image-filter-center-focus:before {
  content: '\e9cc';
}

/* '' */
.icon-image-filter-drama:before {
  content: '\e9cd';
}

/* '' */
.icon-image-filter-frames:before {
  content: '\e9ce';
}

/* '' */
.icon-image-filter-hdr:before {
  content: '\e9cf';
}

/* '' */
.icon-image-filter-none:before {
  content: '\e9d0';
}

/* '' */
.icon-image-filter-tilt-shift:before {
  content: '\e9d1';
}

/* '' */
.icon-image-filter-vintage:before {
  content: '\e9d2';
}

/* '' */
.icon-image-filter:before {
  content: '\e9d3';
}

/* '' */
.icon-information-outline:before {
  content: '\e9d4';
}

/* '' */
.icon-information:before {
  content: '\e9d5';
}

/* '' */
.icon-instagram:before {
  content: '\e9d6';
}

/* '' */
.icon-instapaper:before {
  content: '\e9d7';
}

/* '' */
.icon-internet-explorer:before {
  content: '\e9d8';
}

/* '' */
.icon-invert-colors:before {
  content: '\e9d9';
}

/* '' */
.icon-key-change:before {
  content: '\e9da';
}

/* '' */
.icon-key-minus:before {
  content: '\e9db';
}

/* '' */
.icon-key-plus:before {
  content: '\e9dc';
}

/* '' */
.icon-key-remove:before {
  content: '\e9dd';
}

/* '' */
.icon-key-variant:before {
  content: '\e9de';
}

/* '' */
.icon-key:before {
  content: '\e9df';
}

/* '' */
.icon-keyboard-backspace:before {
  content: '\e9e0';
}

/* '' */
.icon-keyboard-caps:before {
  content: '\e9e1';
}

/* '' */
.icon-keyboard-close:before {
  content: '\e9e2';
}

/* '' */
.icon-keyboard-return:before {
  content: '\e9e3';
}

/* '' */
.icon-keyboard-tab:before {
  content: '\e9e4';
}

/* '' */
.icon-keyboard:before {
  content: '\e9e5';
}

/* '' */
.icon-label-outline:before {
  content: '\e9e6';
}

/* '' */
.icon-label:before {
  content: '\e9e7';
}

/* '' */
.icon-laptop-chromebook:before {
  content: '\e9e8';
}

/* '' */
.icon-laptop-mac:before {
  content: '\e9e9';
}

/* '' */
.icon-laptop-windows:before {
  content: '\e9ea';
}

/* '' */
.icon-laptop:before {
  content: '\e9eb';
}

/* '' */
.icon-lastfm:before {
  content: '\e9ec';
}

/* '' */
.icon-launch:before {
  content: '\e9ed';
}

/* '' */
.icon-leaf:before {
  content: '\e9ee';
}

/* '' */
.icon-library-books:before {
  content: '\e9ef';
}

/* '' */
.icon-library-music:before {
  content: '\e9f0';
}

/* '' */
.icon-library-plus:before {
  content: '\e9f1';
}

/* '' */
.icon-library:before {
  content: '\e9f2';
}

/* '' */
.icon-lightbulb:before {
  content: '\e9f3';
}

/* '' */
.icon-link:before {
  content: '\e9f4';
}

/* '' */
.icon-linkedin:before {
  content: '\e9f5';
}

/* '' */
.icon-linux:before {
  content: '\e9f6';
}

/* '' */
.icon-lock-open-outline:before {
  content: '\e9f7';
}

/* '' */
.icon-lock-open:before {
  content: '\e9f8';
}

/* '' */
.icon-lock-outline:before {
  content: '\e9f9';
}

/* '' */
.icon-lock:before {
  content: '\e9fa';
}

/* '' */
.icon-login:before {
  content: '\e9fb';
}

/* '' */
.icon-logout:before {
  content: '\e9fc';
}

/* '' */
.icon-looks:before {
  content: '\e9fd';
}

/* '' */
.icon-loupe:before {
  content: '\e9fe';
}

/* '' */
.icon-magnify-minus:before {
  content: '\e9ff';
}

/* '' */
.icon-magnify-plus:before {
  content: '\ea00';
}

/* '' */
.icon-magnify:before {
  content: '\ea01';
}

/* '' */
.icon-map-marker-circle:before {
  content: '\ea02';
}

/* '' */
.icon-map-marker-off:before {
  content: '\ea03';
}

/* '' */
.icon-map-marker-radius:before {
  content: '\ea04';
}

/* '' */
.icon-map-marker:before {
  content: '\ea05';
}

/* '' */
.icon-map:before {
  content: '\ea06';
}

/* '' */
.icon-marker-check:before {
  content: '\ea07';
}

/* '' */
.icon-martini:before {
  content: '\ea08';
}

/* '' */
.icon-math-compass:before {
  content: '\ea09';
}

/* '' */
.icon-memory:before {
  content: '\ea0a';
}

/* '' */
.icon-menu-down:before {
  content: '\ea0b';
}

/* '' */
.icon-menu-up:before {
  content: '\ea0c';
}

/* '' */
.icon-menu:before {
  content: '\ea0d';
}

/* '' */
.icon-message-alert:before {
  content: '\ea0e';
}

/* '' */
.icon-message-draw:before {
  content: '\ea0f';
}

/* '' */
.icon-message-image:before {
  content: '\ea10';
}

/* '' */
.icon-message-processing:before {
  content: '\ea11';
}

/* '' */
.icon-message-reply:before {
  content: '\ea12';
}

/* '' */
.icon-message-video:before {
  content: '\ea13';
}

/* '' */
.icon-microphone-dots:before {
  content: '\ea14';
}

/* '' */
.icon-microphone-off:before {
  content: '\ea15';
}

/* '' */
.icon-microphone-outline:before {
  content: '\ea16';
}

/* '' */
.icon-microphone-settings:before {
  content: '\ea17';
}

/* '' */
.icon-microphone:before {
  content: '\ea18';
}

/* '' */
.icon-minus-box:before {
  content: '\ea19';
}

/* '' */
.icon-minus-circle-outline:before {
  content: '\ea1a';
}

/* '' */
.icon-minus-circle:before {
  content: '\ea1b';
}

/* '' */
.icon-minus-network:before {
  content: '\ea1c';
}

/* '' */
.icon-minus:before {
  content: '\ea1d';
}

/* '' */
.icon-monitor:before {
  content: '\ea1e';
}

/* '' */
.icon-more:before {
  content: '\ea1f';
}

/* '' */
.icon-mouse:before {
  content: '\ea20';
}

/* '' */
.icon-movie:before {
  content: '\ea21';
}

/* '' */
.icon-music-box-outline:before {
  content: '\ea22';
}

/* '' */
.icon-music-box:before {
  content: '\ea23';
}

/* '' */
.icon-nature-people:before {
  content: '\ea24';
}

/* '' */
.icon-nature:before {
  content: '\ea25';
}

/* '' */
.icon-navigation:before {
  content: '\ea26';
}

/* '' */
.icon-needle:before {
  content: '\ea27';
}

/* '' */
.icon-nest-protect:before {
  content: '\ea28';
}

/* '' */
.icon-nest-thermostat:before {
  content: '\ea29';
}

/* '' */
.icon-newspaper:before {
  content: '\ea2a';
}

/* '' */
.icon-nfc-variant:before {
  content: '\ea2b';
}

/* '' */
.icon-nfc:before {
  content: '\ea2c';
}

/* '' */
.icon-numeric-0-box-multiple-outline:before {
  content: '\ea2d';
}

/* '' */
.icon-numeric-0-box-outline:before {
  content: '\ea2e';
}

/* '' */
.icon-numeric-0-box:before {
  content: '\ea2f';
}

/* '' */
.icon-numeric-1-box-multiple-outline:before {
  content: '\ea30';
}

/* '' */
.icon-numeric-1-box-outline:before {
  content: '\ea31';
}

/* '' */
.icon-numeric-1-box:before {
  content: '\ea32';
}

/* '' */
.icon-numeric-2-box-multiple-outline:before {
  content: '\ea33';
}

/* '' */
.icon-numeric-2-box-outline:before {
  content: '\ea34';
}

/* '' */
.icon-numeric-2-box:before {
  content: '\ea35';
}

/* '' */
.icon-numeric-3-box-multiple-outline:before {
  content: '\ea36';
}

/* '' */
.icon-numeric-3-box-outline:before {
  content: '\ea37';
}

/* '' */
.icon-numeric-3-box:before {
  content: '\ea38';
}

/* '' */
.icon-numeric-4-box-multiple-outline:before {
  content: '\ea39';
}

/* '' */
.icon-numeric-4-box-outline:before {
  content: '\ea3a';
}

/* '' */
.icon-numeric-4-box:before {
  content: '\ea3b';
}

/* '' */
.icon-numeric-5-box-multiple-outline:before {
  content: '\ea3c';
}

/* '' */
.icon-numeric-5-box-outline:before {
  content: '\ea3d';
}

/* '' */
.icon-numeric-5-box:before {
  content: '\ea3e';
}

/* '' */
.icon-numeric-6-box-multiple-outline:before {
  content: '\ea3f';
}

/* '' */
.icon-numeric-6-box-outline:before {
  content: '\ea40';
}

/* '' */
.icon-numeric-6-box:before {
  content: '\ea41';
}

/* '' */
.icon-numeric-7-box-multiple-outline:before {
  content: '\ea42';
}

/* '' */
.icon-numeric-7-box-outline:before {
  content: '\ea43';
}

/* '' */
.icon-numeric-7-box:before {
  content: '\ea44';
}

/* '' */
.icon-numeric-8-box-multiple-outline:before {
  content: '\ea45';
}

/* '' */
.icon-numeric-8-box-outline:before {
  content: '\ea46';
}

/* '' */
.icon-numeric-8-box:before {
  content: '\ea47';
}

/* '' */
.icon-numeric-9-box-multiple-outline:before {
  content: '\ea48';
}

/* '' */
.icon-numeric-9-box-outline:before {
  content: '\ea49';
}

/* '' */
.icon-numeric-9-box:before {
  content: '\ea4a';
}

/* '' */
.icon-numeric-9-plus-box-multiple-outline:before {
  content: '\ea4b';
}

/* '' */
.icon-numeric-9-plus-box-outline:before {
  content: '\ea4c';
}

/* '' */
.icon-numeric-9-plus-box:before {
  content: '\ea4d';
}

/* '' */
.icon-numeric:before {
  content: '\ea4e';
}

/* '' */
.icon-oil:before {
  content: '\ea4f';
}

/* '' */
.icon-open-in-app:before {
  content: '\ea50';
}

/* '' */
.icon-ornament-variant:before {
  content: '\ea51';
}

/* '' */
.icon-ornament:before {
  content: '\ea52';
}

/* '' */
.icon-package-down:before {
  content: '\ea53';
}

/* '' */
.icon-package-up:before {
  content: '\ea54';
}

/* '' */
.icon-package:before {
  content: '\ea55';
}

/* '' */
.icon-palette:before {
  content: '\ea56';
}

/* '' */
.icon-pandora:before {
  content: '\ea57';
}

/* '' */
.icon-panorama-fisheye:before {
  content: '\ea58';
}

/* '' */
.icon-panorama-horizontal:before {
  content: '\ea59';
}

/* '' */
.icon-panorama-vertical:before {
  content: '\ea5a';
}

/* '' */
.icon-panorama-wide-angle:before {
  content: '\ea5b';
}

/* '' */
.icon-panorama:before {
  content: '\ea5c';
}

/* '' */
.icon-paper-cut-vertical:before {
  content: '\ea5d';
}

/* '' */
.icon-paperclip:before {
  content: '\ea5e';
}

/* '' */
.icon-parking:before {
  content: '\ea5f';
}

/* '' */
.icon-pause-circle-outline:before {
  content: '\ea60';
}

/* '' */
.icon-pause-circle:before {
  content: '\ea61';
}

/* '' */
.icon-pause-octagon-outline:before {
  content: '\ea62';
}

/* '' */
.icon-pause-octagon:before {
  content: '\ea63';
}

/* '' */
.icon-pause:before {
  content: '\ea64';
}

/* '' */
.icon-pencil-box-outline:before {
  content: '\ea65';
}

/* '' */
.icon-pencil-box:before {
  content: '\ea66';
}

/* '' */
.icon-pencil:before {
  content: '\ea67';
}

/* '' */
.icon-pharmacy:before {
  content: '\ea68';
}

/* '' */
.icon-phone-bluetooth:before {
  content: '\ea69';
}

/* '' */
.icon-phone-forward:before {
  content: '\ea6a';
}

/* '' */
.icon-phone-hangup:before {
  content: '\ea6b';
}

/* '' */
.icon-phone-in-talk:before {
  content: '\ea6c';
}

/* '' */
.icon-phone-locked:before {
  content: '\ea6d';
}

/* '' */
.icon-phone-missed:before {
  content: '\ea6e';
}

/* '' */
.icon-phone-paused:before {
  content: '\ea6f';
}

/* '' */
.icon-phone-settings:before {
  content: '\ea70';
}

/* '' */
.icon-phone:before {
  content: '\ea71';
}

/* '' */
.icon-pig:before {
  content: '\ea72';
}

/* '' */
.icon-pill:before {
  content: '\ea73';
}

/* '' */
.icon-pin-off:before {
  content: '\ea74';
}

/* '' */
.icon-pin:before {
  content: '\ea75';
}

/* '' */
.icon-pine-tree-box:before {
  content: '\ea76';
}

/* '' */
.icon-pine-tree:before {
  content: '\ea77';
}

/* '' */
.icon-pinterest:before {
  content: '\ea78';
}

/* '' */
.icon-pizza:before {
  content: '\ea79';
}

/* '' */
.icon-play-box-outline:before {
  content: '\ea7a';
}

/* '' */
.icon-play-circle-outline:before {
  content: '\ea7b';
}

/* '' */
.icon-play-circle:before {
  content: '\ea7c';
}

/* '' */
.icon-play:before {
  content: '\ea7d';
}

/* '' */
.icon-playlist-plus:before {
  content: '\ea7e';
}

/* '' */
.icon-plus-box:before {
  content: '\ea7f';
}

/* '' */
.icon-plus-circle-outline:before {
  content: '\ea80';
}

/* '' */
.icon-plus-circle:before {
  content: '\ea81';
}

/* '' */
.icon-plus-network:before {
  content: '\ea82';
}

/* '' */
.icon-plus-one:before {
  content: '\ea83';
}

/* '' */
.icon-plus:before {
  content: '\ea84';
}

/* '' */
.icon-pocket:before {
  content: '\ea85';
}

/* '' */
.icon-poll-box:before {
  content: '\ea86';
}

/* '' */
.icon-poll:before {
  content: '\ea87';
}

/* '' */
.icon-polymer:before {
  content: '\ea88';
}

/* '' */
.icon-popcorn:before {
  content: '\ea89';
}

/* '' */
.icon-power-settings:before {
  content: '\ea8a';
}

/* '' */
.icon-power:before {
  content: '\ea8b';
}

/* '' */
.icon-presentation:before {
  content: '\ea8c';
}

/* '' */
.icon-printer:before {
  content: '\ea8d';
}

/* '' */
.icon-puzzle:before {
  content: '\ea8e';
}

/* '' */
.icon-qrcode:before {
  content: '\ea8f';
}

/* '' */
.icon-quality-high:before {
  content: '\ea90';
}

/* '' */
.icon-radiator:before {
  content: '\ea91';
}

/* '' */
.icon-radiobox-blank:before {
  content: '\ea92';
}

/* '' */
.icon-radiobox-marked:before {
  content: '\ea93';
}

/* '' */
.icon-rdio:before {
  content: '\ea94';
}

/* '' */
.icon-readability:before {
  content: '\ea95';
}

/* '' */
.icon-receipt:before {
  content: '\ea96';
}

/* '' */
.icon-recycle:before {
  content: '\ea97';
}

/* '' */
.icon-redo-variant:before {
  content: '\ea98';
}

/* '' */
.icon-redo:before {
  content: '\ea99';
}

/* '' */
.icon-refresh:before {
  content: '\ea9a';
}

/* '' */
.icon-relative-scale:before {
  content: '\ea9b';
}

/* '' */
.icon-reload:before {
  content: '\ea9c';
}

/* '' */
.icon-remote:before {
  content: '\ea9d';
}

/* '' */
.icon-rename-box:before {
  content: '\ea9e';
}

/* '' */
.icon-repeat-once:before {
  content: '\ea9f';
}

/* '' */
.icon-repeat:before {
  content: '\eaa0';
}

/* '' */
.icon-replay:before {
  content: '\eaa1';
}

/* '' */
.icon-reply-all:before {
  content: '\eaa2';
}

/* '' */
.icon-reply:before {
  content: '\eaa3';
}

/* '' */
.icon-responsive:before {
  content: '\eaa4';
}

/* '' */
.icon-rewind:before {
  content: '\eaa5';
}

/* '' */
.icon-ribbon:before {
  content: '\eaa6';
}

/* '' */
.icon-rotate-3d:before {
  content: '\eaa7';
}

/* '' */
.icon-rotate-left-variant:before {
  content: '\eaa8';
}

/* '' */
.icon-rotate-left:before {
  content: '\eaa9';
}

/* '' */
.icon-rotate-right-variant:before {
  content: '\eaaa';
}

/* '' */
.icon-rotate-right:before {
  content: '\eaab';
}

/* '' */
.icon-routes:before {
  content: '\eaac';
}

/* '' */
.icon-rss-box:before {
  content: '\eaad';
}

/* '' */
.icon-rss:before {
  content: '\eaae';
}

/* '' */
.icon-satellite:before {
  content: '\eaaf';
}

/* '' */
.icon-school:before {
  content: '\eab0';
}

/* '' */
.icon-script:before {
  content: '\eab1';
}

/* '' */
.icon-security-network:before {
  content: '\eab2';
}

/* '' */
.icon-security:before {
  content: '\eab3';
}

/* '' */
.icon-send:before {
  content: '\eab4';
}

/* '' */
.icon-server-minus:before {
  content: '\eab5';
}

/* '' */
.icon-server-network-off:before {
  content: '\eab6';
}

/* '' */
.icon-server-network:before {
  content: '\eab7';
}

/* '' */
.icon-server-off:before {
  content: '\eab8';
}

/* '' */
.icon-server-plus:before {
  content: '\eab9';
}

/* '' */
.icon-server-remove:before {
  content: '\eaba';
}

/* '' */
.icon-server-security:before {
  content: '\eabb';
}

/* '' */
.icon-server:before {
  content: '\eabc';
}

/* '' */
.icon-settings-box:before {
  content: '\eabd';
}

/* '' */
.icon-settings:before {
  content: '\eabe';
}

/* '' */
.icon-shape-plus:before {
  content: '\eabf';
}

/* '' */
.icon-share-variant:before {
  content: '\eac0';
}

/* '' */
.icon-share:before {
  content: '\eac1';
}

/* '' */
.icon-shopping-music:before {
  content: '\eac2';
}

/* '' */
.icon-shopping:before {
  content: '\eac3';
}

/* '' */
.icon-shuffle:before {
  content: '\eac4';
}

/* '' */
.icon-sign-caution:before {
  content: '\eac5';
}

/* '' */
.icon-silverware-variant:before {
  content: '\eac6';
}

/* '' */
.icon-silverware:before {
  content: '\eac7';
}

/* '' */
.icon-sim-alert:before {
  content: '\eac8';
}

/* '' */
.icon-sim:before {
  content: '\eac9';
}

/* '' */
.icon-skip-next:before {
  content: '\eaca';
}

/* '' */
.icon-skip-previous:before {
  content: '\eacb';
}

/* '' */
.icon-snowman:before {
  content: '\eacc';
}

/* '' */
.icon-sort-alphabetical:before {
  content: '\eacd';
}

/* '' */
.icon-sort-ascending:before {
  content: '\eace';
}

/* '' */
.icon-sort-descending:before {
  content: '\eacf';
}

/* '' */
.icon-sort-numeric:before {
  content: '\ead0';
}

/* '' */
.icon-sort-variant:before {
  content: '\ead1';
}

/* '' */
.icon-sort:before {
  content: '\ead2';
}

/* '' */
.icon-soundcloud:before {
  content: '\ead3';
}

/* '' */
.icon-source-fork:before {
  content: '\ead4';
}

/* '' */
.icon-source-pull:before {
  content: '\ead5';
}

/* '' */
.icon-speaker-off:before {
  content: '\ead6';
}

/* '' */
.icon-speaker:before {
  content: '\ead7';
}

/* '' */
.icon-spellcheck:before {
  content: '\ead8';
}

/* '' */
.icon-spotify:before {
  content: '\ead9';
}

/* '' */
.icon-spotlight-beam:before {
  content: '\eada';
}

/* '' */
.icon-spotlight:before {
  content: '\eadb';
}

/* '' */
.icon-star-circle:before {
  content: '\eadc';
}

/* '' */
.icon-star-half:before {
  content: '\eadd';
}

/* '' */
.icon-star-outline:before {
  content: '\eade';
}

/* '' */
.icon-star:before {
  content: '\eadf';
}

/* '' */
.icon-stocking:before {
  content: '\eae0';
}

/* '' */
.icon-stop:before {
  content: '\eae1';
}

/* '' */
.icon-store-24-hour:before {
  content: '\eae2';
}

/* '' */
.icon-store:before {
  content: '\eae3';
}

/* '' */
.icon-stove:before {
  content: '\eae4';
}

/* '' */
.icon-subway:before {
  content: '\eae5';
}

/* '' */
.icon-swap-horizontal:before {
  content: '\eae6';
}

/* '' */
.icon-swap-vertical:before {
  content: '\eae7';
}

/* '' */
.icon-sword:before {
  content: '\eae8';
}

/* '' */
.icon-sync-alert:before {
  content: '\eae9';
}

/* '' */
.icon-sync-off:before {
  content: '\eaea';
}

/* '' */
.icon-sync:before {
  content: '\eaeb';
}

/* '' */
.icon-tab-unselected:before {
  content: '\eaec';
}

/* '' */
.icon-tab:before {
  content: '\eaed';
}

/* '' */
.icon-table:before {
  content: '\eaee';
}

/* '' */
.icon-tablet-android:before {
  content: '\eaef';
}

/* '' */
.icon-tablet-ipad:before {
  content: '\eaf0';
}

/* '' */
.icon-tablet:before {
  content: '\eaf1';
}

/* '' */
.icon-tag-faces:before {
  content: '\eaf2';
}

/* '' */
.icon-tag-outline:before {
  content: '\eaf3';
}

/* '' */
.icon-tag-text-outline:before {
  content: '\eaf4';
}

/* '' */
.icon-tag:before {
  content: '\eaf5';
}

/* '' */
.icon-taxi:before {
  content: '\eaf6';
}

/* '' */
.icon-television-guide:before {
  content: '\eaf7';
}

/* '' */
.icon-television:before {
  content: '\eaf8';
}

/* '' */
.icon-temperature-celsius:before {
  content: '\eaf9';
}

/* '' */
.icon-temperature-fahrenheit:before {
  content: '\eafa';
}

/* '' */
.icon-temperature-kelvin:before {
  content: '\eafb';
}

/* '' */
.icon-tent:before {
  content: '\eafc';
}

/* '' */
.icon-terrain:before {
  content: '\eafd';
}

/* '' */
.icon-texture:before {
  content: '\eafe';
}

/* '' */
.icon-theater:before {
  content: '\eaff';
}

/* '' */
.icon-thermometer-lines:before {
  content: '\eb00';
}

/* '' */
.icon-thermometer:before {
  content: '\eb01';
}

/* '' */
.icon-thumb-down:before {
  content: '\eb02';
}

/* '' */
.icon-thumb-up:before {
  content: '\eb03';
}

/* '' */
.icon-thumbs-up-down:before {
  content: '\eb04';
}

/* '' */
.icon-ticket-account:before {
  content: '\eb05';
}

/* '' */
.icon-ticket:before {
  content: '\eb06';
}

/* '' */
.icon-tie:before {
  content: '\eb07';
}

/* '' */
.icon-timelapse:before {
  content: '\eb08';
}

/* '' */
.icon-timer-10:before {
  content: '\eb09';
}

/* '' */
.icon-timer-3:before {
  content: '\eb0a';
}

/* '' */
.icon-timer-off:before {
  content: '\eb0b';
}

/* '' */
.icon-timer-sand:before {
  content: '\eb0c';
}

/* '' */
.icon-timer:before {
  content: '\eb0d';
}

/* '' */
.icon-timetable:before {
  content: '\eb0e';
}

/* '' */
.icon-toggle-switch-off:before {
  content: '\eb0f';
}

/* '' */
.icon-toggle-switch:before {
  content: '\eb10';
}

/* '' */
.icon-tooltip-edit:before {
  content: '\eb11';
}

/* '' */
.icon-tooltip-image:before {
  content: '\eb12';
}

/* '' */
.icon-tooltip-outline:before {
  content: '\eb13';
}

/* '' */
.icon-tooltip-text:before {
  content: '\eb14';
}

/* '' */
.icon-tooltip:before {
  content: '\eb15';
}

/* '' */
.icon-tor:before {
  content: '\eb16';
}

/* '' */
.icon-traffic-light:before {
  content: '\eb17';
}

/* '' */
.icon-train:before {
  content: '\eb18';
}

/* '' */
.icon-tram:before {
  content: '\eb19';
}

/* '' */
.icon-transcribe-close:before {
  content: '\eb1a';
}

/* '' */
.icon-transcribe:before {
  content: '\eb1b';
}

/* '' */
.icon-trending-down:before {
  content: '\eb1c';
}

/* '' */
.icon-trending-neutral:before {
  content: '\eb1d';
}

/* '' */
.icon-trending-up:before {
  content: '\eb1e';
}

/* '' */
.icon-trophy-award:before {
  content: '\eb1f';
}

/* '' */
.icon-trophy-variant:before {
  content: '\eb20';
}

/* '' */
.icon-trophy:before {
  content: '\eb21';
}

/* '' */
.icon-truck:before {
  content: '\eb22';
}

/* '' */
.icon-tshirt-crew:before {
  content: '\eb23';
}

/* '' */
.icon-tshirt-v:before {
  content: '\eb24';
}

/* '' */
.icon-tumblr-reblog:before {
  content: '\eb25';
}

/* '' */
.icon-tumblr:before {
  content: '\eb26';
}

/* '' */
.icon-twitch:before {
  content: '\eb27';
}

/* '' */
.icon-twitter-box:before {
  content: '\eb28';
}

/* '' */
.icon-twitter-retweet:before {
  content: '\eb29';
}

/* '' */
.icon-twitter:before {
  content: '\eb2a';
}

/* '' */
.icon-ubuntu:before {
  content: '\eb2b';
}

/* '' */
.icon-undo-variant:before {
  content: '\eb2c';
}

/* '' */
.icon-undo:before {
  content: '\eb2d';
}

/* '' */
.icon-unfold-less:before {
  content: '\eb2e';
}

/* '' */
.icon-unfold-more:before {
  content: '\eb2f';
}

/* '' */
.icon-upload:before {
  content: '\eb30';
}

/* '' */
.icon-usb:before {
  content: '\eb31';
}

/* '' */
.icon-vector-curve:before {
  content: '\eb32';
}

/* '' */
.icon-vector-point:before {
  content: '\eb33';
}

/* '' */
.icon-vector-square:before {
  content: '\eb34';
}

/* '' */
.icon-verified:before {
  content: '\eb35';
}

/* '' */
.icon-vibrate:before {
  content: '\eb36';
}

/* '' */
.icon-video-off:before {
  content: '\eb37';
}

/* '' */
.icon-video-switch:before {
  content: '\eb38';
}

/* '' */
.icon-video:before {
  content: '\eb39';
}

/* '' */
.icon-view-agenda:before {
  content: '\eb3a';
}

/* '' */
.icon-view-array:before {
  content: '\eb3b';
}

/* '' */
.icon-view-carousel:before {
  content: '\eb3c';
}

/* '' */
.icon-view-column:before {
  content: '\eb3d';
}

/* '' */
.icon-view-dashboard:before {
  content: '\eb3e';
}

/* '' */
.icon-view-day:before {
  content: '\eb3f';
}

/* '' */
.icon-view-headline:before {
  content: '\eb40';
}

/* '' */
.icon-view-list:before {
  content: '\eb41';
}

/* '' */
.icon-view-module:before {
  content: '\eb42';
}

/* '' */
.icon-view-quilt:before {
  content: '\eb43';
}

/* '' */
.icon-view-stream:before {
  content: '\eb44';
}

/* '' */
.icon-view-week:before {
  content: '\eb45';
}

/* '' */
.icon-voicemail:before {
  content: '\eb46';
}

/* '' */
.icon-volume-high:before {
  content: '\eb47';
}

/* '' */
.icon-volume-low:before {
  content: '\eb48';
}

/* '' */
.icon-volume-medium:before {
  content: '\eb49';
}

/* '' */
.icon-volume-off:before {
  content: '\eb4a';
}

/* '' */
.icon-walk:before {
  content: '\eb4b';
}

/* '' */
.icon-wallet-giftcard:before {
  content: '\eb4c';
}

/* '' */
.icon-wallet-membership:before {
  content: '\eb4d';
}

/* '' */
.icon-wallet-travel:before {
  content: '\eb4e';
}

/* '' */
.icon-wallet:before {
  content: '\eb4f';
}

/* '' */
.icon-watch:before {
  content: '\eb50';
}

/* '' */
.icon-water-off:before {
  content: '\eb51';
}

/* '' */
.icon-water-pump:before {
  content: '\eb52';
}

/* '' */
.icon-water:before {
  content: '\eb53';
}

/* '' */
.icon-weather-cloudy:before {
  content: '\eb54';
}

/* '' */
.icon-weather-hail:before {
  content: '\eb55';
}

/* '' */
.icon-weather-lightning:before {
  content: '\eb56';
}

/* '' */
.icon-weather-night:before {
  content: '\eb57';
}

/* '' */
.icon-weather-partlycloudy:before {
  content: '\eb58';
}

/* '' */
.icon-weather-pouring:before {
  content: '\eb59';
}

/* '' */
.icon-weather-rainy:before {
  content: '\eb5a';
}

/* '' */
.icon-weather-snowy:before {
  content: '\eb5b';
}

/* '' */
.icon-weather-sunny:before {
  content: '\eb5c';
}

/* '' */
.icon-weather-sunset-down:before {
  content: '\eb5d';
}

/* '' */
.icon-weather-sunset-up:before {
  content: '\eb5e';
}

/* '' */
.icon-weather-sunset:before {
  content: '\eb5f';
}

/* '' */
.icon-weather-windy-variant:before {
  content: '\eb60';
}

/* '' */
.icon-weather-windy:before {
  content: '\eb61';
}

/* '' */
.icon-web:before {
  content: '\eb62';
}

/* '' */
.icon-whatsapp:before {
  content: '\eb63';
}

/* '' */
.icon-wheelchair-accessibility:before {
  content: '\eb64';
}

/* '' */
.icon-white-balance-auto:before {
  content: '\eb65';
}

/* '' */
.icon-white-balance-incandescent:before {
  content: '\eb66';
}

/* '' */
.icon-white-balance-irradescent:before {
  content: '\eb67';
}

/* '' */
.icon-white-balance-sunny:before {
  content: '\eb68';
}

/* '' */
.icon-wifi:before {
  content: '\eb69';
}

/* '' */
.icon-wikipedia:before {
  content: '\eb6a';
}

/* '' */
.icon-window-closed:before {
  content: '\eb6b';
}

/* '' */
.icon-window-open:before {
  content: '\eb6c';
}

/* '' */
.icon-windows:before {
  content: '\eb6d';
}

/* '' */
.icon-xbox:before {
  content: '\eb6e';
}

/* '' */
.icon-xda:before {
  content: '\eb6f';
}

/* '' */
.icon-xml:before {
  content: '\eb70';
}

/* '' */
.icon-youtube-play:before {
  content: '\eb71';
}

/* '' */
/*!
  Ionicons, v3.0.0-alpha.3
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("../assets/fonts/ionicons.eot?v=3.0.0-alpha.3");
  src: url("../assets/fonts/ionicons.eot?v=3.0.0-alpha.3#iefix") format("embedded-opentype"), url("../assets/fonts/ionicons.woff2?v=3.0.0-alpha.3") format("woff2"), url("../assets/fonts/ionicons.woff?v=3.0.0-alpha.3") format("woff"), url("../assets/fonts/ionicons.ttf?v=3.0.0-alpha.3") format("truetype"), url("../assets/fonts/ionicons.svg?v=3.0.0-alpha.3#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

.ion, .ionicons,
.ion-ios-add:before,
.ion-ios-add-circle:before,
.ion-ios-add-circle-outline:before,
.ion-ios-add-outline:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-alert:before,
.ion-ios-alert-outline:before,
.ion-ios-american-football:before,
.ion-ios-american-football-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-aperture:before,
.ion-ios-aperture-outline:before,
.ion-ios-apps:before,
.ion-ios-apps-outline:before,
.ion-ios-appstore:before,
.ion-ios-appstore-outline:before,
.ion-ios-archive:before,
.ion-ios-archive-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-back-outline:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-down-outline:before,
.ion-ios-arrow-dropdown:before,
.ion-ios-arrow-dropdown-circle:before,
.ion-ios-arrow-dropdown-circle-outline:before,
.ion-ios-arrow-dropdown-outline:before,
.ion-ios-arrow-dropleft:before,
.ion-ios-arrow-dropleft-circle:before,
.ion-ios-arrow-dropleft-circle-outline:before,
.ion-ios-arrow-dropleft-outline:before,
.ion-ios-arrow-dropright:before,
.ion-ios-arrow-dropright-circle:before,
.ion-ios-arrow-dropright-circle-outline:before,
.ion-ios-arrow-dropright-outline:before,
.ion-ios-arrow-dropup:before,
.ion-ios-arrow-dropup-circle:before,
.ion-ios-arrow-dropup-circle-outline:before,
.ion-ios-arrow-dropup-outline:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-forward-outline:before,
.ion-ios-arrow-round-back:before,
.ion-ios-arrow-round-back-outline:before,
.ion-ios-arrow-round-down:before,
.ion-ios-arrow-round-down-outline:before,
.ion-ios-arrow-round-forward:before,
.ion-ios-arrow-round-forward-outline:before,
.ion-ios-arrow-round-up:before,
.ion-ios-arrow-round-up-outline:before,
.ion-ios-arrow-up:before,
.ion-ios-arrow-up-outline:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-attach:before,
.ion-ios-attach-outline:before,
.ion-ios-backspace:before,
.ion-ios-backspace-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basket:before,
.ion-ios-basket-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-battery-charging:before,
.ion-ios-battery-charging-outline:before,
.ion-ios-battery-dead:before,
.ion-ios-battery-dead-outline:before,
.ion-ios-battery-full:before,
.ion-ios-battery-full-outline:before,
.ion-ios-beaker:before,
.ion-ios-beaker-outline:before,
.ion-ios-beer:before,
.ion-ios-beer-outline:before,
.ion-ios-bicycle:before,
.ion-ios-bicycle-outline:before,
.ion-ios-bluetooth:before,
.ion-ios-bluetooth-outline:before,
.ion-ios-boat:before,
.ion-ios-boat-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bonfire:before,
.ion-ios-bonfire-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmark:before,
.ion-ios-bookmark-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-bowtie:before,
.ion-ios-bowtie-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-brush:before,
.ion-ios-brush-outline:before,
.ion-ios-bug:before,
.ion-ios-bug-outline:before,
.ion-ios-build:before,
.ion-ios-build-outline:before,
.ion-ios-bulb:before,
.ion-ios-bulb-outline:before,
.ion-ios-bus:before,
.ion-ios-bus-outline:before,
.ion-ios-cafe:before,
.ion-ios-cafe-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-call:before,
.ion-ios-call-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-car:before,
.ion-ios-car-outline:before,
.ion-ios-card:before,
.ion-ios-card-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-cash:before,
.ion-ios-cash-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubbles:before,
.ion-ios-chatbubbles-outline:before,
.ion-ios-checkbox:before,
.ion-ios-checkbox-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-circle:before,
.ion-ios-checkmark-circle-outline:before,
.ion-ios-checkmark-outline:before,
.ion-ios-clipboard:before,
.ion-ios-clipboard-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-circle:before,
.ion-ios-close-circle-outline:before,
.ion-ios-close-outline:before,
.ion-ios-closed-captioning:before,
.ion-ios-closed-captioning-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-circle:before,
.ion-ios-cloud-circle-outline:before,
.ion-ios-cloud-done:before,
.ion-ios-cloud-done-outline:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-code:before,
.ion-ios-code-download:before,
.ion-ios-code-download-outline:before,
.ion-ios-code-outline:before,
.ion-ios-code-working:before,
.ion-ios-code-working-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-fill:before,
.ion-ios-color-fill-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-palette:before,
.ion-ios-color-palette-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compass:before,
.ion-ios-compass-outline:before,
.ion-ios-construct:before,
.ion-ios-construct-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-contacts:before,
.ion-ios-contacts-outline:before,
.ion-ios-contract:before,
.ion-ios-contract-outline:before,
.ion-ios-contrast:before,
.ion-ios-contrast-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-create:before,
.ion-ios-create-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-outline:before,
.ion-ios-cube:before,
.ion-ios-cube-outline:before,
.ion-ios-cut:before,
.ion-ios-cut-outline:before,
.ion-ios-desktop:before,
.ion-ios-desktop-outline:before,
.ion-ios-disc:before,
.ion-ios-disc-outline:before,
.ion-ios-document:before,
.ion-ios-document-outline:before,
.ion-ios-done-all:before,
.ion-ios-done-all-outline:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-easel:before,
.ion-ios-easel-outline:before,
.ion-ios-egg:before,
.ion-ios-egg-outline:before,
.ion-ios-exit:before,
.ion-ios-exit-outline:before,
.ion-ios-expand:before,
.ion-ios-expand-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-off:before,
.ion-ios-eye-off-outline:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-female:before,
.ion-ios-female-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-finger-print:before,
.ion-ios-finger-print-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flash:before,
.ion-ios-flash-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-open:before,
.ion-ios-folder-open-outline:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-funnel:before,
.ion-ios-funnel-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-git-branch:before,
.ion-ios-git-branch-outline:before,
.ion-ios-git-commit:before,
.ion-ios-git-commit-outline:before,
.ion-ios-git-compare:before,
.ion-ios-git-compare-outline:before,
.ion-ios-git-merge:before,
.ion-ios-git-merge-outline:before,
.ion-ios-git-network:before,
.ion-ios-git-network-outline:before,
.ion-ios-git-pull-request:before,
.ion-ios-git-pull-request-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-globe:before,
.ion-ios-globe-outline:before,
.ion-ios-grid:before,
.ion-ios-grid-outline:before,
.ion-ios-hammer:before,
.ion-ios-hammer-outline:before,
.ion-ios-hand:before,
.ion-ios-hand-outline:before,
.ion-ios-happy:before,
.ion-ios-happy-outline:before,
.ion-ios-headset:before,
.ion-ios-headset-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-buoy:before,
.ion-ios-help-buoy-outline:before,
.ion-ios-help-circle:before,
.ion-ios-help-circle-outline:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-ice-cream:before,
.ion-ios-ice-cream-outline:before,
.ion-ios-image:before,
.ion-ios-image-outline:before,
.ion-ios-images:before,
.ion-ios-images-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-circle:before,
.ion-ios-information-circle-outline:before,
.ion-ios-information-outline:before,
.ion-ios-ionic:before,
.ion-ios-ionic-outline:before,
.ion-ios-ionitron:before,
.ion-ios-ionitron-outline:before,
.ion-ios-jet:before,
.ion-ios-jet-outline:before,
.ion-ios-key:before,
.ion-ios-key-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-laptop:before,
.ion-ios-laptop-outline:before,
.ion-ios-leaf:before,
.ion-ios-leaf-outline:before,
.ion-ios-link:before,
.ion-ios-link-outline:before,
.ion-ios-list:before,
.ion-ios-list-box:before,
.ion-ios-list-box-outline:before,
.ion-ios-list-outline:before,
.ion-ios-locate:before,
.ion-ios-locate-outline:before,
.ion-ios-lock:before,
.ion-ios-lock-outline:before,
.ion-ios-log-in:before,
.ion-ios-log-in-outline:before,
.ion-ios-log-out:before,
.ion-ios-log-out-outline:before,
.ion-ios-magnet:before,
.ion-ios-magnet-outline:before,
.ion-ios-mail:before,
.ion-ios-mail-open:before,
.ion-ios-mail-open-outline:before,
.ion-ios-mail-outline:before,
.ion-ios-male:before,
.ion-ios-male-outline:before,
.ion-ios-man:before,
.ion-ios-man-outline:before,
.ion-ios-map:before,
.ion-ios-map-outline:before,
.ion-ios-medal:before,
.ion-ios-medal-outline:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-megaphone:before,
.ion-ios-megaphone-outline:before,
.ion-ios-menu:before,
.ion-ios-menu-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-off-outline:before,
.ion-ios-mic-outline:before,
.ion-ios-microphone:before,
.ion-ios-microphone-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-move:before,
.ion-ios-move-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-note-outline:before,
.ion-ios-musical-notes:before,
.ion-ios-musical-notes-outline:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-no-smoking:before,
.ion-ios-no-smoking-outline:before,
.ion-ios-notifications:before,
.ion-ios-notifications-off:before,
.ion-ios-notifications-off-outline:before,
.ion-ios-notifications-outline:before,
.ion-ios-nuclear:before,
.ion-ios-nuclear-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-open:before,
.ion-ios-open-outline:before,
.ion-ios-options:before,
.ion-ios-options-outline:before,
.ion-ios-outlet:before,
.ion-ios-outlet-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paper-plane:before,
.ion-ios-paper-plane-outline:before,
.ion-ios-partly-sunny:before,
.ion-ios-partly-sunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-add:before,
.ion-ios-person-add-outline:before,
.ion-ios-person-outline:before,
.ion-ios-phone-landscape:before,
.ion-ios-phone-landscape-outline:before,
.ion-ios-phone-portrait:before,
.ion-ios-phone-portrait-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pin:before,
.ion-ios-pin-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-pizza:before,
.ion-ios-pizza-outline:before,
.ion-ios-plane:before,
.ion-ios-plane-outline:before,
.ion-ios-planet:before,
.ion-ios-planet-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-podium:before,
.ion-ios-podium-outline:before,
.ion-ios-power:before,
.ion-ios-power-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-print:before,
.ion-ios-print-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-outline:before,
.ion-ios-qr-scanner:before,
.ion-ios-qr-scanner-outline:before,
.ion-ios-quote:before,
.ion-ios-quote-outline:before,
.ion-ios-radio:before,
.ion-ios-radio-button-off:before,
.ion-ios-radio-button-off-outline:before,
.ion-ios-radio-button-on:before,
.ion-ios-radio-button-on-outline:before,
.ion-ios-radio-outline:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-circle:before,
.ion-ios-refresh-circle-outline:before,
.ion-ios-refresh-outline:before,
.ion-ios-remove:before,
.ion-ios-remove-circle:before,
.ion-ios-remove-circle-outline:before,
.ion-ios-remove-outline:before,
.ion-ios-reorder:before,
.ion-ios-reorder-outline:before,
.ion-ios-repeat:before,
.ion-ios-repeat-outline:before,
.ion-ios-resize:before,
.ion-ios-resize-outline:before,
.ion-ios-restaurant:before,
.ion-ios-restaurant-outline:before,
.ion-ios-return-left:before,
.ion-ios-return-left-outline:before,
.ion-ios-return-right:before,
.ion-ios-return-right-outline:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-ribbon:before,
.ion-ios-ribbon-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-sad:before,
.ion-ios-sad-outline:before,
.ion-ios-school:before,
.ion-ios-school-outline:before,
.ion-ios-search:before,
.ion-ios-search-outline:before,
.ion-ios-send:before,
.ion-ios-send-outline:before,
.ion-ios-settings:before,
.ion-ios-settings-outline:before,
.ion-ios-share:before,
.ion-ios-share-alt:before,
.ion-ios-share-alt-outline:before,
.ion-ios-share-outline:before,
.ion-ios-shirt:before,
.ion-ios-shirt-outline:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-outline:before,
.ion-ios-skip-backward:before,
.ion-ios-skip-backward-outline:before,
.ion-ios-skip-forward:before,
.ion-ios-skip-forward-outline:before,
.ion-ios-snow:before,
.ion-ios-snow-outline:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-square:before,
.ion-ios-square-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-half-outline:before,
.ion-ios-star-outline:before,
.ion-ios-stats:before,
.ion-ios-stats-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-subway:before,
.ion-ios-subway-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-swap:before,
.ion-ios-swap-outline:before,
.ion-ios-switch:before,
.ion-ios-switch-outline:before,
.ion-ios-sync:before,
.ion-ios-sync-outline:before,
.ion-ios-tablet-landscape:before,
.ion-ios-tablet-landscape-outline:before,
.ion-ios-tablet-portrait:before,
.ion-ios-tablet-portrait-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-text:before,
.ion-ios-text-outline:before,
.ion-ios-thermometer:before,
.ion-ios-thermometer-outline:before,
.ion-ios-thumbs-down:before,
.ion-ios-thumbs-down-outline:before,
.ion-ios-thumbs-up:before,
.ion-ios-thumbs-up-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-train:before,
.ion-ios-train-outline:before,
.ion-ios-transgender:before,
.ion-ios-transgender-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-trending-down:before,
.ion-ios-trending-down-outline:before,
.ion-ios-trending-up:before,
.ion-ios-trending-up-outline:before,
.ion-ios-trophy:before,
.ion-ios-trophy-outline:before,
.ion-ios-umbrella:before,
.ion-ios-umbrella-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlock:before,
.ion-ios-unlock-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-down:before,
.ion-ios-volume-down-outline:before,
.ion-ios-volume-mute:before,
.ion-ios-volume-mute-outline:before,
.ion-ios-volume-off:before,
.ion-ios-volume-off-outline:before,
.ion-ios-volume-up:before,
.ion-ios-volume-up-outline:before,
.ion-ios-walk:before,
.ion-ios-walk-outline:before,
.ion-ios-warning:before,
.ion-ios-warning-outline:before,
.ion-ios-watch:before,
.ion-ios-watch-outline:before,
.ion-ios-water:before,
.ion-ios-water-outline:before,
.ion-ios-wifi:before,
.ion-ios-wifi-outline:before,
.ion-ios-wine:before,
.ion-ios-wine-outline:before,
.ion-ios-woman:before,
.ion-ios-woman-outline:before,
.ion-logo-android:before,
.ion-logo-angular:before,
.ion-logo-apple:before,
.ion-logo-bitcoin:before,
.ion-logo-buffer:before,
.ion-logo-chrome:before,
.ion-logo-codepen:before,
.ion-logo-css3:before,
.ion-logo-designernews:before,
.ion-logo-dribbble:before,
.ion-logo-dropbox:before,
.ion-logo-euro:before,
.ion-logo-facebook:before,
.ion-logo-foursquare:before,
.ion-logo-freebsd-devil:before,
.ion-logo-github:before,
.ion-logo-google:before,
.ion-logo-googleplus:before,
.ion-logo-hackernews:before,
.ion-logo-html5:before,
.ion-logo-instagram:before,
.ion-logo-javascript:before,
.ion-logo-linkedin:before,
.ion-logo-markdown:before,
.ion-logo-nodejs:before,
.ion-logo-octocat:before,
.ion-logo-pinterest:before,
.ion-logo-playstation:before,
.ion-logo-python:before,
.ion-logo-reddit:before,
.ion-logo-rss:before,
.ion-logo-sass:before,
.ion-logo-skype:before,
.ion-logo-snapchat:before,
.ion-logo-steam:before,
.ion-logo-tumblr:before,
.ion-logo-tux:before,
.ion-logo-twitch:before,
.ion-logo-twitter:before,
.ion-logo-usd:before,
.ion-logo-vimeo:before,
.ion-logo-whatsapp:before,
.ion-logo-windows:before,
.ion-logo-wordpress:before,
.ion-logo-xbox:before,
.ion-logo-yahoo:before,
.ion-logo-yen:before,
.ion-logo-youtube:before,
.ion-md-add:before,
.ion-md-add-circle:before,
.ion-md-alarm:before,
.ion-md-albums:before,
.ion-md-alert:before,
.ion-md-american-football:before,
.ion-md-analytics:before,
.ion-md-aperture:before,
.ion-md-apps:before,
.ion-md-appstore:before,
.ion-md-archive:before,
.ion-md-arrow-back:before,
.ion-md-arrow-down:before,
.ion-md-arrow-dropdown:before,
.ion-md-arrow-dropdown-circle:before,
.ion-md-arrow-dropleft:before,
.ion-md-arrow-dropleft-circle:before,
.ion-md-arrow-dropright:before,
.ion-md-arrow-dropright-circle:before,
.ion-md-arrow-dropup:before,
.ion-md-arrow-dropup-circle:before,
.ion-md-arrow-forward:before,
.ion-md-arrow-round-back:before,
.ion-md-arrow-round-down:before,
.ion-md-arrow-round-forward:before,
.ion-md-arrow-round-up:before,
.ion-md-arrow-up:before,
.ion-md-at:before,
.ion-md-attach:before,
.ion-md-backspace:before,
.ion-md-barcode:before,
.ion-md-baseball:before,
.ion-md-basket:before,
.ion-md-basketball:before,
.ion-md-battery-charging:before,
.ion-md-battery-dead:before,
.ion-md-battery-full:before,
.ion-md-beaker:before,
.ion-md-beer:before,
.ion-md-bicycle:before,
.ion-md-bluetooth:before,
.ion-md-boat:before,
.ion-md-body:before,
.ion-md-bonfire:before,
.ion-md-book:before,
.ion-md-bookmark:before,
.ion-md-bookmarks:before,
.ion-md-bowtie:before,
.ion-md-briefcase:before,
.ion-md-browsers:before,
.ion-md-brush:before,
.ion-md-bug:before,
.ion-md-build:before,
.ion-md-bulb:before,
.ion-md-bus:before,
.ion-md-cafe:before,
.ion-md-calculator:before,
.ion-md-calendar:before,
.ion-md-call:before,
.ion-md-camera:before,
.ion-md-car:before,
.ion-md-card:before,
.ion-md-cart:before,
.ion-md-cash:before,
.ion-md-chatboxes:before,
.ion-md-chatbubbles:before,
.ion-md-checkbox:before,
.ion-md-checkbox-outline:before,
.ion-md-checkmark:before,
.ion-md-checkmark-circle:before,
.ion-md-checkmark-circle-outline:before,
.ion-md-clipboard:before,
.ion-md-clock:before,
.ion-md-close:before,
.ion-md-close-circle:before,
.ion-md-closed-captioning:before,
.ion-md-cloud:before,
.ion-md-cloud-circle:before,
.ion-md-cloud-done:before,
.ion-md-cloud-download:before,
.ion-md-cloud-outline:before,
.ion-md-cloud-upload:before,
.ion-md-cloudy:before,
.ion-md-cloudy-night:before,
.ion-md-code:before,
.ion-md-code-download:before,
.ion-md-code-working:before,
.ion-md-cog:before,
.ion-md-color-fill:before,
.ion-md-color-filter:before,
.ion-md-color-palette:before,
.ion-md-color-wand:before,
.ion-md-compass:before,
.ion-md-construct:before,
.ion-md-contact:before,
.ion-md-contacts:before,
.ion-md-contract:before,
.ion-md-contrast:before,
.ion-md-copy:before,
.ion-md-create:before,
.ion-md-crop:before,
.ion-md-cube:before,
.ion-md-cut:before,
.ion-md-desktop:before,
.ion-md-disc:before,
.ion-md-document:before,
.ion-md-done-all:before,
.ion-md-download:before,
.ion-md-easel:before,
.ion-md-egg:before,
.ion-md-exit:before,
.ion-md-expand:before,
.ion-md-eye:before,
.ion-md-eye-off:before,
.ion-md-fastforward:before,
.ion-md-female:before,
.ion-md-filing:before,
.ion-md-film:before,
.ion-md-finger-print:before,
.ion-md-flag:before,
.ion-md-flame:before,
.ion-md-flash:before,
.ion-md-flask:before,
.ion-md-flower:before,
.ion-md-folder:before,
.ion-md-folder-open:before,
.ion-md-football:before,
.ion-md-funnel:before,
.ion-md-game-controller-a:before,
.ion-md-game-controller-b:before,
.ion-md-git-branch:before,
.ion-md-git-commit:before,
.ion-md-git-compare:before,
.ion-md-git-merge:before,
.ion-md-git-network:before,
.ion-md-git-pull-request:before,
.ion-md-glasses:before,
.ion-md-globe:before,
.ion-md-grid:before,
.ion-md-hammer:before,
.ion-md-hand:before,
.ion-md-happy:before,
.ion-md-headset:before,
.ion-md-heart:before,
.ion-md-heart-outline:before,
.ion-md-help:before,
.ion-md-help-buoy:before,
.ion-md-help-circle:before,
.ion-md-home:before,
.ion-md-ice-cream:before,
.ion-md-image:before,
.ion-md-images:before,
.ion-md-infinite:before,
.ion-md-information:before,
.ion-md-information-circle:before,
.ion-md-ionic:before,
.ion-md-ionitron:before,
.ion-md-jet:before,
.ion-md-key:before,
.ion-md-keypad:before,
.ion-md-laptop:before,
.ion-md-leaf:before,
.ion-md-link:before,
.ion-md-list:before,
.ion-md-list-box:before,
.ion-md-locate:before,
.ion-md-lock:before,
.ion-md-log-in:before,
.ion-md-log-out:before,
.ion-md-magnet:before,
.ion-md-mail:before,
.ion-md-mail-open:before,
.ion-md-male:before,
.ion-md-man:before,
.ion-md-map:before,
.ion-md-medal:before,
.ion-md-medical:before,
.ion-md-medkit:before,
.ion-md-megaphone:before,
.ion-md-menu:before,
.ion-md-mic:before,
.ion-md-mic-off:before,
.ion-md-microphone:before,
.ion-md-moon:before,
.ion-md-more:before,
.ion-md-move:before,
.ion-md-musical-note:before,
.ion-md-musical-notes:before,
.ion-md-navigate:before,
.ion-md-no-smoking:before,
.ion-md-notifications:before,
.ion-md-notifications-off:before,
.ion-md-notifications-outline:before,
.ion-md-nuclear:before,
.ion-md-nutrition:before,
.ion-md-open:before,
.ion-md-options:before,
.ion-md-outlet:before,
.ion-md-paper:before,
.ion-md-paper-plane:before,
.ion-md-partly-sunny:before,
.ion-md-pause:before,
.ion-md-paw:before,
.ion-md-people:before,
.ion-md-person:before,
.ion-md-person-add:before,
.ion-md-phone-landscape:before,
.ion-md-phone-portrait:before,
.ion-md-photos:before,
.ion-md-pie:before,
.ion-md-pin:before,
.ion-md-pint:before,
.ion-md-pizza:before,
.ion-md-plane:before,
.ion-md-planet:before,
.ion-md-play:before,
.ion-md-podium:before,
.ion-md-power:before,
.ion-md-pricetag:before,
.ion-md-pricetags:before,
.ion-md-print:before,
.ion-md-pulse:before,
.ion-md-qr-scanner:before,
.ion-md-quote:before,
.ion-md-radio:before,
.ion-md-radio-button-off:before,
.ion-md-radio-button-on:before,
.ion-md-rainy:before,
.ion-md-recording:before,
.ion-md-redo:before,
.ion-md-refresh:before,
.ion-md-refresh-circle:before,
.ion-md-remove:before,
.ion-md-remove-circle:before,
.ion-md-reorder:before,
.ion-md-repeat:before,
.ion-md-resize:before,
.ion-md-restaurant:before,
.ion-md-return-left:before,
.ion-md-return-right:before,
.ion-md-reverse-camera:before,
.ion-md-rewind:before,
.ion-md-ribbon:before,
.ion-md-rose:before,
.ion-md-sad:before,
.ion-md-school:before,
.ion-md-search:before,
.ion-md-send:before,
.ion-md-settings:before,
.ion-md-share:before,
.ion-md-share-alt:before,
.ion-md-shirt:before,
.ion-md-shuffle:before,
.ion-md-skip-backward:before,
.ion-md-skip-forward:before,
.ion-md-snow:before,
.ion-md-speedometer:before,
.ion-md-square:before,
.ion-md-square-outline:before,
.ion-md-star:before,
.ion-md-star-half:before,
.ion-md-star-outline:before,
.ion-md-stats:before,
.ion-md-stopwatch:before,
.ion-md-subway:before,
.ion-md-sunny:before,
.ion-md-swap:before,
.ion-md-switch:before,
.ion-md-sync:before,
.ion-md-tablet-landscape:before,
.ion-md-tablet-portrait:before,
.ion-md-tennisball:before,
.ion-md-text:before,
.ion-md-thermometer:before,
.ion-md-thumbs-down:before,
.ion-md-thumbs-up:before,
.ion-md-thunderstorm:before,
.ion-md-time:before,
.ion-md-timer:before,
.ion-md-train:before,
.ion-md-transgender:before,
.ion-md-trash:before,
.ion-md-trending-down:before,
.ion-md-trending-up:before,
.ion-md-trophy:before,
.ion-md-umbrella:before,
.ion-md-undo:before,
.ion-md-unlock:before,
.ion-md-videocam:before,
.ion-md-volume-down:before,
.ion-md-volume-mute:before,
.ion-md-volume-off:before,
.ion-md-volume-up:before,
.ion-md-walk:before,
.ion-md-warning:before,
.ion-md-watch:before,
.ion-md-water:before,
.ion-md-wifi:before,
.ion-md-wine:before,
.ion-md-woman:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ion-ios-add:before {
  content: "\f102";
}

.ion-ios-add-circle:before {
  content: "\f101";
}

.ion-ios-add-circle-outline:before {
  content: "\f100";
}

.ion-ios-add-outline:before {
  content: "\f102";
}

.ion-ios-alarm:before {
  content: "\f3c8";
}

.ion-ios-alarm-outline:before {
  content: "\f3c7";
}

.ion-ios-albums:before {
  content: "\f3ca";
}

.ion-ios-albums-outline:before {
  content: "\f3c9";
}

.ion-ios-alert:before {
  content: "\f104";
}

.ion-ios-alert-outline:before {
  content: "\f103";
}

.ion-ios-american-football:before {
  content: "\f106";
}

.ion-ios-american-football-outline:before {
  content: "\f105";
}

.ion-ios-analytics:before {
  content: "\f3ce";
}

.ion-ios-analytics-outline:before {
  content: "\f3cd";
}

.ion-ios-aperture:before {
  content: "\f108";
}

.ion-ios-aperture-outline:before {
  content: "\f107";
}

.ion-ios-apps:before {
  content: "\f10a";
}

.ion-ios-apps-outline:before {
  content: "\f109";
}

.ion-ios-appstore:before {
  content: "\f10c";
}

.ion-ios-appstore-outline:before {
  content: "\f10b";
}

.ion-ios-archive:before {
  content: "\f10e";
}

.ion-ios-archive-outline:before {
  content: "\f10d";
}

.ion-ios-arrow-back:before {
  content: "\f3cf";
}

.ion-ios-arrow-back-outline:before {
  content: "\f3cf";
}

.ion-ios-arrow-down:before {
  content: "\f3d0";
}

.ion-ios-arrow-down-outline:before {
  content: "\f3d0";
}

.ion-ios-arrow-dropdown:before {
  content: "\f110";
}

.ion-ios-arrow-dropdown-circle:before {
  content: "\f10f";
}

.ion-ios-arrow-dropdown-circle-outline:before {
  content: "\f10f";
}

.ion-ios-arrow-dropdown-outline:before {
  content: "\f110";
}

.ion-ios-arrow-dropleft:before {
  content: "\f112";
}

.ion-ios-arrow-dropleft-circle:before {
  content: "\f111";
}

.ion-ios-arrow-dropleft-circle-outline:before {
  content: "\f111";
}

.ion-ios-arrow-dropleft-outline:before {
  content: "\f112";
}

.ion-ios-arrow-dropright:before {
  content: "\f114";
}

.ion-ios-arrow-dropright-circle:before {
  content: "\f113";
}

.ion-ios-arrow-dropright-circle-outline:before {
  content: "\f113";
}

.ion-ios-arrow-dropright-outline:before {
  content: "\f114";
}

.ion-ios-arrow-dropup:before {
  content: "\f116";
}

.ion-ios-arrow-dropup-circle:before {
  content: "\f115";
}

.ion-ios-arrow-dropup-circle-outline:before {
  content: "\f115";
}

.ion-ios-arrow-dropup-outline:before {
  content: "\f116";
}

.ion-ios-arrow-forward:before {
  content: "\f3d1";
}

.ion-ios-arrow-forward-outline:before {
  content: "\f3d1";
}

.ion-ios-arrow-round-back:before {
  content: "\f117";
}

.ion-ios-arrow-round-back-outline:before {
  content: "\f117";
}

.ion-ios-arrow-round-down:before {
  content: "\f118";
}

.ion-ios-arrow-round-down-outline:before {
  content: "\f118";
}

.ion-ios-arrow-round-forward:before {
  content: "\f119";
}

.ion-ios-arrow-round-forward-outline:before {
  content: "\f119";
}

.ion-ios-arrow-round-up:before {
  content: "\f11a";
}

.ion-ios-arrow-round-up-outline:before {
  content: "\f11a";
}

.ion-ios-arrow-up:before {
  content: "\f3d8";
}

.ion-ios-arrow-up-outline:before {
  content: "\f3d8";
}

.ion-ios-at:before {
  content: "\f3da";
}

.ion-ios-at-outline:before {
  content: "\f3d9";
}

.ion-ios-attach:before {
  content: "\f11b";
}

.ion-ios-attach-outline:before {
  content: "\f11b";
}

.ion-ios-backspace:before {
  content: "\f11d";
}

.ion-ios-backspace-outline:before {
  content: "\f11c";
}

.ion-ios-barcode:before {
  content: "\f3dc";
}

.ion-ios-barcode-outline:before {
  content: "\f3db";
}

.ion-ios-baseball:before {
  content: "\f3de";
}

.ion-ios-baseball-outline:before {
  content: "\f3dd";
}

.ion-ios-basket:before {
  content: "\f11f";
}

.ion-ios-basket-outline:before {
  content: "\f11e";
}

.ion-ios-basketball:before {
  content: "\f3e0";
}

.ion-ios-basketball-outline:before {
  content: "\f3df";
}

.ion-ios-battery-charging:before {
  content: "\f120";
}

.ion-ios-battery-charging-outline:before {
  content: "\f120";
}

.ion-ios-battery-dead:before {
  content: "\f121";
}

.ion-ios-battery-dead-outline:before {
  content: "\f121";
}

.ion-ios-battery-full:before {
  content: "\f122";
}

.ion-ios-battery-full-outline:before {
  content: "\f122";
}

.ion-ios-beaker:before {
  content: "\f124";
}

.ion-ios-beaker-outline:before {
  content: "\f123";
}

.ion-ios-beer:before {
  content: "\f126";
}

.ion-ios-beer-outline:before {
  content: "\f125";
}

.ion-ios-bicycle:before {
  content: "\f127";
}

.ion-ios-bicycle-outline:before {
  content: "\f127";
}

.ion-ios-bluetooth:before {
  content: "\f128";
}

.ion-ios-bluetooth-outline:before {
  content: "\f128";
}

.ion-ios-boat:before {
  content: "\f12a";
}

.ion-ios-boat-outline:before {
  content: "\f129";
}

.ion-ios-body:before {
  content: "\f3e4";
}

.ion-ios-body-outline:before {
  content: "\f3e3";
}

.ion-ios-bonfire:before {
  content: "\f12c";
}

.ion-ios-bonfire-outline:before {
  content: "\f12b";
}

.ion-ios-book:before {
  content: "\f3e8";
}

.ion-ios-book-outline:before {
  content: "\f3e7";
}

.ion-ios-bookmark:before {
  content: "\f12e";
}

.ion-ios-bookmark-outline:before {
  content: "\f12d";
}

.ion-ios-bookmarks:before {
  content: "\f3ea";
}

.ion-ios-bookmarks-outline:before {
  content: "\f3e9";
}

.ion-ios-bowtie:before {
  content: "\f130";
}

.ion-ios-bowtie-outline:before {
  content: "\f12f";
}

.ion-ios-briefcase:before {
  content: "\f3ee";
}

.ion-ios-briefcase-outline:before {
  content: "\f3ed";
}

.ion-ios-browsers:before {
  content: "\f3f0";
}

.ion-ios-browsers-outline:before {
  content: "\f3ef";
}

.ion-ios-brush:before {
  content: "\f132";
}

.ion-ios-brush-outline:before {
  content: "\f131";
}

.ion-ios-bug:before {
  content: "\f134";
}

.ion-ios-bug-outline:before {
  content: "\f133";
}

.ion-ios-build:before {
  content: "\f136";
}

.ion-ios-build-outline:before {
  content: "\f135";
}

.ion-ios-bulb:before {
  content: "\f138";
}

.ion-ios-bulb-outline:before {
  content: "\f137";
}

.ion-ios-bus:before {
  content: "\f13a";
}

.ion-ios-bus-outline:before {
  content: "\f139";
}

.ion-ios-cafe:before {
  content: "\f13c";
}

.ion-ios-cafe-outline:before {
  content: "\f13b";
}

.ion-ios-calculator:before {
  content: "\f3f2";
}

.ion-ios-calculator-outline:before {
  content: "\f3f1";
}

.ion-ios-calendar:before {
  content: "\f3f4";
}

.ion-ios-calendar-outline:before {
  content: "\f3f3";
}

.ion-ios-call:before {
  content: "\f13e";
}

.ion-ios-call-outline:before {
  content: "\f13d";
}

.ion-ios-camera:before {
  content: "\f3f6";
}

.ion-ios-camera-outline:before {
  content: "\f3f5";
}

.ion-ios-car:before {
  content: "\f140";
}

.ion-ios-car-outline:before {
  content: "\f13f";
}

.ion-ios-card:before {
  content: "\f142";
}

.ion-ios-card-outline:before {
  content: "\f141";
}

.ion-ios-cart:before {
  content: "\f3f8";
}

.ion-ios-cart-outline:before {
  content: "\f3f7";
}

.ion-ios-cash:before {
  content: "\f144";
}

.ion-ios-cash-outline:before {
  content: "\f143";
}

.ion-ios-chatboxes:before {
  content: "\f3fa";
}

.ion-ios-chatboxes-outline:before {
  content: "\f3f9";
}

.ion-ios-chatbubbles:before {
  content: "\f146";
}

.ion-ios-chatbubbles-outline:before {
  content: "\f145";
}

.ion-ios-checkbox:before {
  content: "\f148";
}

.ion-ios-checkbox-outline:before {
  content: "\f147";
}

.ion-ios-checkmark:before {
  content: "\f3ff";
}

.ion-ios-checkmark-circle:before {
  content: "\f14a";
}

.ion-ios-checkmark-circle-outline:before {
  content: "\f149";
}

.ion-ios-checkmark-outline:before {
  content: "\f3ff";
}

.ion-ios-clipboard:before {
  content: "\f14c";
}

.ion-ios-clipboard-outline:before {
  content: "\f14b";
}

.ion-ios-clock:before {
  content: "\f403";
}

.ion-ios-clock-outline:before {
  content: "\f402";
}

.ion-ios-close:before {
  content: "\f406";
}

.ion-ios-close-circle:before {
  content: "\f14e";
}

.ion-ios-close-circle-outline:before {
  content: "\f14d";
}

.ion-ios-close-outline:before {
  content: "\f406";
}

.ion-ios-closed-captioning:before {
  content: "\f150";
}

.ion-ios-closed-captioning-outline:before {
  content: "\f14f";
}

.ion-ios-cloud:before {
  content: "\f40c";
}

.ion-ios-cloud-circle:before {
  content: "\f152";
}

.ion-ios-cloud-circle-outline:before {
  content: "\f151";
}

.ion-ios-cloud-done:before {
  content: "\f154";
}

.ion-ios-cloud-done-outline:before {
  content: "\f153";
}

.ion-ios-cloud-download:before {
  content: "\f408";
}

.ion-ios-cloud-download-outline:before {
  content: "\f407";
}

.ion-ios-cloud-outline:before {
  content: "\f409";
}

.ion-ios-cloud-upload:before {
  content: "\f40b";
}

.ion-ios-cloud-upload-outline:before {
  content: "\f40a";
}

.ion-ios-cloudy:before {
  content: "\f410";
}

.ion-ios-cloudy-night:before {
  content: "\f40e";
}

.ion-ios-cloudy-night-outline:before {
  content: "\f40d";
}

.ion-ios-cloudy-outline:before {
  content: "\f40f";
}

.ion-ios-code:before {
  content: "\f157";
}

.ion-ios-code-download:before {
  content: "\f155";
}

.ion-ios-code-download-outline:before {
  content: "\f155";
}

.ion-ios-code-outline:before {
  content: "\f157";
}

.ion-ios-code-working:before {
  content: "\f156";
}

.ion-ios-code-working-outline:before {
  content: "\f156";
}

.ion-ios-cog:before {
  content: "\f412";
}

.ion-ios-cog-outline:before {
  content: "\f411";
}

.ion-ios-color-fill:before {
  content: "\f159";
}

.ion-ios-color-fill-outline:before {
  content: "\f158";
}

.ion-ios-color-filter:before {
  content: "\f414";
}

.ion-ios-color-filter-outline:before {
  content: "\f413";
}

.ion-ios-color-palette:before {
  content: "\f15b";
}

.ion-ios-color-palette-outline:before {
  content: "\f15a";
}

.ion-ios-color-wand:before {
  content: "\f416";
}

.ion-ios-color-wand-outline:before {
  content: "\f415";
}

.ion-ios-compass:before {
  content: "\f15d";
}

.ion-ios-compass-outline:before {
  content: "\f15c";
}

.ion-ios-construct:before {
  content: "\f15f";
}

.ion-ios-construct-outline:before {
  content: "\f15e";
}

.ion-ios-contact:before {
  content: "\f41a";
}

.ion-ios-contact-outline:before {
  content: "\f419";
}

.ion-ios-contacts:before {
  content: "\f161";
}

.ion-ios-contacts-outline:before {
  content: "\f160";
}

.ion-ios-contract:before {
  content: "\f162";
}

.ion-ios-contract-outline:before {
  content: "\f162";
}

.ion-ios-contrast:before {
  content: "\f163";
}

.ion-ios-contrast-outline:before {
  content: "\f163";
}

.ion-ios-copy:before {
  content: "\f41c";
}

.ion-ios-copy-outline:before {
  content: "\f41b";
}

.ion-ios-create:before {
  content: "\f165";
}

.ion-ios-create-outline:before {
  content: "\f164";
}

.ion-ios-crop:before {
  content: "\f41e";
}

.ion-ios-crop-outline:before {
  content: "\f166";
}

.ion-ios-cube:before {
  content: "\f168";
}

.ion-ios-cube-outline:before {
  content: "\f167";
}

.ion-ios-cut:before {
  content: "\f16a";
}

.ion-ios-cut-outline:before {
  content: "\f169";
}

.ion-ios-desktop:before {
  content: "\f16c";
}

.ion-ios-desktop-outline:before {
  content: "\f16b";
}

.ion-ios-disc:before {
  content: "\f16e";
}

.ion-ios-disc-outline:before {
  content: "\f16d";
}

.ion-ios-document:before {
  content: "\f170";
}

.ion-ios-document-outline:before {
  content: "\f16f";
}

.ion-ios-done-all:before {
  content: "\f171";
}

.ion-ios-done-all-outline:before {
  content: "\f171";
}

.ion-ios-download:before {
  content: "\f420";
}

.ion-ios-download-outline:before {
  content: "\f41f";
}

.ion-ios-easel:before {
  content: "\f173";
}

.ion-ios-easel-outline:before {
  content: "\f172";
}

.ion-ios-egg:before {
  content: "\f175";
}

.ion-ios-egg-outline:before {
  content: "\f174";
}

.ion-ios-exit:before {
  content: "\f177";
}

.ion-ios-exit-outline:before {
  content: "\f176";
}

.ion-ios-expand:before {
  content: "\f178";
}

.ion-ios-expand-outline:before {
  content: "\f178";
}

.ion-ios-eye:before {
  content: "\f425";
}

.ion-ios-eye-off:before {
  content: "\f17a";
}

.ion-ios-eye-off-outline:before {
  content: "\f179";
}

.ion-ios-eye-outline:before {
  content: "\f424";
}

.ion-ios-fastforward:before {
  content: "\f427";
}

.ion-ios-fastforward-outline:before {
  content: "\f426";
}

.ion-ios-female:before {
  content: "\f17b";
}

.ion-ios-female-outline:before {
  content: "\f17b";
}

.ion-ios-filing:before {
  content: "\f429";
}

.ion-ios-filing-outline:before {
  content: "\f428";
}

.ion-ios-film:before {
  content: "\f42b";
}

.ion-ios-film-outline:before {
  content: "\f42a";
}

.ion-ios-finger-print:before {
  content: "\f17c";
}

.ion-ios-finger-print-outline:before {
  content: "\f17c";
}

.ion-ios-flag:before {
  content: "\f42d";
}

.ion-ios-flag-outline:before {
  content: "\f42c";
}

.ion-ios-flame:before {
  content: "\f42f";
}

.ion-ios-flame-outline:before {
  content: "\f42e";
}

.ion-ios-flash:before {
  content: "\f17e";
}

.ion-ios-flash-outline:before {
  content: "\f17d";
}

.ion-ios-flask:before {
  content: "\f431";
}

.ion-ios-flask-outline:before {
  content: "\f430";
}

.ion-ios-flower:before {
  content: "\f433";
}

.ion-ios-flower-outline:before {
  content: "\f432";
}

.ion-ios-folder:before {
  content: "\f435";
}

.ion-ios-folder-open:before {
  content: "\f180";
}

.ion-ios-folder-open-outline:before {
  content: "\f17f";
}

.ion-ios-folder-outline:before {
  content: "\f434";
}

.ion-ios-football:before {
  content: "\f437";
}

.ion-ios-football-outline:before {
  content: "\f436";
}

.ion-ios-funnel:before {
  content: "\f182";
}

.ion-ios-funnel-outline:before {
  content: "\f181";
}

.ion-ios-game-controller-a:before {
  content: "\f439";
}

.ion-ios-game-controller-a-outline:before {
  content: "\f438";
}

.ion-ios-game-controller-b:before {
  content: "\f43b";
}

.ion-ios-game-controller-b-outline:before {
  content: "\f43a";
}

.ion-ios-git-branch:before {
  content: "\f183";
}

.ion-ios-git-branch-outline:before {
  content: "\f183";
}

.ion-ios-git-commit:before {
  content: "\f184";
}

.ion-ios-git-commit-outline:before {
  content: "\f184";
}

.ion-ios-git-compare:before {
  content: "\f185";
}

.ion-ios-git-compare-outline:before {
  content: "\f185";
}

.ion-ios-git-merge:before {
  content: "\f186";
}

.ion-ios-git-merge-outline:before {
  content: "\f186";
}

.ion-ios-git-network:before {
  content: "\f187";
}

.ion-ios-git-network-outline:before {
  content: "\f187";
}

.ion-ios-git-pull-request:before {
  content: "\f188";
}

.ion-ios-git-pull-request-outline:before {
  content: "\f188";
}

.ion-ios-glasses:before {
  content: "\f43f";
}

.ion-ios-glasses-outline:before {
  content: "\f43e";
}

.ion-ios-globe:before {
  content: "\f18a";
}

.ion-ios-globe-outline:before {
  content: "\f189";
}

.ion-ios-grid:before {
  content: "\f18c";
}

.ion-ios-grid-outline:before {
  content: "\f18b";
}

.ion-ios-hammer:before {
  content: "\f18e";
}

.ion-ios-hammer-outline:before {
  content: "\f18d";
}

.ion-ios-hand:before {
  content: "\f190";
}

.ion-ios-hand-outline:before {
  content: "\f18f";
}

.ion-ios-happy:before {
  content: "\f192";
}

.ion-ios-happy-outline:before {
  content: "\f191";
}

.ion-ios-headset:before {
  content: "\f194";
}

.ion-ios-headset-outline:before {
  content: "\f193";
}

.ion-ios-heart:before {
  content: "\f443";
}

.ion-ios-heart-outline:before {
  content: "\f442";
}

.ion-ios-help:before {
  content: "\f446";
}

.ion-ios-help-buoy:before {
  content: "\f196";
}

.ion-ios-help-buoy-outline:before {
  content: "\f195";
}

.ion-ios-help-circle:before {
  content: "\f198";
}

.ion-ios-help-circle-outline:before {
  content: "\f197";
}

.ion-ios-help-outline:before {
  content: "\f446";
}

.ion-ios-home:before {
  content: "\f448";
}

.ion-ios-home-outline:before {
  content: "\f447";
}

.ion-ios-ice-cream:before {
  content: "\f19a";
}

.ion-ios-ice-cream-outline:before {
  content: "\f199";
}

.ion-ios-image:before {
  content: "\f19c";
}

.ion-ios-image-outline:before {
  content: "\f19b";
}

.ion-ios-images:before {
  content: "\f19e";
}

.ion-ios-images-outline:before {
  content: "\f19d";
}

.ion-ios-infinite:before {
  content: "\f44a";
}

.ion-ios-infinite-outline:before {
  content: "\f449";
}

.ion-ios-information:before {
  content: "\f44d";
}

.ion-ios-information-circle:before {
  content: "\f1a0";
}

.ion-ios-information-circle-outline:before {
  content: "\f19f";
}

.ion-ios-information-outline:before {
  content: "\f44d";
}

.ion-ios-ionic:before {
  content: "\f1a1";
}

.ion-ios-ionic-outline:before {
  content: "\f44e";
}

.ion-ios-ionitron:before {
  content: "\f1a3";
}

.ion-ios-ionitron-outline:before {
  content: "\f1a2";
}

.ion-ios-jet:before {
  content: "\f1a5";
}

.ion-ios-jet-outline:before {
  content: "\f1a4";
}

.ion-ios-key:before {
  content: "\f1a7";
}

.ion-ios-key-outline:before {
  content: "\f1a6";
}

.ion-ios-keypad:before {
  content: "\f450";
}

.ion-ios-keypad-outline:before {
  content: "\f44f";
}

.ion-ios-laptop:before {
  content: "\f1a8";
}

.ion-ios-laptop-outline:before {
  content: "\f1a8";
}

.ion-ios-leaf:before {
  content: "\f1aa";
}

.ion-ios-leaf-outline:before {
  content: "\f1a9";
}

.ion-ios-link:before {
  content: "\f22a";
}

.ion-ios-link-outline:before {
  content: "\f1ca";
}

.ion-ios-list:before {
  content: "\f454";
}

.ion-ios-list-box:before {
  content: "\f1ac";
}

.ion-ios-list-box-outline:before {
  content: "\f1ab";
}

.ion-ios-list-outline:before {
  content: "\f454";
}

.ion-ios-locate:before {
  content: "\f1ae";
}

.ion-ios-locate-outline:before {
  content: "\f1ad";
}

.ion-ios-lock:before {
  content: "\f1b0";
}

.ion-ios-lock-outline:before {
  content: "\f1af";
}

.ion-ios-log-in:before {
  content: "\f1b1";
}

.ion-ios-log-in-outline:before {
  content: "\f1b1";
}

.ion-ios-log-out:before {
  content: "\f1b2";
}

.ion-ios-log-out-outline:before {
  content: "\f1b2";
}

.ion-ios-magnet:before {
  content: "\f1b4";
}

.ion-ios-magnet-outline:before {
  content: "\f1b3";
}

.ion-ios-mail:before {
  content: "\f1b8";
}

.ion-ios-mail-open:before {
  content: "\f1b6";
}

.ion-ios-mail-open-outline:before {
  content: "\f1b5";
}

.ion-ios-mail-outline:before {
  content: "\f1b7";
}

.ion-ios-male:before {
  content: "\f1b9";
}

.ion-ios-male-outline:before {
  content: "\f1b9";
}

.ion-ios-man:before {
  content: "\f1bb";
}

.ion-ios-man-outline:before {
  content: "\f1ba";
}

.ion-ios-map:before {
  content: "\f1bd";
}

.ion-ios-map-outline:before {
  content: "\f1bc";
}

.ion-ios-medal:before {
  content: "\f1bf";
}

.ion-ios-medal-outline:before {
  content: "\f1be";
}

.ion-ios-medical:before {
  content: "\f45c";
}

.ion-ios-medical-outline:before {
  content: "\f45b";
}

.ion-ios-medkit:before {
  content: "\f45e";
}

.ion-ios-medkit-outline:before {
  content: "\f45d";
}

.ion-ios-megaphone:before {
  content: "\f1c1";
}

.ion-ios-megaphone-outline:before {
  content: "\f1c0";
}

.ion-ios-menu:before {
  content: "\f1c3";
}

.ion-ios-menu-outline:before {
  content: "\f1c2";
}

.ion-ios-mic:before {
  content: "\f461";
}

.ion-ios-mic-off:before {
  content: "\f45f";
}

.ion-ios-mic-off-outline:before {
  content: "\f1c4";
}

.ion-ios-mic-outline:before {
  content: "\f460";
}

.ion-ios-microphone:before {
  content: "\f1c6";
}

.ion-ios-microphone-outline:before {
  content: "\f1c5";
}

.ion-ios-moon:before {
  content: "\f468";
}

.ion-ios-moon-outline:before {
  content: "\f467";
}

.ion-ios-more:before {
  content: "\f1c8";
}

.ion-ios-more-outline:before {
  content: "\f1c7";
}

.ion-ios-move:before {
  content: "\f1cb";
}

.ion-ios-move-outline:before {
  content: "\f1cb";
}

.ion-ios-musical-note:before {
  content: "\f46b";
}

.ion-ios-musical-note-outline:before {
  content: "\f1cc";
}

.ion-ios-musical-notes:before {
  content: "\f46c";
}

.ion-ios-musical-notes-outline:before {
  content: "\f1cd";
}

.ion-ios-navigate:before {
  content: "\f46e";
}

.ion-ios-navigate-outline:before {
  content: "\f46d";
}

.ion-ios-no-smoking:before {
  content: "\f1cf";
}

.ion-ios-no-smoking-outline:before {
  content: "\f1ce";
}

.ion-ios-notifications:before {
  content: "\f1d3";
}

.ion-ios-notifications-off:before {
  content: "\f1d1";
}

.ion-ios-notifications-off-outline:before {
  content: "\f1d0";
}

.ion-ios-notifications-outline:before {
  content: "\f1d2";
}

.ion-ios-nuclear:before {
  content: "\f1d5";
}

.ion-ios-nuclear-outline:before {
  content: "\f1d4";
}

.ion-ios-nutrition:before {
  content: "\f470";
}

.ion-ios-nutrition-outline:before {
  content: "\f46f";
}

.ion-ios-open:before {
  content: "\f1d7";
}

.ion-ios-open-outline:before {
  content: "\f1d6";
}

.ion-ios-options:before {
  content: "\f1d9";
}

.ion-ios-options-outline:before {
  content: "\f1d8";
}

.ion-ios-outlet:before {
  content: "\f1db";
}

.ion-ios-outlet-outline:before {
  content: "\f1da";
}

.ion-ios-paper:before {
  content: "\f472";
}

.ion-ios-paper-outline:before {
  content: "\f471";
}

.ion-ios-paper-plane:before {
  content: "\f1dd";
}

.ion-ios-paper-plane-outline:before {
  content: "\f1dc";
}

.ion-ios-partly-sunny:before {
  content: "\f1df";
}

.ion-ios-partly-sunny-outline:before {
  content: "\f1de";
}

.ion-ios-pause:before {
  content: "\f478";
}

.ion-ios-pause-outline:before {
  content: "\f477";
}

.ion-ios-paw:before {
  content: "\f47a";
}

.ion-ios-paw-outline:before {
  content: "\f479";
}

.ion-ios-people:before {
  content: "\f47c";
}

.ion-ios-people-outline:before {
  content: "\f47b";
}

.ion-ios-person:before {
  content: "\f47e";
}

.ion-ios-person-add:before {
  content: "\f1e1";
}

.ion-ios-person-add-outline:before {
  content: "\f1e0";
}

.ion-ios-person-outline:before {
  content: "\f47d";
}

.ion-ios-phone-landscape:before {
  content: "\f1e2";
}

.ion-ios-phone-landscape-outline:before {
  content: "\f1e2";
}

.ion-ios-phone-portrait:before {
  content: "\f1e3";
}

.ion-ios-phone-portrait-outline:before {
  content: "\f1e3";
}

.ion-ios-photos:before {
  content: "\f482";
}

.ion-ios-photos-outline:before {
  content: "\f481";
}

.ion-ios-pie:before {
  content: "\f484";
}

.ion-ios-pie-outline:before {
  content: "\f483";
}

.ion-ios-pin:before {
  content: "\f1e5";
}

.ion-ios-pin-outline:before {
  content: "\f1e4";
}

.ion-ios-pint:before {
  content: "\f486";
}

.ion-ios-pint-outline:before {
  content: "\f485";
}

.ion-ios-pizza:before {
  content: "\f1e7";
}

.ion-ios-pizza-outline:before {
  content: "\f1e6";
}

.ion-ios-plane:before {
  content: "\f1e9";
}

.ion-ios-plane-outline:before {
  content: "\f1e8";
}

.ion-ios-planet:before {
  content: "\f1eb";
}

.ion-ios-planet-outline:before {
  content: "\f1ea";
}

.ion-ios-play:before {
  content: "\f488";
}

.ion-ios-play-outline:before {
  content: "\f487";
}

.ion-ios-podium:before {
  content: "\f1ed";
}

.ion-ios-podium-outline:before {
  content: "\f1ec";
}

.ion-ios-power:before {
  content: "\f1ef";
}

.ion-ios-power-outline:before {
  content: "\f1ee";
}

.ion-ios-pricetag:before {
  content: "\f48d";
}

.ion-ios-pricetag-outline:before {
  content: "\f48c";
}

.ion-ios-pricetags:before {
  content: "\f48f";
}

.ion-ios-pricetags-outline:before {
  content: "\f48e";
}

.ion-ios-print:before {
  content: "\f1f1";
}

.ion-ios-print-outline:before {
  content: "\f1f0";
}

.ion-ios-pulse:before {
  content: "\f493";
}

.ion-ios-pulse-outline:before {
  content: "\f1f2";
}

.ion-ios-qr-scanner:before {
  content: "\f1f3";
}

.ion-ios-qr-scanner-outline:before {
  content: "\f1f3";
}

.ion-ios-quote:before {
  content: "\f1f5";
}

.ion-ios-quote-outline:before {
  content: "\f1f4";
}

.ion-ios-radio:before {
  content: "\f1f9";
}

.ion-ios-radio-button-off:before {
  content: "\f1f6";
}

.ion-ios-radio-button-off-outline:before {
  content: "\f1f6";
}

.ion-ios-radio-button-on:before {
  content: "\f1f7";
}

.ion-ios-radio-button-on-outline:before {
  content: "\f1f7";
}

.ion-ios-radio-outline:before {
  content: "\f1f8";
}

.ion-ios-rainy:before {
  content: "\f495";
}

.ion-ios-rainy-outline:before {
  content: "\f494";
}

.ion-ios-recording:before {
  content: "\f497";
}

.ion-ios-recording-outline:before {
  content: "\f496";
}

.ion-ios-redo:before {
  content: "\f499";
}

.ion-ios-redo-outline:before {
  content: "\f498";
}

.ion-ios-refresh:before {
  content: "\f49c";
}

.ion-ios-refresh-circle:before {
  content: "\f226";
}

.ion-ios-refresh-circle-outline:before {
  content: "\f224";
}

.ion-ios-refresh-outline:before {
  content: "\f49c";
}

.ion-ios-remove:before {
  content: "\f1fc";
}

.ion-ios-remove-circle:before {
  content: "\f1fb";
}

.ion-ios-remove-circle-outline:before {
  content: "\f1fa";
}

.ion-ios-remove-outline:before {
  content: "\f1fc";
}

.ion-ios-reorder:before {
  content: "\f1fd";
}

.ion-ios-reorder-outline:before {
  content: "\f1fd";
}

.ion-ios-repeat:before {
  content: "\f1fe";
}

.ion-ios-repeat-outline:before {
  content: "\f1fe";
}

.ion-ios-resize:before {
  content: "\f1ff";
}

.ion-ios-resize-outline:before {
  content: "\f1ff";
}

.ion-ios-restaurant:before {
  content: "\f201";
}

.ion-ios-restaurant-outline:before {
  content: "\f200";
}

.ion-ios-return-left:before {
  content: "\f202";
}

.ion-ios-return-left-outline:before {
  content: "\f202";
}

.ion-ios-return-right:before {
  content: "\f203";
}

.ion-ios-return-right-outline:before {
  content: "\f203";
}

.ion-ios-reverse-camera:before {
  content: "\f49f";
}

.ion-ios-reverse-camera-outline:before {
  content: "\f49e";
}

.ion-ios-rewind:before {
  content: "\f4a1";
}

.ion-ios-rewind-outline:before {
  content: "\f4a0";
}

.ion-ios-ribbon:before {
  content: "\f205";
}

.ion-ios-ribbon-outline:before {
  content: "\f204";
}

.ion-ios-rose:before {
  content: "\f4a3";
}

.ion-ios-rose-outline:before {
  content: "\f4a2";
}

.ion-ios-sad:before {
  content: "\f207";
}

.ion-ios-sad-outline:before {
  content: "\f206";
}

.ion-ios-school:before {
  content: "\f209";
}

.ion-ios-school-outline:before {
  content: "\f208";
}

.ion-ios-search:before {
  content: "\f4a5";
}

.ion-ios-search-outline:before {
  content: "\f20a";
}

.ion-ios-send:before {
  content: "\f20c";
}

.ion-ios-send-outline:before {
  content: "\f20b";
}

.ion-ios-settings:before {
  content: "\f4a7";
}

.ion-ios-settings-outline:before {
  content: "\f20d";
}

.ion-ios-share:before {
  content: "\f211";
}

.ion-ios-share-alt:before {
  content: "\f20f";
}

.ion-ios-share-alt-outline:before {
  content: "\f20e";
}

.ion-ios-share-outline:before {
  content: "\f210";
}

.ion-ios-shirt:before {
  content: "\f213";
}

.ion-ios-shirt-outline:before {
  content: "\f212";
}

.ion-ios-shuffle:before {
  content: "\f4a9";
}

.ion-ios-shuffle-outline:before {
  content: "\f4a9";
}

.ion-ios-skip-backward:before {
  content: "\f215";
}

.ion-ios-skip-backward-outline:before {
  content: "\f214";
}

.ion-ios-skip-forward:before {
  content: "\f217";
}

.ion-ios-skip-forward-outline:before {
  content: "\f216";
}

.ion-ios-snow:before {
  content: "\f218";
}

.ion-ios-snow-outline:before {
  content: "\f22c";
}

.ion-ios-speedometer:before {
  content: "\f4b0";
}

.ion-ios-speedometer-outline:before {
  content: "\f4af";
}

.ion-ios-square:before {
  content: "\f21a";
}

.ion-ios-square-outline:before {
  content: "\f219";
}

.ion-ios-star:before {
  content: "\f4b3";
}

.ion-ios-star-half:before {
  content: "\f4b1";
}

.ion-ios-star-half-outline:before {
  content: "\f4b1";
}

.ion-ios-star-outline:before {
  content: "\f4b2";
}

.ion-ios-stats:before {
  content: "\f21c";
}

.ion-ios-stats-outline:before {
  content: "\f21b";
}

.ion-ios-stopwatch:before {
  content: "\f4b5";
}

.ion-ios-stopwatch-outline:before {
  content: "\f4b4";
}

.ion-ios-subway:before {
  content: "\f21e";
}

.ion-ios-subway-outline:before {
  content: "\f21d";
}

.ion-ios-sunny:before {
  content: "\f4b7";
}

.ion-ios-sunny-outline:before {
  content: "\f4b6";
}

.ion-ios-swap:before {
  content: "\f21f";
}

.ion-ios-swap-outline:before {
  content: "\f21f";
}

.ion-ios-switch:before {
  content: "\f221";
}

.ion-ios-switch-outline:before {
  content: "\f220";
}

.ion-ios-sync:before {
  content: "\f222";
}

.ion-ios-sync-outline:before {
  content: "\f222";
}

.ion-ios-tablet-landscape:before {
  content: "\f223";
}

.ion-ios-tablet-landscape-outline:before {
  content: "\f223";
}

.ion-ios-tablet-portrait:before {
  content: "\f24e";
}

.ion-ios-tablet-portrait-outline:before {
  content: "\f24e";
}

.ion-ios-tennisball:before {
  content: "\f4bb";
}

.ion-ios-tennisball-outline:before {
  content: "\f4ba";
}

.ion-ios-text:before {
  content: "\f250";
}

.ion-ios-text-outline:before {
  content: "\f24f";
}

.ion-ios-thermometer:before {
  content: "\f252";
}

.ion-ios-thermometer-outline:before {
  content: "\f251";
}

.ion-ios-thumbs-down:before {
  content: "\f254";
}

.ion-ios-thumbs-down-outline:before {
  content: "\f253";
}

.ion-ios-thumbs-up:before {
  content: "\f256";
}

.ion-ios-thumbs-up-outline:before {
  content: "\f255";
}

.ion-ios-thunderstorm:before {
  content: "\f4bd";
}

.ion-ios-thunderstorm-outline:before {
  content: "\f4bc";
}

.ion-ios-time:before {
  content: "\f4bf";
}

.ion-ios-time-outline:before {
  content: "\f4be";
}

.ion-ios-timer:before {
  content: "\f4c1";
}

.ion-ios-timer-outline:before {
  content: "\f4c0";
}

.ion-ios-train:before {
  content: "\f258";
}

.ion-ios-train-outline:before {
  content: "\f257";
}

.ion-ios-transgender:before {
  content: "\f259";
}

.ion-ios-transgender-outline:before {
  content: "\f259";
}

.ion-ios-trash:before {
  content: "\f4c5";
}

.ion-ios-trash-outline:before {
  content: "\f4c4";
}

.ion-ios-trending-down:before {
  content: "\f25a";
}

.ion-ios-trending-down-outline:before {
  content: "\f25a";
}

.ion-ios-trending-up:before {
  content: "\f25b";
}

.ion-ios-trending-up-outline:before {
  content: "\f25b";
}

.ion-ios-trophy:before {
  content: "\f25d";
}

.ion-ios-trophy-outline:before {
  content: "\f25c";
}

.ion-ios-umbrella:before {
  content: "\f25f";
}

.ion-ios-umbrella-outline:before {
  content: "\f25e";
}

.ion-ios-undo:before {
  content: "\f4c7";
}

.ion-ios-undo-outline:before {
  content: "\f4c6";
}

.ion-ios-unlock:before {
  content: "\f261";
}

.ion-ios-unlock-outline:before {
  content: "\f260";
}

.ion-ios-videocam:before {
  content: "\f4cd";
}

.ion-ios-videocam-outline:before {
  content: "\f4cc";
}

.ion-ios-volume-down:before {
  content: "\f262";
}

.ion-ios-volume-down-outline:before {
  content: "\f262";
}

.ion-ios-volume-mute:before {
  content: "\f263";
}

.ion-ios-volume-mute-outline:before {
  content: "\f263";
}

.ion-ios-volume-off:before {
  content: "\f264";
}

.ion-ios-volume-off-outline:before {
  content: "\f264";
}

.ion-ios-volume-up:before {
  content: "\f265";
}

.ion-ios-volume-up-outline:before {
  content: "\f265";
}

.ion-ios-walk:before {
  content: "\f266";
}

.ion-ios-walk-outline:before {
  content: "\f266";
}

.ion-ios-warning:before {
  content: "\f268";
}

.ion-ios-warning-outline:before {
  content: "\f267";
}

.ion-ios-watch:before {
  content: "\f269";
}

.ion-ios-watch-outline:before {
  content: "\f269";
}

.ion-ios-water:before {
  content: "\f26b";
}

.ion-ios-water-outline:before {
  content: "\f26a";
}

.ion-ios-wifi:before {
  content: "\f26d";
}

.ion-ios-wifi-outline:before {
  content: "\f26c";
}

.ion-ios-wine:before {
  content: "\f26f";
}

.ion-ios-wine-outline:before {
  content: "\f26e";
}

.ion-ios-woman:before {
  content: "\f271";
}

.ion-ios-woman-outline:before {
  content: "\f270";
}

.ion-logo-android:before {
  content: "\f225";
}

.ion-logo-angular:before {
  content: "\f227";
}

.ion-logo-apple:before {
  content: "\f229";
}

.ion-logo-bitcoin:before {
  content: "\f22b";
}

.ion-logo-buffer:before {
  content: "\f22d";
}

.ion-logo-chrome:before {
  content: "\f22f";
}

.ion-logo-codepen:before {
  content: "\f230";
}

.ion-logo-css3:before {
  content: "\f231";
}

.ion-logo-designernews:before {
  content: "\f232";
}

.ion-logo-dribbble:before {
  content: "\f233";
}

.ion-logo-dropbox:before {
  content: "\f234";
}

.ion-logo-euro:before {
  content: "\f235";
}

.ion-logo-facebook:before {
  content: "\f236";
}

.ion-logo-foursquare:before {
  content: "\f237";
}

.ion-logo-freebsd-devil:before {
  content: "\f238";
}

.ion-logo-github:before {
  content: "\f239";
}

.ion-logo-google:before {
  content: "\f23a";
}

.ion-logo-googleplus:before {
  content: "\f23b";
}

.ion-logo-hackernews:before {
  content: "\f23c";
}

.ion-logo-html5:before {
  content: "\f23d";
}

.ion-logo-instagram:before {
  content: "\f23e";
}

.ion-logo-javascript:before {
  content: "\f23f";
}

.ion-logo-linkedin:before {
  content: "\f240";
}

.ion-logo-markdown:before {
  content: "\f241";
}

.ion-logo-nodejs:before {
  content: "\f242";
}

.ion-logo-octocat:before {
  content: "\f243";
}

.ion-logo-pinterest:before {
  content: "\f244";
}

.ion-logo-playstation:before {
  content: "\f245";
}

.ion-logo-python:before {
  content: "\f246";
}

.ion-logo-reddit:before {
  content: "\f247";
}

.ion-logo-rss:before {
  content: "\f248";
}

.ion-logo-sass:before {
  content: "\f249";
}

.ion-logo-skype:before {
  content: "\f24a";
}

.ion-logo-snapchat:before {
  content: "\f24b";
}

.ion-logo-steam:before {
  content: "\f24c";
}

.ion-logo-tumblr:before {
  content: "\f24d";
}

.ion-logo-tux:before {
  content: "\f2ae";
}

.ion-logo-twitch:before {
  content: "\f2af";
}

.ion-logo-twitter:before {
  content: "\f2b0";
}

.ion-logo-usd:before {
  content: "\f2b1";
}

.ion-logo-vimeo:before {
  content: "\f2c4";
}

.ion-logo-whatsapp:before {
  content: "\f2c5";
}

.ion-logo-windows:before {
  content: "\f32f";
}

.ion-logo-wordpress:before {
  content: "\f330";
}

.ion-logo-xbox:before {
  content: "\f34c";
}

.ion-logo-yahoo:before {
  content: "\f34d";
}

.ion-logo-yen:before {
  content: "\f34e";
}

.ion-logo-youtube:before {
  content: "\f34f";
}

.ion-md-add:before {
  content: "\f273";
}

.ion-md-add-circle:before {
  content: "\f272";
}

.ion-md-alarm:before {
  content: "\f274";
}

.ion-md-albums:before {
  content: "\f275";
}

.ion-md-alert:before {
  content: "\f276";
}

.ion-md-american-football:before {
  content: "\f277";
}

.ion-md-analytics:before {
  content: "\f278";
}

.ion-md-aperture:before {
  content: "\f279";
}

.ion-md-apps:before {
  content: "\f27a";
}

.ion-md-appstore:before {
  content: "\f27b";
}

.ion-md-archive:before {
  content: "\f27c";
}

.ion-md-arrow-back:before {
  content: "\f27d";
}

.ion-md-arrow-down:before {
  content: "\f27e";
}

.ion-md-arrow-dropdown:before {
  content: "\f280";
}

.ion-md-arrow-dropdown-circle:before {
  content: "\f27f";
}

.ion-md-arrow-dropleft:before {
  content: "\f282";
}

.ion-md-arrow-dropleft-circle:before {
  content: "\f281";
}

.ion-md-arrow-dropright:before {
  content: "\f284";
}

.ion-md-arrow-dropright-circle:before {
  content: "\f283";
}

.ion-md-arrow-dropup:before {
  content: "\f286";
}

.ion-md-arrow-dropup-circle:before {
  content: "\f285";
}

.ion-md-arrow-forward:before {
  content: "\f287";
}

.ion-md-arrow-round-back:before {
  content: "\f288";
}

.ion-md-arrow-round-down:before {
  content: "\f289";
}

.ion-md-arrow-round-forward:before {
  content: "\f28a";
}

.ion-md-arrow-round-up:before {
  content: "\f28b";
}

.ion-md-arrow-up:before {
  content: "\f28c";
}

.ion-md-at:before {
  content: "\f28d";
}

.ion-md-attach:before {
  content: "\f28e";
}

.ion-md-backspace:before {
  content: "\f28f";
}

.ion-md-barcode:before {
  content: "\f290";
}

.ion-md-baseball:before {
  content: "\f291";
}

.ion-md-basket:before {
  content: "\f292";
}

.ion-md-basketball:before {
  content: "\f293";
}

.ion-md-battery-charging:before {
  content: "\f294";
}

.ion-md-battery-dead:before {
  content: "\f295";
}

.ion-md-battery-full:before {
  content: "\f296";
}

.ion-md-beaker:before {
  content: "\f297";
}

.ion-md-beer:before {
  content: "\f298";
}

.ion-md-bicycle:before {
  content: "\f299";
}

.ion-md-bluetooth:before {
  content: "\f29a";
}

.ion-md-boat:before {
  content: "\f29b";
}

.ion-md-body:before {
  content: "\f29c";
}

.ion-md-bonfire:before {
  content: "\f29d";
}

.ion-md-book:before {
  content: "\f29e";
}

.ion-md-bookmark:before {
  content: "\f29f";
}

.ion-md-bookmarks:before {
  content: "\f2a0";
}

.ion-md-bowtie:before {
  content: "\f2a1";
}

.ion-md-briefcase:before {
  content: "\f2a2";
}

.ion-md-browsers:before {
  content: "\f2a3";
}

.ion-md-brush:before {
  content: "\f2a4";
}

.ion-md-bug:before {
  content: "\f2a5";
}

.ion-md-build:before {
  content: "\f2a6";
}

.ion-md-bulb:before {
  content: "\f2a7";
}

.ion-md-bus:before {
  content: "\f2a8";
}

.ion-md-cafe:before {
  content: "\f2a9";
}

.ion-md-calculator:before {
  content: "\f2aa";
}

.ion-md-calendar:before {
  content: "\f2ab";
}

.ion-md-call:before {
  content: "\f2ac";
}

.ion-md-camera:before {
  content: "\f2ad";
}

.ion-md-car:before {
  content: "\f2b2";
}

.ion-md-card:before {
  content: "\f2b3";
}

.ion-md-cart:before {
  content: "\f2b4";
}

.ion-md-cash:before {
  content: "\f2b5";
}

.ion-md-chatboxes:before {
  content: "\f2b6";
}

.ion-md-chatbubbles:before {
  content: "\f2b7";
}

.ion-md-checkbox:before {
  content: "\f2b9";
}

.ion-md-checkbox-outline:before {
  content: "\f2b8";
}

.ion-md-checkmark:before {
  content: "\f2bc";
}

.ion-md-checkmark-circle:before {
  content: "\f2bb";
}

.ion-md-checkmark-circle-outline:before {
  content: "\f2ba";
}

.ion-md-clipboard:before {
  content: "\f2bd";
}

.ion-md-clock:before {
  content: "\f2be";
}

.ion-md-close:before {
  content: "\f2c0";
}

.ion-md-close-circle:before {
  content: "\f2bf";
}

.ion-md-closed-captioning:before {
  content: "\f2c1";
}

.ion-md-cloud:before {
  content: "\f2c9";
}

.ion-md-cloud-circle:before {
  content: "\f2c2";
}

.ion-md-cloud-done:before {
  content: "\f2c3";
}

.ion-md-cloud-download:before {
  content: "\f2c6";
}

.ion-md-cloud-outline:before {
  content: "\f2c7";
}

.ion-md-cloud-upload:before {
  content: "\f2c8";
}

.ion-md-cloudy:before {
  content: "\f2cb";
}

.ion-md-cloudy-night:before {
  content: "\f2ca";
}

.ion-md-code:before {
  content: "\f2ce";
}

.ion-md-code-download:before {
  content: "\f2cc";
}

.ion-md-code-working:before {
  content: "\f2cd";
}

.ion-md-cog:before {
  content: "\f2cf";
}

.ion-md-color-fill:before {
  content: "\f2d0";
}

.ion-md-color-filter:before {
  content: "\f2d1";
}

.ion-md-color-palette:before {
  content: "\f2d2";
}

.ion-md-color-wand:before {
  content: "\f2d3";
}

.ion-md-compass:before {
  content: "\f2d4";
}

.ion-md-construct:before {
  content: "\f2d5";
}

.ion-md-contact:before {
  content: "\f2d6";
}

.ion-md-contacts:before {
  content: "\f2d7";
}

.ion-md-contract:before {
  content: "\f2d8";
}

.ion-md-contrast:before {
  content: "\f2d9";
}

.ion-md-copy:before {
  content: "\f2da";
}

.ion-md-create:before {
  content: "\f2db";
}

.ion-md-crop:before {
  content: "\f2dc";
}

.ion-md-cube:before {
  content: "\f2dd";
}

.ion-md-cut:before {
  content: "\f2de";
}

.ion-md-desktop:before {
  content: "\f2df";
}

.ion-md-disc:before {
  content: "\f2e0";
}

.ion-md-document:before {
  content: "\f2e1";
}

.ion-md-done-all:before {
  content: "\f2e2";
}

.ion-md-download:before {
  content: "\f2e3";
}

.ion-md-easel:before {
  content: "\f2e4";
}

.ion-md-egg:before {
  content: "\f2e5";
}

.ion-md-exit:before {
  content: "\f2e6";
}

.ion-md-expand:before {
  content: "\f2e7";
}

.ion-md-eye:before {
  content: "\f2e9";
}

.ion-md-eye-off:before {
  content: "\f2e8";
}

.ion-md-fastforward:before {
  content: "\f2ea";
}

.ion-md-female:before {
  content: "\f2eb";
}

.ion-md-filing:before {
  content: "\f2ec";
}

.ion-md-film:before {
  content: "\f2ed";
}

.ion-md-finger-print:before {
  content: "\f2ee";
}

.ion-md-flag:before {
  content: "\f2ef";
}

.ion-md-flame:before {
  content: "\f2f0";
}

.ion-md-flash:before {
  content: "\f2f1";
}

.ion-md-flask:before {
  content: "\f2f2";
}

.ion-md-flower:before {
  content: "\f2f3";
}

.ion-md-folder:before {
  content: "\f2f5";
}

.ion-md-folder-open:before {
  content: "\f2f4";
}

.ion-md-football:before {
  content: "\f2f6";
}

.ion-md-funnel:before {
  content: "\f2f7";
}

.ion-md-game-controller-a:before {
  content: "\f2f8";
}

.ion-md-game-controller-b:before {
  content: "\f2f9";
}

.ion-md-git-branch:before {
  content: "\f2fa";
}

.ion-md-git-commit:before {
  content: "\f2fb";
}

.ion-md-git-compare:before {
  content: "\f2fc";
}

.ion-md-git-merge:before {
  content: "\f2fd";
}

.ion-md-git-network:before {
  content: "\f2fe";
}

.ion-md-git-pull-request:before {
  content: "\f2ff";
}

.ion-md-glasses:before {
  content: "\f300";
}

.ion-md-globe:before {
  content: "\f301";
}

.ion-md-grid:before {
  content: "\f302";
}

.ion-md-hammer:before {
  content: "\f303";
}

.ion-md-hand:before {
  content: "\f304";
}

.ion-md-happy:before {
  content: "\f305";
}

.ion-md-headset:before {
  content: "\f306";
}

.ion-md-heart:before {
  content: "\f308";
}

.ion-md-heart-outline:before {
  content: "\f307";
}

.ion-md-help:before {
  content: "\f30b";
}

.ion-md-help-buoy:before {
  content: "\f309";
}

.ion-md-help-circle:before {
  content: "\f30a";
}

.ion-md-home:before {
  content: "\f30c";
}

.ion-md-ice-cream:before {
  content: "\f30d";
}

.ion-md-image:before {
  content: "\f30e";
}

.ion-md-images:before {
  content: "\f30f";
}

.ion-md-infinite:before {
  content: "\f310";
}

.ion-md-information:before {
  content: "\f312";
}

.ion-md-information-circle:before {
  content: "\f311";
}

.ion-md-ionic:before {
  content: "\f313";
}

.ion-md-ionitron:before {
  content: "\f314";
}

.ion-md-jet:before {
  content: "\f315";
}

.ion-md-key:before {
  content: "\f316";
}

.ion-md-keypad:before {
  content: "\f317";
}

.ion-md-laptop:before {
  content: "\f318";
}

.ion-md-leaf:before {
  content: "\f319";
}

.ion-md-link:before {
  content: "\f22e";
}

.ion-md-list:before {
  content: "\f31b";
}

.ion-md-list-box:before {
  content: "\f31a";
}

.ion-md-locate:before {
  content: "\f31c";
}

.ion-md-lock:before {
  content: "\f31d";
}

.ion-md-log-in:before {
  content: "\f31e";
}

.ion-md-log-out:before {
  content: "\f31f";
}

.ion-md-magnet:before {
  content: "\f320";
}

.ion-md-mail:before {
  content: "\f322";
}

.ion-md-mail-open:before {
  content: "\f321";
}

.ion-md-male:before {
  content: "\f323";
}

.ion-md-man:before {
  content: "\f324";
}

.ion-md-map:before {
  content: "\f325";
}

.ion-md-medal:before {
  content: "\f326";
}

.ion-md-medical:before {
  content: "\f327";
}

.ion-md-medkit:before {
  content: "\f328";
}

.ion-md-megaphone:before {
  content: "\f329";
}

.ion-md-menu:before {
  content: "\f32a";
}

.ion-md-mic:before {
  content: "\f32c";
}

.ion-md-mic-off:before {
  content: "\f32b";
}

.ion-md-microphone:before {
  content: "\f32d";
}

.ion-md-moon:before {
  content: "\f32e";
}

.ion-md-more:before {
  content: "\f1c9";
}

.ion-md-move:before {
  content: "\f331";
}

.ion-md-musical-note:before {
  content: "\f332";
}

.ion-md-musical-notes:before {
  content: "\f333";
}

.ion-md-navigate:before {
  content: "\f334";
}

.ion-md-no-smoking:before {
  content: "\f335";
}

.ion-md-notifications:before {
  content: "\f338";
}

.ion-md-notifications-off:before {
  content: "\f336";
}

.ion-md-notifications-outline:before {
  content: "\f337";
}

.ion-md-nuclear:before {
  content: "\f339";
}

.ion-md-nutrition:before {
  content: "\f33a";
}

.ion-md-open:before {
  content: "\f33b";
}

.ion-md-options:before {
  content: "\f33c";
}

.ion-md-outlet:before {
  content: "\f33d";
}

.ion-md-paper:before {
  content: "\f33f";
}

.ion-md-paper-plane:before {
  content: "\f33e";
}

.ion-md-partly-sunny:before {
  content: "\f340";
}

.ion-md-pause:before {
  content: "\f341";
}

.ion-md-paw:before {
  content: "\f342";
}

.ion-md-people:before {
  content: "\f343";
}

.ion-md-person:before {
  content: "\f345";
}

.ion-md-person-add:before {
  content: "\f344";
}

.ion-md-phone-landscape:before {
  content: "\f346";
}

.ion-md-phone-portrait:before {
  content: "\f347";
}

.ion-md-photos:before {
  content: "\f348";
}

.ion-md-pie:before {
  content: "\f349";
}

.ion-md-pin:before {
  content: "\f34a";
}

.ion-md-pint:before {
  content: "\f34b";
}

.ion-md-pizza:before {
  content: "\f354";
}

.ion-md-plane:before {
  content: "\f355";
}

.ion-md-planet:before {
  content: "\f356";
}

.ion-md-play:before {
  content: "\f357";
}

.ion-md-podium:before {
  content: "\f358";
}

.ion-md-power:before {
  content: "\f359";
}

.ion-md-pricetag:before {
  content: "\f35a";
}

.ion-md-pricetags:before {
  content: "\f35b";
}

.ion-md-print:before {
  content: "\f35c";
}

.ion-md-pulse:before {
  content: "\f35d";
}

.ion-md-qr-scanner:before {
  content: "\f35e";
}

.ion-md-quote:before {
  content: "\f35f";
}

.ion-md-radio:before {
  content: "\f362";
}

.ion-md-radio-button-off:before {
  content: "\f360";
}

.ion-md-radio-button-on:before {
  content: "\f361";
}

.ion-md-rainy:before {
  content: "\f363";
}

.ion-md-recording:before {
  content: "\f364";
}

.ion-md-redo:before {
  content: "\f365";
}

.ion-md-refresh:before {
  content: "\f366";
}

.ion-md-refresh-circle:before {
  content: "\f228";
}

.ion-md-remove:before {
  content: "\f368";
}

.ion-md-remove-circle:before {
  content: "\f367";
}

.ion-md-reorder:before {
  content: "\f369";
}

.ion-md-repeat:before {
  content: "\f36a";
}

.ion-md-resize:before {
  content: "\f36b";
}

.ion-md-restaurant:before {
  content: "\f36c";
}

.ion-md-return-left:before {
  content: "\f36d";
}

.ion-md-return-right:before {
  content: "\f36e";
}

.ion-md-reverse-camera:before {
  content: "\f36f";
}

.ion-md-rewind:before {
  content: "\f370";
}

.ion-md-ribbon:before {
  content: "\f371";
}

.ion-md-rose:before {
  content: "\f372";
}

.ion-md-sad:before {
  content: "\f373";
}

.ion-md-school:before {
  content: "\f374";
}

.ion-md-search:before {
  content: "\f375";
}

.ion-md-send:before {
  content: "\f376";
}

.ion-md-settings:before {
  content: "\f377";
}

.ion-md-share:before {
  content: "\f379";
}

.ion-md-share-alt:before {
  content: "\f378";
}

.ion-md-shirt:before {
  content: "\f37a";
}

.ion-md-shuffle:before {
  content: "\f37b";
}

.ion-md-skip-backward:before {
  content: "\f37c";
}

.ion-md-skip-forward:before {
  content: "\f37d";
}

.ion-md-snow:before {
  content: "\f37e";
}

.ion-md-speedometer:before {
  content: "\f37f";
}

.ion-md-square:before {
  content: "\f381";
}

.ion-md-square-outline:before {
  content: "\f380";
}

.ion-md-star:before {
  content: "\f384";
}

.ion-md-star-half:before {
  content: "\f382";
}

.ion-md-star-outline:before {
  content: "\f383";
}

.ion-md-stats:before {
  content: "\f385";
}

.ion-md-stopwatch:before {
  content: "\f386";
}

.ion-md-subway:before {
  content: "\f387";
}

.ion-md-sunny:before {
  content: "\f388";
}

.ion-md-swap:before {
  content: "\f389";
}

.ion-md-switch:before {
  content: "\f38a";
}

.ion-md-sync:before {
  content: "\f38b";
}

.ion-md-tablet-landscape:before {
  content: "\f38c";
}

.ion-md-tablet-portrait:before {
  content: "\f38d";
}

.ion-md-tennisball:before {
  content: "\f38e";
}

.ion-md-text:before {
  content: "\f38f";
}

.ion-md-thermometer:before {
  content: "\f390";
}

.ion-md-thumbs-down:before {
  content: "\f391";
}

.ion-md-thumbs-up:before {
  content: "\f392";
}

.ion-md-thunderstorm:before {
  content: "\f393";
}

.ion-md-time:before {
  content: "\f394";
}

.ion-md-timer:before {
  content: "\f395";
}

.ion-md-train:before {
  content: "\f396";
}

.ion-md-transgender:before {
  content: "\f397";
}

.ion-md-trash:before {
  content: "\f398";
}

.ion-md-trending-down:before {
  content: "\f399";
}

.ion-md-trending-up:before {
  content: "\f39a";
}

.ion-md-trophy:before {
  content: "\f39b";
}

.ion-md-umbrella:before {
  content: "\f39c";
}

.ion-md-undo:before {
  content: "\f39d";
}

.ion-md-unlock:before {
  content: "\f39e";
}

.ion-md-videocam:before {
  content: "\f39f";
}

.ion-md-volume-down:before {
  content: "\f3a0";
}

.ion-md-volume-mute:before {
  content: "\f3a1";
}

.ion-md-volume-off:before {
  content: "\f3a2";
}

.ion-md-volume-up:before {
  content: "\f3a3";
}

.ion-md-walk:before {
  content: "\f3a4";
}

.ion-md-warning:before {
  content: "\f3a5";
}

.ion-md-watch:before {
  content: "\f3a6";
}

.ion-md-water:before {
  content: "\f3a7";
}

.ion-md-wifi:before {
  content: "\f3a8";
}

.ion-md-wine:before {
  content: "\f3a9";
}

.ion-md-woman:before {
  content: "\f3aa";
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("../assets/fonts/roboto-light.woff2") format("woff2"), url("../assets/fonts/roboto-light.woff") format("woff"), url("../assets/fonts/roboto-light.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("../assets/fonts/roboto-regular.woff2") format("woff2"), url("../assets/fonts/roboto-regular.woff") format("woff"), url("../assets/fonts/roboto-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../assets/fonts/roboto-medium.woff2") format("woff2"), url("../assets/fonts/roboto-medium.woff") format("woff"), url("../assets/fonts/roboto-medium.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../assets/fonts/roboto-bold.woff2") format("woff2"), url("../assets/fonts/roboto-bold.woff") format("woff"), url("../assets/fonts/roboto-bold.ttf") format("truetype");
}

@font-face {
  font-family: Comfortaa;
  src: url(../assets/fonts/OpenSans/OpenSans-Light.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: Comfortaa;
  src: url(../assets/fonts/OpenSans/OpenSans-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: Comfortaa;
  src: url(../assets/fonts/OpenSans/OpenSans-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
}

ion-action-sheet {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
}

.action-sheet-wrapper {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 500px;
  pointer-events: none;
}

.action-sheet-button {
  width: 100%;
}

.action-sheet-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  max-height: 100%;
}

.action-sheet-group {
  overflow: scroll;
  -webkit-flex-shrink: 2;
  -ms-flex-negative: 2;
  flex-shrink: 2;
  pointer-events: all;
}

.action-sheet-group-cancel {
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.action-sheet-ios {
  text-align: center;
}

.action-sheet-ios .action-sheet-wrapper {
  margin: constant(safe-area-inset-top) auto constant(safe-area-inset-bottom);
  margin: env(safe-area-inset-top) auto env(safe-area-inset-bottom);
}

.action-sheet-ios .action-sheet-container {
  padding: 0 10px;
}

.action-sheet-ios .action-sheet-group {
  border-radius: 13px;
  margin-bottom: 8px;
  background: white;
}

.action-sheet-ios .action-sheet-group:first-child {
  margin-top: 10px;
}

.action-sheet-ios .action-sheet-group:last-child {
  margin-bottom: 10px;
}

.action-sheet-ios .action-sheet-title {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0;
  border-bottom: 0.55px solid #d6d6da;
  font-size: 1.3rem;
  font-weight: 400;
  color: #8f8f8f;
}

.action-sheet-ios .action-sheet-button {
  margin: 0;
  padding: 18px;
  min-height: 5.6rem;
  border-bottom: 0.55px solid #d6d6da;
  font-size: 2rem;
  color: #30384c;
  background: transparent;
}

.action-sheet-ios .action-sheet-button:last-child {
  border-bottom-color: transparent;
}

.action-sheet-ios .action-sheet-button.activated {
  margin-top: -0.55px;
  border-top: 0.55px solid white;
  border-bottom-color: white;
  background: white;
}

.action-sheet-ios .action-sheet-selected {
  font-weight: bold;
  background: #fff;
}

.action-sheet-ios .action-sheet-destructive {
  color: #30384c;
}

.action-sheet-ios .action-sheet-cancel {
  font-weight: 600;
  background: white;
}

.action-sheet-md .action-sheet-title {
  text-align: left;
  text-align: start;
  font-size: 1.6rem;
  color: #757575;
  padding: 11px 16px 17px;
}

.action-sheet-md .action-sheet-button {
  text-align: left;
  text-align: start;
  position: relative;
  overflow: hidden;
  min-height: 4.8rem;
  font-size: 1.6rem;
  color: #30384c;
  background: white;
  padding: 0 16px;
}

.action-sheet-md .action-sheet-button.activated {
  background: white;
}

.action-sheet-md .action-sheet-icon {
  padding: 0;
  text-align: center;
  width: 2.3rem;
  font-size: 2.4rem;
  vertical-align: middle;
  margin: 0 32px 0 0;
}

.action-sheet-md .action-sheet-group {
  background: white;
}

.action-sheet-md .action-sheet-group:first-child {
  padding-top: 0.8rem;
}

.action-sheet-md .action-sheet-group:last-child {
  padding-bottom: 0.8rem;
}

.action-sheet-md .action-sheet-group .button-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.action-sheet-md .action-sheet-selected {
  font-weight: bold;
}

.action-sheet-wp .action-sheet-title {
  text-align: left;
  text-align: start;
  font-size: 2rem;
  color: #4d4d4d;
  padding: 11px 16px 17px;
}

.action-sheet-wp .action-sheet-button {
  text-align: left;
  text-align: start;
  min-height: 4.8rem;
  font-size: 1.5rem;
  color: #4d4d4d;
  background: transparent;
  padding: 0 16px;
}

.action-sheet-wp .action-sheet-button.activated {
  background: #aaa;
}

.action-sheet-wp .action-sheet-icon {
  padding: 0;
  text-align: center;
  width: 2.3rem;
  font-size: 2.4rem;
  vertical-align: middle;
  margin: 0 20px 0 0;
}

.action-sheet-wp .action-sheet-group {
  background: #fff;
}

.action-sheet-wp .action-sheet-group:first-child {
  padding-top: 0.8rem;
  -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.action-sheet-wp .action-sheet-group:last-child {
  padding-bottom: 0.8rem;
}

.action-sheet-wp .action-sheet-group .button-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.action-sheet-wp .action-sheet-selected {
  font-weight: bold;
}

.action-sheet-wp .action-sheet-cancel {
  background: transparent;
}

ion-alert {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

ion-alert.alert-top {
  padding-top: 50px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

ion-alert input {
  width: 100%;
}

.alert-wrapper {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 250px;
  max-height: 90%;
  opacity: 0;
  contain: content;
}

.alert-title {
  margin: 0;
  padding: 0;
}

.alert-sub-title {
  margin: 5px 0 0;
  padding: 0;
  font-weight: normal;
}

.alert-message {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.alert-input {
  padding: 10px 0;
  border: 0;
  background: inherit;
}

.alert-input::-moz-placeholder {
  color: #999;
}

.alert-input:-ms-input-placeholder {
  color: #999;
}

.alert-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #999;
}

.alert-button-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.alert-button-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.alert-button {
  margin: 0;
  z-index: 0;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.alert-tappable {
  text-align: left;
  text-align: start;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: inherit;
  line-height: initial;
  background: transparent;
}

.alert-ios .alert-wrapper {
  border-radius: 13px;
  overflow: hidden;
  max-width: 270px;
  background-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.alert-ios .alert-head {
  text-align: center;
  padding: 12px 16px 7px;
}

.alert-ios .alert-title {
  margin-top: 8px;
  font-size: 15px !important;
  font-weight: 600;
}

.alert-ios .alert-sub-title {
  font-size: 14px;
  color: #666;
}

.alert-ios .alert-message,
.alert-ios .alert-input-group {
  text-align: center;
  font-size: 13px;
  color: #0167b1 !important;
  padding: 0 16px 21px;
}

.alert-ios .alert-message {
  max-height: 240px;
}

.alert-ios .alert-message:empty {
  padding: 0 0 12px;
}

.alert-ios .alert-input {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 10px;
  border-radius: 4px;
  border: 0.55px solid #c7c7cc !important;
  background-color: #fff;
  padding: 6px;
}

.alert-ios .alert-radio-group,
.alert-ios .alert-checkbox-group {
  overflow: scroll;
  max-height: 240px;
  border-top: 0.55px solid #dbdbdf;
  -webkit-overflow-scrolling: touch;
}

.alert-ios .alert-tappable {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 44px;
}

.alert-ios .alert-radio-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #30384c;
  padding: 13px;
}

.alert-ios [aria-checked=true] .alert-radio-label {
  color: #0167b1 !important;
}

.alert-ios .alert-radio-icon {
  position: relative;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 30px;
}

.alert-ios [aria-checked=true] .alert-radio-inner {
  left: 7px;
  top: -7px;
  position: absolute;
  width: 6px;
  height: 12px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #0167b1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-ios .alert-checkbox-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #30384c;
  padding: 13px;
}

.alert-ios [aria-checked=true] .alert-checkbox-label {
  color: #0167b1;
}

.alert-ios .alert-checkbox-icon {
  border-radius: 50%;
  position: relative;
  width: 21px;
  height: 21px;
  border-width: 0.55px;
  border-style: solid;
  border-color: #7f8490;
  background-color: white;
  margin: 10px 6px 10px 16px;
}

.alert-ios [aria-checked=true] .alert-checkbox-icon {
  border-color: #0167b1;
  background-color: #0167b1;
}

.alert-ios [aria-checked=true] .alert-checkbox-inner {
  left: 7px;
  top: 4px;
  position: absolute;
  width: 4px;
  height: 9px;
  border-width: 0.55px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-ios .alert-button-group {
  margin-right: -0.55px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.alert-ios .alert-button {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 50%;
  height: 44px;
  border-top: 0.55px solid #dbdbdf;
  border-right: 0.55px solid #dbdbdf;
  font-size: 17px;
  color: #0167b1;
  background-color: transparent;
}

.alert-ios .alert-button:last-child {
  border-right: 0;
  font-weight: bold;
}

.alert-ios .alert-button.activated {
  background-color: #e9e9e9;
}

.alert-md .alert-wrapper {
  border-radius: 2px;
  max-width: 280px;
  background-color: white;
  -webkit-box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
}

.alert-md .alert-head {
  text-align: left;
  text-align: start;
  padding: 24px 24px 20px;
}

.alert-md .alert-title {
  font-size: 15px !important;
}

.alert-md .alert-sub-title {
  font-size: 16px;
}

.alert-md .alert-message,
.alert-md .alert-input-group {
  color: #0167b1;
  padding: 0 24px 24px;
}

.alert-md .alert-message {
  max-height: 240px;
  font-size: 15px;
}

.alert-md .alert-message:empty {
  padding: 0;
}

.alert-md .alert-input {
  margin: 5px 0;
  border-bottom: 1px solid #c7c7cc !important;
  color: #000;
}

.alert-md .alert-input:focus {
  margin-bottom: 4px;
  border-bottom: 2px solid #0167b1;
}

.alert-md .alert-radio-group,
.alert-md .alert-checkbox-group {
  position: relative;
  overflow: auto;
  max-height: 240px;
  border-top: 1px solid #c7c7cc !important;
  border-bottom: 1px solid #c7c7cc !important;
}

.alert-md .alert-tappable {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 4.4rem;
}

.alert-md .alert-radio-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #30384c;
  padding: 13px 26px;
}

.alert-md .alert-radio-icon {
  left: 13px;
  top: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #7f8490 !important;
}

.alert-md .alert-radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #0167b1 !important;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-md [aria-checked=true] .alert-radio-label {
  color: #0167b1 !important;
}

.alert-md [aria-checked=true] .alert-radio-icon {
  border-color: #0167b1 !important;
}

.alert-md [aria-checked=true] .alert-radio-inner {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.alert-md .alert-checkbox-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #30384c;
  padding: 13px 26px;
}

.alert-md [aria-checked=true] .alert-checkbox-label {
  color: #0167b1;
}

.alert-md .alert-checkbox-icon {
  left: 13px;
  top: 0;
  border-radius: 2px;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #7f8490;
}

.alert-md [aria-checked=true] .alert-checkbox-icon {
  border-color: #0167b1;
  background-color: #0167b1;
}

.alert-md [aria-checked=true] .alert-checkbox-inner {
  left: 3px;
  top: 0;
  position: absolute;
  width: 6px;
  height: 10px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-md .alert-button-group {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 8px 8px 8px 24px;
}

.alert-md .alert-button {
  text-align: right;
  text-align: end;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  text-transform: uppercase;
  color: #0167b1;
  background-color: transparent;
  margin: 0 8px 0 0;
  padding: 10px;
}

.alert-md .alert-button.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.alert-md .alert-button .button-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.alert-wp ion-backdrop {
  background: #fff;
}

.alert-wp .alert-wrapper {
  border-radius: 0;
  width: 100%;
  max-width: 520px;
  border: 1px solid #0167b1;
  background: #e6e6e6;
}

.alert-wp .alert-head {
  text-align: left;
  text-align: start;
  padding: 20px 22px 5px;
}

.alert-wp .alert-title {
  font-size: 20px;
  font-weight: 400;
}

.alert-wp .alert-sub-title {
  font-size: 16px;
}

.alert-wp .alert-message,
.alert-wp .alert-input-group {
  color: #000;
  padding: 0 22px 8px;
}

.alert-wp .alert-message {
  max-height: 240px;
  font-size: 13px;
}

.alert-wp .alert-message:empty {
  padding: 0;
}

.alert-wp .alert-input {
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
  color: #000;
  margin: 5px 0;
  padding: 0 8px;
}

.alert-wp .alert-input:focus {
  border-color: #0167b1;
}

.alert-wp .alert-radio-group,
.alert-wp .alert-checkbox-group {
  position: relative;
  overflow: auto;
  max-height: 240px;
}

.alert-wp .alert-tappable {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 4.4rem;
}

.alert-wp .alert-radio-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px 26px;
}

.alert-wp .alert-radio-icon {
  left: 13px;
  top: 0;
  margin: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
}

.alert-wp .alert-radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  display: none;
  width: 8px;
  height: 8px;
  background: #0167b1;
}

.alert-wp [aria-checked=true] .alert-radio-label {
  color: #000;
}

.alert-wp [aria-checked=true] .alert-radio-icon {
  border-color: rgba(0, 0, 0, 0.5);
}

.alert-wp [aria-checked=true] .alert-radio-inner {
  display: block;
}

.alert-wp .alert-checkbox-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px 26px;
}

.alert-wp [aria-checked=true] .alert-checkbox-label {
  color: initial;
}

.alert-wp .alert-checkbox-icon {
  left: 13px;
  top: 0;
  border-radius: 0;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  background: transparent;
}

.alert-wp [aria-checked=true] .alert-checkbox-icon {
  border-color: #0167b1;
  background: #0167b1;
}

.alert-wp [aria-checked=true] .alert-checkbox-inner {
  left: 3px;
  top: -2px;
  position: absolute;
  width: 6px;
  height: 12px;
  border-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-wp .alert-button-group {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px 22px;
}

.alert-wp .alert-button-group-vertical .alert-button {
  margin-top: 5px;
  width: 100%;
}

.alert-wp .alert-button-group-vertical .alert-button:first-child:not(:only-child) {
  margin-right: 0;
  margin-top: 0;
}

.alert-wp .alert-button {
  border-radius: 0;
  width: 49.5%;
  font-weight: 400;
  color: #000;
  background: #b8b8b8;
  padding: 5px;
}

.alert-wp .alert-button:first-child:not(:only-child) {
  margin-right: 1%;
}

.alert-wp .alert-button.activated {
  background: darkgray;
}

audio,
canvas,
progress,
video {
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  height: 1px;
  border-width: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

label,
input,
select,
textarea {
  font-family: inherit;
  line-height: normal;
}

textarea {
  overflow: auto;
  height: auto;
  font: inherit;
  color: inherit;
}

textarea::-webkit-input-placeholder {
  padding-left: 2px;
}

textarea::-moz-placeholder {
  padding-left: 2px;
}

textarea::-ms-input-placeholder {
  padding-left: 2px;
}

textarea::placeholder {
  padding-left: 2px;
}

form,
input,
optgroup,
select {
  margin: 0;
  font: inherit;
  color: inherit;
}

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

a,
a div,
a span,
a ion-icon,
a ion-label,
button,
button div,
button span,
button ion-icon,
button ion-label,
[tappable],
[tappable] div,
[tappable] span,
[tappable] ion-icon,
[tappable] ion-label,
input,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

a ion-label,
button ion-label {
  pointer-events: none;
}

button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}

[tappable] {
  cursor: pointer;
}

a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

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

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.hide,
[hidden],
template {
  display: none !important;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

:focus,
:active {
  outline: none;
}

.focus-outline :focus {
  outline: thin dotted;
  outline-offset: -1px;
}

.focus-outline button:focus,
.focus-outline [ion-button]:focus {
  border-color: #51a7e8;
  outline: 2px solid #51a7e8;
  -webkit-box-shadow: 0 0 8px 1px #51a7e8;
  box-shadow: 0 0 8px 1px #51a7e8;
}

ion-input :focus {
  outline: none;
}

.click-block {
  display: none;
}

.click-block-enabled {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translate3d(0,  -100%,  0) translateY(1px);
  transform: translate3d(0,  -100%,  0) translateY(1px);
  position: absolute;
  z-index: 99999;
  display: block;
  opacity: 0;
  contain: strict;
}

.click-block-active {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  position: fixed;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  background-color: transparent;
}

.enable-hover a:hover {
  opacity: .7;
}

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

[padding] h1:first-child,
[padding] h2:first-child,
[padding] h3:first-child,
[padding] h4:first-child,
[padding] h5:first-child,
[padding] h6:first-child {
  margin-top: -0.3rem;
}

h1 + h2,
h1 + h3,
h2 + h3 {
  margin-top: -0.3rem;
}

h1 {
  margin-top: 2rem;
  font-size: 34px;
}

h2 {
  margin-top: 1.8rem;
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 13px;
}

h6 {
  font-size: 12px;
}

small {
  font-size: 75%;
}

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

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

ion-app,
ion-nav,
ion-tab,
ion-tabs,
.app-root {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

ion-nav,
ion-tab,
ion-tabs {
  overflow: hidden;
}

ion-tab {
  display: none;
}

ion-tab.show-tab {
  display: block;
}

ion-app,
ion-nav,
ion-tab,
ion-tabs,
.app-root,
.ion-page {
  contain: strict;
}

.ion-page {
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.ion-page.show-page {
  opacity: 1;
}

ion-header {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
}

ion-footer {
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
}

[app-viewport],
[overlay-portal],
[nav-viewport],
[tab-portal],
.nav-decor {
  display: none;
}

[text-center] {
  text-align: center !important;
}

[text-justify] {
  text-align: justify !important;
}

[text-start] {
  text-align: left;
  text-align: start !important;
}

[text-end] {
  text-align: right;
  text-align: end !important;
}

[text-left] {
  text-align: left !important;
}

[text-right] {
  text-align: right !important;
}

[text-nowrap] {
  white-space: nowrap !important;
}

[text-wrap] {
  white-space: normal !important;
}

@media (min-width: 576px) {
  [text-sm-center] {
    text-align: center !important;
  }
  [text-sm-justify] {
    text-align: justify !important;
  }
  [text-sm-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-sm-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-sm-left] {
    text-align: left !important;
  }
  [text-sm-right] {
    text-align: right !important;
  }
  [text-sm-nowrap] {
    white-space: nowrap !important;
  }
  [text-sm-wrap] {
    white-space: normal !important;
  }
}

@media (min-width: 768px) {
  [text-md-center] {
    text-align: center !important;
  }
  [text-md-justify] {
    text-align: justify !important;
  }
  [text-md-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-md-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-md-left] {
    text-align: left !important;
  }
  [text-md-right] {
    text-align: right !important;
  }
  [text-md-nowrap] {
    white-space: nowrap !important;
  }
  [text-md-wrap] {
    white-space: normal !important;
  }
}

@media (min-width: 992px) {
  [text-lg-center] {
    text-align: center !important;
  }
  [text-lg-justify] {
    text-align: justify !important;
  }
  [text-lg-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-lg-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-lg-left] {
    text-align: left !important;
  }
  [text-lg-right] {
    text-align: right !important;
  }
  [text-lg-nowrap] {
    white-space: nowrap !important;
  }
  [text-lg-wrap] {
    white-space: normal !important;
  }
}

@media (min-width: 1200px) {
  [text-xl-center] {
    text-align: center !important;
  }
  [text-xl-justify] {
    text-align: justify !important;
  }
  [text-xl-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-xl-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-xl-left] {
    text-align: left !important;
  }
  [text-xl-right] {
    text-align: right !important;
  }
  [text-xl-nowrap] {
    white-space: nowrap !important;
  }
  [text-xl-wrap] {
    white-space: normal !important;
  }
}

[text-uppercase] {
  text-transform: uppercase !important;
}

[text-lowercase] {
  text-transform: lowercase !important;
}

[text-capitalize] {
  text-transform: capitalize !important;
}

@media (min-width: 576px) {
  [text-sm-uppercase] {
    text-transform: uppercase !important;
  }
  [text-sm-lowercase] {
    text-transform: lowercase !important;
  }
  [text-sm-capitalize] {
    text-transform: capitalize !important;
  }
}

@media (min-width: 768px) {
  [text-md-uppercase] {
    text-transform: uppercase !important;
  }
  [text-md-lowercase] {
    text-transform: lowercase !important;
  }
  [text-md-capitalize] {
    text-transform: capitalize !important;
  }
}

@media (min-width: 992px) {
  [text-lg-uppercase] {
    text-transform: uppercase !important;
  }
  [text-lg-lowercase] {
    text-transform: lowercase !important;
  }
  [text-lg-capitalize] {
    text-transform: capitalize !important;
  }
}

@media (min-width: 1200px) {
  [text-xl-uppercase] {
    text-transform: uppercase !important;
  }
  [text-xl-lowercase] {
    text-transform: lowercase !important;
  }
  [text-xl-capitalize] {
    text-transform: capitalize !important;
  }
}

[float-left] {
  float: left !important;
}

[float-right] {
  float: right !important;
}

[float-start] {
  float: left !important;
}

[float-end] {
  float: right !important;
}

@media (min-width: 576px) {
  [float-sm-left] {
    float: left !important;
  }
  [float-sm-right] {
    float: right !important;
  }
  [float-sm-start] {
    float: left !important;
  }
  [float-sm-end] {
    float: right !important;
  }
}

@media (min-width: 768px) {
  [float-md-left] {
    float: left !important;
  }
  [float-md-right] {
    float: right !important;
  }
  [float-md-start] {
    float: left !important;
  }
  [float-md-end] {
    float: right !important;
  }
}

@media (min-width: 992px) {
  [float-lg-left] {
    float: left !important;
  }
  [float-lg-right] {
    float: right !important;
  }
  [float-lg-start] {
    float: left !important;
  }
  [float-lg-end] {
    float: right !important;
  }
}

@media (min-width: 1200px) {
  [float-xl-left] {
    float: left !important;
  }
  [float-xl-right] {
    float: right !important;
  }
  [float-xl-start] {
    float: left !important;
  }
  [float-xl-end] {
    float: right !important;
  }
}

ion-app.ios {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.4rem;
  background-color: white;
}

ion-app.md {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.4rem;
  background-color: white;
}

ion-app.wp {
  font-family: "Segoe UI", "Noto Sans", sans-serif;
  font-size: 1.4rem;
  background-color: white;
}

ion-backdrop {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .01;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-backdrop.backdrop-no-tappable {
  cursor: auto;
}

ion-badge {
  padding: 3px 8px;
  text-align: center;
  display: inline-block;
  min-width: 10px;
  font-size: 13px !important;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
}

ion-badge:empty {
  display: none;
}

.badge-ios {
  border-radius: 10px;
  color: #fff;
  background-color: #0167b1;
}

.badge-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.badge-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.badge-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.badge-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.badge-ios-dark {
  color: #fff;
  background-color: #444444;
}

.badge-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.badge-ios-success {
  color: #fff;
  background-color: green;
}

.badge-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.badge-ios-danger {
  color: #fff;
  background-color: tomato;
}

.badge-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.badge-md {
  border-radius: 4px;
  color: #fff;
  background-color: #0167b1;
}

.badge-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.badge-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.badge-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.badge-md-light {
  color: #000;
  background-color: ghostwhite;
}

.badge-md-dark {
  color: #fff;
  background-color: #444444;
}

.badge-md-indicator {
  color: #fff;
  background-color: #666666;
}

.badge-md-success {
  color: #fff;
  background-color: green;
}

.badge-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.badge-md-danger {
  color: #fff;
  background-color: tomato;
}

.badge-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.badge-wp {
  border-radius: 0;
  color: #fff;
  background-color: #0167b1;
}

.badge-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.badge-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.badge-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.badge-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.badge-wp-dark {
  color: #fff;
  background-color: #444444;
}

.badge-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.badge-wp-success {
  color: #fff;
  background-color: green;
}

.badge-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.badge-wp-danger {
  color: #fff;
  background-color: tomato;
}

.badge-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.button {
  text-align: center;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 0;
  display: inline-block;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: top;
  vertical-align: -webkit-baseline-middle;
  -webkit-transition: background-color, opacity 100ms linear;
  transition: background-color, opacity 100ms linear;
  -webkit-font-kerning: none;
  font-kerning: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: content;
}

.button-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

[ion-button] {
  text-decoration: none;
}

a[disabled],
button[disabled],
[ion-button][disabled] {
  cursor: default;
  opacity: .4;
  pointer-events: none;
}

.button-block {
  display: block;
  clear: both;
  width: 100%;
  contain: strict;
}

.button-block::after {
  clear: both;
}

.button-full {
  display: block;
  width: 100%;
  contain: strict;
}

.button-full.button-outline {
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

[icon-left] ion-icon,
[icon-start] ion-icon {
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
  padding-right: 0.3em;
}

[icon-right] ion-icon,
[icon-end] ion-icon {
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
  padding-left: 0.4em;
}

.button[icon-only] {
  padding: 0;
  min-width: .9em;
}

[icon-only] ion-icon {
  padding: 0 0.5em;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.button-ios {
  border-radius: 4px;
  height: 2.8em;
  font-size: 1.6rem;
  color: #fff;
  background-color: #0167b1;
  margin: 0.4rem 0.2rem;
  padding: 0 1em;
}

.button-ios.activated {
  background-color: #1573b7;
  opacity: 1;
}

.button-ios:hover:not(.disable-hover) {
  opacity: 0.8;
}

.button-large-ios {
  height: 2.8em;
  font-size: 2rem;
  padding: 0 1em;
}

.button-small-ios {
  height: 2.1em;
  font-size: 1.3rem;
  padding: 0 0.9em;
}

.button-small-ios[icon-only] ion-icon {
  font-size: 1.3em;
}

.button-block-ios {
  margin-left: 0;
  margin-right: 0;
}

.button-full-ios {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.button-outline-ios {
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.button-outline-ios.activated {
  color: #fff;
  background-color: #0167b1;
  opacity: 1;
}

.button-clear-ios {
  border-color: transparent;
  color: #0167b1;
  background-color: transparent;
}

.button-clear-ios.activated {
  background-color: transparent;
  opacity: 0.4;
}

.button-clear-ios:hover:not(.disable-hover) {
  color: #0167b1;
  opacity: 0.6;
}

.button-round-ios {
  border-radius: 64px;
  padding: 0 2.6rem;
}

.button-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.button-ios-primary.activated {
  background-color: #1573b7;
}

.button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.button-clear-ios-primary {
  border-color: transparent;
  color: #0167b1;
  background-color: transparent;
}

.button-clear-ios-primary.activated {
  opacity: 0.4;
}

.button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.button-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.button-ios-primary1.activated {
  background-color: #3f69ba;
}

.button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.button-clear-ios-primary1 {
  border-color: transparent;
  color: #4472CA;
  background-color: transparent;
}

.button-clear-ios-primary1.activated {
  opacity: 0.4;
}

.button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.button-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.button-ios-secondary.activated {
  background-color: #757984;
}

.button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.button-clear-ios-secondary {
  border-color: transparent;
  color: #7f8490;
  background-color: transparent;
}

.button-clear-ios-secondary.activated {
  opacity: 0.4;
}

.button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.button-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.button-ios-light.activated {
  background-color: #e4e4eb;
}

.button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.button-clear-ios-light {
  border-color: transparent;
  color: ghostwhite;
  background-color: transparent;
}

.button-clear-ios-light.activated {
  opacity: 0.4;
}

.button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.button-ios-dark {
  color: #fff;
  background-color: #444444;
}

.button-ios-dark.activated {
  background-color: #535353;
}

.button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.button-clear-ios-dark {
  border-color: transparent;
  color: #444444;
  background-color: transparent;
}

.button-clear-ios-dark.activated {
  opacity: 0.4;
}

.button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.button-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.button-ios-indicator.activated {
  background-color: #727272;
}

.button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.button-clear-ios-indicator {
  border-color: transparent;
  color: #666666;
  background-color: transparent;
}

.button-clear-ios-indicator.activated {
  opacity: 0.4;
}

.button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.button-ios-success {
  color: #fff;
  background-color: green;
}

.button-ios-success.activated {
  background-color: #148a14;
}

.button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.button-clear-ios-success {
  border-color: transparent;
  color: green;
  background-color: transparent;
}

.button-clear-ios-success.activated {
  opacity: 0.4;
}

.button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.button-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.button-ios-lightprimary.activated {
  background-color: #14c4ff;
}

.button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.button-clear-ios-lightprimary {
  border-color: transparent;
  color: deepskyblue;
  background-color: transparent;
}

.button-clear-ios-lightprimary.activated {
  opacity: 0.4;
}

.button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.button-ios-danger {
  color: #fff;
  background-color: tomato;
}

.button-ios-danger.activated {
  background-color: #eb5b41;
}

.button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.button-clear-ios-danger {
  border-color: transparent;
  color: tomato;
  background-color: transparent;
}

.button-clear-ios-danger.activated {
  opacity: 0.4;
}

.button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.button-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.button-ios-lightbg.activated {
  background-color: #e1e1e1;
}

.button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.button-clear-ios-lightbg {
  border-color: transparent;
  color: whitesmoke;
  background-color: transparent;
}

.button-clear-ios-lightbg.activated {
  opacity: 0.4;
}

.button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.button-strong-ios {
  font-weight: 600;
}

.button-md {
  border-radius: 2px;
  overflow: hidden;
  height: 3.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  background-color: #0167b1;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0.4rem 0.2rem;
  padding: 0 1.1em;
}

.button-md:hover:not(.disable-hover) {
  background-color: #0167b1;
}

.button-md.activated {
  background-color: #1573b7;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.14), 0 3px 5px rgba(0, 0, 0, 0.21), 0 0 0 0 transparent;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.14), 0 3px 5px rgba(0, 0, 0, 0.21), 0 0 0 0 transparent;
}

.button-md .button-effect {
  background-color: #fff;
}

.button-large-md {
  height: 2.8em;
  font-size: 2rem;
  padding: 0 1em;
}

.button-small-md {
  height: 2.1em;
  font-size: 1.3rem;
  padding: 0 0.9em;
}

.button-small-md[icon-only] ion-icon {
  font-size: 1.4em;
}

.button-block-md {
  margin-left: 0;
  margin-right: 0;
}

.button-full-md {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.button-outline-md {
  border-width: 1px;
  border-style: solid;
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-outline-md:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md.activated {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}

.button-outline-md .button-effect {
  background-color: #0167b1;
}

.button-clear-md {
  border-color: transparent;
  color: #0167b1;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}

.button-clear-md.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-clear-md .button-effect {
  background-color: #999;
}

.button-round-md {
  border-radius: 64px;
  padding: 0 2.6rem;
}

.button-md [icon-only] {
  padding: 0;
}

.button-effect {
  border-radius: 50%;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  z-index: 0;
  display: none;
  background-color: #555;
  opacity: .2;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  pointer-events: none;
  top: 0;
  left: 0;
}

.md button .button-effect {
  display: block;
}

.button-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.button-md-primary:hover:not(.disable-hover) {
  background-color: #0167b1;
}

.button-md-primary.activated {
  background-color: #1573b7;
  opacity: 1;
}

.button-md-primary .button-effect {
  background-color: #fff;
}

.button-outline-md-primary {
  border-color: #0e6fb5;
  color: #0e6fb5;
  background-color: transparent;
}

.button-outline-md-primary:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-primary.activated {
  background-color: transparent;
}

.button-outline-md-primary .button-effect {
  background-color: #0e6fb5;
}

.button-clear-md-primary {
  border-color: transparent;
  color: #0167b1;
  background-color: transparent;
}

.button-clear-md-primary.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.button-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.button-md-primary1:hover:not(.disable-hover) {
  background-color: #4472CA;
}

.button-md-primary1.activated {
  background-color: #3f69ba;
  opacity: 1;
}

.button-md-primary1 .button-effect {
  background-color: #fff;
}

.button-outline-md-primary1 {
  border-color: #416cc0;
  color: #416cc0;
  background-color: transparent;
}

.button-outline-md-primary1:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-primary1.activated {
  background-color: transparent;
}

.button-outline-md-primary1 .button-effect {
  background-color: #416cc0;
}

.button-clear-md-primary1 {
  border-color: transparent;
  color: #4472CA;
  background-color: transparent;
}

.button-clear-md-primary1.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.button-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.button-md-secondary:hover:not(.disable-hover) {
  background-color: #7f8490;
}

.button-md-secondary.activated {
  background-color: #757984;
  opacity: 1;
}

.button-md-secondary .button-effect {
  background-color: #fff;
}

.button-outline-md-secondary {
  border-color: #797d89;
  color: #797d89;
  background-color: transparent;
}

.button-outline-md-secondary:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-secondary.activated {
  background-color: transparent;
}

.button-outline-md-secondary .button-effect {
  background-color: #797d89;
}

.button-clear-md-secondary {
  border-color: transparent;
  color: #7f8490;
  background-color: transparent;
}

.button-clear-md-secondary.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.button-md-light {
  color: #000;
  background-color: ghostwhite;
}

.button-md-light:hover:not(.disable-hover) {
  background-color: ghostwhite;
}

.button-md-light.activated {
  background-color: #e4e4eb;
  opacity: 1;
}

.button-md-light .button-effect {
  background-color: #000;
}

.button-outline-md-light {
  border-color: #ececf2;
  color: #ececf2;
  background-color: transparent;
}

.button-outline-md-light:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-light.activated {
  background-color: transparent;
}

.button-outline-md-light .button-effect {
  background-color: #ececf2;
}

.button-clear-md-light {
  border-color: transparent;
  color: ghostwhite;
  background-color: transparent;
}

.button-clear-md-light.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.button-md-dark {
  color: #fff;
  background-color: #444444;
}

.button-md-dark:hover:not(.disable-hover) {
  background-color: #444444;
}

.button-md-dark.activated {
  background-color: #535353;
  opacity: 1;
}

.button-md-dark .button-effect {
  background-color: #fff;
}

.button-outline-md-dark {
  border-color: #4d4d4d;
  color: #4d4d4d;
  background-color: transparent;
}

.button-outline-md-dark:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-dark.activated {
  background-color: transparent;
}

.button-outline-md-dark .button-effect {
  background-color: #4d4d4d;
}

.button-clear-md-dark {
  border-color: transparent;
  color: #444444;
  background-color: transparent;
}

.button-clear-md-dark.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.button-md-indicator {
  color: #fff;
  background-color: #666666;
}

.button-md-indicator:hover:not(.disable-hover) {
  background-color: #666666;
}

.button-md-indicator.activated {
  background-color: #727272;
  opacity: 1;
}

.button-md-indicator .button-effect {
  background-color: #fff;
}

.button-outline-md-indicator {
  border-color: #6e6e6e;
  color: #6e6e6e;
  background-color: transparent;
}

.button-outline-md-indicator:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-indicator.activated {
  background-color: transparent;
}

.button-outline-md-indicator .button-effect {
  background-color: #6e6e6e;
}

.button-clear-md-indicator {
  border-color: transparent;
  color: #666666;
  background-color: transparent;
}

.button-clear-md-indicator.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.button-md-success {
  color: #fff;
  background-color: green;
}

.button-md-success:hover:not(.disable-hover) {
  background-color: green;
}

.button-md-success.activated {
  background-color: #148a14;
  opacity: 1;
}

.button-md-success .button-effect {
  background-color: #fff;
}

.button-outline-md-success {
  border-color: #0d860d;
  color: #0d860d;
  background-color: transparent;
}

.button-outline-md-success:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-success.activated {
  background-color: transparent;
}

.button-outline-md-success .button-effect {
  background-color: #0d860d;
}

.button-clear-md-success {
  border-color: transparent;
  color: green;
  background-color: transparent;
}

.button-clear-md-success.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-success:hover:not(.disable-hover) {
  color: green;
}

.button-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.button-md-lightprimary:hover:not(.disable-hover) {
  background-color: deepskyblue;
}

.button-md-lightprimary.activated {
  background-color: #14c4ff;
  opacity: 1;
}

.button-md-lightprimary .button-effect {
  background-color: #fff;
}

.button-outline-md-lightprimary {
  border-color: #0dc2ff;
  color: #0dc2ff;
  background-color: transparent;
}

.button-outline-md-lightprimary:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.button-outline-md-lightprimary .button-effect {
  background-color: #0dc2ff;
}

.button-clear-md-lightprimary {
  border-color: transparent;
  color: deepskyblue;
  background-color: transparent;
}

.button-clear-md-lightprimary.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.button-md-danger {
  color: #fff;
  background-color: tomato;
}

.button-md-danger:hover:not(.disable-hover) {
  background-color: tomato;
}

.button-md-danger.activated {
  background-color: #eb5b41;
  opacity: 1;
}

.button-md-danger .button-effect {
  background-color: #fff;
}

.button-outline-md-danger {
  border-color: #f25e43;
  color: #f25e43;
  background-color: transparent;
}

.button-outline-md-danger:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-danger.activated {
  background-color: transparent;
}

.button-outline-md-danger .button-effect {
  background-color: #f25e43;
}

.button-clear-md-danger {
  border-color: transparent;
  color: tomato;
  background-color: transparent;
}

.button-clear-md-danger.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.button-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.button-md-lightbg:hover:not(.disable-hover) {
  background-color: whitesmoke;
}

.button-md-lightbg.activated {
  background-color: #e1e1e1;
  opacity: 1;
}

.button-md-lightbg .button-effect {
  background-color: #000;
}

.button-outline-md-lightbg {
  border-color: #e9e9e9;
  color: #e9e9e9;
  background-color: transparent;
}

.button-outline-md-lightbg:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-lightbg.activated {
  background-color: transparent;
}

.button-outline-md-lightbg .button-effect {
  background-color: #e9e9e9;
}

.button-clear-md-lightbg {
  border-color: transparent;
  color: whitesmoke;
  background-color: transparent;
}

.button-clear-md-lightbg.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.button-strong-md {
  font-weight: bold;
}

.button-wp {
  border-radius: 0;
  height: 3.6rem;
  border: 3px solid transparent;
  font-size: 1.4rem;
  color: #fff;
  background-color: #0167b1;
  margin: 0.4rem 0.2rem;
  padding: 0 1.1em;
}

.button-wp:hover:not(.disable-hover) {
  border-color: #1573b7;
  background-color: #0167b1;
}

.button-wp.activated {
  background-color: #1573b7;
}

.button-large-wp {
  height: 2.8em;
  font-size: 2rem;
  padding: 0 1em;
}

.button-small-wp {
  height: 2.1em;
  font-size: 1.3rem;
  padding: 0 0.9em;
}

.button-small-wp[icon-only] ion-icon {
  font-size: 1.4em;
}

.button-block-wp {
  margin-left: 0;
  margin-right: 0;
}

.button-full-wp {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.button-outline-wp {
  border-width: 1px;
  border-style: solid;
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.button-outline-wp:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp.activated {
  background-color: rgba(1, 103, 177, 0.16);
}

.button-clear-wp {
  color: #0167b1;
  background-color: transparent;
}

.button-clear-wp.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-round-wp {
  border-radius: 64px;
  padding: 0 2.6rem;
}

.button-wp [icon-only] {
  padding: 0;
}

.button-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.button-wp-primary:hover:not(.disable-hover) {
  border-color: #1573b7;
  background-color: #0167b1;
}

.button-wp-primary.activated {
  background-color: #1573b7;
}

.button-outline-wp-primary {
  border-color: #0e6fb5;
  color: #0e6fb5;
  background-color: transparent;
}

.button-outline-wp-primary:hover:not(.disable-hover) {
  border-color: #0e6fb5;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-primary.activated {
  background-color: rgba(14, 111, 181, 0.16);
}

.button-clear-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.button-clear-wp-primary.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.button-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.button-wp-primary1:hover:not(.disable-hover) {
  border-color: #3f69ba;
  background-color: #4472CA;
}

.button-wp-primary1.activated {
  background-color: #3f69ba;
}

.button-outline-wp-primary1 {
  border-color: #416cc0;
  color: #416cc0;
  background-color: transparent;
}

.button-outline-wp-primary1:hover:not(.disable-hover) {
  border-color: #416cc0;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-primary1.activated {
  background-color: rgba(65, 108, 192, 0.16);
}

.button-clear-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.button-clear-wp-primary1.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.button-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.button-wp-secondary:hover:not(.disable-hover) {
  border-color: #757984;
  background-color: #7f8490;
}

.button-wp-secondary.activated {
  background-color: #757984;
}

.button-outline-wp-secondary {
  border-color: #797d89;
  color: #797d89;
  background-color: transparent;
}

.button-outline-wp-secondary:hover:not(.disable-hover) {
  border-color: #797d89;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-secondary.activated {
  background-color: rgba(121, 125, 137, 0.16);
}

.button-clear-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.button-clear-wp-secondary.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.button-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.button-wp-light:hover:not(.disable-hover) {
  border-color: #e4e4eb;
  background-color: ghostwhite;
}

.button-wp-light.activated {
  background-color: #e4e4eb;
}

.button-outline-wp-light {
  border-color: #ececf2;
  color: #ececf2;
  background-color: transparent;
}

.button-outline-wp-light:hover:not(.disable-hover) {
  border-color: #ececf2;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-light.activated {
  background-color: rgba(236, 236, 242, 0.16);
}

.button-clear-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.button-clear-wp-light.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.button-wp-dark {
  color: #fff;
  background-color: #444444;
}

.button-wp-dark:hover:not(.disable-hover) {
  border-color: #535353;
  background-color: #444444;
}

.button-wp-dark.activated {
  background-color: #535353;
}

.button-outline-wp-dark {
  border-color: #4d4d4d;
  color: #4d4d4d;
  background-color: transparent;
}

.button-outline-wp-dark:hover:not(.disable-hover) {
  border-color: #4d4d4d;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-dark.activated {
  background-color: rgba(77, 77, 77, 0.16);
}

.button-clear-wp-dark {
  color: #444444;
  background-color: transparent;
}

.button-clear-wp-dark.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.button-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.button-wp-indicator:hover:not(.disable-hover) {
  border-color: #727272;
  background-color: #666666;
}

.button-wp-indicator.activated {
  background-color: #727272;
}

.button-outline-wp-indicator {
  border-color: #6e6e6e;
  color: #6e6e6e;
  background-color: transparent;
}

.button-outline-wp-indicator:hover:not(.disable-hover) {
  border-color: #6e6e6e;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-indicator.activated {
  background-color: rgba(110, 110, 110, 0.16);
}

.button-clear-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.button-clear-wp-indicator.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.button-wp-success {
  color: #fff;
  background-color: green;
}

.button-wp-success:hover:not(.disable-hover) {
  border-color: #148a14;
  background-color: green;
}

.button-wp-success.activated {
  background-color: #148a14;
}

.button-outline-wp-success {
  border-color: #0d860d;
  color: #0d860d;
  background-color: transparent;
}

.button-outline-wp-success:hover:not(.disable-hover) {
  border-color: #0d860d;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-success.activated {
  background-color: rgba(13, 134, 13, 0.16);
}

.button-clear-wp-success {
  color: green;
  background-color: transparent;
}

.button-clear-wp-success.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-success:hover:not(.disable-hover) {
  color: green;
}

.button-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.button-wp-lightprimary:hover:not(.disable-hover) {
  border-color: #14c4ff;
  background-color: deepskyblue;
}

.button-wp-lightprimary.activated {
  background-color: #14c4ff;
}

.button-outline-wp-lightprimary {
  border-color: #0dc2ff;
  color: #0dc2ff;
  background-color: transparent;
}

.button-outline-wp-lightprimary:hover:not(.disable-hover) {
  border-color: #0dc2ff;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-lightprimary.activated {
  background-color: rgba(13, 194, 255, 0.16);
}

.button-clear-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.button-clear-wp-lightprimary.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.button-wp-danger {
  color: #fff;
  background-color: tomato;
}

.button-wp-danger:hover:not(.disable-hover) {
  border-color: #eb5b41;
  background-color: tomato;
}

.button-wp-danger.activated {
  background-color: #eb5b41;
}

.button-outline-wp-danger {
  border-color: #f25e43;
  color: #f25e43;
  background-color: transparent;
}

.button-outline-wp-danger:hover:not(.disable-hover) {
  border-color: #f25e43;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-danger.activated {
  background-color: rgba(242, 94, 67, 0.16);
}

.button-clear-wp-danger {
  color: tomato;
  background-color: transparent;
}

.button-clear-wp-danger.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.button-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.button-wp-lightbg:hover:not(.disable-hover) {
  border-color: #e1e1e1;
  background-color: whitesmoke;
}

.button-wp-lightbg.activated {
  background-color: #e1e1e1;
}

.button-outline-wp-lightbg {
  border-color: #e9e9e9;
  color: #e9e9e9;
  background-color: transparent;
}

.button-outline-wp-lightbg:hover:not(.disable-hover) {
  border-color: #e9e9e9;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-lightbg.activated {
  background-color: rgba(233, 233, 233, 0.16);
}

.button-clear-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.button-clear-wp-lightbg.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.button-strong-wp {
  font-weight: bold;
}

ion-card {
  display: block;
  overflow: hidden;
}

ion-card img {
  display: block;
  width: 100%;
}

ion-card-header {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ion-card-content {
  display: block;
}

.card-ios {
  margin: 12px 12px 0px;
  border-radius: 2px;
  width: calc(100% - 24px);
  font-size: 1.4rem;
  background: whitesmoke;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-ios ion-list {
  margin-bottom: 0;
}

.card-ios > .item:last-child,
.card-ios > .item:last-child .item-inner,
.card-ios > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.card-ios .item-ios.item-block .item-inner {
  border: 0;
}

.card-content-ios {
  padding: 13px 16px 14px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.card-header-ios {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  padding: 16px;
}

.card-header-ios + .card-content-ios,
.card-ios .item + .card-content-ios {
  padding-top: 0;
}

.card .note-ios {
  font-size: 1.3rem;
}

.card-title-ios {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #222;
  margin: 2px 0;
  padding: 8px 0;
}

.card-ios h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.card-ios h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.card-ios h3,
.card-ios h4,
.card-ios h5,
.card-ios h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
}

.card-ios p {
  margin: 0 0 2px;
  font-size: 1.4rem;
  color: #666;
}

.card-ios + ion-card {
  margin-top: 0;
}

.card-ios .text-ios-primary {
  color: #0167b1;
}

.card-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.card-ios-primary .card-header-ios,
.card-ios-primary .card-title-ios,
.card-ios-primary .card-content-ios,
.card-ios-primary p {
  color: #fff;
}

.card-ios-primary .text-ios-primary,
.card-ios-primary .card-header-ios-primary,
.card-ios-primary .card-title-ios-primary,
.card-ios-primary .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-primary .text-ios-primary1,
.card-ios-primary .card-header-ios-primary1,
.card-ios-primary .card-title-ios-primary1,
.card-ios-primary .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-primary .text-ios-secondary,
.card-ios-primary .card-header-ios-secondary,
.card-ios-primary .card-title-ios-secondary,
.card-ios-primary .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-primary .text-ios-light,
.card-ios-primary .card-header-ios-light,
.card-ios-primary .card-title-ios-light,
.card-ios-primary .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-primary .text-ios-dark,
.card-ios-primary .card-header-ios-dark,
.card-ios-primary .card-title-ios-dark,
.card-ios-primary .card-content-ios-dark {
  color: #444444;
}

.card-ios-primary .text-ios-indicator,
.card-ios-primary .card-header-ios-indicator,
.card-ios-primary .card-title-ios-indicator,
.card-ios-primary .card-content-ios-indicator {
  color: #666666;
}

.card-ios-primary .text-ios-success,
.card-ios-primary .card-header-ios-success,
.card-ios-primary .card-title-ios-success,
.card-ios-primary .card-content-ios-success {
  color: green;
}

.card-ios-primary .text-ios-lightprimary,
.card-ios-primary .card-header-ios-lightprimary,
.card-ios-primary .card-title-ios-lightprimary,
.card-ios-primary .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-primary .text-ios-danger,
.card-ios-primary .card-header-ios-danger,
.card-ios-primary .card-title-ios-danger,
.card-ios-primary .card-content-ios-danger {
  color: tomato;
}

.card-ios-primary .text-ios-lightbg,
.card-ios-primary .card-header-ios-lightbg,
.card-ios-primary .card-title-ios-lightbg,
.card-ios-primary .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-primary,
.card-title-ios-primary,
.card-content-ios-primary {
  color: #0167b1;
}

.card-ios .text-ios-primary1 {
  color: #4472CA;
}

.card-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.card-ios-primary1 .card-header-ios,
.card-ios-primary1 .card-title-ios,
.card-ios-primary1 .card-content-ios,
.card-ios-primary1 p {
  color: #fff;
}

.card-ios-primary1 .text-ios-primary,
.card-ios-primary1 .card-header-ios-primary,
.card-ios-primary1 .card-title-ios-primary,
.card-ios-primary1 .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-primary1 .text-ios-primary1,
.card-ios-primary1 .card-header-ios-primary1,
.card-ios-primary1 .card-title-ios-primary1,
.card-ios-primary1 .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-primary1 .text-ios-secondary,
.card-ios-primary1 .card-header-ios-secondary,
.card-ios-primary1 .card-title-ios-secondary,
.card-ios-primary1 .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-primary1 .text-ios-light,
.card-ios-primary1 .card-header-ios-light,
.card-ios-primary1 .card-title-ios-light,
.card-ios-primary1 .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-primary1 .text-ios-dark,
.card-ios-primary1 .card-header-ios-dark,
.card-ios-primary1 .card-title-ios-dark,
.card-ios-primary1 .card-content-ios-dark {
  color: #444444;
}

.card-ios-primary1 .text-ios-indicator,
.card-ios-primary1 .card-header-ios-indicator,
.card-ios-primary1 .card-title-ios-indicator,
.card-ios-primary1 .card-content-ios-indicator {
  color: #666666;
}

.card-ios-primary1 .text-ios-success,
.card-ios-primary1 .card-header-ios-success,
.card-ios-primary1 .card-title-ios-success,
.card-ios-primary1 .card-content-ios-success {
  color: green;
}

.card-ios-primary1 .text-ios-lightprimary,
.card-ios-primary1 .card-header-ios-lightprimary,
.card-ios-primary1 .card-title-ios-lightprimary,
.card-ios-primary1 .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-primary1 .text-ios-danger,
.card-ios-primary1 .card-header-ios-danger,
.card-ios-primary1 .card-title-ios-danger,
.card-ios-primary1 .card-content-ios-danger {
  color: tomato;
}

.card-ios-primary1 .text-ios-lightbg,
.card-ios-primary1 .card-header-ios-lightbg,
.card-ios-primary1 .card-title-ios-lightbg,
.card-ios-primary1 .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-primary1,
.card-title-ios-primary1,
.card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios .text-ios-secondary {
  color: #7f8490;
}

.card-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.card-ios-secondary .card-header-ios,
.card-ios-secondary .card-title-ios,
.card-ios-secondary .card-content-ios,
.card-ios-secondary p {
  color: #fff;
}

.card-ios-secondary .text-ios-primary,
.card-ios-secondary .card-header-ios-primary,
.card-ios-secondary .card-title-ios-primary,
.card-ios-secondary .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-secondary .text-ios-primary1,
.card-ios-secondary .card-header-ios-primary1,
.card-ios-secondary .card-title-ios-primary1,
.card-ios-secondary .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-secondary .text-ios-secondary,
.card-ios-secondary .card-header-ios-secondary,
.card-ios-secondary .card-title-ios-secondary,
.card-ios-secondary .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-secondary .text-ios-light,
.card-ios-secondary .card-header-ios-light,
.card-ios-secondary .card-title-ios-light,
.card-ios-secondary .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-secondary .text-ios-dark,
.card-ios-secondary .card-header-ios-dark,
.card-ios-secondary .card-title-ios-dark,
.card-ios-secondary .card-content-ios-dark {
  color: #444444;
}

.card-ios-secondary .text-ios-indicator,
.card-ios-secondary .card-header-ios-indicator,
.card-ios-secondary .card-title-ios-indicator,
.card-ios-secondary .card-content-ios-indicator {
  color: #666666;
}

.card-ios-secondary .text-ios-success,
.card-ios-secondary .card-header-ios-success,
.card-ios-secondary .card-title-ios-success,
.card-ios-secondary .card-content-ios-success {
  color: green;
}

.card-ios-secondary .text-ios-lightprimary,
.card-ios-secondary .card-header-ios-lightprimary,
.card-ios-secondary .card-title-ios-lightprimary,
.card-ios-secondary .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-secondary .text-ios-danger,
.card-ios-secondary .card-header-ios-danger,
.card-ios-secondary .card-title-ios-danger,
.card-ios-secondary .card-content-ios-danger {
  color: tomato;
}

.card-ios-secondary .text-ios-lightbg,
.card-ios-secondary .card-header-ios-lightbg,
.card-ios-secondary .card-title-ios-lightbg,
.card-ios-secondary .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-secondary,
.card-title-ios-secondary,
.card-content-ios-secondary {
  color: #7f8490;
}

.card-ios .text-ios-light {
  color: ghostwhite;
}

.card-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.card-ios-light .card-header-ios,
.card-ios-light .card-title-ios,
.card-ios-light .card-content-ios,
.card-ios-light p {
  color: #000;
}

.card-ios-light .text-ios-primary,
.card-ios-light .card-header-ios-primary,
.card-ios-light .card-title-ios-primary,
.card-ios-light .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-light .text-ios-primary1,
.card-ios-light .card-header-ios-primary1,
.card-ios-light .card-title-ios-primary1,
.card-ios-light .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-light .text-ios-secondary,
.card-ios-light .card-header-ios-secondary,
.card-ios-light .card-title-ios-secondary,
.card-ios-light .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-light .text-ios-light,
.card-ios-light .card-header-ios-light,
.card-ios-light .card-title-ios-light,
.card-ios-light .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-light .text-ios-dark,
.card-ios-light .card-header-ios-dark,
.card-ios-light .card-title-ios-dark,
.card-ios-light .card-content-ios-dark {
  color: #444444;
}

.card-ios-light .text-ios-indicator,
.card-ios-light .card-header-ios-indicator,
.card-ios-light .card-title-ios-indicator,
.card-ios-light .card-content-ios-indicator {
  color: #666666;
}

.card-ios-light .text-ios-success,
.card-ios-light .card-header-ios-success,
.card-ios-light .card-title-ios-success,
.card-ios-light .card-content-ios-success {
  color: green;
}

.card-ios-light .text-ios-lightprimary,
.card-ios-light .card-header-ios-lightprimary,
.card-ios-light .card-title-ios-lightprimary,
.card-ios-light .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-light .text-ios-danger,
.card-ios-light .card-header-ios-danger,
.card-ios-light .card-title-ios-danger,
.card-ios-light .card-content-ios-danger {
  color: tomato;
}

.card-ios-light .text-ios-lightbg,
.card-ios-light .card-header-ios-lightbg,
.card-ios-light .card-title-ios-lightbg,
.card-ios-light .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-light,
.card-title-ios-light,
.card-content-ios-light {
  color: ghostwhite;
}

.card-ios .text-ios-dark {
  color: #444444;
}

.card-ios-dark {
  color: #fff;
  background-color: #444444;
}

.card-ios-dark .card-header-ios,
.card-ios-dark .card-title-ios,
.card-ios-dark .card-content-ios,
.card-ios-dark p {
  color: #fff;
}

.card-ios-dark .text-ios-primary,
.card-ios-dark .card-header-ios-primary,
.card-ios-dark .card-title-ios-primary,
.card-ios-dark .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-dark .text-ios-primary1,
.card-ios-dark .card-header-ios-primary1,
.card-ios-dark .card-title-ios-primary1,
.card-ios-dark .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-dark .text-ios-secondary,
.card-ios-dark .card-header-ios-secondary,
.card-ios-dark .card-title-ios-secondary,
.card-ios-dark .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-dark .text-ios-light,
.card-ios-dark .card-header-ios-light,
.card-ios-dark .card-title-ios-light,
.card-ios-dark .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-dark .text-ios-dark,
.card-ios-dark .card-header-ios-dark,
.card-ios-dark .card-title-ios-dark,
.card-ios-dark .card-content-ios-dark {
  color: #444444;
}

.card-ios-dark .text-ios-indicator,
.card-ios-dark .card-header-ios-indicator,
.card-ios-dark .card-title-ios-indicator,
.card-ios-dark .card-content-ios-indicator {
  color: #666666;
}

.card-ios-dark .text-ios-success,
.card-ios-dark .card-header-ios-success,
.card-ios-dark .card-title-ios-success,
.card-ios-dark .card-content-ios-success {
  color: green;
}

.card-ios-dark .text-ios-lightprimary,
.card-ios-dark .card-header-ios-lightprimary,
.card-ios-dark .card-title-ios-lightprimary,
.card-ios-dark .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-dark .text-ios-danger,
.card-ios-dark .card-header-ios-danger,
.card-ios-dark .card-title-ios-danger,
.card-ios-dark .card-content-ios-danger {
  color: tomato;
}

.card-ios-dark .text-ios-lightbg,
.card-ios-dark .card-header-ios-lightbg,
.card-ios-dark .card-title-ios-lightbg,
.card-ios-dark .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-dark,
.card-title-ios-dark,
.card-content-ios-dark {
  color: #444444;
}

.card-ios .text-ios-indicator {
  color: #666666;
}

.card-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.card-ios-indicator .card-header-ios,
.card-ios-indicator .card-title-ios,
.card-ios-indicator .card-content-ios,
.card-ios-indicator p {
  color: #fff;
}

.card-ios-indicator .text-ios-primary,
.card-ios-indicator .card-header-ios-primary,
.card-ios-indicator .card-title-ios-primary,
.card-ios-indicator .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-indicator .text-ios-primary1,
.card-ios-indicator .card-header-ios-primary1,
.card-ios-indicator .card-title-ios-primary1,
.card-ios-indicator .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-indicator .text-ios-secondary,
.card-ios-indicator .card-header-ios-secondary,
.card-ios-indicator .card-title-ios-secondary,
.card-ios-indicator .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-indicator .text-ios-light,
.card-ios-indicator .card-header-ios-light,
.card-ios-indicator .card-title-ios-light,
.card-ios-indicator .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-indicator .text-ios-dark,
.card-ios-indicator .card-header-ios-dark,
.card-ios-indicator .card-title-ios-dark,
.card-ios-indicator .card-content-ios-dark {
  color: #444444;
}

.card-ios-indicator .text-ios-indicator,
.card-ios-indicator .card-header-ios-indicator,
.card-ios-indicator .card-title-ios-indicator,
.card-ios-indicator .card-content-ios-indicator {
  color: #666666;
}

.card-ios-indicator .text-ios-success,
.card-ios-indicator .card-header-ios-success,
.card-ios-indicator .card-title-ios-success,
.card-ios-indicator .card-content-ios-success {
  color: green;
}

.card-ios-indicator .text-ios-lightprimary,
.card-ios-indicator .card-header-ios-lightprimary,
.card-ios-indicator .card-title-ios-lightprimary,
.card-ios-indicator .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-indicator .text-ios-danger,
.card-ios-indicator .card-header-ios-danger,
.card-ios-indicator .card-title-ios-danger,
.card-ios-indicator .card-content-ios-danger {
  color: tomato;
}

.card-ios-indicator .text-ios-lightbg,
.card-ios-indicator .card-header-ios-lightbg,
.card-ios-indicator .card-title-ios-lightbg,
.card-ios-indicator .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-indicator,
.card-title-ios-indicator,
.card-content-ios-indicator {
  color: #666666;
}

.card-ios .text-ios-success {
  color: green;
}

.card-ios-success {
  color: #fff;
  background-color: green;
}

.card-ios-success .card-header-ios,
.card-ios-success .card-title-ios,
.card-ios-success .card-content-ios,
.card-ios-success p {
  color: #fff;
}

.card-ios-success .text-ios-primary,
.card-ios-success .card-header-ios-primary,
.card-ios-success .card-title-ios-primary,
.card-ios-success .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-success .text-ios-primary1,
.card-ios-success .card-header-ios-primary1,
.card-ios-success .card-title-ios-primary1,
.card-ios-success .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-success .text-ios-secondary,
.card-ios-success .card-header-ios-secondary,
.card-ios-success .card-title-ios-secondary,
.card-ios-success .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-success .text-ios-light,
.card-ios-success .card-header-ios-light,
.card-ios-success .card-title-ios-light,
.card-ios-success .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-success .text-ios-dark,
.card-ios-success .card-header-ios-dark,
.card-ios-success .card-title-ios-dark,
.card-ios-success .card-content-ios-dark {
  color: #444444;
}

.card-ios-success .text-ios-indicator,
.card-ios-success .card-header-ios-indicator,
.card-ios-success .card-title-ios-indicator,
.card-ios-success .card-content-ios-indicator {
  color: #666666;
}

.card-ios-success .text-ios-success,
.card-ios-success .card-header-ios-success,
.card-ios-success .card-title-ios-success,
.card-ios-success .card-content-ios-success {
  color: green;
}

.card-ios-success .text-ios-lightprimary,
.card-ios-success .card-header-ios-lightprimary,
.card-ios-success .card-title-ios-lightprimary,
.card-ios-success .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-success .text-ios-danger,
.card-ios-success .card-header-ios-danger,
.card-ios-success .card-title-ios-danger,
.card-ios-success .card-content-ios-danger {
  color: tomato;
}

.card-ios-success .text-ios-lightbg,
.card-ios-success .card-header-ios-lightbg,
.card-ios-success .card-title-ios-lightbg,
.card-ios-success .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-success,
.card-title-ios-success,
.card-content-ios-success {
  color: green;
}

.card-ios .text-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.card-ios-lightprimary .card-header-ios,
.card-ios-lightprimary .card-title-ios,
.card-ios-lightprimary .card-content-ios,
.card-ios-lightprimary p {
  color: #fff;
}

.card-ios-lightprimary .text-ios-primary,
.card-ios-lightprimary .card-header-ios-primary,
.card-ios-lightprimary .card-title-ios-primary,
.card-ios-lightprimary .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-lightprimary .text-ios-primary1,
.card-ios-lightprimary .card-header-ios-primary1,
.card-ios-lightprimary .card-title-ios-primary1,
.card-ios-lightprimary .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-lightprimary .text-ios-secondary,
.card-ios-lightprimary .card-header-ios-secondary,
.card-ios-lightprimary .card-title-ios-secondary,
.card-ios-lightprimary .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-lightprimary .text-ios-light,
.card-ios-lightprimary .card-header-ios-light,
.card-ios-lightprimary .card-title-ios-light,
.card-ios-lightprimary .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-lightprimary .text-ios-dark,
.card-ios-lightprimary .card-header-ios-dark,
.card-ios-lightprimary .card-title-ios-dark,
.card-ios-lightprimary .card-content-ios-dark {
  color: #444444;
}

.card-ios-lightprimary .text-ios-indicator,
.card-ios-lightprimary .card-header-ios-indicator,
.card-ios-lightprimary .card-title-ios-indicator,
.card-ios-lightprimary .card-content-ios-indicator {
  color: #666666;
}

.card-ios-lightprimary .text-ios-success,
.card-ios-lightprimary .card-header-ios-success,
.card-ios-lightprimary .card-title-ios-success,
.card-ios-lightprimary .card-content-ios-success {
  color: green;
}

.card-ios-lightprimary .text-ios-lightprimary,
.card-ios-lightprimary .card-header-ios-lightprimary,
.card-ios-lightprimary .card-title-ios-lightprimary,
.card-ios-lightprimary .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-lightprimary .text-ios-danger,
.card-ios-lightprimary .card-header-ios-danger,
.card-ios-lightprimary .card-title-ios-danger,
.card-ios-lightprimary .card-content-ios-danger {
  color: tomato;
}

.card-ios-lightprimary .text-ios-lightbg,
.card-ios-lightprimary .card-header-ios-lightbg,
.card-ios-lightprimary .card-title-ios-lightbg,
.card-ios-lightprimary .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-lightprimary,
.card-title-ios-lightprimary,
.card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios .text-ios-danger {
  color: tomato;
}

.card-ios-danger {
  color: #fff;
  background-color: tomato;
}

.card-ios-danger .card-header-ios,
.card-ios-danger .card-title-ios,
.card-ios-danger .card-content-ios,
.card-ios-danger p {
  color: #fff;
}

.card-ios-danger .text-ios-primary,
.card-ios-danger .card-header-ios-primary,
.card-ios-danger .card-title-ios-primary,
.card-ios-danger .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-danger .text-ios-primary1,
.card-ios-danger .card-header-ios-primary1,
.card-ios-danger .card-title-ios-primary1,
.card-ios-danger .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-danger .text-ios-secondary,
.card-ios-danger .card-header-ios-secondary,
.card-ios-danger .card-title-ios-secondary,
.card-ios-danger .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-danger .text-ios-light,
.card-ios-danger .card-header-ios-light,
.card-ios-danger .card-title-ios-light,
.card-ios-danger .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-danger .text-ios-dark,
.card-ios-danger .card-header-ios-dark,
.card-ios-danger .card-title-ios-dark,
.card-ios-danger .card-content-ios-dark {
  color: #444444;
}

.card-ios-danger .text-ios-indicator,
.card-ios-danger .card-header-ios-indicator,
.card-ios-danger .card-title-ios-indicator,
.card-ios-danger .card-content-ios-indicator {
  color: #666666;
}

.card-ios-danger .text-ios-success,
.card-ios-danger .card-header-ios-success,
.card-ios-danger .card-title-ios-success,
.card-ios-danger .card-content-ios-success {
  color: green;
}

.card-ios-danger .text-ios-lightprimary,
.card-ios-danger .card-header-ios-lightprimary,
.card-ios-danger .card-title-ios-lightprimary,
.card-ios-danger .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-danger .text-ios-danger,
.card-ios-danger .card-header-ios-danger,
.card-ios-danger .card-title-ios-danger,
.card-ios-danger .card-content-ios-danger {
  color: tomato;
}

.card-ios-danger .text-ios-lightbg,
.card-ios-danger .card-header-ios-lightbg,
.card-ios-danger .card-title-ios-lightbg,
.card-ios-danger .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-danger,
.card-title-ios-danger,
.card-content-ios-danger {
  color: tomato;
}

.card-ios .text-ios-lightbg {
  color: whitesmoke;
}

.card-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.card-ios-lightbg .card-header-ios,
.card-ios-lightbg .card-title-ios,
.card-ios-lightbg .card-content-ios,
.card-ios-lightbg p {
  color: #000;
}

.card-ios-lightbg .text-ios-primary,
.card-ios-lightbg .card-header-ios-primary,
.card-ios-lightbg .card-title-ios-primary,
.card-ios-lightbg .card-content-ios-primary {
  color: #0167b1;
}

.card-ios-lightbg .text-ios-primary1,
.card-ios-lightbg .card-header-ios-primary1,
.card-ios-lightbg .card-title-ios-primary1,
.card-ios-lightbg .card-content-ios-primary1 {
  color: #4472CA;
}

.card-ios-lightbg .text-ios-secondary,
.card-ios-lightbg .card-header-ios-secondary,
.card-ios-lightbg .card-title-ios-secondary,
.card-ios-lightbg .card-content-ios-secondary {
  color: #7f8490;
}

.card-ios-lightbg .text-ios-light,
.card-ios-lightbg .card-header-ios-light,
.card-ios-lightbg .card-title-ios-light,
.card-ios-lightbg .card-content-ios-light {
  color: ghostwhite;
}

.card-ios-lightbg .text-ios-dark,
.card-ios-lightbg .card-header-ios-dark,
.card-ios-lightbg .card-title-ios-dark,
.card-ios-lightbg .card-content-ios-dark {
  color: #444444;
}

.card-ios-lightbg .text-ios-indicator,
.card-ios-lightbg .card-header-ios-indicator,
.card-ios-lightbg .card-title-ios-indicator,
.card-ios-lightbg .card-content-ios-indicator {
  color: #666666;
}

.card-ios-lightbg .text-ios-success,
.card-ios-lightbg .card-header-ios-success,
.card-ios-lightbg .card-title-ios-success,
.card-ios-lightbg .card-content-ios-success {
  color: green;
}

.card-ios-lightbg .text-ios-lightprimary,
.card-ios-lightbg .card-header-ios-lightprimary,
.card-ios-lightbg .card-title-ios-lightprimary,
.card-ios-lightbg .card-content-ios-lightprimary {
  color: deepskyblue;
}

.card-ios-lightbg .text-ios-danger,
.card-ios-lightbg .card-header-ios-danger,
.card-ios-lightbg .card-title-ios-danger,
.card-ios-lightbg .card-content-ios-danger {
  color: tomato;
}

.card-ios-lightbg .text-ios-lightbg,
.card-ios-lightbg .card-header-ios-lightbg,
.card-ios-lightbg .card-title-ios-lightbg,
.card-ios-lightbg .card-content-ios-lightbg {
  color: whitesmoke;
}

.card-header-ios-lightbg,
.card-title-ios-lightbg,
.card-content-ios-lightbg {
  color: whitesmoke;
}

.card-md {
  margin: 10px 10px 0px;
  border-radius: 2px;
  width: calc(100% - 20px);
  font-size: 1.4rem;
  background: whitesmoke;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.card-md ion-list {
  margin-bottom: 0;
}

.card-md > .item:last-child,
.card-md > .item:last-child .item-inner,
.card-md > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.card-md .item-md.item-block .item-inner {
  border: 0;
}

.card-content-md {
  padding: 13px 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.card-header-md {
  font-size: 1.6rem;
  color: #222;
  padding: 16px;
}

.card-header-md + .card-content-md,
.card-md .item + .card-content-md {
  padding-top: 0;
}

.card .note-md {
  font-size: 1.3rem;
}

.card-title-md {
  display: block;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #222;
  margin: 2px 0;
  padding: 8px 0;
}

.card-md h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #222;
}

.card-md h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
  color: #222;
}

.card-md h3,
.card-md h4,
.card-md h5,
.card-md h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  color: #222;
}

.card-md p {
  margin: 0 0 2px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
}

.card-md + ion-card {
  margin-top: 0;
}

.card-md .text-md-primary {
  color: #0167b1;
}

.card-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.card-md-primary .card-header-md,
.card-md-primary .card-title-md,
.card-md-primary .card-content-md,
.card-md-primary h1,
.card-md-primary h2,
.card-md-primary h3,
.card-md-primary h4,
.card-md-primary h5,
.card-md-primary h6,
.card-md-primary p {
  color: #fff;
}

.card-md-primary .text-md-primary,
.card-md-primary .card-header-md-primary,
.card-md-primary .card-title-md-primary,
.card-md-primary .card-content-md-primary {
  color: #0167b1;
}

.card-md-primary .text-md-primary1,
.card-md-primary .card-header-md-primary1,
.card-md-primary .card-title-md-primary1,
.card-md-primary .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-primary .text-md-secondary,
.card-md-primary .card-header-md-secondary,
.card-md-primary .card-title-md-secondary,
.card-md-primary .card-content-md-secondary {
  color: #7f8490;
}

.card-md-primary .text-md-light,
.card-md-primary .card-header-md-light,
.card-md-primary .card-title-md-light,
.card-md-primary .card-content-md-light {
  color: ghostwhite;
}

.card-md-primary .text-md-dark,
.card-md-primary .card-header-md-dark,
.card-md-primary .card-title-md-dark,
.card-md-primary .card-content-md-dark {
  color: #444444;
}

.card-md-primary .text-md-indicator,
.card-md-primary .card-header-md-indicator,
.card-md-primary .card-title-md-indicator,
.card-md-primary .card-content-md-indicator {
  color: #666666;
}

.card-md-primary .text-md-success,
.card-md-primary .card-header-md-success,
.card-md-primary .card-title-md-success,
.card-md-primary .card-content-md-success {
  color: green;
}

.card-md-primary .text-md-lightprimary,
.card-md-primary .card-header-md-lightprimary,
.card-md-primary .card-title-md-lightprimary,
.card-md-primary .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-primary .text-md-danger,
.card-md-primary .card-header-md-danger,
.card-md-primary .card-title-md-danger,
.card-md-primary .card-content-md-danger {
  color: tomato;
}

.card-md-primary .text-md-lightbg,
.card-md-primary .card-header-md-lightbg,
.card-md-primary .card-title-md-lightbg,
.card-md-primary .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-primary,
.card-title-md-primary,
.card-content-md-primary {
  color: #0167b1;
}

.card-md .text-md-primary1 {
  color: #4472CA;
}

.card-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.card-md-primary1 .card-header-md,
.card-md-primary1 .card-title-md,
.card-md-primary1 .card-content-md,
.card-md-primary1 h1,
.card-md-primary1 h2,
.card-md-primary1 h3,
.card-md-primary1 h4,
.card-md-primary1 h5,
.card-md-primary1 h6,
.card-md-primary1 p {
  color: #fff;
}

.card-md-primary1 .text-md-primary,
.card-md-primary1 .card-header-md-primary,
.card-md-primary1 .card-title-md-primary,
.card-md-primary1 .card-content-md-primary {
  color: #0167b1;
}

.card-md-primary1 .text-md-primary1,
.card-md-primary1 .card-header-md-primary1,
.card-md-primary1 .card-title-md-primary1,
.card-md-primary1 .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-primary1 .text-md-secondary,
.card-md-primary1 .card-header-md-secondary,
.card-md-primary1 .card-title-md-secondary,
.card-md-primary1 .card-content-md-secondary {
  color: #7f8490;
}

.card-md-primary1 .text-md-light,
.card-md-primary1 .card-header-md-light,
.card-md-primary1 .card-title-md-light,
.card-md-primary1 .card-content-md-light {
  color: ghostwhite;
}

.card-md-primary1 .text-md-dark,
.card-md-primary1 .card-header-md-dark,
.card-md-primary1 .card-title-md-dark,
.card-md-primary1 .card-content-md-dark {
  color: #444444;
}

.card-md-primary1 .text-md-indicator,
.card-md-primary1 .card-header-md-indicator,
.card-md-primary1 .card-title-md-indicator,
.card-md-primary1 .card-content-md-indicator {
  color: #666666;
}

.card-md-primary1 .text-md-success,
.card-md-primary1 .card-header-md-success,
.card-md-primary1 .card-title-md-success,
.card-md-primary1 .card-content-md-success {
  color: green;
}

.card-md-primary1 .text-md-lightprimary,
.card-md-primary1 .card-header-md-lightprimary,
.card-md-primary1 .card-title-md-lightprimary,
.card-md-primary1 .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-primary1 .text-md-danger,
.card-md-primary1 .card-header-md-danger,
.card-md-primary1 .card-title-md-danger,
.card-md-primary1 .card-content-md-danger {
  color: tomato;
}

.card-md-primary1 .text-md-lightbg,
.card-md-primary1 .card-header-md-lightbg,
.card-md-primary1 .card-title-md-lightbg,
.card-md-primary1 .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-primary1,
.card-title-md-primary1,
.card-content-md-primary1 {
  color: #4472CA;
}

.card-md .text-md-secondary {
  color: #7f8490;
}

.card-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.card-md-secondary .card-header-md,
.card-md-secondary .card-title-md,
.card-md-secondary .card-content-md,
.card-md-secondary h1,
.card-md-secondary h2,
.card-md-secondary h3,
.card-md-secondary h4,
.card-md-secondary h5,
.card-md-secondary h6,
.card-md-secondary p {
  color: #fff;
}

.card-md-secondary .text-md-primary,
.card-md-secondary .card-header-md-primary,
.card-md-secondary .card-title-md-primary,
.card-md-secondary .card-content-md-primary {
  color: #0167b1;
}

.card-md-secondary .text-md-primary1,
.card-md-secondary .card-header-md-primary1,
.card-md-secondary .card-title-md-primary1,
.card-md-secondary .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-secondary .text-md-secondary,
.card-md-secondary .card-header-md-secondary,
.card-md-secondary .card-title-md-secondary,
.card-md-secondary .card-content-md-secondary {
  color: #7f8490;
}

.card-md-secondary .text-md-light,
.card-md-secondary .card-header-md-light,
.card-md-secondary .card-title-md-light,
.card-md-secondary .card-content-md-light {
  color: ghostwhite;
}

.card-md-secondary .text-md-dark,
.card-md-secondary .card-header-md-dark,
.card-md-secondary .card-title-md-dark,
.card-md-secondary .card-content-md-dark {
  color: #444444;
}

.card-md-secondary .text-md-indicator,
.card-md-secondary .card-header-md-indicator,
.card-md-secondary .card-title-md-indicator,
.card-md-secondary .card-content-md-indicator {
  color: #666666;
}

.card-md-secondary .text-md-success,
.card-md-secondary .card-header-md-success,
.card-md-secondary .card-title-md-success,
.card-md-secondary .card-content-md-success {
  color: green;
}

.card-md-secondary .text-md-lightprimary,
.card-md-secondary .card-header-md-lightprimary,
.card-md-secondary .card-title-md-lightprimary,
.card-md-secondary .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-secondary .text-md-danger,
.card-md-secondary .card-header-md-danger,
.card-md-secondary .card-title-md-danger,
.card-md-secondary .card-content-md-danger {
  color: tomato;
}

.card-md-secondary .text-md-lightbg,
.card-md-secondary .card-header-md-lightbg,
.card-md-secondary .card-title-md-lightbg,
.card-md-secondary .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-secondary,
.card-title-md-secondary,
.card-content-md-secondary {
  color: #7f8490;
}

.card-md .text-md-light {
  color: ghostwhite;
}

.card-md-light {
  color: #000;
  background-color: ghostwhite;
}

.card-md-light .card-header-md,
.card-md-light .card-title-md,
.card-md-light .card-content-md,
.card-md-light h1,
.card-md-light h2,
.card-md-light h3,
.card-md-light h4,
.card-md-light h5,
.card-md-light h6,
.card-md-light p {
  color: #000;
}

.card-md-light .text-md-primary,
.card-md-light .card-header-md-primary,
.card-md-light .card-title-md-primary,
.card-md-light .card-content-md-primary {
  color: #0167b1;
}

.card-md-light .text-md-primary1,
.card-md-light .card-header-md-primary1,
.card-md-light .card-title-md-primary1,
.card-md-light .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-light .text-md-secondary,
.card-md-light .card-header-md-secondary,
.card-md-light .card-title-md-secondary,
.card-md-light .card-content-md-secondary {
  color: #7f8490;
}

.card-md-light .text-md-light,
.card-md-light .card-header-md-light,
.card-md-light .card-title-md-light,
.card-md-light .card-content-md-light {
  color: ghostwhite;
}

.card-md-light .text-md-dark,
.card-md-light .card-header-md-dark,
.card-md-light .card-title-md-dark,
.card-md-light .card-content-md-dark {
  color: #444444;
}

.card-md-light .text-md-indicator,
.card-md-light .card-header-md-indicator,
.card-md-light .card-title-md-indicator,
.card-md-light .card-content-md-indicator {
  color: #666666;
}

.card-md-light .text-md-success,
.card-md-light .card-header-md-success,
.card-md-light .card-title-md-success,
.card-md-light .card-content-md-success {
  color: green;
}

.card-md-light .text-md-lightprimary,
.card-md-light .card-header-md-lightprimary,
.card-md-light .card-title-md-lightprimary,
.card-md-light .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-light .text-md-danger,
.card-md-light .card-header-md-danger,
.card-md-light .card-title-md-danger,
.card-md-light .card-content-md-danger {
  color: tomato;
}

.card-md-light .text-md-lightbg,
.card-md-light .card-header-md-lightbg,
.card-md-light .card-title-md-lightbg,
.card-md-light .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-light,
.card-title-md-light,
.card-content-md-light {
  color: ghostwhite;
}

.card-md .text-md-dark {
  color: #444444;
}

.card-md-dark {
  color: #fff;
  background-color: #444444;
}

.card-md-dark .card-header-md,
.card-md-dark .card-title-md,
.card-md-dark .card-content-md,
.card-md-dark h1,
.card-md-dark h2,
.card-md-dark h3,
.card-md-dark h4,
.card-md-dark h5,
.card-md-dark h6,
.card-md-dark p {
  color: #fff;
}

.card-md-dark .text-md-primary,
.card-md-dark .card-header-md-primary,
.card-md-dark .card-title-md-primary,
.card-md-dark .card-content-md-primary {
  color: #0167b1;
}

.card-md-dark .text-md-primary1,
.card-md-dark .card-header-md-primary1,
.card-md-dark .card-title-md-primary1,
.card-md-dark .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-dark .text-md-secondary,
.card-md-dark .card-header-md-secondary,
.card-md-dark .card-title-md-secondary,
.card-md-dark .card-content-md-secondary {
  color: #7f8490;
}

.card-md-dark .text-md-light,
.card-md-dark .card-header-md-light,
.card-md-dark .card-title-md-light,
.card-md-dark .card-content-md-light {
  color: ghostwhite;
}

.card-md-dark .text-md-dark,
.card-md-dark .card-header-md-dark,
.card-md-dark .card-title-md-dark,
.card-md-dark .card-content-md-dark {
  color: #444444;
}

.card-md-dark .text-md-indicator,
.card-md-dark .card-header-md-indicator,
.card-md-dark .card-title-md-indicator,
.card-md-dark .card-content-md-indicator {
  color: #666666;
}

.card-md-dark .text-md-success,
.card-md-dark .card-header-md-success,
.card-md-dark .card-title-md-success,
.card-md-dark .card-content-md-success {
  color: green;
}

.card-md-dark .text-md-lightprimary,
.card-md-dark .card-header-md-lightprimary,
.card-md-dark .card-title-md-lightprimary,
.card-md-dark .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-dark .text-md-danger,
.card-md-dark .card-header-md-danger,
.card-md-dark .card-title-md-danger,
.card-md-dark .card-content-md-danger {
  color: tomato;
}

.card-md-dark .text-md-lightbg,
.card-md-dark .card-header-md-lightbg,
.card-md-dark .card-title-md-lightbg,
.card-md-dark .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-dark,
.card-title-md-dark,
.card-content-md-dark {
  color: #444444;
}

.card-md .text-md-indicator {
  color: #666666;
}

.card-md-indicator {
  color: #fff;
  background-color: #666666;
}

.card-md-indicator .card-header-md,
.card-md-indicator .card-title-md,
.card-md-indicator .card-content-md,
.card-md-indicator h1,
.card-md-indicator h2,
.card-md-indicator h3,
.card-md-indicator h4,
.card-md-indicator h5,
.card-md-indicator h6,
.card-md-indicator p {
  color: #fff;
}

.card-md-indicator .text-md-primary,
.card-md-indicator .card-header-md-primary,
.card-md-indicator .card-title-md-primary,
.card-md-indicator .card-content-md-primary {
  color: #0167b1;
}

.card-md-indicator .text-md-primary1,
.card-md-indicator .card-header-md-primary1,
.card-md-indicator .card-title-md-primary1,
.card-md-indicator .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-indicator .text-md-secondary,
.card-md-indicator .card-header-md-secondary,
.card-md-indicator .card-title-md-secondary,
.card-md-indicator .card-content-md-secondary {
  color: #7f8490;
}

.card-md-indicator .text-md-light,
.card-md-indicator .card-header-md-light,
.card-md-indicator .card-title-md-light,
.card-md-indicator .card-content-md-light {
  color: ghostwhite;
}

.card-md-indicator .text-md-dark,
.card-md-indicator .card-header-md-dark,
.card-md-indicator .card-title-md-dark,
.card-md-indicator .card-content-md-dark {
  color: #444444;
}

.card-md-indicator .text-md-indicator,
.card-md-indicator .card-header-md-indicator,
.card-md-indicator .card-title-md-indicator,
.card-md-indicator .card-content-md-indicator {
  color: #666666;
}

.card-md-indicator .text-md-success,
.card-md-indicator .card-header-md-success,
.card-md-indicator .card-title-md-success,
.card-md-indicator .card-content-md-success {
  color: green;
}

.card-md-indicator .text-md-lightprimary,
.card-md-indicator .card-header-md-lightprimary,
.card-md-indicator .card-title-md-lightprimary,
.card-md-indicator .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-indicator .text-md-danger,
.card-md-indicator .card-header-md-danger,
.card-md-indicator .card-title-md-danger,
.card-md-indicator .card-content-md-danger {
  color: tomato;
}

.card-md-indicator .text-md-lightbg,
.card-md-indicator .card-header-md-lightbg,
.card-md-indicator .card-title-md-lightbg,
.card-md-indicator .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-indicator,
.card-title-md-indicator,
.card-content-md-indicator {
  color: #666666;
}

.card-md .text-md-success {
  color: green;
}

.card-md-success {
  color: #fff;
  background-color: green;
}

.card-md-success .card-header-md,
.card-md-success .card-title-md,
.card-md-success .card-content-md,
.card-md-success h1,
.card-md-success h2,
.card-md-success h3,
.card-md-success h4,
.card-md-success h5,
.card-md-success h6,
.card-md-success p {
  color: #fff;
}

.card-md-success .text-md-primary,
.card-md-success .card-header-md-primary,
.card-md-success .card-title-md-primary,
.card-md-success .card-content-md-primary {
  color: #0167b1;
}

.card-md-success .text-md-primary1,
.card-md-success .card-header-md-primary1,
.card-md-success .card-title-md-primary1,
.card-md-success .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-success .text-md-secondary,
.card-md-success .card-header-md-secondary,
.card-md-success .card-title-md-secondary,
.card-md-success .card-content-md-secondary {
  color: #7f8490;
}

.card-md-success .text-md-light,
.card-md-success .card-header-md-light,
.card-md-success .card-title-md-light,
.card-md-success .card-content-md-light {
  color: ghostwhite;
}

.card-md-success .text-md-dark,
.card-md-success .card-header-md-dark,
.card-md-success .card-title-md-dark,
.card-md-success .card-content-md-dark {
  color: #444444;
}

.card-md-success .text-md-indicator,
.card-md-success .card-header-md-indicator,
.card-md-success .card-title-md-indicator,
.card-md-success .card-content-md-indicator {
  color: #666666;
}

.card-md-success .text-md-success,
.card-md-success .card-header-md-success,
.card-md-success .card-title-md-success,
.card-md-success .card-content-md-success {
  color: green;
}

.card-md-success .text-md-lightprimary,
.card-md-success .card-header-md-lightprimary,
.card-md-success .card-title-md-lightprimary,
.card-md-success .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-success .text-md-danger,
.card-md-success .card-header-md-danger,
.card-md-success .card-title-md-danger,
.card-md-success .card-content-md-danger {
  color: tomato;
}

.card-md-success .text-md-lightbg,
.card-md-success .card-header-md-lightbg,
.card-md-success .card-title-md-lightbg,
.card-md-success .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-success,
.card-title-md-success,
.card-content-md-success {
  color: green;
}

.card-md .text-md-lightprimary {
  color: deepskyblue;
}

.card-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.card-md-lightprimary .card-header-md,
.card-md-lightprimary .card-title-md,
.card-md-lightprimary .card-content-md,
.card-md-lightprimary h1,
.card-md-lightprimary h2,
.card-md-lightprimary h3,
.card-md-lightprimary h4,
.card-md-lightprimary h5,
.card-md-lightprimary h6,
.card-md-lightprimary p {
  color: #fff;
}

.card-md-lightprimary .text-md-primary,
.card-md-lightprimary .card-header-md-primary,
.card-md-lightprimary .card-title-md-primary,
.card-md-lightprimary .card-content-md-primary {
  color: #0167b1;
}

.card-md-lightprimary .text-md-primary1,
.card-md-lightprimary .card-header-md-primary1,
.card-md-lightprimary .card-title-md-primary1,
.card-md-lightprimary .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-lightprimary .text-md-secondary,
.card-md-lightprimary .card-header-md-secondary,
.card-md-lightprimary .card-title-md-secondary,
.card-md-lightprimary .card-content-md-secondary {
  color: #7f8490;
}

.card-md-lightprimary .text-md-light,
.card-md-lightprimary .card-header-md-light,
.card-md-lightprimary .card-title-md-light,
.card-md-lightprimary .card-content-md-light {
  color: ghostwhite;
}

.card-md-lightprimary .text-md-dark,
.card-md-lightprimary .card-header-md-dark,
.card-md-lightprimary .card-title-md-dark,
.card-md-lightprimary .card-content-md-dark {
  color: #444444;
}

.card-md-lightprimary .text-md-indicator,
.card-md-lightprimary .card-header-md-indicator,
.card-md-lightprimary .card-title-md-indicator,
.card-md-lightprimary .card-content-md-indicator {
  color: #666666;
}

.card-md-lightprimary .text-md-success,
.card-md-lightprimary .card-header-md-success,
.card-md-lightprimary .card-title-md-success,
.card-md-lightprimary .card-content-md-success {
  color: green;
}

.card-md-lightprimary .text-md-lightprimary,
.card-md-lightprimary .card-header-md-lightprimary,
.card-md-lightprimary .card-title-md-lightprimary,
.card-md-lightprimary .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-lightprimary .text-md-danger,
.card-md-lightprimary .card-header-md-danger,
.card-md-lightprimary .card-title-md-danger,
.card-md-lightprimary .card-content-md-danger {
  color: tomato;
}

.card-md-lightprimary .text-md-lightbg,
.card-md-lightprimary .card-header-md-lightbg,
.card-md-lightprimary .card-title-md-lightbg,
.card-md-lightprimary .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-lightprimary,
.card-title-md-lightprimary,
.card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md .text-md-danger {
  color: tomato;
}

.card-md-danger {
  color: #fff;
  background-color: tomato;
}

.card-md-danger .card-header-md,
.card-md-danger .card-title-md,
.card-md-danger .card-content-md,
.card-md-danger h1,
.card-md-danger h2,
.card-md-danger h3,
.card-md-danger h4,
.card-md-danger h5,
.card-md-danger h6,
.card-md-danger p {
  color: #fff;
}

.card-md-danger .text-md-primary,
.card-md-danger .card-header-md-primary,
.card-md-danger .card-title-md-primary,
.card-md-danger .card-content-md-primary {
  color: #0167b1;
}

.card-md-danger .text-md-primary1,
.card-md-danger .card-header-md-primary1,
.card-md-danger .card-title-md-primary1,
.card-md-danger .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-danger .text-md-secondary,
.card-md-danger .card-header-md-secondary,
.card-md-danger .card-title-md-secondary,
.card-md-danger .card-content-md-secondary {
  color: #7f8490;
}

.card-md-danger .text-md-light,
.card-md-danger .card-header-md-light,
.card-md-danger .card-title-md-light,
.card-md-danger .card-content-md-light {
  color: ghostwhite;
}

.card-md-danger .text-md-dark,
.card-md-danger .card-header-md-dark,
.card-md-danger .card-title-md-dark,
.card-md-danger .card-content-md-dark {
  color: #444444;
}

.card-md-danger .text-md-indicator,
.card-md-danger .card-header-md-indicator,
.card-md-danger .card-title-md-indicator,
.card-md-danger .card-content-md-indicator {
  color: #666666;
}

.card-md-danger .text-md-success,
.card-md-danger .card-header-md-success,
.card-md-danger .card-title-md-success,
.card-md-danger .card-content-md-success {
  color: green;
}

.card-md-danger .text-md-lightprimary,
.card-md-danger .card-header-md-lightprimary,
.card-md-danger .card-title-md-lightprimary,
.card-md-danger .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-danger .text-md-danger,
.card-md-danger .card-header-md-danger,
.card-md-danger .card-title-md-danger,
.card-md-danger .card-content-md-danger {
  color: tomato;
}

.card-md-danger .text-md-lightbg,
.card-md-danger .card-header-md-lightbg,
.card-md-danger .card-title-md-lightbg,
.card-md-danger .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-danger,
.card-title-md-danger,
.card-content-md-danger {
  color: tomato;
}

.card-md .text-md-lightbg {
  color: whitesmoke;
}

.card-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.card-md-lightbg .card-header-md,
.card-md-lightbg .card-title-md,
.card-md-lightbg .card-content-md,
.card-md-lightbg h1,
.card-md-lightbg h2,
.card-md-lightbg h3,
.card-md-lightbg h4,
.card-md-lightbg h5,
.card-md-lightbg h6,
.card-md-lightbg p {
  color: #000;
}

.card-md-lightbg .text-md-primary,
.card-md-lightbg .card-header-md-primary,
.card-md-lightbg .card-title-md-primary,
.card-md-lightbg .card-content-md-primary {
  color: #0167b1;
}

.card-md-lightbg .text-md-primary1,
.card-md-lightbg .card-header-md-primary1,
.card-md-lightbg .card-title-md-primary1,
.card-md-lightbg .card-content-md-primary1 {
  color: #4472CA;
}

.card-md-lightbg .text-md-secondary,
.card-md-lightbg .card-header-md-secondary,
.card-md-lightbg .card-title-md-secondary,
.card-md-lightbg .card-content-md-secondary {
  color: #7f8490;
}

.card-md-lightbg .text-md-light,
.card-md-lightbg .card-header-md-light,
.card-md-lightbg .card-title-md-light,
.card-md-lightbg .card-content-md-light {
  color: ghostwhite;
}

.card-md-lightbg .text-md-dark,
.card-md-lightbg .card-header-md-dark,
.card-md-lightbg .card-title-md-dark,
.card-md-lightbg .card-content-md-dark {
  color: #444444;
}

.card-md-lightbg .text-md-indicator,
.card-md-lightbg .card-header-md-indicator,
.card-md-lightbg .card-title-md-indicator,
.card-md-lightbg .card-content-md-indicator {
  color: #666666;
}

.card-md-lightbg .text-md-success,
.card-md-lightbg .card-header-md-success,
.card-md-lightbg .card-title-md-success,
.card-md-lightbg .card-content-md-success {
  color: green;
}

.card-md-lightbg .text-md-lightprimary,
.card-md-lightbg .card-header-md-lightprimary,
.card-md-lightbg .card-title-md-lightprimary,
.card-md-lightbg .card-content-md-lightprimary {
  color: deepskyblue;
}

.card-md-lightbg .text-md-danger,
.card-md-lightbg .card-header-md-danger,
.card-md-lightbg .card-title-md-danger,
.card-md-lightbg .card-content-md-danger {
  color: tomato;
}

.card-md-lightbg .text-md-lightbg,
.card-md-lightbg .card-header-md-lightbg,
.card-md-lightbg .card-title-md-lightbg,
.card-md-lightbg .card-content-md-lightbg {
  color: whitesmoke;
}

.card-header-md-lightbg,
.card-title-md-lightbg,
.card-content-md-lightbg {
  color: whitesmoke;
}

.card-wp {
  margin: 8px;
  border-radius: 1px;
  width: calc(100% - 16px);
  font-size: 1.4rem;
  background: white;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.card-wp ion-list {
  margin-bottom: 0;
}

.card-wp > .item:last-child,
.card-wp > .item:last-child .item-inner,
.card-wp > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.card-wp .item-wp.item-block .item-inner {
  border: 0;
}

.card-content-wp {
  padding: 13px 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.card-header-wp {
  font-size: 1.6rem;
  color: #222;
  padding: 16px;
}

.card-header-wp + .card-content-wp,
.card-wp .item + .card-content-wp {
  padding-top: 0;
}

.card .note-wp {
  font-size: 1.3rem;
}

.card-title-wp {
  display: block;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #222;
  margin: 2px 0;
  padding: 8px 0;
}

.card-wp h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #222;
}

.card-wp h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
  color: #222;
}

.card-wp h3,
.card-wp h4,
.card-wp h5,
.card-wp h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  color: #222;
}

.card-wp p {
  margin: 0 0 2px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
}

.card-wp + ion-card {
  margin-top: 0;
}

.card-wp .text-wp-primary {
  color: #0167b1;
}

.card-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.card-wp-primary .card-header-wp,
.card-wp-primary .card-title-wp,
.card-wp-primary .card-content-wp,
.card-wp-primary h1,
.card-wp-primary h2,
.card-wp-primary h3,
.card-wp-primary h4,
.card-wp-primary h5,
.card-wp-primary h6,
.card-wp-primary p {
  color: #fff;
}

.card-wp-primary .text-wp-primary,
.card-wp-primary .card-header-wp-primary,
.card-wp-primary .card-title-wp-primary,
.card-wp-primary .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-primary .text-wp-primary1,
.card-wp-primary .card-header-wp-primary1,
.card-wp-primary .card-title-wp-primary1,
.card-wp-primary .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-primary .text-wp-secondary,
.card-wp-primary .card-header-wp-secondary,
.card-wp-primary .card-title-wp-secondary,
.card-wp-primary .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-primary .text-wp-light,
.card-wp-primary .card-header-wp-light,
.card-wp-primary .card-title-wp-light,
.card-wp-primary .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-primary .text-wp-dark,
.card-wp-primary .card-header-wp-dark,
.card-wp-primary .card-title-wp-dark,
.card-wp-primary .card-content-wp-dark {
  color: #444444;
}

.card-wp-primary .text-wp-indicator,
.card-wp-primary .card-header-wp-indicator,
.card-wp-primary .card-title-wp-indicator,
.card-wp-primary .card-content-wp-indicator {
  color: #666666;
}

.card-wp-primary .text-wp-success,
.card-wp-primary .card-header-wp-success,
.card-wp-primary .card-title-wp-success,
.card-wp-primary .card-content-wp-success {
  color: green;
}

.card-wp-primary .text-wp-lightprimary,
.card-wp-primary .card-header-wp-lightprimary,
.card-wp-primary .card-title-wp-lightprimary,
.card-wp-primary .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-primary .text-wp-danger,
.card-wp-primary .card-header-wp-danger,
.card-wp-primary .card-title-wp-danger,
.card-wp-primary .card-content-wp-danger {
  color: tomato;
}

.card-wp-primary .text-wp-lightbg,
.card-wp-primary .card-header-wp-lightbg,
.card-wp-primary .card-title-wp-lightbg,
.card-wp-primary .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-primary,
.card-title-wp-primary,
.card-content-wp-primary {
  color: #0167b1;
}

.card-wp .text-wp-primary1 {
  color: #4472CA;
}

.card-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.card-wp-primary1 .card-header-wp,
.card-wp-primary1 .card-title-wp,
.card-wp-primary1 .card-content-wp,
.card-wp-primary1 h1,
.card-wp-primary1 h2,
.card-wp-primary1 h3,
.card-wp-primary1 h4,
.card-wp-primary1 h5,
.card-wp-primary1 h6,
.card-wp-primary1 p {
  color: #fff;
}

.card-wp-primary1 .text-wp-primary,
.card-wp-primary1 .card-header-wp-primary,
.card-wp-primary1 .card-title-wp-primary,
.card-wp-primary1 .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-primary1 .text-wp-primary1,
.card-wp-primary1 .card-header-wp-primary1,
.card-wp-primary1 .card-title-wp-primary1,
.card-wp-primary1 .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-primary1 .text-wp-secondary,
.card-wp-primary1 .card-header-wp-secondary,
.card-wp-primary1 .card-title-wp-secondary,
.card-wp-primary1 .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-primary1 .text-wp-light,
.card-wp-primary1 .card-header-wp-light,
.card-wp-primary1 .card-title-wp-light,
.card-wp-primary1 .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-primary1 .text-wp-dark,
.card-wp-primary1 .card-header-wp-dark,
.card-wp-primary1 .card-title-wp-dark,
.card-wp-primary1 .card-content-wp-dark {
  color: #444444;
}

.card-wp-primary1 .text-wp-indicator,
.card-wp-primary1 .card-header-wp-indicator,
.card-wp-primary1 .card-title-wp-indicator,
.card-wp-primary1 .card-content-wp-indicator {
  color: #666666;
}

.card-wp-primary1 .text-wp-success,
.card-wp-primary1 .card-header-wp-success,
.card-wp-primary1 .card-title-wp-success,
.card-wp-primary1 .card-content-wp-success {
  color: green;
}

.card-wp-primary1 .text-wp-lightprimary,
.card-wp-primary1 .card-header-wp-lightprimary,
.card-wp-primary1 .card-title-wp-lightprimary,
.card-wp-primary1 .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-primary1 .text-wp-danger,
.card-wp-primary1 .card-header-wp-danger,
.card-wp-primary1 .card-title-wp-danger,
.card-wp-primary1 .card-content-wp-danger {
  color: tomato;
}

.card-wp-primary1 .text-wp-lightbg,
.card-wp-primary1 .card-header-wp-lightbg,
.card-wp-primary1 .card-title-wp-lightbg,
.card-wp-primary1 .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-primary1,
.card-title-wp-primary1,
.card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp .text-wp-secondary {
  color: #7f8490;
}

.card-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.card-wp-secondary .card-header-wp,
.card-wp-secondary .card-title-wp,
.card-wp-secondary .card-content-wp,
.card-wp-secondary h1,
.card-wp-secondary h2,
.card-wp-secondary h3,
.card-wp-secondary h4,
.card-wp-secondary h5,
.card-wp-secondary h6,
.card-wp-secondary p {
  color: #fff;
}

.card-wp-secondary .text-wp-primary,
.card-wp-secondary .card-header-wp-primary,
.card-wp-secondary .card-title-wp-primary,
.card-wp-secondary .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-secondary .text-wp-primary1,
.card-wp-secondary .card-header-wp-primary1,
.card-wp-secondary .card-title-wp-primary1,
.card-wp-secondary .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-secondary .text-wp-secondary,
.card-wp-secondary .card-header-wp-secondary,
.card-wp-secondary .card-title-wp-secondary,
.card-wp-secondary .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-secondary .text-wp-light,
.card-wp-secondary .card-header-wp-light,
.card-wp-secondary .card-title-wp-light,
.card-wp-secondary .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-secondary .text-wp-dark,
.card-wp-secondary .card-header-wp-dark,
.card-wp-secondary .card-title-wp-dark,
.card-wp-secondary .card-content-wp-dark {
  color: #444444;
}

.card-wp-secondary .text-wp-indicator,
.card-wp-secondary .card-header-wp-indicator,
.card-wp-secondary .card-title-wp-indicator,
.card-wp-secondary .card-content-wp-indicator {
  color: #666666;
}

.card-wp-secondary .text-wp-success,
.card-wp-secondary .card-header-wp-success,
.card-wp-secondary .card-title-wp-success,
.card-wp-secondary .card-content-wp-success {
  color: green;
}

.card-wp-secondary .text-wp-lightprimary,
.card-wp-secondary .card-header-wp-lightprimary,
.card-wp-secondary .card-title-wp-lightprimary,
.card-wp-secondary .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-secondary .text-wp-danger,
.card-wp-secondary .card-header-wp-danger,
.card-wp-secondary .card-title-wp-danger,
.card-wp-secondary .card-content-wp-danger {
  color: tomato;
}

.card-wp-secondary .text-wp-lightbg,
.card-wp-secondary .card-header-wp-lightbg,
.card-wp-secondary .card-title-wp-lightbg,
.card-wp-secondary .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-secondary,
.card-title-wp-secondary,
.card-content-wp-secondary {
  color: #7f8490;
}

.card-wp .text-wp-light {
  color: ghostwhite;
}

.card-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.card-wp-light .card-header-wp,
.card-wp-light .card-title-wp,
.card-wp-light .card-content-wp,
.card-wp-light h1,
.card-wp-light h2,
.card-wp-light h3,
.card-wp-light h4,
.card-wp-light h5,
.card-wp-light h6,
.card-wp-light p {
  color: #000;
}

.card-wp-light .text-wp-primary,
.card-wp-light .card-header-wp-primary,
.card-wp-light .card-title-wp-primary,
.card-wp-light .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-light .text-wp-primary1,
.card-wp-light .card-header-wp-primary1,
.card-wp-light .card-title-wp-primary1,
.card-wp-light .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-light .text-wp-secondary,
.card-wp-light .card-header-wp-secondary,
.card-wp-light .card-title-wp-secondary,
.card-wp-light .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-light .text-wp-light,
.card-wp-light .card-header-wp-light,
.card-wp-light .card-title-wp-light,
.card-wp-light .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-light .text-wp-dark,
.card-wp-light .card-header-wp-dark,
.card-wp-light .card-title-wp-dark,
.card-wp-light .card-content-wp-dark {
  color: #444444;
}

.card-wp-light .text-wp-indicator,
.card-wp-light .card-header-wp-indicator,
.card-wp-light .card-title-wp-indicator,
.card-wp-light .card-content-wp-indicator {
  color: #666666;
}

.card-wp-light .text-wp-success,
.card-wp-light .card-header-wp-success,
.card-wp-light .card-title-wp-success,
.card-wp-light .card-content-wp-success {
  color: green;
}

.card-wp-light .text-wp-lightprimary,
.card-wp-light .card-header-wp-lightprimary,
.card-wp-light .card-title-wp-lightprimary,
.card-wp-light .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-light .text-wp-danger,
.card-wp-light .card-header-wp-danger,
.card-wp-light .card-title-wp-danger,
.card-wp-light .card-content-wp-danger {
  color: tomato;
}

.card-wp-light .text-wp-lightbg,
.card-wp-light .card-header-wp-lightbg,
.card-wp-light .card-title-wp-lightbg,
.card-wp-light .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-light,
.card-title-wp-light,
.card-content-wp-light {
  color: ghostwhite;
}

.card-wp .text-wp-dark {
  color: #444444;
}

.card-wp-dark {
  color: #fff;
  background-color: #444444;
}

.card-wp-dark .card-header-wp,
.card-wp-dark .card-title-wp,
.card-wp-dark .card-content-wp,
.card-wp-dark h1,
.card-wp-dark h2,
.card-wp-dark h3,
.card-wp-dark h4,
.card-wp-dark h5,
.card-wp-dark h6,
.card-wp-dark p {
  color: #fff;
}

.card-wp-dark .text-wp-primary,
.card-wp-dark .card-header-wp-primary,
.card-wp-dark .card-title-wp-primary,
.card-wp-dark .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-dark .text-wp-primary1,
.card-wp-dark .card-header-wp-primary1,
.card-wp-dark .card-title-wp-primary1,
.card-wp-dark .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-dark .text-wp-secondary,
.card-wp-dark .card-header-wp-secondary,
.card-wp-dark .card-title-wp-secondary,
.card-wp-dark .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-dark .text-wp-light,
.card-wp-dark .card-header-wp-light,
.card-wp-dark .card-title-wp-light,
.card-wp-dark .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-dark .text-wp-dark,
.card-wp-dark .card-header-wp-dark,
.card-wp-dark .card-title-wp-dark,
.card-wp-dark .card-content-wp-dark {
  color: #444444;
}

.card-wp-dark .text-wp-indicator,
.card-wp-dark .card-header-wp-indicator,
.card-wp-dark .card-title-wp-indicator,
.card-wp-dark .card-content-wp-indicator {
  color: #666666;
}

.card-wp-dark .text-wp-success,
.card-wp-dark .card-header-wp-success,
.card-wp-dark .card-title-wp-success,
.card-wp-dark .card-content-wp-success {
  color: green;
}

.card-wp-dark .text-wp-lightprimary,
.card-wp-dark .card-header-wp-lightprimary,
.card-wp-dark .card-title-wp-lightprimary,
.card-wp-dark .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-dark .text-wp-danger,
.card-wp-dark .card-header-wp-danger,
.card-wp-dark .card-title-wp-danger,
.card-wp-dark .card-content-wp-danger {
  color: tomato;
}

.card-wp-dark .text-wp-lightbg,
.card-wp-dark .card-header-wp-lightbg,
.card-wp-dark .card-title-wp-lightbg,
.card-wp-dark .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-dark,
.card-title-wp-dark,
.card-content-wp-dark {
  color: #444444;
}

.card-wp .text-wp-indicator {
  color: #666666;
}

.card-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.card-wp-indicator .card-header-wp,
.card-wp-indicator .card-title-wp,
.card-wp-indicator .card-content-wp,
.card-wp-indicator h1,
.card-wp-indicator h2,
.card-wp-indicator h3,
.card-wp-indicator h4,
.card-wp-indicator h5,
.card-wp-indicator h6,
.card-wp-indicator p {
  color: #fff;
}

.card-wp-indicator .text-wp-primary,
.card-wp-indicator .card-header-wp-primary,
.card-wp-indicator .card-title-wp-primary,
.card-wp-indicator .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-indicator .text-wp-primary1,
.card-wp-indicator .card-header-wp-primary1,
.card-wp-indicator .card-title-wp-primary1,
.card-wp-indicator .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-indicator .text-wp-secondary,
.card-wp-indicator .card-header-wp-secondary,
.card-wp-indicator .card-title-wp-secondary,
.card-wp-indicator .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-indicator .text-wp-light,
.card-wp-indicator .card-header-wp-light,
.card-wp-indicator .card-title-wp-light,
.card-wp-indicator .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-indicator .text-wp-dark,
.card-wp-indicator .card-header-wp-dark,
.card-wp-indicator .card-title-wp-dark,
.card-wp-indicator .card-content-wp-dark {
  color: #444444;
}

.card-wp-indicator .text-wp-indicator,
.card-wp-indicator .card-header-wp-indicator,
.card-wp-indicator .card-title-wp-indicator,
.card-wp-indicator .card-content-wp-indicator {
  color: #666666;
}

.card-wp-indicator .text-wp-success,
.card-wp-indicator .card-header-wp-success,
.card-wp-indicator .card-title-wp-success,
.card-wp-indicator .card-content-wp-success {
  color: green;
}

.card-wp-indicator .text-wp-lightprimary,
.card-wp-indicator .card-header-wp-lightprimary,
.card-wp-indicator .card-title-wp-lightprimary,
.card-wp-indicator .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-indicator .text-wp-danger,
.card-wp-indicator .card-header-wp-danger,
.card-wp-indicator .card-title-wp-danger,
.card-wp-indicator .card-content-wp-danger {
  color: tomato;
}

.card-wp-indicator .text-wp-lightbg,
.card-wp-indicator .card-header-wp-lightbg,
.card-wp-indicator .card-title-wp-lightbg,
.card-wp-indicator .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-indicator,
.card-title-wp-indicator,
.card-content-wp-indicator {
  color: #666666;
}

.card-wp .text-wp-success {
  color: green;
}

.card-wp-success {
  color: #fff;
  background-color: green;
}

.card-wp-success .card-header-wp,
.card-wp-success .card-title-wp,
.card-wp-success .card-content-wp,
.card-wp-success h1,
.card-wp-success h2,
.card-wp-success h3,
.card-wp-success h4,
.card-wp-success h5,
.card-wp-success h6,
.card-wp-success p {
  color: #fff;
}

.card-wp-success .text-wp-primary,
.card-wp-success .card-header-wp-primary,
.card-wp-success .card-title-wp-primary,
.card-wp-success .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-success .text-wp-primary1,
.card-wp-success .card-header-wp-primary1,
.card-wp-success .card-title-wp-primary1,
.card-wp-success .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-success .text-wp-secondary,
.card-wp-success .card-header-wp-secondary,
.card-wp-success .card-title-wp-secondary,
.card-wp-success .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-success .text-wp-light,
.card-wp-success .card-header-wp-light,
.card-wp-success .card-title-wp-light,
.card-wp-success .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-success .text-wp-dark,
.card-wp-success .card-header-wp-dark,
.card-wp-success .card-title-wp-dark,
.card-wp-success .card-content-wp-dark {
  color: #444444;
}

.card-wp-success .text-wp-indicator,
.card-wp-success .card-header-wp-indicator,
.card-wp-success .card-title-wp-indicator,
.card-wp-success .card-content-wp-indicator {
  color: #666666;
}

.card-wp-success .text-wp-success,
.card-wp-success .card-header-wp-success,
.card-wp-success .card-title-wp-success,
.card-wp-success .card-content-wp-success {
  color: green;
}

.card-wp-success .text-wp-lightprimary,
.card-wp-success .card-header-wp-lightprimary,
.card-wp-success .card-title-wp-lightprimary,
.card-wp-success .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-success .text-wp-danger,
.card-wp-success .card-header-wp-danger,
.card-wp-success .card-title-wp-danger,
.card-wp-success .card-content-wp-danger {
  color: tomato;
}

.card-wp-success .text-wp-lightbg,
.card-wp-success .card-header-wp-lightbg,
.card-wp-success .card-title-wp-lightbg,
.card-wp-success .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-success,
.card-title-wp-success,
.card-content-wp-success {
  color: green;
}

.card-wp .text-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.card-wp-lightprimary .card-header-wp,
.card-wp-lightprimary .card-title-wp,
.card-wp-lightprimary .card-content-wp,
.card-wp-lightprimary h1,
.card-wp-lightprimary h2,
.card-wp-lightprimary h3,
.card-wp-lightprimary h4,
.card-wp-lightprimary h5,
.card-wp-lightprimary h6,
.card-wp-lightprimary p {
  color: #fff;
}

.card-wp-lightprimary .text-wp-primary,
.card-wp-lightprimary .card-header-wp-primary,
.card-wp-lightprimary .card-title-wp-primary,
.card-wp-lightprimary .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-lightprimary .text-wp-primary1,
.card-wp-lightprimary .card-header-wp-primary1,
.card-wp-lightprimary .card-title-wp-primary1,
.card-wp-lightprimary .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-lightprimary .text-wp-secondary,
.card-wp-lightprimary .card-header-wp-secondary,
.card-wp-lightprimary .card-title-wp-secondary,
.card-wp-lightprimary .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-lightprimary .text-wp-light,
.card-wp-lightprimary .card-header-wp-light,
.card-wp-lightprimary .card-title-wp-light,
.card-wp-lightprimary .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-lightprimary .text-wp-dark,
.card-wp-lightprimary .card-header-wp-dark,
.card-wp-lightprimary .card-title-wp-dark,
.card-wp-lightprimary .card-content-wp-dark {
  color: #444444;
}

.card-wp-lightprimary .text-wp-indicator,
.card-wp-lightprimary .card-header-wp-indicator,
.card-wp-lightprimary .card-title-wp-indicator,
.card-wp-lightprimary .card-content-wp-indicator {
  color: #666666;
}

.card-wp-lightprimary .text-wp-success,
.card-wp-lightprimary .card-header-wp-success,
.card-wp-lightprimary .card-title-wp-success,
.card-wp-lightprimary .card-content-wp-success {
  color: green;
}

.card-wp-lightprimary .text-wp-lightprimary,
.card-wp-lightprimary .card-header-wp-lightprimary,
.card-wp-lightprimary .card-title-wp-lightprimary,
.card-wp-lightprimary .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-lightprimary .text-wp-danger,
.card-wp-lightprimary .card-header-wp-danger,
.card-wp-lightprimary .card-title-wp-danger,
.card-wp-lightprimary .card-content-wp-danger {
  color: tomato;
}

.card-wp-lightprimary .text-wp-lightbg,
.card-wp-lightprimary .card-header-wp-lightbg,
.card-wp-lightprimary .card-title-wp-lightbg,
.card-wp-lightprimary .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-lightprimary,
.card-title-wp-lightprimary,
.card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp .text-wp-danger {
  color: tomato;
}

.card-wp-danger {
  color: #fff;
  background-color: tomato;
}

.card-wp-danger .card-header-wp,
.card-wp-danger .card-title-wp,
.card-wp-danger .card-content-wp,
.card-wp-danger h1,
.card-wp-danger h2,
.card-wp-danger h3,
.card-wp-danger h4,
.card-wp-danger h5,
.card-wp-danger h6,
.card-wp-danger p {
  color: #fff;
}

.card-wp-danger .text-wp-primary,
.card-wp-danger .card-header-wp-primary,
.card-wp-danger .card-title-wp-primary,
.card-wp-danger .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-danger .text-wp-primary1,
.card-wp-danger .card-header-wp-primary1,
.card-wp-danger .card-title-wp-primary1,
.card-wp-danger .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-danger .text-wp-secondary,
.card-wp-danger .card-header-wp-secondary,
.card-wp-danger .card-title-wp-secondary,
.card-wp-danger .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-danger .text-wp-light,
.card-wp-danger .card-header-wp-light,
.card-wp-danger .card-title-wp-light,
.card-wp-danger .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-danger .text-wp-dark,
.card-wp-danger .card-header-wp-dark,
.card-wp-danger .card-title-wp-dark,
.card-wp-danger .card-content-wp-dark {
  color: #444444;
}

.card-wp-danger .text-wp-indicator,
.card-wp-danger .card-header-wp-indicator,
.card-wp-danger .card-title-wp-indicator,
.card-wp-danger .card-content-wp-indicator {
  color: #666666;
}

.card-wp-danger .text-wp-success,
.card-wp-danger .card-header-wp-success,
.card-wp-danger .card-title-wp-success,
.card-wp-danger .card-content-wp-success {
  color: green;
}

.card-wp-danger .text-wp-lightprimary,
.card-wp-danger .card-header-wp-lightprimary,
.card-wp-danger .card-title-wp-lightprimary,
.card-wp-danger .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-danger .text-wp-danger,
.card-wp-danger .card-header-wp-danger,
.card-wp-danger .card-title-wp-danger,
.card-wp-danger .card-content-wp-danger {
  color: tomato;
}

.card-wp-danger .text-wp-lightbg,
.card-wp-danger .card-header-wp-lightbg,
.card-wp-danger .card-title-wp-lightbg,
.card-wp-danger .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-danger,
.card-title-wp-danger,
.card-content-wp-danger {
  color: tomato;
}

.card-wp .text-wp-lightbg {
  color: whitesmoke;
}

.card-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.card-wp-lightbg .card-header-wp,
.card-wp-lightbg .card-title-wp,
.card-wp-lightbg .card-content-wp,
.card-wp-lightbg h1,
.card-wp-lightbg h2,
.card-wp-lightbg h3,
.card-wp-lightbg h4,
.card-wp-lightbg h5,
.card-wp-lightbg h6,
.card-wp-lightbg p {
  color: #000;
}

.card-wp-lightbg .text-wp-primary,
.card-wp-lightbg .card-header-wp-primary,
.card-wp-lightbg .card-title-wp-primary,
.card-wp-lightbg .card-content-wp-primary {
  color: #0167b1;
}

.card-wp-lightbg .text-wp-primary1,
.card-wp-lightbg .card-header-wp-primary1,
.card-wp-lightbg .card-title-wp-primary1,
.card-wp-lightbg .card-content-wp-primary1 {
  color: #4472CA;
}

.card-wp-lightbg .text-wp-secondary,
.card-wp-lightbg .card-header-wp-secondary,
.card-wp-lightbg .card-title-wp-secondary,
.card-wp-lightbg .card-content-wp-secondary {
  color: #7f8490;
}

.card-wp-lightbg .text-wp-light,
.card-wp-lightbg .card-header-wp-light,
.card-wp-lightbg .card-title-wp-light,
.card-wp-lightbg .card-content-wp-light {
  color: ghostwhite;
}

.card-wp-lightbg .text-wp-dark,
.card-wp-lightbg .card-header-wp-dark,
.card-wp-lightbg .card-title-wp-dark,
.card-wp-lightbg .card-content-wp-dark {
  color: #444444;
}

.card-wp-lightbg .text-wp-indicator,
.card-wp-lightbg .card-header-wp-indicator,
.card-wp-lightbg .card-title-wp-indicator,
.card-wp-lightbg .card-content-wp-indicator {
  color: #666666;
}

.card-wp-lightbg .text-wp-success,
.card-wp-lightbg .card-header-wp-success,
.card-wp-lightbg .card-title-wp-success,
.card-wp-lightbg .card-content-wp-success {
  color: green;
}

.card-wp-lightbg .text-wp-lightprimary,
.card-wp-lightbg .card-header-wp-lightprimary,
.card-wp-lightbg .card-title-wp-lightprimary,
.card-wp-lightbg .card-content-wp-lightprimary {
  color: deepskyblue;
}

.card-wp-lightbg .text-wp-danger,
.card-wp-lightbg .card-header-wp-danger,
.card-wp-lightbg .card-title-wp-danger,
.card-wp-lightbg .card-content-wp-danger {
  color: tomato;
}

.card-wp-lightbg .text-wp-lightbg,
.card-wp-lightbg .card-header-wp-lightbg,
.card-wp-lightbg .card-title-wp-lightbg,
.card-wp-lightbg .card-content-wp-lightbg {
  color: whitesmoke;
}

.card-header-wp-lightbg,
.card-title-wp-lightbg,
.card-content-wp-lightbg {
  color: whitesmoke;
}

.checkbox-ios {
  position: relative;
  display: inline-block;
}

.checkbox-ios .checkbox-icon {
  border-radius: 50%;
  position: relative;
  width: 21px;
  height: 21px;
  border-width: 1px;
  border-style: solid;
  border-color: #7f8490;
  background-color: white;
}

.checkbox-ios .checkbox-checked {
  border-color: transparent;
  background-color: #0167b1;
}

.checkbox-ios .checkbox-checked .checkbox-inner {
  left: 7px;
  top: 4px;
  position: absolute;
  width: 4px;
  height: 9px;
  border-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-ios.checkbox-disabled,
.item-ios.item-checkbox-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item.item-ios .checkbox-ios {
  position: static;
  display: block;
  margin: 8px 16px 8px 2px;
}

.item.item-ios .checkbox-ios[item-right],
.item.item-ios .checkbox-ios[item-end] {
  margin: 10px 8px 9px 0;
}

.checkbox-ios-primary .checkbox-checked {
  border-color: #0167b1;
  background-color: #0167b1;
}

.checkbox-ios-primary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-primary1 .checkbox-checked {
  border-color: #4472CA;
  background-color: #4472CA;
}

.checkbox-ios-primary1 .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-secondary .checkbox-checked {
  border-color: #7f8490;
  background-color: #7f8490;
}

.checkbox-ios-secondary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-light .checkbox-checked {
  border-color: ghostwhite;
  background-color: ghostwhite;
}

.checkbox-ios-light .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-ios-dark .checkbox-checked {
  border-color: #444444;
  background-color: #444444;
}

.checkbox-ios-dark .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-indicator .checkbox-checked {
  border-color: #666666;
  background-color: #666666;
}

.checkbox-ios-indicator .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-success .checkbox-checked {
  border-color: green;
  background-color: green;
}

.checkbox-ios-success .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-lightprimary .checkbox-checked {
  border-color: deepskyblue;
  background-color: deepskyblue;
}

.checkbox-ios-lightprimary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-danger .checkbox-checked {
  border-color: tomato;
  background-color: tomato;
}

.checkbox-ios-danger .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-lightbg .checkbox-checked {
  border-color: whitesmoke;
  background-color: whitesmoke;
}

.checkbox-ios-lightbg .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-md {
  position: relative;
  display: inline-block;
}

.checkbox-md .checkbox-icon {
  border-radius: 4px;
  position: relative;
  width: 17px;
  height: 17px;
  border-width: 2px;
  border-style: solid;
  border-color: #7f8490;
  background-color: white;
  -webkit-transition-duration: 280ms;
  transition-duration: 280ms;
  -webkit-transition-property: background;
  transition-property: background;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-md .checkbox-checked {
  border-color: transparent;
  background-color: #0167b1;
}

.checkbox-md .checkbox-checked .checkbox-inner {
  left: 4px;
  top: 0;
  position: absolute;
  width: 5px;
  height: 10px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-md.checkbox-disabled,
.item-md.item-checkbox-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item.item-md .checkbox-md {
  position: static;
  display: block;
  margin: 9px 36px 9px 4px;
}

.item.item-md .checkbox-md[item-right],
.item.item-md .checkbox-md[item-end] {
  margin: 11px 10px 10px 0;
}

.checkbox-md + .item-inner ion-label {
  margin-left: 0;
}

.checkbox-md-primary .checkbox-checked {
  border-color: #0167b1;
  background-color: #0167b1;
}

.checkbox-md-primary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-primary1 .checkbox-checked {
  border-color: #4472CA;
  background-color: #4472CA;
}

.checkbox-md-primary1 .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-secondary .checkbox-checked {
  border-color: #7f8490;
  background-color: #7f8490;
}

.checkbox-md-secondary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-light .checkbox-checked {
  border-color: ghostwhite;
  background-color: ghostwhite;
}

.checkbox-md-light .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-md-dark .checkbox-checked {
  border-color: #444444;
  background-color: #444444;
}

.checkbox-md-dark .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-indicator .checkbox-checked {
  border-color: #666666;
  background-color: #666666;
}

.checkbox-md-indicator .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-success .checkbox-checked {
  border-color: green;
  background-color: green;
}

.checkbox-md-success .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-lightprimary .checkbox-checked {
  border-color: deepskyblue;
  background-color: deepskyblue;
}

.checkbox-md-lightprimary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-danger .checkbox-checked {
  border-color: tomato;
  background-color: tomato;
}

.checkbox-md-danger .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-lightbg .checkbox-checked {
  border-color: whitesmoke;
  background-color: whitesmoke;
}

.checkbox-md-lightbg .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-wp {
  position: relative;
  display: inline-block;
}

.checkbox-wp .checkbox-icon {
  border-radius: 0;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #333;
  background-color: white;
}

.checkbox-wp .checkbox-checked {
  border-color: #0167b1;
  background-color: #0167b1;
}

.checkbox-wp .checkbox-checked .checkbox-inner {
  left: 3px;
  top: -2px;
  position: absolute;
  width: 6px;
  height: 12px;
  border-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-wp.checkbox-disabled,
.item-wp.item-checkbox-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item.item-wp .checkbox-wp {
  position: static;
  display: block;
  margin: 9px 16px 9px 4px;
}

.item.item-wp .checkbox-wp[item-right],
.item.item-wp .checkbox-wp[item-end] {
  margin: 11px 10px 10px 0;
}

.checkbox-wp + .item-inner ion-label {
  margin-left: 0;
}

.checkbox-wp-primary .checkbox-checked {
  border-color: #0167b1;
  background-color: #0167b1;
}

.checkbox-wp-primary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-primary1 .checkbox-checked {
  border-color: #4472CA;
  background-color: #4472CA;
}

.checkbox-wp-primary1 .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-secondary .checkbox-checked {
  border-color: #7f8490;
  background-color: #7f8490;
}

.checkbox-wp-secondary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-light .checkbox-checked {
  border-color: ghostwhite;
  background-color: ghostwhite;
}

.checkbox-wp-light .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-wp-dark .checkbox-checked {
  border-color: #444444;
  background-color: #444444;
}

.checkbox-wp-dark .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-indicator .checkbox-checked {
  border-color: #666666;
  background-color: #666666;
}

.checkbox-wp-indicator .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-success .checkbox-checked {
  border-color: green;
  background-color: green;
}

.checkbox-wp-success .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-lightprimary .checkbox-checked {
  border-color: deepskyblue;
  background-color: deepskyblue;
}

.checkbox-wp-lightprimary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-danger .checkbox-checked {
  border-color: tomato;
  background-color: tomato;
}

.checkbox-wp-danger .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-lightbg .checkbox-checked {
  border-color: whitesmoke;
  background-color: whitesmoke;
}

.checkbox-wp-lightbg .checkbox-checked .checkbox-inner {
  border-color: #000;
}

ion-chip {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-weight: normal;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ion-chip .button {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 0;
}

ion-chip ion-icon {
  text-align: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
}

ion-chip ion-avatar {
  border-radius: 50%;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
}

ion-chip ion-avatar img {
  border-radius: 50%;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.chip-ios {
  border-radius: 16px;
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.12);
  margin: 2px 0;
}

.chip-ios > ion-label {
  margin: 0 10px;
}

.chip-ios > ion-icon {
  color: #fff;
  background-color: #0167b1;
}

.chip-ios-primary,
.chip-ios .icon-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.chip-ios-primary1,
.chip-ios .icon-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.chip-ios-secondary,
.chip-ios .icon-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.chip-ios-light,
.chip-ios .icon-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.chip-ios-dark,
.chip-ios .icon-ios-dark {
  color: #fff;
  background-color: #444444;
}

.chip-ios-indicator,
.chip-ios .icon-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.chip-ios-success,
.chip-ios .icon-ios-success {
  color: #fff;
  background-color: green;
}

.chip-ios-lightprimary,
.chip-ios .icon-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.chip-ios-danger,
.chip-ios .icon-ios-danger {
  color: #fff;
  background-color: tomato;
}

.chip-ios-lightbg,
.chip-ios .icon-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.chip-md {
  border-radius: 16px;
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.12);
  margin: 2px 0;
}

.chip-md > ion-label {
  margin: 0 10px;
}

.chip-md > ion-icon {
  color: #fff;
  background-color: #0167b1;
}

.chip-md-primary,
.chip-md .icon-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.chip-md-primary1,
.chip-md .icon-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.chip-md-secondary,
.chip-md .icon-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.chip-md-light,
.chip-md .icon-md-light {
  color: #000;
  background-color: ghostwhite;
}

.chip-md-dark,
.chip-md .icon-md-dark {
  color: #fff;
  background-color: #444444;
}

.chip-md-indicator,
.chip-md .icon-md-indicator {
  color: #fff;
  background-color: #666666;
}

.chip-md-success,
.chip-md .icon-md-success {
  color: #fff;
  background-color: green;
}

.chip-md-lightprimary,
.chip-md .icon-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.chip-md-danger,
.chip-md .icon-md-danger {
  color: #fff;
  background-color: tomato;
}

.chip-md-lightbg,
.chip-md .icon-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.chip-wp {
  border-radius: 16px;
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.12);
  margin: 2px 0;
}

.chip-wp > ion-label {
  margin: 0 10px;
}

.chip-wp > ion-icon {
  color: #fff;
  background-color: #0167b1;
}

.chip-wp .button {
  border: 0;
}

.chip-wp-primary,
.chip-wp .icon-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.chip-wp-primary1,
.chip-wp .icon-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.chip-wp-secondary,
.chip-wp .icon-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.chip-wp-light,
.chip-wp .icon-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.chip-wp-dark,
.chip-wp .icon-wp-dark {
  color: #fff;
  background-color: #444444;
}

.chip-wp-indicator,
.chip-wp .icon-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.chip-wp-success,
.chip-wp .icon-wp-success {
  color: #fff;
  background-color: green;
}

.chip-wp-lightprimary,
.chip-wp .icon-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.chip-wp-danger,
.chip-wp .icon-wp-danger {
  color: #fff;
  background-color: tomato;
}

.chip-wp-lightbg,
.chip-wp .icon-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

ion-content {
  left: 0;
  top: 0;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  contain: layout size style;
}

.ion-page > ion-content {
  position: absolute;
}

a {
  color: #327eff;
}

.scroll-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
  contain: size style layout;
}

ion-content.js-scroll > .scroll-content {
  position: relative;
  min-height: 100%;
  overflow-x: initial;
  overflow-y: initial;
  -webkit-overflow-scrolling: auto;
  will-change: initial;
}

.disable-scroll .ion-page {
  pointer-events: none;
  -ms-touch-action: none;
  touch-action: none;
}

ion-content.has-refresher > .scroll-content {
  background-color: inherit;
}

.fixed-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: block;
}

[ion-fixed] {
  position: absolute;
  z-index: 999;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-app [no-padding],
ion-app [no-padding] .scroll-content {
  padding: 0;
}

ion-app [no-margin],
ion-app [no-margin] .scroll-content {
  margin: 0;
}

.content-ios {
  color: #000;
  background-color: white;
}

.content-ios.outer-content {
  background: white;
}

.content-ios hr {
  height: 0.55px;
  background-color: rgba(0, 0, 0, 0.12);
}

.ios .ion-page.show-page ~ .nav-decor {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
}

ion-app.ios [padding] {
  padding: 16px;
}

ion-app.ios [padding-top] {
  padding-top: 16px;
}

ion-app.ios [padding-left] {
  padding-left: 16px;
}

ion-app.ios [padding-right] {
  padding-right: 16px;
}

ion-app.ios [padding-bottom] {
  padding-bottom: 16px;
}

ion-app.ios [padding-vertical] {
  padding-top: 16px;
  padding-bottom: 16px;
}

ion-app.ios [padding-horizontal] {
  padding-left: 16px;
  padding-right: 16px;
}

ion-app.ios [padding] .scroll-content {
  padding: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-top: 16px;
    padding-bottom: 16px;
    padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.ios [padding-top] .scroll-content {
  padding-top: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-top] .scroll-content {
    padding-top: 16px;
    padding-top: 16px;
  }
}

ion-app.ios [padding-left] .scroll-content {
  padding-left: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-left] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.ios [padding-right] .scroll-content {
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-right] .scroll-content {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.ios [padding-bottom] .scroll-content {
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-bottom] .scroll-content {
    padding-bottom: 16px;
    padding-bottom: 16px;
  }
}

ion-app.ios [padding-vertical] .scroll-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-vertical] .scroll-content {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

ion-app.ios [padding-horizontal] .scroll-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-horizontal] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.ios [margin],
ion-app.ios [margin] .scroll-content {
  margin: 16px;
}

ion-app.ios [margin-top],
ion-app.ios [margin-top] .scroll-content {
  margin-top: 16px;
}

ion-app.ios [margin-left],
ion-app.ios [margin-left] .scroll-content {
  margin-left: 16px;
}

ion-app.ios [margin-start],
ion-app.ios [margin-start] .scroll-content {
  margin-left: 16px;
}

ion-app.ios [margin-right],
ion-app.ios [margin-right] .scroll-content {
  margin-right: 16px;
}

ion-app.ios [margin-end],
ion-app.ios [margin-end] .scroll-content {
  margin-right: 16px;
}

ion-app.ios [margin-bottom],
ion-app.ios [margin-bottom] .scroll-content {
  margin-bottom: 16px;
}

ion-app.ios [margin-vertical],
ion-app.ios [margin-vertical] .scroll-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

ion-app.ios [margin-horizontal],
ion-app.ios [margin-horizontal] .scroll-content {
  margin-left: 16px;
  margin-right: 16px;
}

.content-ios:not([no-bounce]) > .scroll-content::before,
.content-ios:not([no-bounce]) > .scroll-content::after {
  position: absolute;
  width: 1px;
  height: 1px;
  content: "";
}

.content-ios:not([no-bounce]) > .scroll-content::before {
  bottom: -1px;
}

.content-ios:not([no-bounce]) > .scroll-content::after {
  top: -1px;
}

.platform-core .content-ios .scroll-content::after,
.platform-core .content-ios .scroll-content::before {
  position: initial;
  top: initial;
  bottom: initial;
  width: initial;
  height: initial;
}

.content-md {
  color: #000;
  background-color: white;
}

.content-md hr {
  background-color: rgba(0, 0, 0, 0.08);
}

ion-app.md [padding] {
  padding: 16px;
}

ion-app.md [padding-top] {
  padding-top: 16px;
}

ion-app.md [padding-left] {
  padding-left: 16px;
}

ion-app.md [padding-right] {
  padding-right: 16px;
}

ion-app.md [padding-bottom] {
  padding-bottom: 16px;
}

ion-app.md [padding-vertical] {
  padding-top: 16px;
  padding-bottom: 16px;
}

ion-app.md [padding-horizontal] {
  padding-left: 16px;
  padding-right: 16px;
}

ion-app.md [padding] .scroll-content {
  padding: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-top: 16px;
    padding-bottom: 16px;
    padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.md [padding-top] .scroll-content {
  padding-top: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-top] .scroll-content {
    padding-top: 16px;
    padding-top: 16px;
  }
}

ion-app.md [padding-left] .scroll-content {
  padding-left: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-left] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.md [padding-right] .scroll-content {
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-right] .scroll-content {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.md [padding-bottom] .scroll-content {
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-bottom] .scroll-content {
    padding-bottom: 16px;
    padding-bottom: 16px;
  }
}

ion-app.md [padding-vertical] .scroll-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-vertical] .scroll-content {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

ion-app.md [padding-horizontal] .scroll-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-horizontal] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.md [margin],
ion-app.md [margin] .scroll-content {
  margin: 16px;
}

ion-app.md [margin-top],
ion-app.md [margin-top] .scroll-content {
  margin-top: 16px;
}

ion-app.md [margin-left],
ion-app.md [margin-left] .scroll-content {
  margin-left: 16px;
}

ion-app.md [margin-start],
ion-app.md [margin-start] .scroll-content {
  margin-left: 16px;
}

ion-app.md [margin-right],
ion-app.md [margin-right] .scroll-content {
  margin-right: 16px;
}

ion-app.md [margin-end],
ion-app.md [margin-end] .scroll-content {
  margin-right: 16px;
}

ion-app.md [margin-bottom],
ion-app.md [margin-bottom] .scroll-content {
  margin-bottom: 16px;
}

ion-app.md [margin-vertical],
ion-app.md [margin-vertical] .scroll-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

ion-app.md [margin-horizontal],
ion-app.md [margin-horizontal] .scroll-content {
  margin-left: 16px;
  margin-right: 16px;
}

.content-wp {
  color: #000;
  background-color: white;
}

.content-wp hr {
  background-color: rgba(0, 0, 0, 0.08);
}

ion-app.wp [padding] {
  padding: 16px;
}

ion-app.wp [padding-top] {
  padding-top: 16px;
}

ion-app.wp [padding-left] {
  padding-left: 16px;
}

ion-app.wp [padding-right] {
  padding-right: 16px;
}

ion-app.wp [padding-bottom] {
  padding-bottom: 16px;
}

ion-app.wp [padding-vertical] {
  padding-top: 16px;
  padding-bottom: 16px;
}

ion-app.wp [padding-horizontal] {
  padding-left: 16px;
  padding-right: 16px;
}

ion-app.wp [padding] .scroll-content {
  padding: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-top: 16px;
    padding-bottom: 16px;
    padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.wp [padding-top] .scroll-content {
  padding-top: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-top] .scroll-content {
    padding-top: 16px;
    padding-top: 16px;
  }
}

ion-app.wp [padding-left] .scroll-content {
  padding-left: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-left] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.wp [padding-right] .scroll-content {
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-right] .scroll-content {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.wp [padding-bottom] .scroll-content {
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-bottom] .scroll-content {
    padding-bottom: 16px;
    padding-bottom: 16px;
  }
}

ion-app.wp [padding-vertical] .scroll-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-vertical] .scroll-content {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

ion-app.wp [padding-horizontal] .scroll-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-horizontal] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.wp [margin],
ion-app.wp [margin] .scroll-content {
  margin: 16px;
}

ion-app.wp [margin-top],
ion-app.wp [margin-top] .scroll-content {
  margin-top: 16px;
}

ion-app.wp [margin-left],
ion-app.wp [margin-left] .scroll-content {
  margin-left: 16px;
}

ion-app.wp [margin-start],
ion-app.wp [margin-start] .scroll-content {
  margin-left: 16px;
}

ion-app.wp [margin-right],
ion-app.wp [margin-right] .scroll-content {
  margin-right: 16px;
}

ion-app.wp [margin-end],
ion-app.wp [margin-end] .scroll-content {
  margin-right: 16px;
}

ion-app.wp [margin-bottom],
ion-app.wp [margin-bottom] .scroll-content {
  margin-bottom: 16px;
}

ion-app.wp [margin-vertical],
ion-app.wp [margin-vertical] .scroll-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

ion-app.wp [margin-horizontal],
ion-app.wp [margin-horizontal] .scroll-content {
  margin-left: 16px;
  margin-right: 16px;
}

ion-datetime {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.datetime-text {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 16px;
  min-height: 1.2em;
  font-size: inherit;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.datetime-disabled,
.item-datetime-disabled ion-label {
  opacity: .4;
  pointer-events: none;
}

.item-label-stacked ion-datetime,
.item-label-floating ion-datetime {
  padding-left: 0;
  width: 100%;
}

.datetime-ios {
  padding: 11px 8px 11px 16px;
}

.datetime-ios .datetime-placeholder {
  color: #999;
}

.datetime-md {
  padding: 13px 8px 13px 16px;
}

.datetime-md .datetime-placeholder {
  color: #999;
}

.datetime-wp {
  padding: 13px 8px 13px 16px;
  min-width: 45%;
}

.datetime-wp .datetime-text {
  padding: 0 8px;
  min-height: 3.4rem;
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
}

.item-datetime .datetime-wp ion-label[floating] {
  -webkit-transform: translate3d(8px,  41px,  0);
  transform: translate3d(8px,  41px,  0);
}

.datetime-wp .datetime-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.fab {
  text-align: center;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  width: 56px;
  height: 56px;
  font-size: 14px;
  line-height: 56px;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color, opacity 100ms linear;
  transition: background-color, opacity 100ms linear;
  background-clip: padding-box;
  -webkit-font-kerning: none;
  font-kerning: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: strict;
}

.fab ion-icon {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 2.4rem;
}

.fab[mini] {
  margin: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.fab[mini] .fab-close-icon {
  line-height: 40px;
}

ion-fab {
  position: absolute;
  z-index: 999;
}

ion-fab[center] {
  left: 50%;
  margin-left: -28px;
}

ion-fab[middle] {
  margin-top: -28px;
  top: 50%;
}

ion-fab[top] {
  top: 10px;
}

ion-fab[right] {
  right: 10px;
  right: calc(10px + constant(safe-area-inset-right));
  right: calc(10px + env(safe-area-inset-right));
}

ion-fab[end] {
  right: 10px;
  right: calc(constant(safe-area-inset-right) + 10px);
  right: calc(env(safe-area-inset-right) + 10px);
}

ion-fab[bottom] {
  bottom: 10px;
}

ion-fab[left] {
  left: 10px;
  left: calc(10px + constant(safe-area-inset-left));
  left: calc(10px + env(safe-area-inset-left));
}

ion-fab[start] {
  left: 10px;
  left: calc(constant(safe-area-inset-left) + 10px);
  left: calc(env(safe-area-inset-left) + 10px);
}

ion-fab[top][edge] {
  top: -28px;
}

ion-fab[bottom][edge] {
  bottom: -28px;
}

ion-fab-list {
  margin: 66px 0;
  position: absolute;
  top: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 56px;
  min-height: 56px;
}

.fab-in-list {
  margin: 8px 0;
  width: 40px;
  height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.fab-in-list.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

ion-fab-list[side=left] .fab-in-list,
ion-fab-list[side=right] .fab-in-list {
  margin: 0 8px;
}

ion-fab-list[side=top] {
  top: auto;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

ion-fab-list[side=left] {
  margin: 0 66px;
  right: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

ion-fab-list[side=right] {
  margin: 0 66px;
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.fab-list-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fab-close-icon {
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  line-height: 56px;
  opacity: 0;
  -webkit-transform: scale(0.4) rotateZ(-45deg);
  transform: scale(0.4) rotateZ(-45deg);
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fab .button-inner {
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fab-close-active .fab-close-icon {
  opacity: 1;
  -webkit-transform: scale(1) rotateZ(0deg);
  transform: scale(1) rotateZ(0deg);
}

.fab-close-active .button-inner {
  opacity: 0;
  -webkit-transform: scale(0.4) rotateZ(45deg);
  transform: scale(0.4) rotateZ(45deg);
}

.fab-ios {
  color: #fff;
  background-color: #0167b1;
}

.fab-ios.activated {
  background-color: #1573b7;
}

.fab-ios-in-list {
  color: #000;
  background-color: #f4f4f4;
  -webkit-transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
}

.fab-ios-in-list.activated {
  background-color: #e0e0e0;
}

.fab-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.fab-ios-primary.activated {
  background-color: #1573b7;
}

.fab-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.fab-ios-primary1.activated {
  background-color: #3f69ba;
}

.fab-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.fab-ios-secondary.activated {
  background-color: #757984;
}

.fab-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.fab-ios-light.activated {
  background-color: #e4e4eb;
}

.fab-ios-dark {
  color: #fff;
  background-color: #444444;
}

.fab-ios-dark.activated {
  background-color: #535353;
}

.fab-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.fab-ios-indicator.activated {
  background-color: #727272;
}

.fab-ios-success {
  color: #fff;
  background-color: green;
}

.fab-ios-success.activated {
  background-color: #148a14;
}

.fab-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.fab-ios-lightprimary.activated {
  background-color: #14c4ff;
}

.fab-ios-danger {
  color: #fff;
  background-color: tomato;
}

.fab-ios-danger.activated {
  background-color: #eb5b41;
}

.fab-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.fab-ios-lightbg.activated {
  background-color: #e1e1e1;
}

.fab-md {
  color: #fff;
  background-color: #0167b1;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-md.activated {
  background-color: #1573b7;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4), 0 4px 7px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4), 0 4px 7px 0 rgba(0, 0, 0, 0.1);
}

.fab-md-in-list {
  color: #000;
  background-color: #f4f4f4;
  -webkit-transition: opacity 200ms ease 10ms, background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms, -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 200ms ease 10ms, background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms, -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms, -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-md-in-list.activated {
  background-color: #e0e0e0;
}

.fab-md .button-effect {
  background-color: #fff;
}

.fab-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.fab-md-primary.activated {
  background-color: #1573b7;
}

.fab-md-primary .button-effect {
  background-color: #fff;
}

.fab-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.fab-md-primary1.activated {
  background-color: #3f69ba;
}

.fab-md-primary1 .button-effect {
  background-color: #fff;
}

.fab-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.fab-md-secondary.activated {
  background-color: #757984;
}

.fab-md-secondary .button-effect {
  background-color: #fff;
}

.fab-md-light {
  color: #000;
  background-color: ghostwhite;
}

.fab-md-light.activated {
  background-color: #e4e4eb;
}

.fab-md-light .button-effect {
  background-color: #000;
}

.fab-md-dark {
  color: #fff;
  background-color: #444444;
}

.fab-md-dark.activated {
  background-color: #535353;
}

.fab-md-dark .button-effect {
  background-color: #fff;
}

.fab-md-indicator {
  color: #fff;
  background-color: #666666;
}

.fab-md-indicator.activated {
  background-color: #727272;
}

.fab-md-indicator .button-effect {
  background-color: #fff;
}

.fab-md-success {
  color: #fff;
  background-color: green;
}

.fab-md-success.activated {
  background-color: #148a14;
}

.fab-md-success .button-effect {
  background-color: #fff;
}

.fab-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.fab-md-lightprimary.activated {
  background-color: #14c4ff;
}

.fab-md-lightprimary .button-effect {
  background-color: #fff;
}

.fab-md-danger {
  color: #fff;
  background-color: tomato;
}

.fab-md-danger.activated {
  background-color: #eb5b41;
}

.fab-md-danger .button-effect {
  background-color: #fff;
}

.fab-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.fab-md-lightbg.activated {
  background-color: #e1e1e1;
}

.fab-md-lightbg .button-effect {
  background-color: #000;
}

.fab-wp {
  color: #fff;
  background-color: #0167b1;
}

.fab-wp.activated {
  background-color: #1573b7;
}

.fab-wp-in-list {
  color: #000;
  background-color: #f4f4f4;
  -webkit-transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
}

.fab-wp-in-list.activated {
  background-color: #e0e0e0;
}

.fab-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.fab-wp-primary.activated {
  background-color: #1573b7;
}

.fab-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.fab-wp-primary1.activated {
  background-color: #3f69ba;
}

.fab-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.fab-wp-secondary.activated {
  background-color: #757984;
}

.fab-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.fab-wp-light.activated {
  background-color: #e4e4eb;
}

.fab-wp-dark {
  color: #fff;
  background-color: #444444;
}

.fab-wp-dark.activated {
  background-color: #535353;
}

.fab-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.fab-wp-indicator.activated {
  background-color: #727272;
}

.fab-wp-success {
  color: #fff;
  background-color: green;
}

.fab-wp-success.activated {
  background-color: #148a14;
}

.fab-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.fab-wp-lightprimary.activated {
  background-color: #14c4ff;
}

.fab-wp-danger {
  color: #fff;
  background-color: tomato;
}

.fab-wp-danger.activated {
  background-color: #eb5b41;
}

.fab-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.fab-wp-lightbg.activated {
  background-color: #e1e1e1;
}

.grid {
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.grid[no-padding] {
  padding: 0;
}

.grid[no-padding] > .row > .col {
  padding: 0;
}

@media (min-width: 576px) {
  .grid[fixed] {
    width: 540px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .grid[fixed] {
    width: 720px;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .grid[fixed] {
    width: 960px;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .grid[fixed] {
    width: 1140px;
    max-width: 100%;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row[nowrap] {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.row[wrap-reverse] {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.row[align-items-start] {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.row[align-items-center] {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.row[align-items-end] {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.row[align-items-stretch] {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.row[align-items-baseline] {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.row[justify-content-start] {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.row[justify-content-center] {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row[justify-content-end] {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row[justify-content-around] {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.row[justify-content-between] {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col {
  padding: 5px;
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 1px;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col[align-self-start] {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.col[align-self-end] {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.col[align-self-center] {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.col[align-self-stretch] {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.col[align-self-baseline] {
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

[col-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-1] {
    padding: 5px;
  }
}

[col-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-2] {
    padding: 5px;
  }
}

[col-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-3] {
    padding: 5px;
  }
}

[col-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-4] {
    padding: 5px;
  }
}

[col-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-5] {
    padding: 5px;
  }
}

[col-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-6] {
    padding: 5px;
  }
}

[col-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-7] {
    padding: 5px;
  }
}

[col-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-8] {
    padding: 5px;
  }
}

[col-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-9] {
    padding: 5px;
  }
}

[col-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-10] {
    padding: 5px;
  }
}

[col-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-11] {
    padding: 5px;
  }
}

[col-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-12] {
    padding: 5px;
  }
}

[col] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col] {
    padding: 5px;
  }
}

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

[col-auto] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

[pull-0] {
  right: auto;
}

[pull-1] {
  right: 8.33333%;
}

[pull-2] {
  right: 16.66667%;
}

[pull-3] {
  right: 25%;
}

[pull-4] {
  right: 33.33333%;
}

[pull-5] {
  right: 41.66667%;
}

[pull-6] {
  right: 50%;
}

[pull-7] {
  right: 58.33333%;
}

[pull-8] {
  right: 66.66667%;
}

[pull-9] {
  right: 75%;
}

[pull-10] {
  right: 83.33333%;
}

[pull-11] {
  right: 91.66667%;
}

[pull-12] {
  right: 100%;
}

[push-0] {
  left: auto;
}

[push-1] {
  left: 8.33333%;
}

[push-2] {
  left: 16.66667%;
}

[push-3] {
  left: 25%;
}

[push-4] {
  left: 33.33333%;
}

[push-5] {
  left: 41.66667%;
}

[push-6] {
  left: 50%;
}

[push-7] {
  left: 58.33333%;
}

[push-8] {
  left: 66.66667%;
}

[push-9] {
  left: 75%;
}

[push-10] {
  left: 83.33333%;
}

[push-11] {
  left: 91.66667%;
}

[push-12] {
  left: 100%;
}

[offset-1] {
  margin-left: 8.33333%;
}

[offset-2] {
  margin-left: 16.66667%;
}

[offset-3] {
  margin-left: 25%;
}

[offset-4] {
  margin-left: 33.33333%;
}

[offset-5] {
  margin-left: 41.66667%;
}

[offset-6] {
  margin-left: 50%;
}

[offset-7] {
  margin-left: 58.33333%;
}

[offset-8] {
  margin-left: 66.66667%;
}

[offset-9] {
  margin-left: 75%;
}

[offset-10] {
  margin-left: 83.33333%;
}

[offset-11] {
  margin-left: 91.66667%;
}

[col-sm-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-1] {
    padding: 5px;
  }
}

[col-sm-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-2] {
    padding: 5px;
  }
}

[col-sm-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-3] {
    padding: 5px;
  }
}

[col-sm-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-4] {
    padding: 5px;
  }
}

[col-sm-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-5] {
    padding: 5px;
  }
}

[col-sm-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-6] {
    padding: 5px;
  }
}

[col-sm-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-7] {
    padding: 5px;
  }
}

[col-sm-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-8] {
    padding: 5px;
  }
}

[col-sm-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-9] {
    padding: 5px;
  }
}

[col-sm-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-10] {
    padding: 5px;
  }
}

[col-sm-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-11] {
    padding: 5px;
  }
}

[col-sm-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-12] {
    padding: 5px;
  }
}

[col-sm] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 576px) {
  [col-sm] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-sm-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-sm-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-sm-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-sm-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-sm-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-sm-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-sm-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-sm-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-sm-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-sm-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-sm-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-sm-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-sm-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-sm-0] {
    right: auto;
  }
  [pull-sm-1] {
    right: 8.33333%;
  }
  [pull-sm-2] {
    right: 16.66667%;
  }
  [pull-sm-3] {
    right: 25%;
  }
  [pull-sm-4] {
    right: 33.33333%;
  }
  [pull-sm-5] {
    right: 41.66667%;
  }
  [pull-sm-6] {
    right: 50%;
  }
  [pull-sm-7] {
    right: 58.33333%;
  }
  [pull-sm-8] {
    right: 66.66667%;
  }
  [pull-sm-9] {
    right: 75%;
  }
  [pull-sm-10] {
    right: 83.33333%;
  }
  [pull-sm-11] {
    right: 91.66667%;
  }
  [pull-sm-12] {
    right: 100%;
  }
  [push-sm-0] {
    left: auto;
  }
  [push-sm-1] {
    left: 8.33333%;
  }
  [push-sm-2] {
    left: 16.66667%;
  }
  [push-sm-3] {
    left: 25%;
  }
  [push-sm-4] {
    left: 33.33333%;
  }
  [push-sm-5] {
    left: 41.66667%;
  }
  [push-sm-6] {
    left: 50%;
  }
  [push-sm-7] {
    left: 58.33333%;
  }
  [push-sm-8] {
    left: 66.66667%;
  }
  [push-sm-9] {
    left: 75%;
  }
  [push-sm-10] {
    left: 83.33333%;
  }
  [push-sm-11] {
    left: 91.66667%;
  }
  [push-sm-12] {
    left: 100%;
  }
  [offset-sm-0] {
    margin-left: 0%;
  }
  [offset-sm-1] {
    margin-left: 8.33333%;
  }
  [offset-sm-2] {
    margin-left: 16.66667%;
  }
  [offset-sm-3] {
    margin-left: 25%;
  }
  [offset-sm-4] {
    margin-left: 33.33333%;
  }
  [offset-sm-5] {
    margin-left: 41.66667%;
  }
  [offset-sm-6] {
    margin-left: 50%;
  }
  [offset-sm-7] {
    margin-left: 58.33333%;
  }
  [offset-sm-8] {
    margin-left: 66.66667%;
  }
  [offset-sm-9] {
    margin-left: 75%;
  }
  [offset-sm-10] {
    margin-left: 83.33333%;
  }
  [offset-sm-11] {
    margin-left: 91.66667%;
  }
}

[col-md-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-1] {
    padding: 5px;
  }
}

[col-md-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-2] {
    padding: 5px;
  }
}

[col-md-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-3] {
    padding: 5px;
  }
}

[col-md-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-4] {
    padding: 5px;
  }
}

[col-md-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-5] {
    padding: 5px;
  }
}

[col-md-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-6] {
    padding: 5px;
  }
}

[col-md-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-7] {
    padding: 5px;
  }
}

[col-md-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-8] {
    padding: 5px;
  }
}

[col-md-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-9] {
    padding: 5px;
  }
}

[col-md-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-10] {
    padding: 5px;
  }
}

[col-md-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-11] {
    padding: 5px;
  }
}

[col-md-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-12] {
    padding: 5px;
  }
}

[col-md] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-md-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-md-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-md-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-md-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-md-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-md-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-md-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-md-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-md-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-md-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-md-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-md-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-md-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-md-0] {
    right: auto;
  }
  [pull-md-1] {
    right: 8.33333%;
  }
  [pull-md-2] {
    right: 16.66667%;
  }
  [pull-md-3] {
    right: 25%;
  }
  [pull-md-4] {
    right: 33.33333%;
  }
  [pull-md-5] {
    right: 41.66667%;
  }
  [pull-md-6] {
    right: 50%;
  }
  [pull-md-7] {
    right: 58.33333%;
  }
  [pull-md-8] {
    right: 66.66667%;
  }
  [pull-md-9] {
    right: 75%;
  }
  [pull-md-10] {
    right: 83.33333%;
  }
  [pull-md-11] {
    right: 91.66667%;
  }
  [pull-md-12] {
    right: 100%;
  }
  [push-md-0] {
    left: auto;
  }
  [push-md-1] {
    left: 8.33333%;
  }
  [push-md-2] {
    left: 16.66667%;
  }
  [push-md-3] {
    left: 25%;
  }
  [push-md-4] {
    left: 33.33333%;
  }
  [push-md-5] {
    left: 41.66667%;
  }
  [push-md-6] {
    left: 50%;
  }
  [push-md-7] {
    left: 58.33333%;
  }
  [push-md-8] {
    left: 66.66667%;
  }
  [push-md-9] {
    left: 75%;
  }
  [push-md-10] {
    left: 83.33333%;
  }
  [push-md-11] {
    left: 91.66667%;
  }
  [push-md-12] {
    left: 100%;
  }
  [offset-md-0] {
    margin-left: 0%;
  }
  [offset-md-1] {
    margin-left: 8.33333%;
  }
  [offset-md-2] {
    margin-left: 16.66667%;
  }
  [offset-md-3] {
    margin-left: 25%;
  }
  [offset-md-4] {
    margin-left: 33.33333%;
  }
  [offset-md-5] {
    margin-left: 41.66667%;
  }
  [offset-md-6] {
    margin-left: 50%;
  }
  [offset-md-7] {
    margin-left: 58.33333%;
  }
  [offset-md-8] {
    margin-left: 66.66667%;
  }
  [offset-md-9] {
    margin-left: 75%;
  }
  [offset-md-10] {
    margin-left: 83.33333%;
  }
  [offset-md-11] {
    margin-left: 91.66667%;
  }
}

[col-lg-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-1] {
    padding: 5px;
  }
}

[col-lg-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-2] {
    padding: 5px;
  }
}

[col-lg-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-3] {
    padding: 5px;
  }
}

[col-lg-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-4] {
    padding: 5px;
  }
}

[col-lg-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-5] {
    padding: 5px;
  }
}

[col-lg-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-6] {
    padding: 5px;
  }
}

[col-lg-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-7] {
    padding: 5px;
  }
}

[col-lg-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-8] {
    padding: 5px;
  }
}

[col-lg-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-9] {
    padding: 5px;
  }
}

[col-lg-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-10] {
    padding: 5px;
  }
}

[col-lg-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-11] {
    padding: 5px;
  }
}

[col-lg-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-12] {
    padding: 5px;
  }
}

[col-lg] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-lg-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-lg-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-lg-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-lg-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-lg-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-lg-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-lg-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-lg-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-lg-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-lg-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-lg-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-lg-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-lg-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-lg-0] {
    right: auto;
  }
  [pull-lg-1] {
    right: 8.33333%;
  }
  [pull-lg-2] {
    right: 16.66667%;
  }
  [pull-lg-3] {
    right: 25%;
  }
  [pull-lg-4] {
    right: 33.33333%;
  }
  [pull-lg-5] {
    right: 41.66667%;
  }
  [pull-lg-6] {
    right: 50%;
  }
  [pull-lg-7] {
    right: 58.33333%;
  }
  [pull-lg-8] {
    right: 66.66667%;
  }
  [pull-lg-9] {
    right: 75%;
  }
  [pull-lg-10] {
    right: 83.33333%;
  }
  [pull-lg-11] {
    right: 91.66667%;
  }
  [pull-lg-12] {
    right: 100%;
  }
  [push-lg-0] {
    left: auto;
  }
  [push-lg-1] {
    left: 8.33333%;
  }
  [push-lg-2] {
    left: 16.66667%;
  }
  [push-lg-3] {
    left: 25%;
  }
  [push-lg-4] {
    left: 33.33333%;
  }
  [push-lg-5] {
    left: 41.66667%;
  }
  [push-lg-6] {
    left: 50%;
  }
  [push-lg-7] {
    left: 58.33333%;
  }
  [push-lg-8] {
    left: 66.66667%;
  }
  [push-lg-9] {
    left: 75%;
  }
  [push-lg-10] {
    left: 83.33333%;
  }
  [push-lg-11] {
    left: 91.66667%;
  }
  [push-lg-12] {
    left: 100%;
  }
  [offset-lg-0] {
    margin-left: 0%;
  }
  [offset-lg-1] {
    margin-left: 8.33333%;
  }
  [offset-lg-2] {
    margin-left: 16.66667%;
  }
  [offset-lg-3] {
    margin-left: 25%;
  }
  [offset-lg-4] {
    margin-left: 33.33333%;
  }
  [offset-lg-5] {
    margin-left: 41.66667%;
  }
  [offset-lg-6] {
    margin-left: 50%;
  }
  [offset-lg-7] {
    margin-left: 58.33333%;
  }
  [offset-lg-8] {
    margin-left: 66.66667%;
  }
  [offset-lg-9] {
    margin-left: 75%;
  }
  [offset-lg-10] {
    margin-left: 83.33333%;
  }
  [offset-lg-11] {
    margin-left: 91.66667%;
  }
}

[col-xl-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-1] {
    padding: 5px;
  }
}

[col-xl-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-2] {
    padding: 5px;
  }
}

[col-xl-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-3] {
    padding: 5px;
  }
}

[col-xl-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-4] {
    padding: 5px;
  }
}

[col-xl-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-5] {
    padding: 5px;
  }
}

[col-xl-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-6] {
    padding: 5px;
  }
}

[col-xl-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-7] {
    padding: 5px;
  }
}

[col-xl-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-8] {
    padding: 5px;
  }
}

[col-xl-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-9] {
    padding: 5px;
  }
}

[col-xl-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-10] {
    padding: 5px;
  }
}

[col-xl-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-11] {
    padding: 5px;
  }
}

[col-xl-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-12] {
    padding: 5px;
  }
}

[col-xl] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-xl-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-xl-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-xl-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-xl-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-xl-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-xl-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-xl-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-xl-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-xl-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-xl-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-xl-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-xl-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-xl-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-xl-0] {
    right: auto;
  }
  [pull-xl-1] {
    right: 8.33333%;
  }
  [pull-xl-2] {
    right: 16.66667%;
  }
  [pull-xl-3] {
    right: 25%;
  }
  [pull-xl-4] {
    right: 33.33333%;
  }
  [pull-xl-5] {
    right: 41.66667%;
  }
  [pull-xl-6] {
    right: 50%;
  }
  [pull-xl-7] {
    right: 58.33333%;
  }
  [pull-xl-8] {
    right: 66.66667%;
  }
  [pull-xl-9] {
    right: 75%;
  }
  [pull-xl-10] {
    right: 83.33333%;
  }
  [pull-xl-11] {
    right: 91.66667%;
  }
  [pull-xl-12] {
    right: 100%;
  }
  [push-xl-0] {
    left: auto;
  }
  [push-xl-1] {
    left: 8.33333%;
  }
  [push-xl-2] {
    left: 16.66667%;
  }
  [push-xl-3] {
    left: 25%;
  }
  [push-xl-4] {
    left: 33.33333%;
  }
  [push-xl-5] {
    left: 41.66667%;
  }
  [push-xl-6] {
    left: 50%;
  }
  [push-xl-7] {
    left: 58.33333%;
  }
  [push-xl-8] {
    left: 66.66667%;
  }
  [push-xl-9] {
    left: 75%;
  }
  [push-xl-10] {
    left: 83.33333%;
  }
  [push-xl-11] {
    left: 91.66667%;
  }
  [push-xl-12] {
    left: 100%;
  }
  [offset-xl-0] {
    margin-left: 0%;
  }
  [offset-xl-1] {
    margin-left: 8.33333%;
  }
  [offset-xl-2] {
    margin-left: 16.66667%;
  }
  [offset-xl-3] {
    margin-left: 25%;
  }
  [offset-xl-4] {
    margin-left: 33.33333%;
  }
  [offset-xl-5] {
    margin-left: 41.66667%;
  }
  [offset-xl-6] {
    margin-left: 50%;
  }
  [offset-xl-7] {
    margin-left: 58.33333%;
  }
  [offset-xl-8] {
    margin-left: 66.66667%;
  }
  [offset-xl-9] {
    margin-left: 75%;
  }
  [offset-xl-10] {
    margin-left: 83.33333%;
  }
  [offset-xl-11] {
    margin-left: 91.66667%;
  }
}

ion-icon {
  display: inline-block;
  font-size: 1.2em;
}

ion-icon[small] {
  min-height: 1.1em;
  font-size: 1.1em;
}

.icon-ios-primary {
  color: #0167b1;
}

.icon-ios-primary1 {
  color: #4472CA;
}

.icon-ios-secondary {
  color: #7f8490;
}

.icon-ios-light {
  color: ghostwhite;
}

.icon-ios-dark {
  color: #444444;
}

.icon-ios-indicator {
  color: #666666;
}

.icon-ios-success {
  color: green;
}

.icon-ios-lightprimary {
  color: deepskyblue;
}

.icon-ios-danger {
  color: tomato;
}

.icon-ios-lightbg {
  color: whitesmoke;
}

.icon-md-primary {
  color: #0167b1;
}

.icon-md-primary1 {
  color: #4472CA;
}

.icon-md-secondary {
  color: #7f8490;
}

.icon-md-light {
  color: ghostwhite;
}

.icon-md-dark {
  color: #444444;
}

.icon-md-indicator {
  color: #666666;
}

.icon-md-success {
  color: green;
}

.icon-md-lightprimary {
  color: deepskyblue;
}

.icon-md-danger {
  color: tomato;
}

.icon-md-lightbg {
  color: whitesmoke;
}

.icon-wp-primary {
  color: #0167b1;
}

.icon-wp-primary1 {
  color: #4472CA;
}

.icon-wp-secondary {
  color: #7f8490;
}

.icon-wp-light {
  color: ghostwhite;
}

.icon-wp-dark {
  color: #444444;
}

.icon-wp-indicator {
  color: #666666;
}

.icon-wp-success {
  color: green;
}

.icon-wp-lightprimary {
  color: deepskyblue;
}

.icon-wp-danger {
  color: tomato;
}

.icon-wp-lightbg {
  color: whitesmoke;
}

ion-img {
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  background: #eee;
  contain: strict;
}

ion-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

ion-img.img-unloaded img {
  display: none;
}

ion-img.img-loaded img {
  display: block;
}

ion-infinite-scroll {
  display: block;
  width: 100%;
}

ion-infinite-scroll-content {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  min-height: 84px;
}

.infinite-loading {
  display: none;
  width: 100%;
  margin: 0 0 32px;
}

.infinite-loading-text {
  color: #666;
  margin: 4px 32px 0;
}

.infinite-loading-spinner .spinner-ios line,
.infinite-loading-spinner .spinner-ios-small line,
.infinite-loading-spinner .spinner-crescent circle {
  stroke: #666;
}

.infinite-loading-spinner .spinner-bubbles circle,
.infinite-loading-spinner .spinner-circles circle,
.infinite-loading-spinner .spinner-dots circle {
  fill: #666;
}

ion-infinite-scroll-content[state=loading] .infinite-loading {
  display: block;
}

ion-infinite-scroll-content[state=disabled] {
  display: none;
}

ion-input,
ion-textarea {
  position: relative;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}

.item-input ion-input,
.item-input ion-textarea {
  position: static;
}

.item.item-textarea {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.text-input {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  display: inline-block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 92%;
  width: calc(100% - 10px);
  border: 0;
  background: transparent;
}

.text-input::-moz-placeholder {
  color: #999;
}

.text-input:-ms-input-placeholder {
  color: #999;
}

.text-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #999;
}

textarea.text-input {
  display: block;
}

.text-input[disabled] {
  opacity: .4;
}

input.text-input:-webkit-autofill {
  background-color: transparent;
}

.platform-mobile textarea.text-input {
  resize: none;
}

.input-cover {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.input[disabled] .input-cover {
  pointer-events: none;
}

.item-input-has-focus .input-cover,
.input-has-focus .input-cover {
  display: none;
}

.item-input-has-focus,
.input-has-focus {
  pointer-events: none;
}

.item-input-has-focus input,
.input-has-focus input,
.item-input-has-focus textarea,
.input-has-focus textarea,
.item-input-has-focus a,
.input-has-focus a,
.item-input-has-focus button,
.input-has-focus button {
  pointer-events: auto;
}

.text-input-clear-icon {
  margin: 0;
  padding: 0;
  background-position: center;
  position: absolute;
  top: 0;
  display: none;
  height: 100%;
  background-repeat: no-repeat;
}

.item-input-has-focus.item-input-has-value .text-input-clear-icon,
.input-has-focus.input-has-value .text-input-clear-icon {
  display: block;
}

.text-input-ios {
  margin: 11px 8px 11px 0;
  padding: 0;
  width: calc(100% - 8px);
}

.input-ios .inset-input {
  padding: 5.5px 8px;
  margin: 5.5px 16px 5.5px 0;
}

.item-ios.item-label-stacked .text-input,
.item-ios.item-label-floating .text-input {
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  width: calc(100% - 8px);
}

.item-ios.item-label-stacked .label-ios + .input + .cloned-input,
.item-ios.item-label-floating .label-ios + .input + .cloned-input {
  margin-left: 0;
}

.item-label-stacked .select-ios,
.item-label-floating .select-ios {
  padding-left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.input-ios[clearInput] {
  position: relative;
}

.input-ios[clearInput] .text-input {
  padding-right: 30px;
}

.input-ios .text-input-clear-icon {
  right: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
  width: 30px;
  background-size: 18px;
}

.text-input-md {
  margin: 13px 8px;
  padding: 0;
  width: calc(100% - 8px - 8px);
}

.input-md .inset-input {
  padding: 6.5px 8px;
  margin: 6.5px 16px;
}

.item-md.item-input.item-input-has-focus .item-inner,
.item-md.item-input.input-has-focus .item-inner {
  border-bottom-color: transparent !important;
  -webkit-box-shadow: inset 0 -1px 0 0 transparent !important;
  box-shadow: inset 0 -1px 0 0 transparent !important;
}

.list-md .item-input.item-input-has-focus:last-child,
.list-md .item-input.input-has-focus:last-child {
  border-bottom-color: transparent !important;
  -webkit-box-shadow: inset 0 -1px 0 0 transparent !important;
  box-shadow: inset 0 -1px 0 0 transparent !important;
}

.list-md .item-input.item-input-has-focus:last-child .item-inner,
.list-md .item-input.input-has-focus:last-child .item-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-md.item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner,
.item-md.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
  border-bottom-color: transparent !important;
  -webkit-box-shadow: inset 0 -1px 0 0 transparent !important;
  box-shadow: inset 0 -1px 0 0 transparent !important;
}

.list-md .item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child,
.list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child {
  border-bottom-color: transparent !important;
  -webkit-box-shadow: inset 0 -1px 0 0 transparent !important;
  box-shadow: inset 0 -1px 0 0 transparent !important;
}

.list-md .item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner,
.list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-md.item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
  border-bottom-color: #f53d3d;
  -webkit-box-shadow: inset 0 -1px 0 0 #f53d3d;
  box-shadow: inset 0 -1px 0 0 #f53d3d;
}

.list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus):last-child {
  border-bottom-color: #f53d3d;
  -webkit-box-shadow: inset 0 -1px 0 0 #f53d3d;
  box-shadow: inset 0 -1px 0 0 #f53d3d;
}

.list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-label-stacked .text-input-md,
.item-label-floating .text-input-md {
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  width: calc(100% - 8px);
}

.item-label-stacked .select-md,
.item-label-floating .select-md {
  padding-left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.input-md[clearInput] {
  position: relative;
}

.input-md[clearInput] .text-input {
  padding-right: 30px;
}

.input-md .text-input-clear-icon {
  right: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%235b5b5b'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  width: 30px;
  background-size: 22px;
}

.text-input-wp {
  margin: 13px 8px;
  padding: 0 8px;
  width: calc(100% - 8px - 8px);
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
}

.item-wp .inset-input {
  padding: 6.5px 8px;
  margin: 6.5px 16px;
}

.item-wp.item-input.item-input-has-focus .text-input,
.item-wp.item-input.input-has-focus .text-input {
  border-color: #0167b1;
}

.item-wp.item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus) .text-input,
.item-wp.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .text-input {
  border-color: #32db64;
}

.item-wp.item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus) .text-input {
  border-color: #f53d3d;
}

.item-label-stacked .text-input-wp,
.item-label-floating .text-input-wp,
.item-label-stacked .select-wp,
.item-label-floating .select-wp {
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  width: calc(100% - 8px);
}

.item-wp.item-label-stacked [item-right],
.item-wp.item-label-floating [item-right],
.item-wp.item-label-stacked [item-end],
.item-wp.item-label-floating [item-end] {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.input-wp[clearInput] {
  position: relative;
}

.input-wp[clearInput] .text-input {
  padding-right: 30px;
}

.input-wp .text-input-clear-icon {
  right: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='rgba(0,%200,%200,%200.5)'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  width: 30px;
  background-size: 22px;
}

.item {
  contain: content;
}

.item-block {
  margin: 0;
  padding: 0;
  text-align: initial;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 4.4rem;
  border: 0;
  font-weight: normal;
  line-height: normal;
  text-decoration: none;
  color: inherit;
}

.item-inner {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -webkit-flex-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  min-height: inherit;
  border: 0;
}

.input-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -webkit-flex-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  text-overflow: ellipsis;
}

.item[no-lines],
.item.item[no-lines] .item-inner {
  border: 0;
}

ion-item-group {
  display: block;
}

ion-item-divider {
  margin: 0;
  padding: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 30px;
}

ion-item-divider[sticky] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

[vertical-align-top],
ion-input.item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.item > ion-icon[small]:first-child,
.item-inner > ion-icon[small]:first-child {
  min-width: 18px;
}

.item > ion-icon:first-child,
.item-inner > ion-icon:first-child {
  text-align: center;
  min-width: 24px;
}

.item > ion-icon,
.item-inner > ion-icon {
  min-height: 2.8rem;
  font-size: 2.8rem;
  line-height: 1;
}

.item > ion-icon[large],
.item-inner > ion-icon[large] {
  min-height: 3.2rem;
  font-size: 3.2rem;
}

.item > ion-icon[small],
.item-inner > ion-icon[small] {
  min-height: 1.8rem;
  font-size: 1.8rem;
}

ion-avatar,
ion-thumbnail {
  display: block;
  line-height: 1;
}

ion-avatar img,
ion-thumbnail img {
  display: block;
}

.item-cover {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
}

ion-reorder {
  -webkit-transform: translate3d(300%,  0,  0);
  transform: translate3d(300%,  0,  0);
  display: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 40px;
  height: 100%;
  font-size: 1.7em;
  opacity: .25;
  -webkit-transition: -webkit-transform 140ms ease-in;
  transition: -webkit-transform 140ms ease-in;
  transition: transform 140ms ease-in;
  transition: transform 140ms ease-in, -webkit-transform 140ms ease-in;
  pointer-events: all;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.reorder-side-start ion-reorder {
  -webkit-transform: translate3d(-300%,  0,  0);
  transform: translate3d(-300%,  0,  0);
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

ion-reorder ion-icon {
  pointer-events: none;
}

.reorder-enabled ion-reorder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.reorder-visible ion-reorder {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

.reorder-list-active .item,
.reorder-list-active .item-wrapper {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  will-change: transform;
}

.reorder-list-active .item-inner {
  pointer-events: none;
}

.item-wrapper.reorder-active,
.item.reorder-active,
.reorder-active {
  z-index: 4;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  opacity: .8;
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

ion-item-sliding {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}

ion-item-sliding .item {
  position: static;
}

ion-item-options {
  position: absolute;
  z-index: 1;
  display: none;
  height: 100%;
  font-size: 14px;
  visibility: hidden;
  top: 0;
  right: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

ion-item-options[side=left] {
  right: auto;
  left: 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

ion-item-options .button {
  margin: 0;
  padding: 0 0.7em;
  border-radius: 0;
  height: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

ion-item-options .button:last-child {
  padding-right: 0.7em;
}

@media screen and (orientation: landscape) {
  ion-item-options .button:last-child {
    padding-right: calc(constant(safe-area-inset-right) + 0.7em);
    padding-right: calc(env(safe-area-inset-right) + 0.7em);
  }
}

ion-item-options:not([icon-left]) .button:not([icon-only]) .button-inner,
ion-item-options:not([icon-start]) .button:not([icon-only]) .button-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

ion-item-options:not([icon-left]) .button:not([icon-only]) ion-icon,
ion-item-options:not([icon-start]) .button:not([icon-only]) ion-icon {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.3em;
}

ion-item-sliding.active-slide .item,
ion-item-sliding.active-slide .item.activated {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  pointer-events: none;
  will-change: transform;
}

ion-item-sliding.active-slide ion-item-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

ion-item-sliding.active-slide.active-options-left ion-item-options[side=left],
ion-item-sliding.active-slide.active-options-right ion-item-options:not([side=left]) {
  width: 100%;
  visibility: visible;
}

button[expandable] {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition-duration: 0;
  transition-duration: 0;
  -webkit-transition-property: none;
  transition-property: none;
  -webkit-transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

ion-item-sliding.active-swipe-right button[expandable] {
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: padding-left;
  transition-property: padding-left;
  padding-left: 90%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

ion-item-sliding.active-swipe-left button[expandable] {
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: padding-right;
  transition-property: padding-right;
  padding-right: 90%;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.item-ios {
  padding-left: 16px;
  padding-left: 16px;
  border-radius: 0;
  position: relative;
  font-size: 1.7rem;
  color: #000;
  background-color: white;
  -webkit-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}

@media screen and (orientation: landscape) {
  .item-ios {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

.item-ios.activated {
  background-color: white;
  -webkit-transition-duration: 0ms;
  transition-duration: 0ms;
}

.item-ios h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.item-ios h2 {
  margin: 0 0 2px;
  font-size: 1.7rem;
  font-weight: normal;
}

.item-ios h3,
.item-ios h4,
.item-ios h5,
.item-ios h6 {
  margin: 0 0 3px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}

.item-ios p {
  overflow: inherit;
  font-size: 1.4rem;
  line-height: normal;
  text-overflow: inherit;
  color: #8e9093;
  margin: 0 0 2px;
}

.item-ios h2:last-child,
.item-ios h3:last-child,
.item-ios h4:last-child,
.item-ios h5:last-child,
.item-ios h6:last-child,
.item-ios p:last-child {
  margin-bottom: 0;
}

.item-ios.item-block .item-inner {
  padding-right: 8px;
  padding-right: 8px;
  border-bottom: 0.55px solid #c8c7cc;
}

@media screen and (orientation: landscape) {
  .item-ios.item-block .item-inner {
    padding-right: calc(constant(safe-area-inset-right) + 8px);
    padding-right: calc(env(safe-area-inset-right) + 8px);
  }
}

.item-ios [item-left],
.item-ios [item-start] {
  margin: 8px 16px 8px 0;
}

.item-ios [item-right],
.item-ios [item-end] {
  margin: 8px;
}

.item-ios ion-icon[item-left],
.item-ios ion-icon[item-right],
.item-ios ion-icon[item-start],
.item-ios ion-icon[item-end] {
  margin-left: 0;
  margin-top: 9px;
  margin-bottom: 8px;
}

.item-ios .item-button {
  padding: 0 0.5em;
  height: 24px;
  font-size: 1.3rem;
}

.item-ios .item-button[icon-only] ion-icon,
.item-ios .item-button[icon-only] {
  padding: 0 1px;
}

.item-ios ion-avatar[item-left],
.item-ios ion-thumbnail[item-left],
.item-ios ion-avatar[item-start],
.item-ios ion-thumbnail[item-start] {
  margin: 8px 16px 8px 0;
}

.item-ios ion-avatar[item-right],
.item-ios ion-thumbnail[item-right],
.item-ios ion-avatar[item-end],
.item-ios ion-thumbnail[item-end] {
  margin: 8px;
}

.item-ios ion-avatar {
  min-width: 72px;
  min-height: 72px;
}

.item-ios ion-avatar ion-img,
.item-ios ion-avatar img {
  border-radius: 50%;
  overflow: hidden;
  width: 72px;
  height: 72px;
}

.item-ios ion-thumbnail {
  min-width: 120px;
  min-height: 120px;
}

.item-ios ion-thumbnail ion-img,
.item-ios ion-thumbnail img {
  width: 120px;
  height: 120px;
}

.item-ios[detail-push] .item-inner,
button.item-ios:not([detail-none]) .item-inner,
a.item-ios:not([detail-none]) .item-inner {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2020'><path%20d='M2,20l-2-2l8-8L0,2l2-2l10,10L2,20z'%20fill='%23c8c7cc'/></svg>");
  padding-right: 32px;
  background-position: right 14px center;
  background-position: right calc(14px + constant(safe-area-inset-right)) center;
  background-position: right calc(14px + env(safe-area-inset-right)) center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

ion-item-group .item-ios:first-child .item-inner {
  border-top-width: 0;
}

ion-item-group .item-ios:last-child .item-inner,
ion-item-group .item-wrapper:last-child .item-ios .item-inner {
  border: 0;
}

.item-divider-ios {
  padding-left: 16px;
  padding-left: 16px;
  color: #7f8490;
  background-color: white;
}

@media screen and (orientation: landscape) {
  .item-divider-ios {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

.item-ios .text-ios-primary {
  color: #0167b1;
}

.item-ios-primary,
.item-divider-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.item-ios-primary p,
.item-divider-ios-primary p {
  color: #fff;
}

.item-ios-primary.activated,
.item-divider-ios-primary.activated {
  background-color: #1573b7;
}

.item-ios .text-ios-primary1 {
  color: #4472CA;
}

.item-ios-primary1,
.item-divider-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.item-ios-primary1 p,
.item-divider-ios-primary1 p {
  color: #fff;
}

.item-ios-primary1.activated,
.item-divider-ios-primary1.activated {
  background-color: #3f69ba;
}

.item-ios .text-ios-secondary {
  color: #7f8490;
}

.item-ios-secondary,
.item-divider-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.item-ios-secondary p,
.item-divider-ios-secondary p {
  color: #fff;
}

.item-ios-secondary.activated,
.item-divider-ios-secondary.activated {
  background-color: #757984;
}

.item-ios .text-ios-light {
  color: ghostwhite;
}

.item-ios-light,
.item-divider-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.item-ios-light p,
.item-divider-ios-light p {
  color: #000;
}

.item-ios-light.activated,
.item-divider-ios-light.activated {
  background-color: #e4e4eb;
}

.item-ios .text-ios-dark {
  color: #444444;
}

.item-ios-dark,
.item-divider-ios-dark {
  color: #fff;
  background-color: #444444;
}

.item-ios-dark p,
.item-divider-ios-dark p {
  color: #fff;
}

.item-ios-dark.activated,
.item-divider-ios-dark.activated {
  background-color: #535353;
}

.item-ios .text-ios-indicator {
  color: #666666;
}

.item-ios-indicator,
.item-divider-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.item-ios-indicator p,
.item-divider-ios-indicator p {
  color: #fff;
}

.item-ios-indicator.activated,
.item-divider-ios-indicator.activated {
  background-color: #727272;
}

.item-ios .text-ios-success {
  color: green;
}

.item-ios-success,
.item-divider-ios-success {
  color: #fff;
  background-color: green;
}

.item-ios-success p,
.item-divider-ios-success p {
  color: #fff;
}

.item-ios-success.activated,
.item-divider-ios-success.activated {
  background-color: #148a14;
}

.item-ios .text-ios-lightprimary {
  color: deepskyblue;
}

.item-ios-lightprimary,
.item-divider-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.item-ios-lightprimary p,
.item-divider-ios-lightprimary p {
  color: #fff;
}

.item-ios-lightprimary.activated,
.item-divider-ios-lightprimary.activated {
  background-color: #14c4ff;
}

.item-ios .text-ios-danger {
  color: tomato;
}

.item-ios-danger,
.item-divider-ios-danger {
  color: #fff;
  background-color: tomato;
}

.item-ios-danger p,
.item-divider-ios-danger p {
  color: #fff;
}

.item-ios-danger.activated,
.item-divider-ios-danger.activated {
  background-color: #eb5b41;
}

.item-ios .text-ios-lightbg {
  color: whitesmoke;
}

.item-ios-lightbg,
.item-divider-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.item-ios-lightbg p,
.item-divider-ios-lightbg p {
  color: #000;
}

.item-ios-lightbg.activated,
.item-divider-ios-lightbg.activated {
  background-color: #e1e1e1;
}

.list-ios ion-item-sliding {
  background-color: white;
}

.item-md {
  padding-left: 16px;
  padding-right: 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: none;
  color: #000;
  background-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item-md.activated {
  background-color: white;
}

.item-md[no-lines] {
  border-width: 0;
}

.item-md h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.item-md h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.item-md h3,
.item-md h4,
.item-md h5,
.item-md h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}

.item-md p {
  margin: 0 0 2px;
  overflow: inherit;
  font-size: 1.4rem;
  line-height: normal;
  text-overflow: inherit;
  color: #666;
}

.item-md.item-block .item-inner {
  padding-right: 8px;
  border-bottom: 1px solid #c7c7cc;
}

.item-md [item-left],
.item-md [item-right],
.item-md [item-start],
.item-md [item-end] {
  margin: 9px 8px 9px 0;
}

.item-md ion-icon[item-left],
.item-md ion-icon[item-right],
.item-md ion-icon[item-start],
.item-md ion-icon[item-end] {
  margin-left: 0;
  margin-top: 11px;
  margin-bottom: 10px;
}

.item-md .item-button {
  padding: 0 0.6em;
  height: 25px;
  font-size: 1.2rem;
}

.item-md .item-button[icon-only] ion-icon,
.item-md .item-button[icon-only] {
  padding: 0 1px;
}

.item-md ion-icon[item-left] + .item-inner,
.item-md ion-icon[item-left] + .item-input,
.item-md ion-icon[item-start] + .item-inner,
.item-md ion-icon[item-start] + .item-input {
  margin-left: 24px;
}

.item-md ion-avatar[item-left],
.item-md ion-thumbnail[item-left],
.item-md ion-avatar[item-start],
.item-md ion-thumbnail[item-start] {
  margin: 8px 16px 8px 0;
}

.item-md ion-avatar[item-right],
.item-md ion-thumbnail[item-right],
.item-md ion-avatar[item-end],
.item-md ion-thumbnail[item-end] {
  margin: 8px;
}

.item-md ion-avatar {
  min-width: 72px;
  min-height: 72px;
}

.item-md ion-avatar ion-img,
.item-md ion-avatar img {
  border-radius: 50%;
  overflow: hidden;
  width: 72px;
  height: 72px;
}

.item-md ion-thumbnail {
  min-width: 120px;
  min-height: 120px;
}

.item-md ion-thumbnail ion-img,
.item-md ion-thumbnail img {
  width: 120px;
  height: 120px;
}

ion-item-group .item-md:first-child .item-inner {
  border-top-width: 0;
}

ion-item-group .item-md:last-child .item-inner,
ion-item-group .item-md .item-wrapper:last-child .item-inner {
  border: 0;
}

.item-divider-md {
  padding-left: 16px;
  border-bottom: 1px solid #c7c7cc;
  font-size: 1.4rem;
  color: #7f8490;
  background-color: white;
}

.item-md .text-md-primary {
  color: #0167b1;
}

.item-md-primary,
.item-divider-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.item-md-primary p,
.item-divider-md-primary p {
  color: #fff;
}

.item-md-primary.activated,
.item-divider-md-primary.activated {
  background-color: #1573b7;
}

.item-md .text-md-primary1 {
  color: #4472CA;
}

.item-md-primary1,
.item-divider-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.item-md-primary1 p,
.item-divider-md-primary1 p {
  color: #fff;
}

.item-md-primary1.activated,
.item-divider-md-primary1.activated {
  background-color: #3f69ba;
}

.item-md .text-md-secondary {
  color: #7f8490;
}

.item-md-secondary,
.item-divider-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.item-md-secondary p,
.item-divider-md-secondary p {
  color: #fff;
}

.item-md-secondary.activated,
.item-divider-md-secondary.activated {
  background-color: #757984;
}

.item-md .text-md-light {
  color: ghostwhite;
}

.item-md-light,
.item-divider-md-light {
  color: #000;
  background-color: ghostwhite;
}

.item-md-light p,
.item-divider-md-light p {
  color: #000;
}

.item-md-light.activated,
.item-divider-md-light.activated {
  background-color: #e4e4eb;
}

.item-md .text-md-dark {
  color: #444444;
}

.item-md-dark,
.item-divider-md-dark {
  color: #fff;
  background-color: #444444;
}

.item-md-dark p,
.item-divider-md-dark p {
  color: #fff;
}

.item-md-dark.activated,
.item-divider-md-dark.activated {
  background-color: #535353;
}

.item-md .text-md-indicator {
  color: #666666;
}

.item-md-indicator,
.item-divider-md-indicator {
  color: #fff;
  background-color: #666666;
}

.item-md-indicator p,
.item-divider-md-indicator p {
  color: #fff;
}

.item-md-indicator.activated,
.item-divider-md-indicator.activated {
  background-color: #727272;
}

.item-md .text-md-success {
  color: green;
}

.item-md-success,
.item-divider-md-success {
  color: #fff;
  background-color: green;
}

.item-md-success p,
.item-divider-md-success p {
  color: #fff;
}

.item-md-success.activated,
.item-divider-md-success.activated {
  background-color: #148a14;
}

.item-md .text-md-lightprimary {
  color: deepskyblue;
}

.item-md-lightprimary,
.item-divider-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.item-md-lightprimary p,
.item-divider-md-lightprimary p {
  color: #fff;
}

.item-md-lightprimary.activated,
.item-divider-md-lightprimary.activated {
  background-color: #14c4ff;
}

.item-md .text-md-danger {
  color: tomato;
}

.item-md-danger,
.item-divider-md-danger {
  color: #fff;
  background-color: tomato;
}

.item-md-danger p,
.item-divider-md-danger p {
  color: #fff;
}

.item-md-danger.activated,
.item-divider-md-danger.activated {
  background-color: #eb5b41;
}

.item-md .text-md-lightbg {
  color: whitesmoke;
}

.item-md-lightbg,
.item-divider-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.item-md-lightbg p,
.item-divider-md-lightbg p {
  color: #000;
}

.item-md-lightbg.activated,
.item-divider-md-lightbg.activated {
  background-color: #e1e1e1;
}

.list-md ion-item-sliding {
  background-color: white;
}

.item-md ion-reorder {
  font-size: 1.5em;
  opacity: .3;
}

.item-wp {
  padding-left: 16px;
  padding-right: 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: none;
  color: #000;
  background-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-wp.activated {
  background-color: #aaa;
}

.item-wp[no-lines] {
  border-width: 0;
}

.item-wp h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.item-wp h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.item-wp h3,
.item-wp h4,
.item-wp h5,
.item-wp h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}

.item-wp p {
  margin: 0 0 2px;
  overflow: inherit;
  font-size: 1.4rem;
  line-height: normal;
  text-overflow: inherit;
  color: #666;
}

.item-wp.item-block .item-inner {
  padding-right: 8px;
  border-bottom: 1px solid transparent;
}

.item-wp [item-left],
.item-wp [item-right],
.item-wp [item-start],
.item-wp [item-end] {
  margin: 9px 8px 9px 0;
}

.item-wp ion-icon[item-left],
.item-wp ion-icon[item-right],
.item-wp ion-icon[item-start],
.item-wp ion-icon[item-end] {
  margin-left: 0;
  margin-top: 11px;
  margin-bottom: 10px;
}

.item-wp .item-button {
  padding: 0 0.6em;
  height: 25px;
  font-size: 1.2rem;
}

.item-wp .item-button[icon-only] ion-icon,
.item-wp .item-button[icon-only] {
  padding: 0 1px;
}

.item-wp[text-wrap] ion-label {
  font-size: 1.4rem;
  line-height: 1.5;
}

.item-wp ion-icon[item-left] + .item-inner,
.item-wp ion-icon[item-left] + .item-input,
.item-wp ion-icon[item-start] + .item-inner,
.item-wp ion-icon[item-start] + .item-input {
  margin-left: 8px;
}

.item-wp ion-avatar[item-left],
.item-wp ion-thumbnail[item-left],
.item-wp ion-avatar[item-start],
.item-wp ion-thumbnail[item-start] {
  margin: 8px 16px 8px 0;
}

.item-wp ion-avatar[item-right],
.item-wp ion-thumbnail[item-right],
.item-wp ion-avatar[item-end],
.item-wp ion-thumbnail[item-end] {
  margin: 8px;
}

.item-wp ion-avatar {
  min-width: 40px;
  min-height: 40px;
}

.item-wp ion-avatar ion-img,
.item-wp ion-avatar img {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.item-wp ion-thumbnail {
  min-width: 80px;
  min-height: 80px;
}

.item-wp ion-thumbnail ion-img,
.item-wp ion-thumbnail img {
  width: 80px;
  height: 80px;
}

.item-divider-wp {
  padding-left: 16px;
  border-bottom: 1px solid transparent;
  font-size: 2rem;
  color: #000;
  background-color: #fff;
}

.item-wp .text-wp-primary {
  color: #0167b1;
}

.item-wp-primary,
.item-divider-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.item-wp-primary p,
.item-divider-wp-primary p {
  color: #fff;
}

.item-wp-primary.activated,
.item-divider-wp-primary.activated {
  background-color: #1573b7;
}

.item-wp .text-wp-primary1 {
  color: #4472CA;
}

.item-wp-primary1,
.item-divider-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.item-wp-primary1 p,
.item-divider-wp-primary1 p {
  color: #fff;
}

.item-wp-primary1.activated,
.item-divider-wp-primary1.activated {
  background-color: #3f69ba;
}

.item-wp .text-wp-secondary {
  color: #7f8490;
}

.item-wp-secondary,
.item-divider-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.item-wp-secondary p,
.item-divider-wp-secondary p {
  color: #fff;
}

.item-wp-secondary.activated,
.item-divider-wp-secondary.activated {
  background-color: #757984;
}

.item-wp .text-wp-light {
  color: ghostwhite;
}

.item-wp-light,
.item-divider-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.item-wp-light p,
.item-divider-wp-light p {
  color: #000;
}

.item-wp-light.activated,
.item-divider-wp-light.activated {
  background-color: #e4e4eb;
}

.item-wp .text-wp-dark {
  color: #444444;
}

.item-wp-dark,
.item-divider-wp-dark {
  color: #fff;
  background-color: #444444;
}

.item-wp-dark p,
.item-divider-wp-dark p {
  color: #fff;
}

.item-wp-dark.activated,
.item-divider-wp-dark.activated {
  background-color: #535353;
}

.item-wp .text-wp-indicator {
  color: #666666;
}

.item-wp-indicator,
.item-divider-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.item-wp-indicator p,
.item-divider-wp-indicator p {
  color: #fff;
}

.item-wp-indicator.activated,
.item-divider-wp-indicator.activated {
  background-color: #727272;
}

.item-wp .text-wp-success {
  color: green;
}

.item-wp-success,
.item-divider-wp-success {
  color: #fff;
  background-color: green;
}

.item-wp-success p,
.item-divider-wp-success p {
  color: #fff;
}

.item-wp-success.activated,
.item-divider-wp-success.activated {
  background-color: #148a14;
}

.item-wp .text-wp-lightprimary {
  color: deepskyblue;
}

.item-wp-lightprimary,
.item-divider-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.item-wp-lightprimary p,
.item-divider-wp-lightprimary p {
  color: #fff;
}

.item-wp-lightprimary.activated,
.item-divider-wp-lightprimary.activated {
  background-color: #14c4ff;
}

.item-wp .text-wp-danger {
  color: tomato;
}

.item-wp-danger,
.item-divider-wp-danger {
  color: #fff;
  background-color: tomato;
}

.item-wp-danger p,
.item-divider-wp-danger p {
  color: #fff;
}

.item-wp-danger.activated,
.item-divider-wp-danger.activated {
  background-color: #eb5b41;
}

.item-wp .text-wp-lightbg {
  color: whitesmoke;
}

.item-wp-lightbg,
.item-divider-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.item-wp-lightbg p,
.item-divider-wp-lightbg p {
  color: #000;
}

.item-wp-lightbg.activated,
.item-divider-wp-lightbg.activated {
  background-color: #e1e1e1;
}

.list-wp ion-item-sliding {
  background-color: white;
}

ion-label {
  margin: 0;
  display: block;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-input ion-label {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  max-width: 200px;
  pointer-events: none;
}

[text-wrap] ion-label {
  white-space: normal;
}

ion-label[fixed] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  width: 100px;
  min-width: 100px;
  max-width: 200px;
}

.item-label-stacked ion-label,
.item-label-floating ion-label {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: auto;
  max-width: 100%;
}

ion-label[stacked],
ion-label[floating] {
  margin-bottom: 0;
}

.item-label-stacked .input-wrapper,
.item-label-floating .input-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.item-label-stacked ion-select,
.item-label-floating ion-select {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-width: 100%;
}

.label-ios {
  margin: 11px 8px 11px 0;
}

.item-input .label-ios,
.item-select .label-ios,
.item-datetime .label-ios {
  color: #0167b1 !important;
}

.label-ios + ion-input .text-input,
.label-ios + ion-textarea .text-input,
.label-ios + .input + .cloned-input {
  margin-left: 16px;
  width: calc(100% - (16px / 2) - 16px);
}

.label-ios[stacked] {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.label-ios[floating] {
  margin-bottom: 0;
  -webkit-transform: translate3d(0,  27px,  0);
  transform: translate3d(0,  27px,  0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 150ms ease-in-out;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

.item-input-has-focus .label-ios[floating],
.input-has-focus .label-ios[floating],
.item-input-has-value .label-ios[floating],
.input-has-value .label-ios[floating] {
  -webkit-transform: translate3d(0,  0,  0) scale(0.8);
  transform: translate3d(0,  0,  0) scale(0.8);
}

.item-ios.item-label-stacked [item-right],
.item-ios.item-label-floating [item-right],
.item-ios.item-label-stacked [item-end],
.item-ios.item-label-floating [item-end] {
  margin-top: 6px;
  margin-bottom: 6px;
}

.label-ios-primary,
.item-input .label-ios-primary,
.item-select .label-ios-primary,
.item-datetime .label-ios-primary {
  color: #0167b1;
}

.label-ios-primary1,
.item-input .label-ios-primary1,
.item-select .label-ios-primary1,
.item-datetime .label-ios-primary1 {
  color: #4472CA;
}

.label-ios-secondary,
.item-input .label-ios-secondary,
.item-select .label-ios-secondary,
.item-datetime .label-ios-secondary {
  color: #7f8490;
}

.label-ios-light,
.item-input .label-ios-light,
.item-select .label-ios-light,
.item-datetime .label-ios-light {
  color: ghostwhite;
}

.label-ios-dark,
.item-input .label-ios-dark,
.item-select .label-ios-dark,
.item-datetime .label-ios-dark {
  color: #444444;
}

.label-ios-indicator,
.item-input .label-ios-indicator,
.item-select .label-ios-indicator,
.item-datetime .label-ios-indicator {
  color: #666666;
}

.label-ios-success,
.item-input .label-ios-success,
.item-select .label-ios-success,
.item-datetime .label-ios-success {
  color: green;
}

.label-ios-lightprimary,
.item-input .label-ios-lightprimary,
.item-select .label-ios-lightprimary,
.item-datetime .label-ios-lightprimary {
  color: deepskyblue;
}

.label-ios-danger,
.item-input .label-ios-danger,
.item-select .label-ios-danger,
.item-datetime .label-ios-danger {
  color: tomato;
}

.label-ios-lightbg,
.item-input .label-ios-lightbg,
.item-select .label-ios-lightbg,
.item-datetime .label-ios-lightbg {
  color: whitesmoke;
}

.label-md {
  margin: 13px 8px 13px 0;
}

[text-wrap] .label-md {
  font-size: 1.4rem;
  line-height: 1.5;
}

.item-input .label-md,
.item-select .label-md,
.item-datetime .label-md {
  color: #0167b1 !important;
}

.label-md[stacked] {
  font-size: 1.2rem;
}

.label-md[floating] {
  -webkit-transform: translate3d(0,  27px,  0);
  transform: translate3d(0,  27px,  0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 150ms ease-in-out;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

.label-md[stacked],
.label-md[floating] {
  margin-left: 0;
  margin-bottom: 0;
}

.item-input-has-focus .label-md[stacked],
.input-has-focus .label-md[stacked],
.item-input-has-focus .label-md[floating],
.input-has-focus .label-md[floating] {
  color: #0167b1;
}

.item-input-has-focus .label-md[floating],
.input-has-focus .label-md[floating],
.item-input-has-value .label-md[floating],
.input-has-value .label-md[floating] {
  -webkit-transform: translate3d(0,  0,  0) scale(0.8);
  transform: translate3d(0,  0,  0) scale(0.8);
}

.item-md.item-label-stacked [item-right],
.item-md.item-label-floating [item-right],
.item-md.item-label-stacked [item-end],
.item-md.item-label-floating [item-end] {
  margin-top: 7px;
  margin-bottom: 7px;
}

.label-md-primary,
.item-input .label-md-primary,
.item-select .label-md-primary,
.item-datetime .label-md-primary {
  color: #0167b1;
}

.label-md-primary1,
.item-input .label-md-primary1,
.item-select .label-md-primary1,
.item-datetime .label-md-primary1 {
  color: #4472CA;
}

.label-md-secondary,
.item-input .label-md-secondary,
.item-select .label-md-secondary,
.item-datetime .label-md-secondary {
  color: #7f8490;
}

.label-md-light,
.item-input .label-md-light,
.item-select .label-md-light,
.item-datetime .label-md-light {
  color: ghostwhite;
}

.label-md-dark,
.item-input .label-md-dark,
.item-select .label-md-dark,
.item-datetime .label-md-dark {
  color: #444444;
}

.label-md-indicator,
.item-input .label-md-indicator,
.item-select .label-md-indicator,
.item-datetime .label-md-indicator {
  color: #666666;
}

.label-md-success,
.item-input .label-md-success,
.item-select .label-md-success,
.item-datetime .label-md-success {
  color: green;
}

.label-md-lightprimary,
.item-input .label-md-lightprimary,
.item-select .label-md-lightprimary,
.item-datetime .label-md-lightprimary {
  color: deepskyblue;
}

.label-md-danger,
.item-input .label-md-danger,
.item-select .label-md-danger,
.item-datetime .label-md-danger {
  color: tomato;
}

.label-md-lightbg,
.item-input .label-md-lightbg,
.item-select .label-md-lightbg,
.item-datetime .label-md-lightbg {
  color: whitesmoke;
}

.label-wp {
  margin: 13px 8px 13px 0;
}

.item-input .label-wp,
.item-select .label-wp,
.item-datetime .label-wp {
  color: #999;
}

.label-wp[stacked] {
  font-size: 1.2rem;
}

.label-wp[floating] {
  -webkit-transform: translate3d(8px,  34px,  0);
  transform: translate3d(8px,  34px,  0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.label-wp[stacked],
.label-wp[floating] {
  margin-left: 0;
  margin-bottom: 0;
}

.item-input-has-focus .label-wp[stacked],
.input-has-focus .label-wp[stacked],
.item-input-has-focus .label-wp[floating],
.input-has-focus .label-wp[floating] {
  color: #0167b1;
}

.item-input-has-focus .label-wp[floating],
.input-has-focus .label-wp[floating],
.item-input-has-value .label-wp[floating],
.input-has-value .label-wp[floating] {
  -webkit-transform: translate3d(0,  0,  0) scale(0.8);
  transform: translate3d(0,  0,  0) scale(0.8);
}

.item-wp.item-label-stacked [item-right],
.item-wp.item-label-floating [item-right],
.item-wp.item-label-stacked [item-end],
.item-wp.item-label-floating [item-end] {
  margin-top: 13px;
  margin-bottom: 13px;
}

.label-wp-primary,
.item-input .label-wp-primary,
.item-select .label-wp-primary,
.item-datetime .label-wp-primary {
  color: #0167b1;
}

.label-wp-primary1,
.item-input .label-wp-primary1,
.item-select .label-wp-primary1,
.item-datetime .label-wp-primary1 {
  color: #4472CA;
}

.label-wp-secondary,
.item-input .label-wp-secondary,
.item-select .label-wp-secondary,
.item-datetime .label-wp-secondary {
  color: #7f8490;
}

.label-wp-light,
.item-input .label-wp-light,
.item-select .label-wp-light,
.item-datetime .label-wp-light {
  color: ghostwhite;
}

.label-wp-dark,
.item-input .label-wp-dark,
.item-select .label-wp-dark,
.item-datetime .label-wp-dark {
  color: #444444;
}

.label-wp-indicator,
.item-input .label-wp-indicator,
.item-select .label-wp-indicator,
.item-datetime .label-wp-indicator {
  color: #666666;
}

.label-wp-success,
.item-input .label-wp-success,
.item-select .label-wp-success,
.item-datetime .label-wp-success {
  color: green;
}

.label-wp-lightprimary,
.item-input .label-wp-lightprimary,
.item-select .label-wp-lightprimary,
.item-datetime .label-wp-lightprimary {
  color: deepskyblue;
}

.label-wp-danger,
.item-input .label-wp-danger,
.item-select .label-wp-danger,
.item-datetime .label-wp-danger {
  color: tomato;
}

.label-wp-lightbg,
.item-input .label-wp-lightbg,
.item-select .label-wp-lightbg,
.item-datetime .label-wp-lightbg {
  color: whitesmoke;
}

ion-list-header {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 4rem;
}

ion-list {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none;
}

ion-list[inset] {
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.list-ios {
  margin: -1px 0 32px;
}

.list-ios > .item-block:first-child {
  border-top: 0.55px solid #c8c7cc;
}

.list-ios > .item-block:last-child,
.list-ios > .item-wrapper:last-child .item-block {
  border-bottom: 0.55px solid #c8c7cc;
}

.list-ios > .item-block:last-child .item-inner,
.list-ios > .item-wrapper:last-child .item-block .item-inner {
  border-bottom: 0;
}

.list-ios .item-block .item-inner {
  border-bottom: 0.55px solid #c8c7cc;
}

.list-ios .item[no-lines],
.list-ios .item[no-lines] .item-inner {
  border-width: 0;
}

.list-ios ion-item-options {
  border-bottom: 0.55px solid #c8c7cc;
}

.list-ios ion-item-options .button {
  margin: 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  min-height: 100%;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list-ios ion-item-options .button::before {
  margin: 0 auto;
}

.list-ios:not([inset]) + .list-ios:not([inset]) ion-list-header {
  margin-top: -10px;
  padding-top: 0;
}

.list-ios[inset] {
  margin: 16px;
  border-radius: 4px;
}

.list-ios[inset] ion-list-header {
  background-color: white;
}

.list-ios[inset] .item {
  border-bottom: 1px solid #c8c7cc;
}

.list-ios[inset] .item-inner {
  border-bottom: 0;
}

.list-ios[inset] > .item:first-child,
.list-ios[inset] > .item-wrapper:first-child .item {
  border-top: 0;
}

.list-ios[inset] > .item:last-child,
.list-ios[inset] > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.list-ios[inset] + ion-list[inset] {
  margin-top: 0;
}

.list-ios[no-lines] ion-list-header,
.list-ios[no-lines] ion-item-options,
.list-ios[no-lines] .item,
.list-ios[no-lines] .item .item-inner {
  border-width: 0;
}

.list-header-ios {
  padding-left: 16px;
  padding-left: 16px;
  position: relative;
  border-bottom: 0.55px solid #c8c7cc;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #333;
  background: transparent;
}

@media screen and (orientation: landscape) {
  .list-header-ios {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

.list-header-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.list-header-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.list-header-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.list-header-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.list-header-ios-dark {
  color: #fff;
  background-color: #444444;
}

.list-header-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.list-header-ios-success {
  color: #fff;
  background-color: green;
}

.list-header-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.list-header-ios-danger {
  color: #fff;
  background-color: tomato;
}

.list-header-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.list-md {
  margin: -1px 0 16px;
}

.list-md .item-block .item-inner {
  border-bottom: 1px solid #c7c7cc;
}

.list-md > .item-block:last-child ion-label,
.list-md > .item-block:last-child .item-inner,
.list-md > .item-wrapper:last-child ion-label,
.list-md > .item-wrapper:last-child .item-inner {
  border-bottom: 0;
}

.list-md > ion-input:last-child::after {
  left: 0;
}

.list-md ion-item-options {
  border-bottom: 1px solid #c7c7cc;
}

.list-md ion-item-options .button {
  margin: 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list-md ion-item-options .button::before {
  margin: 0 auto;
}

.list-md .item[no-lines],
.list-md .item[no-lines] .item-inner {
  border-width: 0;
}

.list-md + ion-list ion-list-header {
  margin-top: -16px;
}

.list-md[inset] {
  margin: 16px;
  border-radius: 2px;
}

.list-md[inset] .item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-width: 0;
}

.list-md[inset] .item:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-width: 0;
}

.list-md[inset] .item-input {
  padding-left: 0;
  padding-right: 0;
}

.list-md[inset] + ion-list[inset] {
  margin-top: 0;
}

.list-md[inset] ion-list-header {
  background-color: white;
}

.list-md[no-lines] .item-block,
.list-md[no-lines] ion-item-options,
.list-md[no-lines] .item .item-inner {
  border-width: 0;
}

.list-header-md {
  padding-left: 16px;
  margin-bottom: 13px;
  min-height: 4.5rem;
  border-top: 1px solid #c7c7cc;
  font-size: 1.4rem;
  color: #757575;
}

.list-header-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.list-header-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.list-header-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.list-header-md-light {
  color: #000;
  background-color: ghostwhite;
}

.list-header-md-dark {
  color: #fff;
  background-color: #444444;
}

.list-header-md-indicator {
  color: #fff;
  background-color: #666666;
}

.list-header-md-success {
  color: #fff;
  background-color: green;
}

.list-header-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.list-header-md-danger {
  color: #fff;
  background-color: tomato;
}

.list-header-md-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.list-md .item-input:last-child {
  border-bottom: 1px solid #c7c7cc;
}

.list-wp {
  margin: 0 0 16px;
}

.list-wp .item-block .item-inner {
  border-bottom: 1px solid transparent;
}

.list-wp > .item-block:first-child,
.list-wp > .item-wrapper:first-child .item-block {
  border-top: 1px solid transparent;
}

.list-wp > .item-block:last-child,
.list-wp > .item-wrapper:last-child .item-block {
  border-bottom: 1px solid transparent;
}

.list-wp > .item-block:last-child ion-label,
.list-wp > .item-block:last-child .item-inner,
.list-wp > .item-wrapper:last-child ion-label,
.list-wp > .item-wrapper:last-child .item-inner {
  border-bottom: 0;
}

.list-wp > ion-input:last-child::after {
  left: 0;
}

.list-wp ion-item-options .button {
  margin: 1px 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100% - 2px);
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list-wp ion-item-options .button::before {
  margin: 0 auto;
}

.list-wp .item[no-lines],
.list-wp .item[no-lines] .item-inner {
  border-width: 0;
}

.list-wp + ion-list ion-list-header {
  margin-top: -16px;
  padding-top: 0;
}

.list-wp[inset] {
  margin: 16px;
  border-radius: 2px;
}

.list-wp[inset] .item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-width: 0;
}

.list-wp[inset] .item:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-width: 0;
}

.list-wp[inset] .item-input {
  padding-left: 0;
  padding-right: 0;
}

.list-wp[inset] + ion-list[inset] {
  margin-top: 0;
}

.list-wp[inset] ion-list-header {
  background-color: white;
}

.list-wp[no-lines] .item,
.list-wp[no-lines] .item .item-inner {
  border-width: 0;
}

.list-header-wp {
  padding-left: 16px;
  border-bottom: 1px solid transparent;
  font-size: 2rem;
  color: #000;
}

.list-header-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.list-header-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.list-header-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.list-header-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.list-header-wp-dark {
  color: #fff;
  background-color: #444444;
}

.list-header-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.list-header-wp-success {
  color: #fff;
  background-color: green;
}

.list-header-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.list-header-wp-danger {
  color: #fff;
  background-color: tomato;
}

.list-header-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

ion-loading {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

.loading-wrapper {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}

.loading-ios .loading-wrapper {
  border-radius: 8px;
  max-width: 270px;
  max-height: 90%;
  color: #000;
  background: #f8f8f8;
  padding: 24px 34px;
}

.loading-ios .loading-content {
  font-weight: bold;
}

.loading-ios .loading-spinner + .loading-content {
  margin-left: 16px;
}

.loading-ios .spinner-ios line,
.loading-ios .spinner-ios-small line {
  stroke: #69717d;
}

.loading-ios .spinner-bubbles circle {
  fill: #69717d;
}

.loading-ios .spinner-circles circle {
  fill: #69717d;
}

.loading-ios .spinner-crescent circle {
  stroke: #69717d;
}

.loading-ios .spinner-dots circle {
  fill: #69717d;
}

.loading-md .loading-wrapper {
  border-radius: 2px;
  max-width: 280px;
  max-height: 90%;
  color: rgba(0, 0, 0, 0.5);
  background: #fafafa;
  -webkit-box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  padding: 24px;
}

.loading-md .loading-spinner + .loading-content {
  margin-left: 16px;
}

.loading-md .spinner-ios line,
.loading-md .spinner-ios-small line {
  stroke: #0167b1;
}

.loading-md .spinner-bubbles circle {
  fill: #0167b1;
}

.loading-md .spinner-circles circle {
  fill: #0167b1;
}

.loading-md .spinner-crescent circle {
  stroke: #0167b1;
}

.loading-md .spinner-dots circle {
  fill: #0167b1;
}

.loading-wp .loading-wrapper {
  border-radius: 2px;
  max-width: 280px;
  max-height: 90%;
  color: #fff;
  background: #000;
  padding: 20px;
}

.loading-wp .loading-spinner + .loading-content {
  margin-left: 16px;
}

.loading-wp .spinner-ios line,
.loading-wp .spinner-ios-small line {
  stroke: #fff;
}

.loading-wp .spinner-bubbles circle {
  fill: #fff;
}

.loading-wp .spinner-circles circle {
  fill: #fff;
}

.loading-wp .spinner-crescent circle {
  stroke: #fff;
}

.loading-wp .spinner-dots circle {
  fill: #fff;
}

ion-menu {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: none;
  contain: strict;
}

ion-menu.show-menu {
  display: block;
}

.menu-inner {
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  -webkit-transform: translate3d(-9999px,  0,  0);
  transform: translate3d(-9999px,  0,  0);
  position: absolute;
  display: block;
  width: 304px;
  height: 100%;
  contain: strict;
}

.menu-inner > ion-header,
.menu-inner > ion-content,
.menu-inner > ion-footer {
  position: absolute;
}

ion-menu[side=left] > .menu-inner {
  right: auto;
  left: 0;
}

ion-menu[side=right] > .menu-inner {
  right: 0;
  left: auto;
}

ion-menu[side=end] > .menu-inner {
  left: auto;
  right: 0;
}

ion-menu ion-backdrop {
  z-index: -1;
  display: none;
  opacity: .01;
}

.menu-content {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

.menu-content-open {
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.menu-content-open ion-pane,
.menu-content-open ion-content,
.menu-content-open .toolbar {
  pointer-events: none;
}

@media (max-width: 340px) {
  .menu-inner {
    width: 264px;
  }
}

ion-menu[type=reveal] {
  z-index: 0;
}

ion-menu[type=reveal].show-menu .menu-inner {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

ion-menu[type=overlay] {
  z-index: 80;
}

ion-menu[type=overlay] .show-backdrop {
  display: block;
}

.ios .menu-inner {
  background: white;
}

.ios .menu-content-reveal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.ios .menu-content-push {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.ios ion-menu[type=overlay] .menu-inner {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.md .menu-inner {
  background: white;
}

.md .menu-content-reveal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.md .menu-content-push {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.md ion-menu[type=overlay] .menu-inner {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.wp .menu-inner {
  background: #f2f2f2;
}

ion-modal {
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  contain: strict;
}

@media not all and (min-width: 768px) and (min-height: 600px) {
  ion-modal ion-backdrop {
    visibility: hidden;
  }
}

.modal-wrapper {
  z-index: 10;
  height: 100%;
  contain: strict;
}

@media only screen and (min-width: 768px) and (min-height: 600px) {
  .modal-wrapper {
    left: calc(50% - (600px/2));
    top: calc(50% - (500px/2));
    position: absolute;
    width: 600px;
    height: 500px;
  }
}

@media only screen and (min-width: 768px) and (min-height: 768px) {
  .modal-wrapper {
    left: calc(50% - (600px/2));
    top: calc(50% - (600px/2));
    position: absolute;
    width: 600px;
    height: 600px;
  }
}

.ios .modal-wrapper {
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
}

@media only screen and (min-width: 768px) and (min-height: 600px) {
  .ios .modal-wrapper {
    border-radius: 10px;
    overflow: hidden;
  }
}

.md .modal-wrapper {
  -webkit-transform: translate3d(0,  40px,  0);
  transform: translate3d(0,  40px,  0);
  opacity: .01;
}

@media only screen and (min-width: 768px) and (min-height: 600px) {
  .md .modal-wrapper {
    border-radius: 2px;
    overflow: hidden;
    -webkit-box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4);
  }
}

.wp .modal-wrapper {
  -webkit-transform: translate3d(0,  40px,  0);
  transform: translate3d(0,  40px,  0);
  opacity: .01;
}

.note-ios {
  color: #aeacb4;
}

.note-ios-primary {
  color: #0167b1;
}

.note-ios-primary1 {
  color: #4472CA;
}

.note-ios-secondary {
  color: #7f8490;
}

.note-ios-light {
  color: ghostwhite;
}

.note-ios-dark {
  color: #444444;
}

.note-ios-indicator {
  color: #666666;
}

.note-ios-success {
  color: green;
}

.note-ios-lightprimary {
  color: deepskyblue;
}

.note-ios-danger {
  color: tomato;
}

.note-ios-lightbg {
  color: whitesmoke;
}

.note-md {
  color: #acacb4;
}

.note-md-primary {
  color: #0167b1;
}

.note-md-primary1 {
  color: #4472CA;
}

.note-md-secondary {
  color: #7f8490;
}

.note-md-light {
  color: ghostwhite;
}

.note-md-dark {
  color: #444444;
}

.note-md-indicator {
  color: #666666;
}

.note-md-success {
  color: green;
}

.note-md-lightprimary {
  color: deepskyblue;
}

.note-md-danger {
  color: tomato;
}

.note-md-lightbg {
  color: whitesmoke;
}

.note-wp {
  color: rgba(0, 0, 0, 0.5);
}

.note-wp-primary {
  color: #0167b1;
}

.note-wp-primary1 {
  color: #4472CA;
}

.note-wp-secondary {
  color: #7f8490;
}

.note-wp-light {
  color: ghostwhite;
}

.note-wp-dark {
  color: #444444;
}

.note-wp-indicator {
  color: #666666;
}

.note-wp-success {
  color: green;
}

.note-wp-lightprimary {
  color: deepskyblue;
}

.note-wp-danger {
  color: tomato;
}

.note-wp-lightbg {
  color: whitesmoke;
}

ion-picker-cmp {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
  contain: strict;
}

.picker-toolbar {
  z-index: 1;
  width: 100%;
  contain: strict;
}

.picker-wrapper {
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  contain: strict;
}

.picker-columns {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

.picker-col {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: content;
}

.picker-opts {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
}

.picker-prefix {
  text-align: right;
  text-align: end;
  position: relative;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 45%;
  max-width: 50%;
  white-space: nowrap;
}

.picker-suffix {
  text-align: left;
  text-align: start;
  position: relative;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 45%;
  max-width: 50%;
  white-space: nowrap;
}

.picker-opt {
  left: 0;
  top: 0;
  text-align: center;
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  will-change: transform;
  contain: strict;
}

.picker-opt.picker-opt-disabled {
  pointer-events: none;
}

.picker-opt-disabled {
  opacity: 0;
}

.picker-opts-left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.picker-opts-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.picker-above-highlight,
.picker-below-highlight {
  display: none;
  pointer-events: none;
}

.picker-ios .picker-wrapper {
  height: 260px;
  border-top: 1px solid #c8c7cc;
  background: white;
}

.picker-ios .picker-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  border-bottom: 0.55px solid #c8c7cc;
  background: white;
}

.picker-ios .picker-toolbar-button {
  text-align: right;
  text-align: end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.picker-ios .picker-toolbar-button:last-child .picker-button {
  font-weight: 600;
}

.picker-ios .picker-toolbar-cancel {
  text-align: left;
  text-align: start;
  font-weight: normal;
}

.picker-ios .picker-button,
.picker-ios .picker-button.activated {
  margin: 0;
  height: 44px;
  color: #0167b1;
  background: transparent;
}

.picker-columns {
  height: 215px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.picker-ios .picker-col {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 4px;
}

.picker-ios .picker-prefix,
.picker-ios .picker-suffix,
.picker-ios .picker-opts {
  top: 77px;
  font-size: 20px;
  line-height: 42px;
  color: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  pointer-events: none;
}

.picker-ios .picker-opt {
  margin: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  height: 4.6rem;
  font-size: 20px;
  line-height: 42px;
  color: #000;
  background: transparent;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: auto;
  padding: 0;
}

.picker-ios .picker-above-highlight {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid #c8c7cc;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-ios .picker-below-highlight {
  left: 0;
  top: 115px;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 11;
  display: block;
  width: 100%;
  height: 119px;
  border-top: 1px solid #c8c7cc;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-md .picker-wrapper {
  height: 260px;
  border-top: 0.55px solid #c7c7cc;
  background: white;
}

.picker-md .picker-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 44px;
  background: white;
}

.picker-md .picker-button,
.picker-md .picker-button.activated {
  margin: 0;
  height: 44px;
  color: #0167b1;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.picker-md .picker-columns {
  height: 216px;
  -webkit-perspective: 1800px;
  perspective: 1800px;
}

.picker-md .picker-col {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 8px;
}

.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opts {
  top: 77px;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  pointer-events: none;
}

.picker-md .picker-opt {
  margin: 0;
  height: 4.3rem;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  background: transparent;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: auto;
  padding: 0;
}

.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opt.picker-opt-selected {
  color: #0167b1;
}

.picker-md .picker-above-highlight {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid #c7c7cc;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-md .picker-below-highlight {
  left: 0;
  top: 115px;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 11;
  width: 100%;
  height: 119px;
  border-top: 1px solid #c7c7cc;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-wp .picker-wrapper {
  height: 260px;
  border-top: 0.55px solid transparent;
  background: white;
}

.picker-wp .picker-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 44px;
  border-width: 0.55px;
  background: white;
}

.picker-wp .picker-toolbar-button {
  text-align: right;
  text-align: end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.picker-wp .picker-toolbar-cancel {
  text-align: left;
  text-align: start;
  font-weight: normal;
}

.picker-wp .picker-button,
.picker-wp .picker-button.activated {
  margin: 0;
  height: 44px;
  color: #0167b1;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.picker-wp .picker-columns {
  height: 216px;
  -webkit-perspective: 1800px;
  perspective: 1800px;
}

.picker-wp .picker-col {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 4px;
}

.picker-wp .picker-prefix,
.picker-wp .picker-suffix,
.picker-wp .picker-opts {
  top: 77px;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  pointer-events: none;
}

.picker-wp .picker-opt {
  margin: 0;
  height: 4.2rem;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  background: transparent;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: auto;
  padding: 0;
}

.picker-wp .picker-prefix,
.picker-wp .picker-suffix,
.picker-wp .picker-opt-selected {
  color: #0167b1;
}

.picker-wp .picker-above-highlight {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-wp .picker-below-highlight {
  left: 0;
  top: 115px;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 11;
  width: 100%;
  height: 119px;
  border-top: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%);
}

ion-popover {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popover-wrapper {
  z-index: 10;
  opacity: 0;
}

.popover-content {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.popover-content ion-content,
.popover-content .scroll-content {
  contain: none;
}

.popover-content .scroll-content {
  position: relative;
}

.popover-ios .popover-content {
  border-radius: 10px;
  width: 200px;
  min-width: 0;
  min-height: 0;
  max-height: 90%;
  color: #000;
  background: white;
}

.popover-ios .popover-arrow {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 20px;
  height: 10px;
}

.popover-ios .popover-arrow::after {
  left: 3px;
  top: 3px;
  border-radius: 3px;
  position: absolute;
  z-index: 10;
  width: 14px;
  height: 14px;
  background-color: white;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popover-ios.popover-bottom .popover-arrow {
  top: auto;
  bottom: -10px;
}

.popover-ios.popover-bottom .popover-arrow::after {
  top: -6px;
}

.popover-ios .item-ios {
  padding-left: 16px;
}

.popover-ios .item-ios[detail-push] .item-inner,
.popover-ios button.item-ios:not([detail-none]) .item-inner,
.popover-ios a.item-ios:not([detail-none]) .item-inner {
  background-position: right 14px center;
}

.popover-md .popover-content {
  border-radius: 2px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  width: 250px;
  min-width: 0;
  min-height: 0;
  max-height: 90%;
  color: #000;
  background: white;
  -webkit-box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.3);
}

.popover-md .popover-viewport {
  opacity: 0;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.popover-wp .popover-content {
  border-radius: 0;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  width: 200px;
  min-width: 0;
  min-height: 0;
  max-height: 90%;
  border: 2px solid #ccc;
  color: #000;
  background: white;
}

.popover-wp .popover-viewport {
  opacity: 0;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.radio-ios {
  position: relative;
  display: inline-block;
}

.radio-ios .radio-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 21px;
}

.radio-ios .radio-checked .radio-inner {
  left: 7px;
  top: 4px;
  position: absolute;
  width: 5px;
  height: 12px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #0167b1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-ios.radio-disabled,
.item-ios.item-radio-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-ios .radio-ios {
  position: static;
  display: block;
  margin: 8px 11px 8px 8px;
}

.item-ios .radio-ios[item-left], .item-ios .radio-ios[item-start] {
  margin: 8px 21px 8px 3px;
}

.item-radio.item-ios ion-label {
  margin-left: 0;
}

.item-radio-checked.item-ios ion-label {
  color: #0167b1;
}

.item-radio-ios-primary.item-radio-checked ion-label {
  color: #0167b1;
}

.radio-ios-primary .radio-checked {
  color: #0167b1;
}

.radio-ios-primary .radio-checked .radio-inner {
  border-color: #0167b1;
}

.item-radio-ios-primary1.item-radio-checked ion-label {
  color: #4472CA;
}

.radio-ios-primary1 .radio-checked {
  color: #4472CA;
}

.radio-ios-primary1 .radio-checked .radio-inner {
  border-color: #4472CA;
}

.item-radio-ios-secondary.item-radio-checked ion-label {
  color: #7f8490;
}

.radio-ios-secondary .radio-checked {
  color: #7f8490;
}

.radio-ios-secondary .radio-checked .radio-inner {
  border-color: #7f8490;
}

.item-radio-ios-light.item-radio-checked ion-label {
  color: ghostwhite;
}

.radio-ios-light .radio-checked {
  color: ghostwhite;
}

.radio-ios-light .radio-checked .radio-inner {
  border-color: ghostwhite;
}

.item-radio-ios-dark.item-radio-checked ion-label {
  color: #444444;
}

.radio-ios-dark .radio-checked {
  color: #444444;
}

.radio-ios-dark .radio-checked .radio-inner {
  border-color: #444444;
}

.item-radio-ios-indicator.item-radio-checked ion-label {
  color: #666666;
}

.radio-ios-indicator .radio-checked {
  color: #666666;
}

.radio-ios-indicator .radio-checked .radio-inner {
  border-color: #666666;
}

.item-radio-ios-success.item-radio-checked ion-label {
  color: green;
}

.radio-ios-success .radio-checked {
  color: green;
}

.radio-ios-success .radio-checked .radio-inner {
  border-color: green;
}

.item-radio-ios-lightprimary.item-radio-checked ion-label {
  color: deepskyblue;
}

.radio-ios-lightprimary .radio-checked {
  color: deepskyblue;
}

.radio-ios-lightprimary .radio-checked .radio-inner {
  border-color: deepskyblue;
}

.item-radio-ios-danger.item-radio-checked ion-label {
  color: tomato;
}

.radio-ios-danger .radio-checked {
  color: tomato;
}

.radio-ios-danger .radio-checked .radio-inner {
  border-color: tomato;
}

.item-radio-ios-lightbg.item-radio-checked ion-label {
  color: whitesmoke;
}

.radio-ios-lightbg .radio-checked {
  color: whitesmoke;
}

.radio-ios-lightbg .radio-checked .radio-inner {
  border-color: whitesmoke;
}

.radio-md {
  position: relative;
  display: inline-block;
}

.radio-md .radio-icon {
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #7f8490;
}

.radio-md .radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #0167b1;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-md .radio-checked {
  border-color: #0167b1;
}

.radio-md .radio-checked .radio-inner {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.radio-md.radio-disabled,
.item-md.item-radio-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-md .radio-md {
  position: static;
  display: block;
  margin: 9px 10px 9px 0;
}

.item-md .radio-md[item-left], .item-md .radio-md[item-start] {
  margin: 11px 36px 10px 4px;
}

.item-radio.item-md ion-label {
  margin-left: 0;
}

.item-radio-checked.item-md ion-label {
  color: #0167b1;
}

.item-radio-md-primary.item-radio-checked ion-label {
  color: #0167b1;
}

.radio-md-primary .radio-checked {
  border-color: #0167b1;
}

.radio-md-primary .radio-inner {
  background-color: #0167b1;
}

.item-radio-md-primary1.item-radio-checked ion-label {
  color: #4472CA;
}

.radio-md-primary1 .radio-checked {
  border-color: #4472CA;
}

.radio-md-primary1 .radio-inner {
  background-color: #4472CA;
}

.item-radio-md-secondary.item-radio-checked ion-label {
  color: #7f8490;
}

.radio-md-secondary .radio-checked {
  border-color: #7f8490;
}

.radio-md-secondary .radio-inner {
  background-color: #7f8490;
}

.item-radio-md-light.item-radio-checked ion-label {
  color: ghostwhite;
}

.radio-md-light .radio-checked {
  border-color: ghostwhite;
}

.radio-md-light .radio-inner {
  background-color: ghostwhite;
}

.item-radio-md-dark.item-radio-checked ion-label {
  color: #444444;
}

.radio-md-dark .radio-checked {
  border-color: #444444;
}

.radio-md-dark .radio-inner {
  background-color: #444444;
}

.item-radio-md-indicator.item-radio-checked ion-label {
  color: #666666;
}

.radio-md-indicator .radio-checked {
  border-color: #666666;
}

.radio-md-indicator .radio-inner {
  background-color: #666666;
}

.item-radio-md-success.item-radio-checked ion-label {
  color: green;
}

.radio-md-success .radio-checked {
  border-color: green;
}

.radio-md-success .radio-inner {
  background-color: green;
}

.item-radio-md-lightprimary.item-radio-checked ion-label {
  color: deepskyblue;
}

.radio-md-lightprimary .radio-checked {
  border-color: deepskyblue;
}

.radio-md-lightprimary .radio-inner {
  background-color: deepskyblue;
}

.item-radio-md-danger.item-radio-checked ion-label {
  color: tomato;
}

.radio-md-danger .radio-checked {
  border-color: tomato;
}

.radio-md-danger .radio-inner {
  background-color: tomato;
}

.item-radio-md-lightbg.item-radio-checked ion-label {
  color: whitesmoke;
}

.radio-md-lightbg .radio-checked {
  border-color: whitesmoke;
}

.radio-md-lightbg .radio-inner {
  background-color: whitesmoke;
}

.radio-wp {
  position: relative;
  display: inline-block;
}

.radio-wp .radio-icon {
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #333;
}

.radio-wp .radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  display: none;
  width: 8px;
  height: 8px;
  background-color: #333;
}

.radio-wp .radio-checked {
  border-color: #0167b1;
}

.radio-wp .radio-checked .radio-inner {
  display: block;
}

.radio-wp.radio-disabled,
.item-wp.item-radio-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-wp .radio-wp {
  position: static;
  display: block;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  margin: 9px 20px 9px 4px;
}

.item-wp .radio-wp[item-right], .item-wp .radio-wp[item-end] {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  margin: 11px 10px 10px 0;
}

.item-radio.item-wp ion-label {
  margin-left: 0;
}

.radio-wp-primary .radio-checked {
  border-color: #0167b1;
}

.radio-wp-primary1 .radio-checked {
  border-color: #4472CA;
}

.radio-wp-secondary .radio-checked {
  border-color: #7f8490;
}

.radio-wp-light .radio-checked {
  border-color: ghostwhite;
}

.radio-wp-dark .radio-checked {
  border-color: #444444;
}

.radio-wp-indicator .radio-checked {
  border-color: #666666;
}

.radio-wp-success .radio-checked {
  border-color: green;
}

.radio-wp-lightprimary .radio-checked {
  border-color: deepskyblue;
}

.radio-wp-danger .radio-checked {
  border-color: tomato;
}

.radio-wp-lightbg .radio-checked {
  border-color: whitesmoke;
}

.item-range .item-inner {
  overflow: visible;
  width: 100%;
}

.item-range .input-wrapper {
  overflow: visible;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.item-range ion-range {
  width: 100%;
}

.item-range ion-range ion-label {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

ion-range {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

ion-range ion-label {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
}

ion-range ion-icon {
  min-height: 2.4rem;
  font-size: 2.4rem;
  line-height: 1;
}

.range-slider {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
}

.range-ios {
  padding: 8px 16px;
}

.range-ios [range-left] {
  margin: 0 20px 0 0;
}

.range-ios [range-right] {
  margin: 0 0 0 20px;
}

.range-ios.range-has-pin {
  padding-top: 20px;
}

.range-ios .range-slider {
  height: 42px;
}

.range-ios .range-bar {
  left: 0;
  top: 21px;
  border-radius: 1px;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-ios.range-pressed .range-bar-active {
  will-change: left, right;
}

.range-ios.range-pressed .range-knob-handle {
  will-change: left;
}

.range-ios .range-bar-active {
  bottom: 0;
  width: auto;
  background: #0167b1;
}

.range-ios .range-knob-handle {
  left: 0;
  top: 21px;
  margin-left: -21px;
  margin-top: -21px;
  text-align: center;
  position: absolute;
  width: 42px;
  height: 42px;
}

.range-ios .range-knob {
  left: 7px;
  top: 7px;
  border-radius: 50%;
  position: absolute;
  width: 28px;
  height: 28px;
  background: #0167b1 !important;
  -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02);
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.range-ios .range-tick {
  margin-left: -0.5px;
  border-radius: 0;
  position: absolute;
  top: 17.5px;
  width: 1px;
  height: 8px;
  background: #0167b1;
  pointer-events: none;
}

.range-ios .range-tick-active {
  background: #0167b1;
}

.range-ios .range-pin {
  text-align: center;
  border-radius: 50px;
  -webkit-transform: translate3d(0,  28px,  0) scale(0.01);
  transform: translate3d(0,  28px,  0) scale(0.01);
  position: relative;
  top: -20px;
  display: inline-block;
  min-width: 28px;
  font-size: 12px;
  color: #0167b1;
  background: transparent;
  -webkit-transition: -webkit-transform 120ms ease;
  transition: -webkit-transform 120ms ease;
  transition: transform 120ms ease;
  transition: transform 120ms ease, -webkit-transform 120ms ease;
  padding: 8px;
}

.range-ios .range-knob-pressed .range-pin {
  -webkit-transform: translate3d(0,  0,  0) scale(1);
  transform: translate3d(0,  0,  0) scale(1);
}

.range-ios.range-disabled {
  opacity: .5;
}

.range-ios-primary .range-bar-active,
.range-ios-primary .range-tick-active {
  background: #0167b1;
}

.range-ios-primary1 .range-bar-active,
.range-ios-primary1 .range-tick-active {
  background: #4472CA;
}

.range-ios-secondary .range-bar-active,
.range-ios-secondary .range-tick-active {
  background: #7f8490;
}

.range-ios-light .range-bar-active,
.range-ios-light .range-tick-active {
  background: ghostwhite;
}

.range-ios-dark .range-bar-active,
.range-ios-dark .range-tick-active {
  background: #444444;
}

.range-ios-indicator .range-bar-active,
.range-ios-indicator .range-tick-active {
  background: #666666;
}

.range-ios-success .range-bar-active,
.range-ios-success .range-tick-active {
  background: green;
}

.range-ios-lightprimary .range-bar-active,
.range-ios-lightprimary .range-tick-active {
  background: deepskyblue;
}

.range-ios-danger .range-bar-active,
.range-ios-danger .range-tick-active {
  background: tomato;
}

.range-ios-lightbg .range-bar-active,
.range-ios-lightbg .range-tick-active {
  background: whitesmoke;
}

.range-md {
  padding: 8px;
}

.range-md [range-left] {
  margin: 0 12px 0 0;
}

.range-md [range-right] {
  margin: 0 0 0 12px;
}

.range-md.range-has-pin {
  padding-top: 28px;
}

.range-md .range-slider {
  height: 42px;
}

.range-md .range-bar {
  left: 0;
  top: 21px;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-md.range-pressed .range-bar-active {
  will-change: left, right;
}

.range-md.range-pressed .range-knob-handle {
  will-change: left;
}

.range-md .range-bar-active {
  bottom: 0;
  width: auto;
  background: #0167b1;
}

.range-md .range-knob-handle {
  left: 0;
  top: 21px;
  margin-left: -21px;
  margin-top: -21px;
  text-align: center;
  position: absolute;
  width: 42px;
  height: 42px;
}

.range-md .range-knob {
  left: 12px;
  top: 13px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #0167b1 !important;
  -webkit-transform: scale(0.67);
  transform: scale(0.67);
  -webkit-transition-duration: 120ms;
  transition-duration: 120ms;
  -webkit-transition-property: background-color, border, -webkit-transform;
  transition-property: background-color, border, -webkit-transform;
  transition-property: transform, background-color, border;
  transition-property: transform, background-color, border, -webkit-transform;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  pointer-events: none;
}

.range-md .range-tick {
  margin-left: -1px;
  border-radius: 50%;
  position: absolute;
  top: 16.5px;
  z-index: 1;
  width: 2px;
  height: 11px;
  background: #0167b1;
  pointer-events: none;
}

.range-md .range-tick-active {
  background: #0167b1;
}

.range-md .range-pin {
  padding: 8px 0;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: translate3d(0,  28px,  0) scale(0.01);
  transform: translate3d(0,  28px,  0) scale(0.01);
  position: relative;
  top: -20px;
  display: inline-block;
  min-width: 28px;
  height: 28px;
  font-size: 12px;
  color: #fff;
  background: #0167b1;
  -webkit-transition: background-color 120ms ease, -webkit-transform 120ms ease;
  transition: background-color 120ms ease, -webkit-transform 120ms ease;
  transition: transform 120ms ease, background-color 120ms ease;
  transition: transform 120ms ease, background-color 120ms ease, -webkit-transform 120ms ease;
}

.range-md .range-pin::before {
  left: 50%;
  top: 3px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 0;
  margin-left: -13px;
  position: absolute;
  z-index: -1;
  width: 26px;
  height: 26px;
  background: #0167b1;
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: background-color 120ms ease;
  transition: background-color 120ms ease;
}

.range-md .range-knob-pressed .range-pin {
  -webkit-transform: translate3d(0,  0,  0) scale(1);
  transform: translate3d(0,  0,  0) scale(1);
}

.range-md:not(.range-has-pin) .range-knob-pressed .range-knob {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md .range-knob-min.range-knob-min .range-pin,
.range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md.range-disabled .range-bar-active {
  background-color: #bdbdbd;
}

.range-md.range-disabled .range-knob {
  outline: 5px solid #fff;
  background-color: #bdbdbd;
  -webkit-transform: scale(0.55);
  transform: scale(0.55);
}

.range-md-primary .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-primary .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-primary .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-primary .range-bar-active,
.range-md-primary .range-knob,
.range-md-primary .range-pin,
.range-md-primary .range-pin::before {
  background: #0167b1;
}

.range-md-primary1 .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-primary1 .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-primary1 .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-primary1 .range-bar-active,
.range-md-primary1 .range-knob,
.range-md-primary1 .range-pin,
.range-md-primary1 .range-pin::before {
  background: #4472CA;
}

.range-md-secondary .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-secondary .range-bar-active,
.range-md-secondary .range-knob,
.range-md-secondary .range-pin,
.range-md-secondary .range-pin::before {
  background: #7f8490;
}

.range-md-light .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-light .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-light .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-light .range-bar-active,
.range-md-light .range-knob,
.range-md-light .range-pin,
.range-md-light .range-pin::before {
  background: ghostwhite;
}

.range-md-dark .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-dark .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-dark .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-dark .range-bar-active,
.range-md-dark .range-knob,
.range-md-dark .range-pin,
.range-md-dark .range-pin::before {
  background: #444444;
}

.range-md-indicator .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-indicator .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-indicator .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-indicator .range-bar-active,
.range-md-indicator .range-knob,
.range-md-indicator .range-pin,
.range-md-indicator .range-pin::before {
  background: #666666;
}

.range-md-success .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-success .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-success .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-success .range-bar-active,
.range-md-success .range-knob,
.range-md-success .range-pin,
.range-md-success .range-pin::before {
  background: green;
}

.range-md-lightprimary .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-lightprimary .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-lightprimary .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-lightprimary .range-bar-active,
.range-md-lightprimary .range-knob,
.range-md-lightprimary .range-pin,
.range-md-lightprimary .range-pin::before {
  background: deepskyblue;
}

.range-md-danger .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-danger .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-danger .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-danger .range-bar-active,
.range-md-danger .range-knob,
.range-md-danger .range-pin,
.range-md-danger .range-pin::before {
  background: tomato;
}

.range-md-lightbg .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: white;
}

.range-md-lightbg .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-lightbg .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-lightbg .range-bar-active,
.range-md-lightbg .range-knob,
.range-md-lightbg .range-pin,
.range-md-lightbg .range-pin::before {
  background: whitesmoke;
}

.range-wp {
  padding: 8px;
}

.range-wp [range-left] {
  margin: 0 12px 0 0;
}

.range-wp [range-right] {
  margin: 0 0 0 12px;
}

.range-wp.range-has-pin {
  padding-top: 28px;
}

.range-wp .range-slider {
  height: 42px;
}

.range-wp .range-bar {
  left: 0;
  top: 21px;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-wp.range-pressed .range-bar-active {
  will-change: left, right;
}

.range-wp.range-pressed .range-knob-handle {
  will-change: left;
}

.range-wp .range-bar-active {
  bottom: 0;
  width: auto;
  background: #0167b1;
}

.range-wp .range-knob-handle {
  left: 0;
  top: 21px;
  margin-left: -21px;
  margin-top: -21px;
  text-align: center;
  position: absolute;
  width: 42px;
  height: 42px;
}

.range-wp .range-knob {
  left: 17px;
  top: 10px;
  border-radius: 4px;
  position: absolute;
  width: 8px;
  height: 24px;
  background: #0167b1;
  pointer-events: none;
}

.range-wp .range-tick {
  margin-left: -1px;
  border-radius: 4px;
  position: absolute;
  top: 19px;
  width: 2px;
  height: 6px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-wp .range-tick-active {
  background: #0167b1;
}

.range-wp .range-pin {
  text-align: center;
  border-radius: 50px;
  -webkit-transform: translate3d(0,  28px,  0) scale(0.01);
  transform: translate3d(0,  28px,  0) scale(0.01);
  position: relative;
  top: -24px;
  display: inline-block;
  min-width: 28px;
  font-size: 12px;
  color: #fff;
  background: #0167b1;
  -webkit-transition: -webkit-transform 120ms ease;
  transition: -webkit-transform 120ms ease;
  transition: transform 120ms ease;
  transition: transform 120ms ease, -webkit-transform 120ms ease;
  padding: 8px;
}

.range-wp .range-knob-pressed .range-pin {
  -webkit-transform: translate3d(0,  0,  0) scale(1);
  transform: translate3d(0,  0,  0) scale(1);
}

.range-wp.range-disabled {
  opacity: .5;
}

.range-wp-primary .range-bar-active,
.range-wp-primary .range-tick-active,
.range-wp-primary .range-knob,
.range-wp-primary .range-pin {
  background: #0167b1;
}

.range-wp-primary1 .range-bar-active,
.range-wp-primary1 .range-tick-active,
.range-wp-primary1 .range-knob,
.range-wp-primary1 .range-pin {
  background: #4472CA;
}

.range-wp-secondary .range-bar-active,
.range-wp-secondary .range-tick-active,
.range-wp-secondary .range-knob,
.range-wp-secondary .range-pin {
  background: #7f8490;
}

.range-wp-light .range-bar-active,
.range-wp-light .range-tick-active,
.range-wp-light .range-knob,
.range-wp-light .range-pin {
  background: ghostwhite;
}

.range-wp-dark .range-bar-active,
.range-wp-dark .range-tick-active,
.range-wp-dark .range-knob,
.range-wp-dark .range-pin {
  background: #444444;
}

.range-wp-indicator .range-bar-active,
.range-wp-indicator .range-tick-active,
.range-wp-indicator .range-knob,
.range-wp-indicator .range-pin {
  background: #666666;
}

.range-wp-success .range-bar-active,
.range-wp-success .range-tick-active,
.range-wp-success .range-knob,
.range-wp-success .range-pin {
  background: green;
}

.range-wp-lightprimary .range-bar-active,
.range-wp-lightprimary .range-tick-active,
.range-wp-lightprimary .range-knob,
.range-wp-lightprimary .range-pin {
  background: deepskyblue;
}

.range-wp-danger .range-bar-active,
.range-wp-danger .range-tick-active,
.range-wp-danger .range-knob,
.range-wp-danger .range-pin {
  background: tomato;
}

.range-wp-lightbg .range-bar-active,
.range-wp-lightbg .range-tick-active,
.range-wp-lightbg .range-knob,
.range-wp-lightbg .range-pin {
  background: whitesmoke;
}

ion-refresher {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  display: none;
  width: 100%;
  height: 60px;
}

ion-refresher.refresher-active {
  display: block;
}

.has-refresher > .scroll-content {
  margin-top: -1px;
  border-top: 1px solid #ddd;
  -webkit-transition: -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
}

ion-refresher-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.refresher-pulling,
.refresher-refreshing {
  display: none;
  width: 100%;
}

.refresher-pulling-icon,
.refresher-refreshing-icon {
  text-align: center;
  -webkit-transform-origin: center;
  transform-origin: center;
  font-size: 30px;
  color: #000;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.refresher-pulling-text, .refresher-refreshing-text {
  text-align: center;
  font-size: 16px;
  color: #000;
}

.refresher-refreshing .spinner-ios line,
.refresher-refreshing .spinner-ios-small line,
.refresher-refreshing .spinner-crescent circle {
  stroke: #000;
}

.refresher-refreshing .spinner-bubbles circle,
.refresher-refreshing .spinner-circles circle,
.refresher-refreshing .spinner-dots circle {
  fill: #000;
}

ion-refresher-content[state=pulling] .refresher-pulling {
  display: block;
}

ion-refresher-content[state=ready] .refresher-pulling {
  display: block;
}

ion-refresher-content[state=ready] .refresher-pulling-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

ion-refresher-content[state=refreshing] .refresher-refreshing {
  display: block;
}

ion-refresher-content[state=cancelling] .refresher-pulling {
  display: block;
}

ion-refresher-content[state=cancelling] .refresher-pulling-icon {
  -webkit-transform: scale(0);
  transform: scale(0);
}

ion-refresher-content[state=completing] .refresher-refreshing {
  display: block;
}

ion-refresher-content[state=completing] .refresher-refreshing-icon {
  -webkit-transform: scale(0);
  transform: scale(0);
}

ion-scroll {
  position: relative;
  display: block;
}

ion-scroll.scroll-x .scroll-content {
  overflow-x: auto;
}

ion-scroll.scroll-y .scroll-content {
  overflow-y: auto;
}

ion-scroll[center] .scroll-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

ion-scroll .scroll-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

ion-searchbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.searchbar-icon {
  pointer-events: none;
}

.searchbar-input-container {
  position: relative;
  display: block;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}

.searchbar-input {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
}

.searchbar-clear-icon {
  margin: 0;
  padding: 0;
  display: none;
  min-height: 0;
}

.searchbar-has-value.searchbar-has-focus .searchbar-clear-icon {
  display: block;
}

.searchbar-ios {
  padding: 0 8px;
  min-height: 44px;
  border-top: 0.55px solid transparent;
  border-bottom: 0.55px solid rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.searchbar-ios .searchbar-search-icon {
  left: 9px;
  top: 9px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='%237f8490'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='%237f8490'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
  margin-left: calc(50% - 60px);
  position: absolute;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 13px;
}

.searchbar-ios .searchbar-input {
  padding: 0 28px;
  border-radius: 5px;
  height: 3rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  background-color: #f3f3f3 !important;
}

.searchbar-ios .searchbar-input::-moz-placeholder {
  color: #7f8490;
}

.searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: #7f8490;
}

.searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #7f8490;
}

.searchbar-ios .searchbar-clear-icon {
  right: 0;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%237f8490'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
  background-position: center;
  position: absolute;
  width: 30px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 18px;
}

.searchbar-ios .searchbar-ios-cancel {
  padding: 0 0 0 8px;
  margin-left: 0;
  display: none;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 30px;
  cursor: pointer;
}

.searchbar-ios.searchbar-left-aligned .searchbar-search-icon {
  margin-left: 0;
}

.searchbar-ios.searchbar-left-aligned .searchbar-input {
  padding-left: 30px;
}

.searchbar-ios.searchbar-show-cancel.searchbar-has-focus .searchbar-ios-cancel {
  display: block;
}

.toolbar .searchbar-ios {
  border-bottom-width: 0;
  background: transparent;
}

.toolbar .searchbar-ios .searchbar-input {
  background: rgba(0, 0, 0, 0.08);
}

.toolbar .searchbar-ios .searchbar-ios-cancel {
  padding: 0;
}

.toolbar .searchbar-ios.searchbar-has-focus .searchbar-ios-cancel {
  padding-left: 8px;
}

.searchbar-ios .searchbar-md-cancel {
  display: none;
}

.searchbar-ios-primary .searchbar-ios-cancel {
  color: #0167b1;
}

.searchbar-ios-primary .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #1573b7;
}

.toolbar-ios-primary .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-primary .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-primary .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-primary .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-primary1 .searchbar-ios-cancel {
  color: #4472CA;
}

.searchbar-ios-primary1 .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #3f69ba;
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-primary1 .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-secondary .searchbar-ios-cancel {
  color: #7f8490;
}

.searchbar-ios-secondary .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #757984;
}

.toolbar-ios-secondary .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-secondary .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-light .searchbar-ios-cancel {
  color: ghostwhite;
}

.searchbar-ios-light .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #e4e4eb;
}

.toolbar-ios-light .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(0,%200,%200,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-light .searchbar-ios .searchbar-input {
  color: #000;
  background: rgba(0, 0, 0, 0.08);
}

.toolbar-ios-light .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-light .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-light .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-light .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-light .searchbar-ios .searchbar-ios-cancel {
  color: #0167b1;
}

.searchbar-ios-dark .searchbar-ios-cancel {
  color: #444444;
}

.searchbar-ios-dark .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #535353;
}

.toolbar-ios-dark .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-dark .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-dark .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-dark .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-dark .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-dark .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-dark .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-indicator .searchbar-ios-cancel {
  color: #666666;
}

.searchbar-ios-indicator .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #727272;
}

.toolbar-ios-indicator .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-indicator .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-indicator .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-indicator .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-indicator .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-indicator .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-indicator .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-success .searchbar-ios-cancel {
  color: green;
}

.searchbar-ios-success .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #148a14;
}

.toolbar-ios-success .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-success .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-success .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-success .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-success .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-success .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-success .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-lightprimary .searchbar-ios-cancel {
  color: deepskyblue;
}

.searchbar-ios-lightprimary .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #14c4ff;
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-lightprimary .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-danger .searchbar-ios-cancel {
  color: tomato;
}

.searchbar-ios-danger .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #eb5b41;
}

.toolbar-ios-danger .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-danger .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-danger .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-danger .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-danger .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-danger .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-danger .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-lightbg .searchbar-ios-cancel {
  color: whitesmoke;
}

.searchbar-ios-lightbg .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #e1e1e1;
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(0,%200,%200,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-input {
  color: #000;
  background: rgba(0, 0, 0, 0.08);
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-lightbg .searchbar-ios .searchbar-ios-cancel {
  color: #0167b1;
}

.searchbar-ios.searchbar-animated.searchbar-show-cancel .searchbar-ios-cancel {
  display: block;
}

.searchbar-ios.searchbar-animated .searchbar-search-icon,
.searchbar-ios.searchbar-animated .searchbar-input {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.searchbar-animated.searchbar-has-focus .searchbar-ios-cancel {
  opacity: 1;
  pointer-events: auto;
}

.searchbar-animated .searchbar-ios-cancel {
  margin-right: -100%;
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  pointer-events: none;
}

.searchbar-md {
  background: inherit;
  padding: 8px;
}

.searchbar-md .searchbar-search-icon {
  left: 16px;
  top: 11px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%237f8490'%20d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z%20M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>");
  width: 21px;
  height: 21px;
}

.searchbar-md .searchbar-md-cancel {
  left: 10px;
  top: 0;
  margin: 0;
  display: none;
  width: 21px;
  height: 100%;
}

.searchbar-md .searchbar-search-icon,
.searchbar-md .searchbar-md-cancel {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 20px;
}

.searchbar-md .searchbar-search-icon.activated,
.searchbar-md .searchbar-md-cancel.activated {
  background-color: transparent;
}

.searchbar-md .searchbar-input {
  padding: 6px 55px;
  border-radius: 10px;
  background-position: left 8px center;
  height: auto;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3rem;
  color: #30384c !important;
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.searchbar-md .searchbar-input::-moz-placeholder {
  color: #7f8490;
}

.searchbar-md .searchbar-input:-ms-input-placeholder {
  color: #7f8490;
}

.searchbar-md .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #7f8490;
}

.searchbar-md .searchbar-clear-icon {
  right: 13px;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%237f8490'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  padding: 0;
  background-position: center;
  position: absolute;
  width: 22px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 22px;
}

.searchbar-md .searchbar-clear-icon.activated {
  background-color: transparent;
}

.searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-search-icon {
  display: none;
}

.searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-md-cancel {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.toolbar .searchbar-md {
  padding: 3px;
}

.toolbar .searchbar-md .searchbar-md-cancel {
  left: 14px;
}

.searchbar-md .searchbar-ios-cancel {
  display: none;
}

.searchbar-wp {
  background: transparent;
  padding: 8px;
}

.searchbar-wp .searchbar-input-container {
  border: 2px solid rgba(0, 0, 0, 0.5);
}

.searchbar-wp .searchbar-search-icon {
  right: 8px;
  top: 5px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%23858585'%20d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z%20M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>");
  position: absolute;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: 20px;
}

.searchbar-wp .searchbar-search-icon.activated {
  background-color: transparent;
}

.searchbar-wp .searchbar-input {
  padding: 0 8px;
  border-radius: 0;
  background-position: left 8px center;
  height: auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
  color: #141414;
  background-color: #fff;
}

.searchbar-wp .searchbar-input::-moz-placeholder {
  color: #858585;
}

.searchbar-wp .searchbar-input:-ms-input-placeholder {
  color: #858585;
}

.searchbar-wp .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #858585;
}

.searchbar-wp .searchbar-clear-icon {
  right: 8px;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%23858585'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  padding: 0;
  background-position: center;
  position: absolute;
  width: 22px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 22px;
}

.searchbar-wp .searchbar-clear-icon.activated {
  background-color: transparent;
}

.searchbar-wp.searchbar-has-focus .searchbar-input-container {
  border-color: #0167b1;
}

.searchbar-wp.searchbar-has-value .searchbar-search-icon {
  display: none;
}

.searchbar-wp .searchbar-ios-cancel {
  display: none;
}

.searchbar-wp .searchbar-md-cancel {
  display: none;
}

.toolbar .searchbar-wp {
  padding: 2px;
}

.searchbar-wp-primary.searchbar-has-focus .searchbar-input-container {
  border-color: #0167b1;
}

.searchbar-wp-primary1.searchbar-has-focus .searchbar-input-container {
  border-color: #4472CA;
}

.searchbar-wp-secondary.searchbar-has-focus .searchbar-input-container {
  border-color: #7f8490;
}

.searchbar-wp-light.searchbar-has-focus .searchbar-input-container {
  border-color: ghostwhite;
}

.searchbar-wp-dark.searchbar-has-focus .searchbar-input-container {
  border-color: #444444;
}

.searchbar-wp-indicator.searchbar-has-focus .searchbar-input-container {
  border-color: #666666;
}

.searchbar-wp-success.searchbar-has-focus .searchbar-input-container {
  border-color: green;
}

.searchbar-wp-lightprimary.searchbar-has-focus .searchbar-input-container {
  border-color: deepskyblue;
}

.searchbar-wp-danger.searchbar-has-focus .searchbar-input-container {
  border-color: tomato;
}

.searchbar-wp-lightbg.searchbar-has-focus .searchbar-input-container {
  border-color: whitesmoke;
}

ion-segment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.segment-button {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.segment-ios .segment-button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  height: 3.2rem;
  border-width: 1px;
  border-style: solid;
  border-color: #327eff;
  font-size: 1.3rem;
  line-height: 3rem;
  color: #327eff;
  background-color: transparent;
}

.segment-ios .segment-button ion-icon {
  font-size: 2.6rem;
  line-height: 2.8rem;
}

.segment-ios .segment-button.segment-activated {
  color: #fff;
  background-color: #327eff;
  opacity: 1;
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
}

.segment-ios .segment-button:hover:not(.segment-activated) {
  background-color: rgba(50, 126, 255, 0.1);
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
}

.segment-ios .segment-button:active:not(.segment-activated) {
  background-color: rgba(50, 126, 255, 0.16);
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
}

.segment-ios .segment-button:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  margin-right: 0;
}

.segment-ios .segment-button:not(:first-of-type) {
  border-left-width: 0;
}

.segment-ios .segment-button:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  margin-left: 0;
  border-left-width: 0;
}

[dir="rtl"] .segment-ios .segment-button:first-of-type {
  border-left-width: 0;
}

[dir="rtl"] .segment-ios .segment-button:last-of-type {
  border-left-width: 1px;
}

.segment-ios.segment-disabled {
  opacity: .4;
  pointer-events: none;
}

.segment-ios .segment-button-disabled {
  color: rgba(50, 126, 255, 0.3);
  pointer-events: none;
}

.toolbar-ios .segment-ios {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

.toolbar-ios .segment-button {
  max-width: 100px;
  height: 2.6rem;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

.toolbar-ios .segment-button ion-icon {
  font-size: 2.2rem;
  line-height: 2.4rem;
}

.segment-ios-primary .segment-button {
  border-color: #0167b1;
  color: #0167b1;
}

.segment-ios-primary .segment-button:hover:not(.segment-activated) {
  background-color: rgba(1, 103, 177, 0.1);
}

.segment-ios-primary .segment-button:active:not(.segment-activated) {
  background-color: rgba(1, 103, 177, 0.16);
}

.segment-ios-primary .segment-button.segment-activated {
  color: #fff;
  background-color: #0167b1;
}

.segment-ios-primary .segment-button-disabled {
  color: rgba(1, 103, 177, 0.3);
}

.toolbar-ios-primary .segment-ios .segment-button.segment-activated {
  color: #0167b1;
}

.segment-ios-primary1 .segment-button {
  border-color: #4472CA;
  color: #4472CA;
}

.segment-ios-primary1 .segment-button:hover:not(.segment-activated) {
  background-color: rgba(68, 114, 202, 0.1);
}

.segment-ios-primary1 .segment-button:active:not(.segment-activated) {
  background-color: rgba(68, 114, 202, 0.16);
}

.segment-ios-primary1 .segment-button.segment-activated {
  color: #fff;
  background-color: #4472CA;
}

.segment-ios-primary1 .segment-button-disabled {
  color: rgba(68, 114, 202, 0.3);
}

.toolbar-ios-primary1 .segment-ios .segment-button.segment-activated {
  color: #4472CA;
}

.segment-ios-secondary .segment-button {
  border-color: #7f8490;
  color: #7f8490;
}

.segment-ios-secondary .segment-button:hover:not(.segment-activated) {
  background-color: rgba(127, 132, 144, 0.1);
}

.segment-ios-secondary .segment-button:active:not(.segment-activated) {
  background-color: rgba(127, 132, 144, 0.16);
}

.segment-ios-secondary .segment-button.segment-activated {
  color: #fff;
  background-color: #7f8490;
}

.segment-ios-secondary .segment-button-disabled {
  color: rgba(127, 132, 144, 0.3);
}

.toolbar-ios-secondary .segment-ios .segment-button.segment-activated {
  color: #7f8490;
}

.segment-ios-light .segment-button {
  border-color: ghostwhite;
  color: ghostwhite;
}

.segment-ios-light .segment-button:hover:not(.segment-activated) {
  background-color: rgba(248, 248, 255, 0.1);
}

.segment-ios-light .segment-button:active:not(.segment-activated) {
  background-color: rgba(248, 248, 255, 0.16);
}

.segment-ios-light .segment-button.segment-activated {
  color: #000;
  background-color: ghostwhite;
}

.segment-ios-light .segment-button-disabled {
  color: rgba(248, 248, 255, 0.3);
}

.toolbar-ios-light .segment-ios .segment-button.segment-activated {
  color: ghostwhite;
}

.segment-ios-dark .segment-button {
  border-color: #444444;
  color: #444444;
}

.segment-ios-dark .segment-button:hover:not(.segment-activated) {
  background-color: rgba(68, 68, 68, 0.1);
}

.segment-ios-dark .segment-button:active:not(.segment-activated) {
  background-color: rgba(68, 68, 68, 0.16);
}

.segment-ios-dark .segment-button.segment-activated {
  color: #fff;
  background-color: #444444;
}

.segment-ios-dark .segment-button-disabled {
  color: rgba(68, 68, 68, 0.3);
}

.toolbar-ios-dark .segment-ios .segment-button.segment-activated {
  color: #444444;
}

.segment-ios-indicator .segment-button {
  border-color: #666666;
  color: #666666;
}

.segment-ios-indicator .segment-button:hover:not(.segment-activated) {
  background-color: rgba(102, 102, 102, 0.1);
}

.segment-ios-indicator .segment-button:active:not(.segment-activated) {
  background-color: rgba(102, 102, 102, 0.16);
}

.segment-ios-indicator .segment-button.segment-activated {
  color: #fff;
  background-color: #666666;
}

.segment-ios-indicator .segment-button-disabled {
  color: rgba(102, 102, 102, 0.3);
}

.toolbar-ios-indicator .segment-ios .segment-button.segment-activated {
  color: #666666;
}

.segment-ios-success .segment-button {
  border-color: green;
  color: green;
}

.segment-ios-success .segment-button:hover:not(.segment-activated) {
  background-color: rgba(0, 128, 0, 0.1);
}

.segment-ios-success .segment-button:active:not(.segment-activated) {
  background-color: rgba(0, 128, 0, 0.16);
}

.segment-ios-success .segment-button.segment-activated {
  color: #fff;
  background-color: green;
}

.segment-ios-success .segment-button-disabled {
  color: rgba(0, 128, 0, 0.3);
}

.toolbar-ios-success .segment-ios .segment-button.segment-activated {
  color: green;
}

.segment-ios-lightprimary .segment-button {
  border-color: deepskyblue;
  color: deepskyblue;
}

.segment-ios-lightprimary .segment-button:hover:not(.segment-activated) {
  background-color: rgba(0, 191, 255, 0.1);
}

.segment-ios-lightprimary .segment-button:active:not(.segment-activated) {
  background-color: rgba(0, 191, 255, 0.16);
}

.segment-ios-lightprimary .segment-button.segment-activated {
  color: #fff;
  background-color: deepskyblue;
}

.segment-ios-lightprimary .segment-button-disabled {
  color: rgba(0, 191, 255, 0.3);
}

.toolbar-ios-lightprimary .segment-ios .segment-button.segment-activated {
  color: deepskyblue;
}

.segment-ios-danger .segment-button {
  border-color: tomato;
  color: tomato;
}

.segment-ios-danger .segment-button:hover:not(.segment-activated) {
  background-color: rgba(255, 99, 71, 0.1);
}

.segment-ios-danger .segment-button:active:not(.segment-activated) {
  background-color: rgba(255, 99, 71, 0.16);
}

.segment-ios-danger .segment-button.segment-activated {
  color: #fff;
  background-color: tomato;
}

.segment-ios-danger .segment-button-disabled {
  color: rgba(255, 99, 71, 0.3);
}

.toolbar-ios-danger .segment-ios .segment-button.segment-activated {
  color: tomato;
}

.segment-ios-lightbg .segment-button {
  border-color: whitesmoke;
  color: whitesmoke;
}

.segment-ios-lightbg .segment-button:hover:not(.segment-activated) {
  background-color: rgba(245, 245, 245, 0.1);
}

.segment-ios-lightbg .segment-button:active:not(.segment-activated) {
  background-color: rgba(245, 245, 245, 0.16);
}

.segment-ios-lightbg .segment-button.segment-activated {
  color: #000;
  background-color: whitesmoke;
}

.segment-ios-lightbg .segment-button-disabled {
  color: rgba(245, 245, 245, 0.3);
}

.toolbar-ios-lightbg .segment-ios .segment-button.segment-activated {
  color: whitesmoke;
}

.segment-md .segment-button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  height: 56px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: whitesmoke !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 4rem;
  text-transform: uppercase;
  color: #327eff;
  background-color: transparent;
  opacity: 0.7;
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
  padding: 7px 6px;
}

.segment-md .segment-button ion-icon {
  font-size: 2.6rem;
  line-height: 4rem;
}

.segment-md .segment-button.activated, .segment-md .segment-button.segment-activated {
  border-color: #0167b1 !important;
  opacity: 1;
}

.segment-md.segment-disabled,
.segment-md .segment-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.toolbar .segment-md {
  margin: 0 auto;
}

.toolbar .segment-md .segment-button.activated,
.toolbar .segment-md .segment-button.segment-activated {
  opacity: 1;
}

.segment-md-primary .segment-button {
  color: #0167b1;
}

.segment-md-primary .segment-button.activated, .segment-md-primary .segment-button.segment-activated {
  border-color: #0167b1;
  color: #0167b1;
  opacity: 1;
}

.segment-md-primary1 .segment-button {
  color: #4472CA;
}

.segment-md-primary1 .segment-button.activated, .segment-md-primary1 .segment-button.segment-activated {
  border-color: #4472CA;
  color: #4472CA;
  opacity: 1;
}

.segment-md-secondary .segment-button {
  color: #7f8490;
}

.segment-md-secondary .segment-button.activated, .segment-md-secondary .segment-button.segment-activated {
  border-color: #7f8490;
  color: #7f8490;
  opacity: 1;
}

.segment-md-light .segment-button {
  color: ghostwhite;
}

.segment-md-light .segment-button.activated, .segment-md-light .segment-button.segment-activated {
  border-color: ghostwhite;
  color: ghostwhite;
  opacity: 1;
}

.segment-md-dark .segment-button {
  color: #444444;
}

.segment-md-dark .segment-button.activated, .segment-md-dark .segment-button.segment-activated {
  border-color: #444444;
  color: #444444;
  opacity: 1;
}

.segment-md-indicator .segment-button {
  color: #666666;
}

.segment-md-indicator .segment-button.activated, .segment-md-indicator .segment-button.segment-activated {
  border-color: #666666;
  color: #666666;
  opacity: 1;
}

.segment-md-success .segment-button {
  color: green;
}

.segment-md-success .segment-button.activated, .segment-md-success .segment-button.segment-activated {
  border-color: green;
  color: green;
  opacity: 1;
}

.segment-md-lightprimary .segment-button {
  color: deepskyblue;
}

.segment-md-lightprimary .segment-button.activated, .segment-md-lightprimary .segment-button.segment-activated {
  border-color: deepskyblue;
  color: deepskyblue;
  opacity: 1;
}

.segment-md-danger .segment-button {
  color: tomato;
}

.segment-md-danger .segment-button.activated, .segment-md-danger .segment-button.segment-activated {
  border-color: tomato;
  color: tomato;
  opacity: 1;
}

.segment-md-lightbg .segment-button {
  color: whitesmoke;
}

.segment-md-lightbg .segment-button.activated, .segment-md-lightbg .segment-button.segment-activated {
  border-color: whitesmoke;
  color: whitesmoke;
  opacity: 1;
}

.segment-wp {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.segment-wp .segment-button {
  height: 4rem;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 4rem;
  text-transform: uppercase;
  color: #000;
  background-color: transparent;
  opacity: 0.5;
  padding: 0 6px;
}

.segment-wp .segment-button.segment-activated {
  opacity: 1;
}

.segment-wp .segment-button ion-icon {
  font-size: 2.6rem;
  line-height: 4rem;
}

.segment-wp.segment-disabled,
.segment-wp .segment-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.toolbar .segment-wp {
  margin: 0 auto;
}

.segment-wp-primary .segment-button {
  color: #0167b1;
}

.segment-wp-primary .segment-button.activated, .segment-wp-primary .segment-button.segment-activated {
  border-color: #0167b1;
  color: #0167b1;
  opacity: 1;
}

.segment-wp-primary1 .segment-button {
  color: #4472CA;
}

.segment-wp-primary1 .segment-button.activated, .segment-wp-primary1 .segment-button.segment-activated {
  border-color: #4472CA;
  color: #4472CA;
  opacity: 1;
}

.segment-wp-secondary .segment-button {
  color: #7f8490;
}

.segment-wp-secondary .segment-button.activated, .segment-wp-secondary .segment-button.segment-activated {
  border-color: #7f8490;
  color: #7f8490;
  opacity: 1;
}

.segment-wp-light .segment-button {
  color: ghostwhite;
}

.segment-wp-light .segment-button.activated, .segment-wp-light .segment-button.segment-activated {
  border-color: ghostwhite;
  color: ghostwhite;
  opacity: 1;
}

.segment-wp-dark .segment-button {
  color: #444444;
}

.segment-wp-dark .segment-button.activated, .segment-wp-dark .segment-button.segment-activated {
  border-color: #444444;
  color: #444444;
  opacity: 1;
}

.segment-wp-indicator .segment-button {
  color: #666666;
}

.segment-wp-indicator .segment-button.activated, .segment-wp-indicator .segment-button.segment-activated {
  border-color: #666666;
  color: #666666;
  opacity: 1;
}

.segment-wp-success .segment-button {
  color: green;
}

.segment-wp-success .segment-button.activated, .segment-wp-success .segment-button.segment-activated {
  border-color: green;
  color: green;
  opacity: 1;
}

.segment-wp-lightprimary .segment-button {
  color: deepskyblue;
}

.segment-wp-lightprimary .segment-button.activated, .segment-wp-lightprimary .segment-button.segment-activated {
  border-color: deepskyblue;
  color: deepskyblue;
  opacity: 1;
}

.segment-wp-danger .segment-button {
  color: tomato;
}

.segment-wp-danger .segment-button.activated, .segment-wp-danger .segment-button.segment-activated {
  border-color: tomato;
  color: tomato;
  opacity: 1;
}

.segment-wp-lightbg .segment-button {
  color: whitesmoke;
}

.segment-wp-lightbg .segment-button.activated, .segment-wp-lightbg .segment-button.segment-activated {
  border-color: whitesmoke;
  color: whitesmoke;
  opacity: 1;
}

ion-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 45%;
}

.select-text {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 16px;
  font-size: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-multiple-inputs ion-select {
  position: relative;
}

.select-disabled,
.item-select-disabled ion-label {
  opacity: .4;
  pointer-events: none;
}

.select-popover ion-list {
  margin: -1px 0;
}

.select-ios {
  padding: 11px 8px 11px 16px;
}

.select-ios .select-placeholder {
  color: #0167b1;
}

.select-ios .select-icon {
  position: relative;
  width: 12px;
  height: 18px;
}

.select-ios .select-icon .select-icon-inner {
  left: 5px;
  top: 50%;
  margin-top: -2px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  color: #0167b1;
  pointer-events: none;
}

.select-md {
  padding: 13px 8px 13px 16px;
}

.select-md .select-placeholder {
  color: #0167b1;
}

.select-md .item-select ion-label {
  margin-left: 0;
}

.select-md .select-icon {
  position: relative;
  width: 12px;
  height: 19px;
}

.select-md .select-icon .select-icon-inner {
  left: 5px;
  top: 50%;
  margin-top: -3px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  color: #0167b1;
  pointer-events: none;
}

.select-wp {
  margin: 13px 8px;
  padding: 0 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
}

.select-wp .select-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.item-wp.item-select ion-label {
  margin-left: 0;
}

.select-wp .select-icon {
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: 18px;
  height: 18px;
}

.select-wp .select-icon .select-icon-inner {
  left: 5px;
  top: 3px;
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}

.select-wp .select-text {
  min-height: 3rem;
}

.hidden-show-when {
  display: none !important;
}

.hidden-hide-when {
  display: none !important;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  padding: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-slide {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container .swiper-notification {
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1000;
  opacity: 0;
  pointer-events: none;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  margin-top: -22px;
  background-position: center;
  position: absolute;
  z-index: 10;
  width: 27px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  text-align: center;
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
  position: absolute;
  z-index: 10;
  -webkit-transition: 300ms;
  transition: 300ms;
  pointer-events: none;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  left: 0;
  bottom: 10px;
  width: 100%;
}

.swiper-pagination-bullet {
  border-radius: 100%;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #000;
  opacity: .2;
  pointer-events: auto;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0,  -50%,  0);
  transform: translate3d(0,  -50%,  0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-progress {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  left: 0;
  top: 0;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #007aff;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progress {
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-cube-shadow {
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
  touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  left: 1%;
  bottom: 3px;
  position: absolute;
  z-index: 50;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  right: 3px;
  top: 1%;
  position: absolute;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  left: 0;
  top: 0;
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-lazy-preloader {
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  position: absolute;
  z-index: 10;
  width: 42px;
  height: 42px;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader::after {
  background-position: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
}

.swiper-lazy-preloader-white::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

ion-slides {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-zoom {
  text-align: center;
  display: block;
  width: 100%;
}

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

ion-spinner {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
}

ion-spinner svg {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-spinner.spinner-paused svg {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.spinner-ios line,
.spinner-ios-small line {
  stroke-width: 4px;
  stroke-linecap: round;
}

.spinner-ios svg,
.spinner-ios-small svg {
  -webkit-animation: spinner-fade-out 1s linear infinite;
  animation: spinner-fade-out 1s linear infinite;
}

.spinner-bubbles svg {
  -webkit-animation: spinner-scale-out 1s linear infinite;
  animation: spinner-scale-out 1s linear infinite;
}

.spinner-circles svg {
  -webkit-animation: spinner-fade-out 1s linear infinite;
  animation: spinner-fade-out 1s linear infinite;
}

.spinner-crescent circle {
  fill: transparent;
  stroke-width: 4px;
  stroke-dasharray: 128px;
  stroke-dashoffset: 82px;
}

.spinner-crescent svg {
  -webkit-animation: spinner-rotate 1s linear infinite;
  animation: spinner-rotate 1s linear infinite;
}

.spinner-dots circle {
  stroke-width: 0;
}

.spinner-dots svg {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation: spinner-dots 1s linear infinite;
  animation: spinner-dots 1s linear infinite;
}

@-webkit-keyframes spinner-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes spinner-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes spinner-scale-out {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
}

@keyframes spinner-scale-out {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
}

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

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

@-webkit-keyframes spinner-dots {
  0% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    opacity: .3;
    -webkit-transform: scale(0.4, 0.4);
    transform: scale(0.4, 0.4);
  }
  100% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes spinner-dots {
  0% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    opacity: .3;
    -webkit-transform: scale(0.4, 0.4);
    transform: scale(0.4, 0.4);
  }
  100% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.spinner-ios-ios line,
.spinner-ios-ios-small line {
  stroke: #69717d;
}

.spinner-ios-bubbles circle {
  fill: #000;
}

.spinner-ios-circles circle {
  fill: #69717d;
}

.spinner-ios-crescent circle {
  stroke: #000;
}

.spinner-ios-dots circle {
  fill: #444;
}

.spinner-ios-primary.spinner-ios line,
.spinner-ios-primary.spinner-ios-small line,
.spinner-ios-primary.spinner-crescent circle {
  stroke: #0167b1;
}

.spinner-ios-primary.spinner-bubbles circle,
.spinner-ios-primary.spinner-circles circle,
.spinner-ios-primary.spinner-dots circle {
  fill: #0167b1;
}

.spinner-ios-primary1.spinner-ios line,
.spinner-ios-primary1.spinner-ios-small line,
.spinner-ios-primary1.spinner-crescent circle {
  stroke: #4472CA;
}

.spinner-ios-primary1.spinner-bubbles circle,
.spinner-ios-primary1.spinner-circles circle,
.spinner-ios-primary1.spinner-dots circle {
  fill: #4472CA;
}

.spinner-ios-secondary.spinner-ios line,
.spinner-ios-secondary.spinner-ios-small line,
.spinner-ios-secondary.spinner-crescent circle {
  stroke: #7f8490;
}

.spinner-ios-secondary.spinner-bubbles circle,
.spinner-ios-secondary.spinner-circles circle,
.spinner-ios-secondary.spinner-dots circle {
  fill: #7f8490;
}

.spinner-ios-light.spinner-ios line,
.spinner-ios-light.spinner-ios-small line,
.spinner-ios-light.spinner-crescent circle {
  stroke: ghostwhite;
}

.spinner-ios-light.spinner-bubbles circle,
.spinner-ios-light.spinner-circles circle,
.spinner-ios-light.spinner-dots circle {
  fill: ghostwhite;
}

.spinner-ios-dark.spinner-ios line,
.spinner-ios-dark.spinner-ios-small line,
.spinner-ios-dark.spinner-crescent circle {
  stroke: #444444;
}

.spinner-ios-dark.spinner-bubbles circle,
.spinner-ios-dark.spinner-circles circle,
.spinner-ios-dark.spinner-dots circle {
  fill: #444444;
}

.spinner-ios-indicator.spinner-ios line,
.spinner-ios-indicator.spinner-ios-small line,
.spinner-ios-indicator.spinner-crescent circle {
  stroke: #666666;
}

.spinner-ios-indicator.spinner-bubbles circle,
.spinner-ios-indicator.spinner-circles circle,
.spinner-ios-indicator.spinner-dots circle {
  fill: #666666;
}

.spinner-ios-success.spinner-ios line,
.spinner-ios-success.spinner-ios-small line,
.spinner-ios-success.spinner-crescent circle {
  stroke: green;
}

.spinner-ios-success.spinner-bubbles circle,
.spinner-ios-success.spinner-circles circle,
.spinner-ios-success.spinner-dots circle {
  fill: green;
}

.spinner-ios-lightprimary.spinner-ios line,
.spinner-ios-lightprimary.spinner-ios-small line,
.spinner-ios-lightprimary.spinner-crescent circle {
  stroke: deepskyblue;
}

.spinner-ios-lightprimary.spinner-bubbles circle,
.spinner-ios-lightprimary.spinner-circles circle,
.spinner-ios-lightprimary.spinner-dots circle {
  fill: deepskyblue;
}

.spinner-ios-danger.spinner-ios line,
.spinner-ios-danger.spinner-ios-small line,
.spinner-ios-danger.spinner-crescent circle {
  stroke: tomato;
}

.spinner-ios-danger.spinner-bubbles circle,
.spinner-ios-danger.spinner-circles circle,
.spinner-ios-danger.spinner-dots circle {
  fill: tomato;
}

.spinner-ios-lightbg.spinner-ios line,
.spinner-ios-lightbg.spinner-ios-small line,
.spinner-ios-lightbg.spinner-crescent circle {
  stroke: whitesmoke;
}

.spinner-ios-lightbg.spinner-bubbles circle,
.spinner-ios-lightbg.spinner-circles circle,
.spinner-ios-lightbg.spinner-dots circle {
  fill: whitesmoke;
}

.spinner-md-ios line,
.spinner-md-ios-small line {
  stroke: #69717d;
}

.spinner-md-bubbles circle {
  fill: #000;
}

.spinner-md-circles circle {
  fill: #69717d;
}

.spinner-md-crescent circle {
  stroke: #000;
}

.spinner-md-dots circle {
  fill: #444;
}

.spinner-md-primary.spinner-ios line,
.spinner-md-primary.spinner-ios-small line,
.spinner-md-primary.spinner-crescent circle {
  stroke: #0167b1;
}

.spinner-md-primary.spinner-bubbles circle,
.spinner-md-primary.spinner-circles circle,
.spinner-md-primary.spinner-dots circle {
  fill: #0167b1;
}

.spinner-md-primary1.spinner-ios line,
.spinner-md-primary1.spinner-ios-small line,
.spinner-md-primary1.spinner-crescent circle {
  stroke: #4472CA;
}

.spinner-md-primary1.spinner-bubbles circle,
.spinner-md-primary1.spinner-circles circle,
.spinner-md-primary1.spinner-dots circle {
  fill: #4472CA;
}

.spinner-md-secondary.spinner-ios line,
.spinner-md-secondary.spinner-ios-small line,
.spinner-md-secondary.spinner-crescent circle {
  stroke: #7f8490;
}

.spinner-md-secondary.spinner-bubbles circle,
.spinner-md-secondary.spinner-circles circle,
.spinner-md-secondary.spinner-dots circle {
  fill: #7f8490;
}

.spinner-md-light.spinner-ios line,
.spinner-md-light.spinner-ios-small line,
.spinner-md-light.spinner-crescent circle {
  stroke: ghostwhite;
}

.spinner-md-light.spinner-bubbles circle,
.spinner-md-light.spinner-circles circle,
.spinner-md-light.spinner-dots circle {
  fill: ghostwhite;
}

.spinner-md-dark.spinner-ios line,
.spinner-md-dark.spinner-ios-small line,
.spinner-md-dark.spinner-crescent circle {
  stroke: #444444;
}

.spinner-md-dark.spinner-bubbles circle,
.spinner-md-dark.spinner-circles circle,
.spinner-md-dark.spinner-dots circle {
  fill: #444444;
}

.spinner-md-indicator.spinner-ios line,
.spinner-md-indicator.spinner-ios-small line,
.spinner-md-indicator.spinner-crescent circle {
  stroke: #666666;
}

.spinner-md-indicator.spinner-bubbles circle,
.spinner-md-indicator.spinner-circles circle,
.spinner-md-indicator.spinner-dots circle {
  fill: #666666;
}

.spinner-md-success.spinner-ios line,
.spinner-md-success.spinner-ios-small line,
.spinner-md-success.spinner-crescent circle {
  stroke: green;
}

.spinner-md-success.spinner-bubbles circle,
.spinner-md-success.spinner-circles circle,
.spinner-md-success.spinner-dots circle {
  fill: green;
}

.spinner-md-lightprimary.spinner-ios line,
.spinner-md-lightprimary.spinner-ios-small line,
.spinner-md-lightprimary.spinner-crescent circle {
  stroke: deepskyblue;
}

.spinner-md-lightprimary.spinner-bubbles circle,
.spinner-md-lightprimary.spinner-circles circle,
.spinner-md-lightprimary.spinner-dots circle {
  fill: deepskyblue;
}

.spinner-md-danger.spinner-ios line,
.spinner-md-danger.spinner-ios-small line,
.spinner-md-danger.spinner-crescent circle {
  stroke: tomato;
}

.spinner-md-danger.spinner-bubbles circle,
.spinner-md-danger.spinner-circles circle,
.spinner-md-danger.spinner-dots circle {
  fill: tomato;
}

.spinner-md-lightbg.spinner-ios line,
.spinner-md-lightbg.spinner-ios-small line,
.spinner-md-lightbg.spinner-crescent circle {
  stroke: whitesmoke;
}

.spinner-md-lightbg.spinner-bubbles circle,
.spinner-md-lightbg.spinner-circles circle,
.spinner-md-lightbg.spinner-dots circle {
  fill: whitesmoke;
}

.spinner-wp-ios line,
.spinner-wp-ios-small line {
  stroke: #69717d;
}

.spinner-wp-bubbles circle {
  fill: #000;
}

.spinner-wp-circles circle {
  fill: #69717d;
}

.spinner-wp-crescent circle {
  stroke: #000;
}

.spinner-wp-dots circle {
  fill: #444;
}

.spinner-wp-primary.spinner-ios line,
.spinner-wp-primary.spinner-ios-small line,
.spinner-wp-primary.spinner-crescent circle {
  stroke: #0167b1;
}

.spinner-wp-primary.spinner-bubbles circle,
.spinner-wp-primary.spinner-circles circle,
.spinner-wp-primary.spinner-dots circle {
  fill: #0167b1;
}

.spinner-wp-primary1.spinner-ios line,
.spinner-wp-primary1.spinner-ios-small line,
.spinner-wp-primary1.spinner-crescent circle {
  stroke: #4472CA;
}

.spinner-wp-primary1.spinner-bubbles circle,
.spinner-wp-primary1.spinner-circles circle,
.spinner-wp-primary1.spinner-dots circle {
  fill: #4472CA;
}

.spinner-wp-secondary.spinner-ios line,
.spinner-wp-secondary.spinner-ios-small line,
.spinner-wp-secondary.spinner-crescent circle {
  stroke: #7f8490;
}

.spinner-wp-secondary.spinner-bubbles circle,
.spinner-wp-secondary.spinner-circles circle,
.spinner-wp-secondary.spinner-dots circle {
  fill: #7f8490;
}

.spinner-wp-light.spinner-ios line,
.spinner-wp-light.spinner-ios-small line,
.spinner-wp-light.spinner-crescent circle {
  stroke: ghostwhite;
}

.spinner-wp-light.spinner-bubbles circle,
.spinner-wp-light.spinner-circles circle,
.spinner-wp-light.spinner-dots circle {
  fill: ghostwhite;
}

.spinner-wp-dark.spinner-ios line,
.spinner-wp-dark.spinner-ios-small line,
.spinner-wp-dark.spinner-crescent circle {
  stroke: #444444;
}

.spinner-wp-dark.spinner-bubbles circle,
.spinner-wp-dark.spinner-circles circle,
.spinner-wp-dark.spinner-dots circle {
  fill: #444444;
}

.spinner-wp-indicator.spinner-ios line,
.spinner-wp-indicator.spinner-ios-small line,
.spinner-wp-indicator.spinner-crescent circle {
  stroke: #666666;
}

.spinner-wp-indicator.spinner-bubbles circle,
.spinner-wp-indicator.spinner-circles circle,
.spinner-wp-indicator.spinner-dots circle {
  fill: #666666;
}

.spinner-wp-success.spinner-ios line,
.spinner-wp-success.spinner-ios-small line,
.spinner-wp-success.spinner-crescent circle {
  stroke: green;
}

.spinner-wp-success.spinner-bubbles circle,
.spinner-wp-success.spinner-circles circle,
.spinner-wp-success.spinner-dots circle {
  fill: green;
}

.spinner-wp-lightprimary.spinner-ios line,
.spinner-wp-lightprimary.spinner-ios-small line,
.spinner-wp-lightprimary.spinner-crescent circle {
  stroke: deepskyblue;
}

.spinner-wp-lightprimary.spinner-bubbles circle,
.spinner-wp-lightprimary.spinner-circles circle,
.spinner-wp-lightprimary.spinner-dots circle {
  fill: deepskyblue;
}

.spinner-wp-danger.spinner-ios line,
.spinner-wp-danger.spinner-ios-small line,
.spinner-wp-danger.spinner-crescent circle {
  stroke: tomato;
}

.spinner-wp-danger.spinner-bubbles circle,
.spinner-wp-danger.spinner-circles circle,
.spinner-wp-danger.spinner-dots circle {
  fill: tomato;
}

.spinner-wp-lightbg.spinner-ios line,
.spinner-wp-lightbg.spinner-ios-small line,
.spinner-wp-lightbg.spinner-crescent circle {
  stroke: whitesmoke;
}

.spinner-wp-lightbg.spinner-bubbles circle,
.spinner-wp-lightbg.spinner-circles circle,
.spinner-wp-lightbg.spinner-dots circle {
  fill: whitesmoke;
}

.split-pane {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  contain: strict;
}

.split-pane-side:not(ion-menu) {
  display: none;
}

.split-pane-visible > .split-pane-side,
.split-pane-visible > .split-pane-main {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.split-pane-visible > .split-pane-side {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.split-pane-visible > .split-pane-main,
.split-pane-visible > ion-nav.split-pane-side,
.split-pane-visible > ion-tabs.split-pane-side,
.split-pane-visible > ion-menu.menu-enabled {
  display: block;
}

.split-pane-visible > ion-split-pane.split-pane-side,
.split-pane-visible > ion-split-pane.split-pane-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.split-pane-visible > ion-menu.menu-enabled > .menu-inner {
  left: 0;
  right: 0;
  width: auto;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.split-pane-visible > ion-menu.menu-enabled > .ion-backdrop {
  display: hidden !important;
}

.split-pane-visible > .split-pane-side[side=start] {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.split-pane-visible > .split-pane-side[side=end] {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.split-pane-visible > .split-pane-side[side=left] {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.split-pane-visible > .split-pane-side[side=right] {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.split-pane-ios.split-pane-visible > .split-pane-side {
  min-width: 270px;
  max-width: 28%;
  border-right: 0.55px solid #c8c7cc;
  border-left: 0;
}

.split-pane-ios.split-pane-visible > .split-pane-side[side=right] {
  border-right: 0;
  border-left: 0.55px solid #c8c7cc;
}

.split-pane-md.split-pane-visible > .split-pane-side {
  min-width: 270px;
  max-width: 28%;
  border-right: 1px solid #c7c7cc;
  border-left: 0;
}

.split-pane-md.split-pane-visible > .split-pane-side[side=right] {
  border-right: 0;
  border-left: 1px solid #c7c7cc;
}

.split-pane-wp.split-pane-visible > .split-pane-side {
  min-width: 270px;
  max-width: 28%;
  border-right: 1px solid transparent;
  border-left: 0;
}

.split-pane-wp.split-pane-visible > .split-pane-side[side=right] {
  border-right: 0;
  border-left: 1px solid transparent;
}

.tabbar {
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  opacity: 0;
}

.tabbar-hidden .tabbar {
  display: none;
}

.tabbar.show-tabbar {
  opacity: 1;
}

[tabsPlacement=top] > .tabbar {
  top: 0;
  bottom: auto;
}

.tab-button {
  margin: 0;
  text-align: center;
  border-radius: 0;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tab-disabled {
  pointer-events: none;
}

.tab-disabled ion-badge,
.tab-disabled ion-icon,
.tab-disabled span {
  opacity: .4;
}

.tab-button-text {
  margin-top: 3px;
  margin-bottom: 2px;
}

.tab-button-text,
.tab-button-icon {
  display: none;
  overflow: hidden;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  min-width: 26px;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.has-icon .tab-button-icon,
.has-title .tab-button-text {
  display: block;
}

.has-title-only .tab-button-text {
  white-space: normal;
}

[tabsLayout=icon-bottom] .tab-button .tab-button-icon {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

[tabsLayout=icon-left] .tab-button,
[tabsLayout=icon-right] .tab-button,
[tabsLayout=icon-start] .tab-button,
[tabsLayout=icon-end] .tab-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

[tabsLayout=icon-left] .tab-button .tab-button-icon,
[tabsLayout=icon-start] .tab-button .tab-button-icon {
  padding-right: 8px;
  text-align: right;
  text-align: end;
}

[tabsLayout=icon-right] .tab-button .tab-button-icon,
[tabsLayout=icon-end] .tab-button .tab-button-icon {
  padding-left: 8px;
  text-align: left;
  text-align: start;
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

.tab-hidden,
.tab-highlight,
[tabsLayout=icon-hide] .tab-button-icon,
[tabsLayout=title-hide] .tab-button-text {
  display: none;
}

.tab-badge {
  right: 4%;
  top: 6%;
  right: calc(50% - 50px);
  padding: 1px 6px;
  position: absolute;
  height: auto;
  font-size: 12px;
  line-height: 16px;
}

.has-icon .tab-badge {
  right: calc(50% - 30px);
}

[tabsLayout=icon-bottom] .tab-badge,
[tabsLayout=icon-left] .tab-badge,
[tabsLayout=icon-right] .tab-badge,
[tabsLayout=icon-start] .tab-badge,
[tabsLayout=icon-end] .tab-badge {
  right: calc(50% - 50px);
}

.tabs-ios .tabbar {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 0.55px solid rgba(0, 0, 0, 0.3);
  background: white;
}

.tabs-ios[tabsPlacement=top] .tabbar {
  border-top: 0;
  border-bottom: 0.55px solid rgba(0, 0, 0, 0.3);
}

.tabs-ios .tab-button {
  max-width: 240px;
  min-height: 49px;
  font-size: 10px;
  font-weight: 500;
  color: #95989a;
  padding: 0 2px;
}

.tabs-ios .tab-button:hover:not(.disable-hover),
.tabs-ios .tab-button[aria-selected=true] {
  color: #0167b1;
}

.tabs-ios .tab-button[aria-selected=true] .tab-button-icon {
  color: #0167b1;
}

.tabs-ios .tab-button-text {
  margin-top: 0;
  margin-bottom: 1px;
  min-height: 11px;
}

.tabs-ios .has-title-only .tab-button-text {
  font-size: 12px;
}

.tabs-ios .tab-button-icon {
  margin-top: 4px;
  margin-bottom: 1px;
  min-width: 35px;
  height: 30px;
  font-size: 30px;
  color: #95989a;
}

.tabs-ios .tab-button-icon::before {
  vertical-align: top;
}

.tabs-ios[tabsLayout=icon-right] .tab-button .tab-button-text,
.tabs-ios[tabsLayout=icon-left] .tab-button .tab-button-text,
.tabs-ios[tabsLayout=icon-end] .tab-button .tab-button-text,
.tabs-ios[tabsLayout=icon-start] .tab-button .tab-button-text {
  font-size: 1.4rem;
  line-height: 1.1;
}

.tabs-ios[tabsLayout=icon-right] .tab-button ion-icon,
.tabs-ios[tabsLayout=icon-left] .tab-button ion-icon,
.tabs-ios[tabsLayout=icon-end] .tab-button ion-icon,
.tabs-ios[tabsLayout=icon-start] .tab-button ion-icon {
  min-width: 24px;
  height: 26px;
  font-size: 24px;
}

.tabs-ios[tabsLayout=icon-hide] .tab-button,
.tabs-ios .tab-button.has-title-only {
  min-height: 41px;
}

.tabs-ios[tabsLayout=icon-hide] .tab-button .tab-button-text,
.tabs-ios .tab-button.has-title-only .tab-button-text {
  margin: 2px 0;
  font-size: 1.4rem;
  line-height: 1.1;
}

.tabs-ios[tabsLayout=title-hide] .tab-button,
.tabs-ios .tab-button.icon-only {
  min-height: 41px;
}

.tabs-ios-primary .tabbar {
  border-color: #01497e;
  background-color: #0167b1;
}

.tabs-ios-primary .tab-button,
.tabs-ios-primary .tab-button-icon,
.tabs-ios-primary .tab-button:hover:not(.disable-hover),
.tabs-ios-primary .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-primary .tab-button[aria-selected=true],
.tabs-ios-primary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-primary1 .tabbar {
  border-color: #305aab;
  background-color: #4472CA;
}

.tabs-ios-primary1 .tab-button,
.tabs-ios-primary1 .tab-button-icon,
.tabs-ios-primary1 .tab-button:hover:not(.disable-hover),
.tabs-ios-primary1 .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-primary1 .tab-button[aria-selected=true],
.tabs-ios-primary1 .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-secondary .tabbar {
  border-color: #666b76;
  background-color: #7f8490;
}

.tabs-ios-secondary .tab-button,
.tabs-ios-secondary .tab-button-icon,
.tabs-ios-secondary .tab-button:hover:not(.disable-hover),
.tabs-ios-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-secondary .tab-button[aria-selected=true],
.tabs-ios-secondary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-light .tabbar {
  border-color: #c5c5ff;
  background-color: ghostwhite;
}

.tabs-ios-light .tab-button,
.tabs-ios-light .tab-button-icon,
.tabs-ios-light .tab-button:hover:not(.disable-hover),
.tabs-ios-light .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-ios-light .tab-button[aria-selected=true],
.tabs-ios-light .tab-button[aria-selected=true] .tab-button-icon {
  color: #000;
}

.tabs-ios-dark .tabbar {
  border-color: #2b2b2b;
  background-color: #444444;
}

.tabs-ios-dark .tab-button,
.tabs-ios-dark .tab-button-icon,
.tabs-ios-dark .tab-button:hover:not(.disable-hover),
.tabs-ios-dark .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-dark .tab-button[aria-selected=true],
.tabs-ios-dark .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-indicator .tabbar {
  border-color: #4d4d4d;
  background-color: #666666;
}

.tabs-ios-indicator .tab-button,
.tabs-ios-indicator .tab-button-icon,
.tabs-ios-indicator .tab-button:hover:not(.disable-hover),
.tabs-ios-indicator .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-indicator .tab-button[aria-selected=true],
.tabs-ios-indicator .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-success .tabbar {
  border-color: #004d00;
  background-color: green;
}

.tabs-ios-success .tab-button,
.tabs-ios-success .tab-button-icon,
.tabs-ios-success .tab-button:hover:not(.disable-hover),
.tabs-ios-success .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-success .tab-button[aria-selected=true],
.tabs-ios-success .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-lightprimary .tabbar {
  border-color: #0099cc;
  background-color: deepskyblue;
}

.tabs-ios-lightprimary .tab-button,
.tabs-ios-lightprimary .tab-button-icon,
.tabs-ios-lightprimary .tab-button:hover:not(.disable-hover),
.tabs-ios-lightprimary .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-lightprimary .tab-button[aria-selected=true],
.tabs-ios-lightprimary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-danger .tabbar {
  border-color: #ff3814;
  background-color: tomato;
}

.tabs-ios-danger .tab-button,
.tabs-ios-danger .tab-button-icon,
.tabs-ios-danger .tab-button:hover:not(.disable-hover),
.tabs-ios-danger .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-danger .tab-button[aria-selected=true],
.tabs-ios-danger .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-lightbg .tabbar {
  border-color: gainsboro;
  background-color: whitesmoke;
}

.tabs-ios-lightbg .tab-button,
.tabs-ios-lightbg .tab-button-icon,
.tabs-ios-lightbg .tab-button:hover:not(.disable-hover),
.tabs-ios-lightbg .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-ios-lightbg .tab-button[aria-selected=true],
.tabs-ios-lightbg .tab-button[aria-selected=true] .tab-button-icon {
  color: #000;
}

.tabs-md .tabbar {
  background: white;
}

.tabs-md .tab-button {
  min-height: 5.6rem;
  font-weight: normal;
  color: #95989a;
  padding: 0;
}

.tabs-md .tab-button[aria-selected=true] {
  color: #0167b1;
  padding: 0;
}

.tabs-md .tab-button-text {
  font-size: 1.2rem;
  text-transform: none;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  margin: 0;
  -webkit-transform-origin: 50% 80%;
  transform-origin: 50% 80%;
}

.tabs-md .tab-button[aria-selected=true] .tab-button-text {
  -webkit-transform: scale3d(1.16667, 1.16667, 1);
  transform: scale3d(1.16667, 1.16667, 1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.tabs-md[tabsLayout=icon-top] .has-icon .tab-button-text {
  margin-top: 4px;
  margin-bottom: 0;
}

.tabs-md[tabsLayout=icon-bottom] .tab-button .tab-button-text {
  margin-top: 0;
}

.tabs-md .tab-button-icon {
  margin-top: 1px;
  min-width: 2.4rem;
  font-size: 2.4rem;
  color: #95989a;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: 50% 150%;
  transform-origin: 50% 150%;
}

.tabs-md .tab-button[aria-selected=true] .tab-button-icon {
  color: #0167b1;
  -webkit-transform: translate3d(0,  -2px,  0);
  transform: translate3d(0,  -2px,  0);
}

.tabs-md[tabsLayout=icon-right] .tab-button[aria-selected=true] .tab-button-icon,
.tabs-md[tabsLayout=icon-end] .tab-button[aria-selected=true] .tab-button-icon {
  -webkit-transform: translate3d(2px,  0,  0);
  transform: translate3d(2px,  0,  0);
}

.tabs-md[tabsLayout=icon-bottom] .tab-button[aria-selected=true] .tab-button-icon {
  -webkit-transform: translate3d(0,  2px,  0);
  transform: translate3d(0,  2px,  0);
}

.tabs-md[tabsLayout=icon-left] .tab-button[aria-selected=true] .tab-button-icon,
.tabs-md[tabsLayout=icon-start] .tab-button[aria-selected=true] .tab-button-icon {
  -webkit-transform: translate3d(-2px,  0,  0);
  transform: translate3d(-2px,  0,  0);
}

.tabs-md[tabsLayout=icon-hide] .tab-button,
.tabs-md[tabsLayout=title-hide] .tab-button,
.tabs-md .tab-button.icon-only,
.tabs-md .tab-button.has-title-only {
  padding: 0 10px;
}

.tabs-md[tabsHighlight=true] .tab-highlight {
  left: 0;
  bottom: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  position: absolute;
  display: block;
  width: 1px;
  height: 2px;
  background: black;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.tabs-md[tabsHighlight=true] .tab-highlight.animate {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.tabs-md[tabsHighlight=true][tabsPlacement=bottom] > .tabbar > .tab-highlight {
  top: 0;
}

.tabs-md-primary .tabbar {
  background-color: #0167b1;
}

.tabs-md-primary .tab-button,
.tabs-md-primary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-primary .tab-button:hover:not(.disable-hover),
.tabs-md-primary .tab-button[aria-selected=true],
.tabs-md-primary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-primary[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-primary1 .tabbar {
  background-color: #4472CA;
}

.tabs-md-primary1 .tab-button,
.tabs-md-primary1 .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-primary1 .tab-button:hover:not(.disable-hover),
.tabs-md-primary1 .tab-button[aria-selected=true],
.tabs-md-primary1 .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-primary1[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-secondary .tabbar {
  background-color: #7f8490;
}

.tabs-md-secondary .tab-button,
.tabs-md-secondary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-secondary .tab-button:hover:not(.disable-hover),
.tabs-md-secondary .tab-button[aria-selected=true],
.tabs-md-secondary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-secondary[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-light .tabbar {
  background-color: ghostwhite;
}

.tabs-md-light .tab-button,
.tabs-md-light .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-md-light .tab-button:hover:not(.disable-hover),
.tabs-md-light .tab-button[aria-selected=true],
.tabs-md-light .tab-button[aria-selected=true] .tab-button-icon {
  color: #000;
}

.tabs-md-light[tabsHighlight=true] .tab-highlight {
  background: #000;
}

.tabs-md-dark .tabbar {
  background-color: #444444;
}

.tabs-md-dark .tab-button,
.tabs-md-dark .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-dark .tab-button:hover:not(.disable-hover),
.tabs-md-dark .tab-button[aria-selected=true],
.tabs-md-dark .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-dark[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-indicator .tabbar {
  background-color: #666666;
}

.tabs-md-indicator .tab-button,
.tabs-md-indicator .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-indicator .tab-button:hover:not(.disable-hover),
.tabs-md-indicator .tab-button[aria-selected=true],
.tabs-md-indicator .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-indicator[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-success .tabbar {
  background-color: green;
}

.tabs-md-success .tab-button,
.tabs-md-success .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-success .tab-button:hover:not(.disable-hover),
.tabs-md-success .tab-button[aria-selected=true],
.tabs-md-success .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-success[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-lightprimary .tabbar {
  background-color: deepskyblue;
}

.tabs-md-lightprimary .tab-button,
.tabs-md-lightprimary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-lightprimary .tab-button:hover:not(.disable-hover),
.tabs-md-lightprimary .tab-button[aria-selected=true],
.tabs-md-lightprimary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-lightprimary[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-danger .tabbar {
  background-color: tomato;
}

.tabs-md-danger .tab-button,
.tabs-md-danger .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-danger .tab-button:hover:not(.disable-hover),
.tabs-md-danger .tab-button[aria-selected=true],
.tabs-md-danger .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-danger[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-lightbg .tabbar {
  background-color: whitesmoke;
}

.tabs-md-lightbg .tab-button,
.tabs-md-lightbg .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-md-lightbg .tab-button:hover:not(.disable-hover),
.tabs-md-lightbg .tab-button[aria-selected=true],
.tabs-md-lightbg .tab-button[aria-selected=true] .tab-button-icon {
  color: #000;
}

.tabs-md-lightbg[tabsHighlight=true] .tab-highlight {
  background: #000;
}

.tabs-wp .tabbar {
  background: white;
}

.tabs-wp .tab-button {
  border-radius: 0;
  min-height: 4.8rem;
  border-bottom: 2px solid transparent;
  font-size: 1.2rem;
  font-weight: normal;
  color: rgba(140, 140, 140, 0.7);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px 10px 5px;
}

.tabs-wp .tab-button[aria-selected=true] {
  border-bottom-color: black;
  color: black;
}

.tabs-wp .tab-button.activated {
  background: rgba(0, 0, 0, 0.1);
}

.tabs-wp[tabsPlacement=bottom] .tab-button {
  border-top: 2px solid transparent;
  border-bottom-width: 0;
}

.tabs-wp[tabsPlacement=bottom] .tab-button[aria-selected=true] {
  border-top-color: black;
}

.tabs-wp .tab-button-text {
  margin-top: 5px;
  margin-bottom: 5px;
}

.tabs-wp .tab-button-icon {
  min-width: 2.4rem;
  font-size: 2.4rem;
  color: rgba(140, 140, 140, 0.7);
}

.tabs-wp .tab-button[aria-selected=true] .tab-button-icon {
  color: black;
}

.tabs-wp[tabsLayout=icon-bottom] .tab-button {
  padding-top: 8px;
  padding-bottom: 8px;
}

.tabs-wp[tabsLayout=icon-right] .tab-button,
.tabs-wp[tabsLayout=icon-left] .tab-button,
.tabs-wp[tabsLayout=icon-end] .tab-button,
.tabs-wp[tabsLayout=icon-start] .tab-button {
  padding-bottom: 10px;
}

.tabs-wp[tabsLayout=icon-right] .tab-button ion-icon,
.tabs-wp[tabsLayout=icon-left] .tab-button ion-icon,
.tabs-wp[tabsLayout=icon-end] .tab-button ion-icon,
.tabs-wp[tabsLayout=icon-start] .tab-button ion-icon {
  min-width: 24px;
}

.tabs-wp[tabsLayout=icon-hide] .tab-button,
.tabs-wp[tabsLayout=title-hide] .tab-button,
.tabs-wp .tab-button.icon-only,
.tabs-wp .tab-button.has-title-only {
  padding: 6px 10px;
}

.tabs-wp-primary .tabbar {
  background-color: #0167b1;
}

.tabs-wp-primary .tab-button,
.tabs-wp-primary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-primary .tab-button:hover:not(.disable-hover),
.tabs-wp-primary .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-primary .tab-button[aria-selected=true],
.tabs-wp-primary .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-primary1 .tabbar {
  background-color: #4472CA;
}

.tabs-wp-primary1 .tab-button,
.tabs-wp-primary1 .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-primary1 .tab-button:hover:not(.disable-hover),
.tabs-wp-primary1 .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-primary1 .tab-button[aria-selected=true],
.tabs-wp-primary1 .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-secondary .tabbar {
  background-color: #7f8490;
}

.tabs-wp-secondary .tab-button,
.tabs-wp-secondary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-secondary .tab-button:hover:not(.disable-hover),
.tabs-wp-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-secondary .tab-button[aria-selected=true],
.tabs-wp-secondary .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-light .tabbar {
  background-color: ghostwhite;
}

.tabs-wp-light .tab-button,
.tabs-wp-light .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-wp-light .tab-button:hover:not(.disable-hover),
.tabs-wp-light .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-light .tab-button[aria-selected=true],
.tabs-wp-light .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #000;
  color: #000;
}

.tabs-wp-dark .tabbar {
  background-color: #444444;
}

.tabs-wp-dark .tab-button,
.tabs-wp-dark .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-dark .tab-button:hover:not(.disable-hover),
.tabs-wp-dark .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-dark .tab-button[aria-selected=true],
.tabs-wp-dark .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-indicator .tabbar {
  background-color: #666666;
}

.tabs-wp-indicator .tab-button,
.tabs-wp-indicator .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-indicator .tab-button:hover:not(.disable-hover),
.tabs-wp-indicator .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-indicator .tab-button[aria-selected=true],
.tabs-wp-indicator .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-success .tabbar {
  background-color: green;
}

.tabs-wp-success .tab-button,
.tabs-wp-success .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-success .tab-button:hover:not(.disable-hover),
.tabs-wp-success .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-success .tab-button[aria-selected=true],
.tabs-wp-success .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-lightprimary .tabbar {
  background-color: deepskyblue;
}

.tabs-wp-lightprimary .tab-button,
.tabs-wp-lightprimary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-lightprimary .tab-button:hover:not(.disable-hover),
.tabs-wp-lightprimary .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-lightprimary .tab-button[aria-selected=true],
.tabs-wp-lightprimary .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-danger .tabbar {
  background-color: tomato;
}

.tabs-wp-danger .tab-button,
.tabs-wp-danger .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-danger .tab-button:hover:not(.disable-hover),
.tabs-wp-danger .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-danger .tab-button[aria-selected=true],
.tabs-wp-danger .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-lightbg .tabbar {
  background-color: whitesmoke;
}

.tabs-wp-lightbg .tab-button,
.tabs-wp-lightbg .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-wp-lightbg .tab-button:hover:not(.disable-hover),
.tabs-wp-lightbg .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-lightbg .tab-button[aria-selected=true],
.tabs-wp-lightbg .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #000;
  color: #000;
}

ion-toast {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  contain: strict;
}

.toast-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: auto;
  contain: content;
}

.toast-button {
  padding: 19px 16px 17px;
  font-size: 1.5rem;
}

.toast-message {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.toast-ios .toast-wrapper {
  left: 10px;
  right: 10px;
  margin: auto;
  border-radius: 0.65rem;
  position: absolute;
  z-index: 10;
  display: block;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.9);
}

.toast-ios .toast-wrapper.toast-top {
  -webkit-transform: translate3d(0,  -100%,  0);
  transform: translate3d(0,  -100%,  0);
  margin: constant(safe-area-inset-top) auto auto;
  margin: env(safe-area-inset-top) auto auto;
  top: 0;
}

.toast-ios .toast-wrapper.toast-bottom {
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  margin: auto auto constant(safe-area-inset-bottom);
  margin: auto auto env(safe-area-inset-bottom);
  bottom: 0;
}

.toast-ios .toast-wrapper.toast-middle {
  opacity: .01;
}

.toast-ios .toast-message {
  font-size: 1.4rem;
  color: #fff;
  padding: 1.5rem;
}

.toast-md .toast-wrapper {
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 700px;
  background: #333;
}

.toast-md .toast-wrapper.toast-top {
  -webkit-transform: translate3d(0,  -100%,  0);
  transform: translate3d(0,  -100%,  0);
  top: 0;
}

.toast-md .toast-wrapper.toast-bottom {
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  bottom: 0;
}

.toast-md .toast-wrapper.toast-middle {
  opacity: .01;
}

.toast-md .toast-message {
  font-size: 1.5rem;
  color: #fff;
  padding: 19px 16px 17px;
}

.toast-wp .toast-wrapper {
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0;
  position: absolute;
  z-index: 10;
  display: block;
  max-width: 700px;
  background: black;
}

.toast-wp .toast-wrapper.toast-top {
  top: 0;
  opacity: .01;
}

.toast-wp .toast-wrapper.toast-bottom {
  bottom: 0;
  opacity: .01;
}

.toast-wp .toast-wrapper.toast-middle {
  opacity: .01;
}

.toast-message {
  font-size: 1.4rem;
  color: #fff;
  padding: 1.5rem;
}

.toast-button {
  color: #fff;
}

.toggle-ios {
  position: relative;
  width: 51px;
  height: 32px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: strict;
}

.toggle-ios .toggle-icon {
  border-radius: 16px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  -webkit-transition: background-color 300ms;
  transition: background-color 300ms;
  pointer-events: none;
}

.toggle-ios .toggle-icon::before {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 16px;
  position: absolute;
  background-color: #bfc1c7 !important;
  content: "";
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.toggle-ios .toggle-inner {
  left: 2px;
  top: 2px;
  border-radius: 14px;
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: white;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
  transition: width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
  transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms;
  transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
  will-change: transform;
  contain: strict;
}

.toggle-ios.toggle-checked .toggle-icon {
  background-color: #0167b1;
}

.toggle-ios.toggle-activated .toggle-icon::before,
.toggle-ios.toggle-checked .toggle-icon::before {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.toggle-ios.toggle-checked .toggle-inner {
  -webkit-transform: translate3d(19px,  0,  0);
  transform: translate3d(19px,  0,  0);
}

.toggle-ios.toggle-activated.toggle-checked .toggle-inner::before {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.toggle-ios.toggle-activated .toggle-inner {
  width: 34px;
}

.toggle-ios.toggle-activated.toggle-checked .toggle-inner {
  left: -4px;
}

.toggle-ios.toggle-disabled,
.item-ios.item-toggle-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-ios .toggle-ios {
  margin: 0;
  padding: 6px 8px 5px 16px;
}

.item-ios .toggle-ios[item-left],
.item-ios .toggle-ios[item-start] {
  padding: 6px 16px 5px 0;
}

.toggle-ios-primary.toggle-checked .toggle-icon {
  background-color: #0167b1;
}

.toggle-ios-primary1.toggle-checked .toggle-icon {
  background-color: #4472CA;
}

.toggle-ios-secondary.toggle-checked .toggle-icon {
  background-color: #7f8490;
}

.toggle-ios-light.toggle-checked .toggle-icon {
  background-color: ghostwhite;
}

.toggle-ios-dark.toggle-checked .toggle-icon {
  background-color: #444444;
}

.toggle-ios-indicator.toggle-checked .toggle-icon {
  background-color: #666666;
}

.toggle-ios-success.toggle-checked .toggle-icon {
  background-color: green;
}

.toggle-ios-lightprimary.toggle-checked .toggle-icon {
  background-color: deepskyblue;
}

.toggle-ios-danger.toggle-checked .toggle-icon {
  background-color: tomato;
}

.toggle-ios-lightbg.toggle-checked .toggle-icon {
  background-color: whitesmoke;
}

.toggle-md {
  position: relative;
  width: 36px;
  height: 14px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: strict;
  padding: 12px;
}

.toggle-md .toggle-icon {
  border-radius: 14px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #bfc1c7;
  -webkit-transition: background-color 300ms;
  transition: background-color 300ms;
  pointer-events: none;
}

.toggle-md .toggle-inner {
  left: 0;
  top: -3px;
  border-radius: 50%;
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  will-change: transform, background-color;
  contain: strict;
}

.toggle-md.toggle-checked .toggle-icon {
  background-color: #0167b1;
}

.toggle-md.toggle-checked .toggle-inner {
  -webkit-transform: translate3d(16px,  0,  0);
  transform: translate3d(16px,  0,  0);
  background-color: white;
}

.toggle-md.toggle-disabled,
.item-md.item-toggle-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.toggle-md.toggle-disabled ion-radio {
  opacity: 0.3;
}

.item-md .toggle-md {
  cursor: pointer;
  margin: 0;
  padding: 12px 8px 12px 16px;
}

.item-md .toggle-md[item-left],
.item-md .toggle-md[item-start] {
  padding: 12px 18px 12px 2px;
}

.item-md.item-toggle ion-label {
  margin-left: 0;
}

.toggle-md-primary.toggle-checked .toggle-icon {
  background-color: #34a9fe;
}

.toggle-md-primary.toggle-checked .toggle-inner {
  background-color: #0167b1;
}

.toggle-md-primary1.toggle-checked .toggle-icon {
  background-color: #a7bde6;
}

.toggle-md-primary1.toggle-checked .toggle-inner {
  background-color: #4472CA;
}

.toggle-md-secondary.toggle-checked .toggle-icon {
  background-color: #c3c6cb;
}

.toggle-md-secondary.toggle-checked .toggle-inner {
  background-color: #7f8490;
}

.toggle-md-light.toggle-checked .toggle-icon {
  background-color: white;
}

.toggle-md-light.toggle-checked .toggle-inner {
  background-color: ghostwhite;
}

.toggle-md-dark.toggle-checked .toggle-icon {
  background-color: #848484;
}

.toggle-md-dark.toggle-checked .toggle-inner {
  background-color: #444444;
}

.toggle-md-indicator.toggle-checked .toggle-icon {
  background-color: #a6a6a6;
}

.toggle-md-indicator.toggle-checked .toggle-inner {
  background-color: #666666;
}

.toggle-md-success.toggle-checked .toggle-icon {
  background-color: #01ff01;
}

.toggle-md-success.toggle-checked .toggle-inner {
  background-color: green;
}

.toggle-md-lightprimary.toggle-checked .toggle-icon {
  background-color: #80dfff;
}

.toggle-md-lightprimary.toggle-checked .toggle-inner {
  background-color: deepskyblue;
}

.toggle-md-danger.toggle-checked .toggle-icon {
  background-color: #ffcfc7;
}

.toggle-md-danger.toggle-checked .toggle-inner {
  background-color: tomato;
}

.toggle-md-lightbg.toggle-checked .toggle-icon {
  background-color: white;
}

.toggle-md-lightbg.toggle-checked .toggle-inner {
  background-color: whitesmoke;
}

.toggle-wp {
  position: relative;
  width: 40px;
  height: 18px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: strict;
}

.toggle-wp .toggle-icon {
  border-radius: 18px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #323232;
  background-color: transparent;
  pointer-events: none;
  contain: strict;
}

.toggle-wp .toggle-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #323232;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  will-change: transform, background-color;
}

.toggle-wp.toggle-checked .toggle-icon {
  border-color: #0167b1;
  background-color: #0167b1;
}

.toggle-wp.toggle-checked .toggle-inner {
  -webkit-transform: translate3d(22px,  0,  0);
  transform: translate3d(22px,  0,  0);
  background-color: #fff;
}

.toggle-wp.toggle-disabled,
.item-wp.item-toggle-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.toggle-wp.toggle-disabled ion-radio {
  opacity: 0.3;
}

.item-wp .toggle-wp {
  margin: 0;
  cursor: pointer;
  padding: 12px 8px 12px 16px;
}

.item-wp .toggle-wp[item-left],
.item-wp .toggle-wp[item-start] {
  padding: 12px 18px 12px 2px;
}

.item-wp.item-toggle ion-label {
  margin-left: 0;
}

.toggle-wp-primary.toggle-checked .toggle-icon {
  border-color: #0167b1;
  background-color: #0167b1;
}

.toggle-wp-primary.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-primary1.toggle-checked .toggle-icon {
  border-color: #4472CA;
  background-color: #4472CA;
}

.toggle-wp-primary1.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-secondary.toggle-checked .toggle-icon {
  border-color: #7f8490;
  background-color: #7f8490;
}

.toggle-wp-secondary.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-light.toggle-checked .toggle-icon {
  border-color: ghostwhite;
  background-color: ghostwhite;
}

.toggle-wp-light.toggle-checked .toggle-inner {
  background-color: #000;
}

.toggle-wp-dark.toggle-checked .toggle-icon {
  border-color: #444444;
  background-color: #444444;
}

.toggle-wp-dark.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-indicator.toggle-checked .toggle-icon {
  border-color: #666666;
  background-color: #666666;
}

.toggle-wp-indicator.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-success.toggle-checked .toggle-icon {
  border-color: green;
  background-color: green;
}

.toggle-wp-success.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-lightprimary.toggle-checked .toggle-icon {
  border-color: deepskyblue;
  background-color: deepskyblue;
}

.toggle-wp-lightprimary.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-danger.toggle-checked .toggle-icon {
  border-color: tomato;
  background-color: tomato;
}

.toggle-wp-danger.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-lightbg.toggle-checked .toggle-icon {
  border-color: whitesmoke;
  background-color: whitesmoke;
}

.toggle-wp-lightbg.toggle-checked .toggle-inner {
  background-color: #000;
}

ion-toolbar {
  position: relative;
  z-index: 10;
}

.toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  contain: content;
}

.toolbar-background {
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  pointer-events: none;
  contain: strict;
}

ion-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.toolbar-title {
  display: block;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ion-buttons {
  margin: 0 0.2rem;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  pointer-events: none;
}

ion-buttons button,
ion-buttons a,
ion-buttons input,
ion-buttons textarea,
ion-buttons div {
  pointer-events: auto;
}

.toolbar[transparent] .toolbar-background {
  border-color: transparent;
  background: transparent;
}

ion-buttons,
.bar-button-menutoggle {
  z-index: 99;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-navbar.toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-button {
  margin: 0;
  padding: 0;
  text-align: center;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: top;
  vertical-align: -webkit-baseline-middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bar-button::after {
  left: -2px;
  right: -2px;
  top: -7px;
  bottom: -6px;
  position: absolute;
  content: "";
}

.bar-button-menutoggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.back-button {
  display: none;
}

.back-button.show-back-button {
  display: inline-block;
}

.back-button-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.toolbar-ios {
  padding: 4px;
  padding-left: 4px;
  padding-right: 4px;
  min-height: 44px;
}

@media screen and (orientation: landscape) {
  .toolbar-ios {
    padding-left: calc(constant(safe-area-inset-left) + 4px);
    padding-right: calc(constant(safe-area-inset-right) + 4px);
    padding-left: calc(env(safe-area-inset-left) + 4px);
    padding-right: calc(env(safe-area-inset-right) + 4px);
  }
}

.toolbar-background-ios {
  background: #0167b1;
}

.header-ios .toolbar-background-ios,
.footer-ios .toolbar-background-ios {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.3);
}

.header-ios .toolbar-ios:last-child .toolbar-background-ios {
  border-width: 0 0 0.55px;
}

.footer-ios .toolbar-ios:first-child .toolbar-background-ios {
  border-width: 0.55px 0 0;
}

.header-ios[no-border] .toolbar-ios:last-child .toolbar-background-ios {
  border-bottom-width: 0;
}

.footer-ios[no-border] .toolbar-ios:first-child .toolbar-background-ios {
  border-top-width: 0;
}

.toolbar-content-ios {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  min-width: 0;
}

.toolbar-title-ios {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  color: #0167b1;
  pointer-events: auto;
}

.toolbar-ios ion-title {
  left: 0;
  top: 0;
  padding: 0 90px 1px;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  pointer-events: none;
}

.bar-buttons-ios {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-buttons-ios[left] {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.bar-buttons-ios[end] {
  text-align: right;
  text-align: end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.bar-buttons-ios[right] {
  text-align: right;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.bar-button-ios {
  padding: 0 4px;
  border-radius: 4px;
  height: 32px;
  border: 0;
  font-size: 1.7rem;
}

.bar-button-outline-ios {
  border-width: 1px;
  border-style: solid;
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.bar-button-outline-ios:hover:not(.disable-hover) {
  opacity: .4;
}

.bar-button-outline-ios.activated {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-ios {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-ios:hover:not(.disable-hover) {
  color: #fff;
  opacity: .4;
}

.bar-button-solid-ios.activated {
  color: #fff;
  background-color: #1573b7;
  opacity: .4;
}

.bar-button-ios.bar-button-icon-start ion-icon {
  padding-right: 0.3em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-ios.bar-button-icon-end ion-icon {
  padding-left: 0.4em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-ios[icon-only] {
  padding: 0;
  min-width: .9em;
}

.bar-button-ios[icon-only] ion-icon {
  padding: 0 0.1em;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.back-button-ios {
  margin: 0;
  z-index: 99;
  overflow: visible;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  min-height: 3.2rem;
  line-height: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.back-button-icon-ios {
  margin: -1px 0 0;
  display: inherit;
  min-width: 18px;
  font-size: 3.4rem;
}

.back-button-text-ios {
  letter-spacing: -.01em;
}

.bar-button-menutoggle-ios {
  margin: 0 6px;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 36px;
}

.bar-button-menutoggle-ios ion-icon {
  padding: 0 6px;
  font-size: 2.8rem;
}

.bar-button-menutoggle-ios[end],
.bar-button-menutoggle-ios[right] {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.bar-button-default-ios,
.bar-button-default.bar-button-ios-default,
.bar-button-clear-ios-default {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-default-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-default:hover:not(.disable-hover),
.bar-button-clear-ios-default:hover:not(.disable-hover) {
  color: #0167b1;
}

.bar-button-default-ios.activated,
.bar-button-default.bar-button-ios-default.activated,
.bar-button-clear-ios-default.activated {
  opacity: .4;
}

.bar-button-clear-ios,
.bar-button-default.bar-button-ios-clear,
.bar-button-clear-ios-clear {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-clear-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-clear:hover:not(.disable-hover),
.bar-button-clear-ios-clear:hover:not(.disable-hover) {
  color: #0167b1;
}

.bar-button-clear-ios.activated,
.bar-button-default.bar-button-ios-clear.activated,
.bar-button-clear-ios-clear.activated {
  opacity: .4;
}

.toolbar-ios-primary .toolbar-background-ios {
  background: #0167b1;
}

.toolbar-ios-primary .toolbar-title-ios,
.toolbar-ios-primary .bar-button-clear-ios,
.toolbar-ios-primary .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-primary .bar-button-primary-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary,
.toolbar-ios-primary .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-primary .bar-button-primary-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-primary .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-primary .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-primary .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-primary .bar-button-primary1-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-primary .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-primary .bar-button-primary1-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-primary .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-primary .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-primary .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-primary .bar-button-secondary-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-primary .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-primary .bar-button-secondary-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-primary .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-primary .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-primary .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-primary .bar-button-light-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-light,
.toolbar-ios-primary .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-primary .bar-button-light-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-primary .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-primary .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-primary .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-primary .bar-button-dark-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-dark,
.toolbar-ios-primary .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-primary .bar-button-dark-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-primary .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-primary .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-primary .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-primary .bar-button-indicator-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-primary .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-primary .bar-button-indicator-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-primary .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-primary .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-primary .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-primary .bar-button-success-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-success,
.toolbar-ios-primary .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-primary .bar-button-success-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-primary .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-primary .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-primary .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-primary .bar-button-lightprimary-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-primary .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-primary .bar-button-lightprimary-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-primary .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-primary .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-primary .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-primary .bar-button-danger-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-danger,
.toolbar-ios-primary .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-primary .bar-button-danger-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-primary .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-primary .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-primary .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-primary .bar-button-lightbg-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-primary .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-primary .bar-button-lightbg-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-primary .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-primary .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-primary .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-primary-ios,
.bar-button-default.bar-button-ios-primary,
.bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-primary-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.bar-button-primary-ios.activated,
.bar-button-default.bar-button-ios-primary.activated,
.bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-primary1 .toolbar-background-ios {
  background: #4472CA;
}

.toolbar-ios-primary1 .toolbar-title-ios,
.toolbar-ios-primary1 .bar-button-clear-ios,
.toolbar-ios-primary1 .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-primary1 .bar-button-primary-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-primary,
.toolbar-ios-primary1 .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-primary1 .bar-button-primary-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-primary1 .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-primary1 .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-primary1 .bar-button-primary1-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-primary1 .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-primary1 .bar-button-primary1-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-primary1 .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-primary1 .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-primary1 .bar-button-secondary-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-primary1 .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-primary1 .bar-button-secondary-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-primary1 .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-primary1 .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-primary1 .bar-button-light-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-light,
.toolbar-ios-primary1 .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-primary1 .bar-button-light-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-primary1 .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-primary1 .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-primary1 .bar-button-dark-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-dark,
.toolbar-ios-primary1 .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-primary1 .bar-button-dark-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-primary1 .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-primary1 .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-primary1 .bar-button-indicator-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-primary1 .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-primary1 .bar-button-indicator-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-primary1 .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-primary1 .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-primary1 .bar-button-success-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-success,
.toolbar-ios-primary1 .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-primary1 .bar-button-success-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-primary1 .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-primary1 .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-primary1 .bar-button-lightprimary-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-primary1 .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-primary1 .bar-button-lightprimary-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-primary1 .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-primary1 .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-primary1 .bar-button-danger-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-danger,
.toolbar-ios-primary1 .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-primary1 .bar-button-danger-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-primary1 .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-primary1 .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-primary1 .bar-button-lightbg-ios,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-primary1 .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-primary1 .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-primary1 .bar-button-lightbg-ios.activated,
.toolbar-ios-primary1 .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-primary1 .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-primary1 .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-primary1 .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-primary1 .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-primary1 .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-primary1-ios,
.bar-button-default.bar-button-ios-primary1,
.bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.bar-button-primary1-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.bar-button-primary1-ios.activated,
.bar-button-default.bar-button-ios-primary1.activated,
.bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-secondary .toolbar-background-ios {
  background: #7f8490;
}

.toolbar-ios-secondary .toolbar-title-ios,
.toolbar-ios-secondary .bar-button-clear-ios,
.toolbar-ios-secondary .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-secondary .bar-button-primary-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary,
.toolbar-ios-secondary .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-secondary .bar-button-primary-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-secondary .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-secondary .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-secondary .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-secondary .bar-button-primary1-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-secondary .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-secondary .bar-button-primary1-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-secondary .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-secondary .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-secondary .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-secondary .bar-button-secondary-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-secondary .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-secondary .bar-button-secondary-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-secondary .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-secondary .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-secondary .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-secondary .bar-button-light-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-light,
.toolbar-ios-secondary .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-secondary .bar-button-light-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-secondary .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-secondary .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-secondary .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-secondary .bar-button-dark-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark,
.toolbar-ios-secondary .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-secondary .bar-button-dark-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-secondary .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-secondary .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-secondary .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-secondary .bar-button-indicator-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-secondary .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-secondary .bar-button-indicator-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-secondary .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-secondary .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-secondary .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-secondary .bar-button-success-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-success,
.toolbar-ios-secondary .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-secondary .bar-button-success-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-secondary .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-secondary .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-secondary .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-secondary .bar-button-lightprimary-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-secondary .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-secondary .bar-button-lightprimary-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-secondary .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-secondary .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-secondary .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-secondary .bar-button-danger-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger,
.toolbar-ios-secondary .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-secondary .bar-button-danger-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-secondary .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-secondary .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-secondary .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-secondary .bar-button-lightbg-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-secondary .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-secondary .bar-button-lightbg-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-secondary .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-secondary .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-secondary .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-secondary-ios,
.bar-button-default.bar-button-ios-secondary,
.bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.bar-button-secondary-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.bar-button-secondary-ios.activated,
.bar-button-default.bar-button-ios-secondary.activated,
.bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-light .toolbar-background-ios {
  background: ghostwhite;
}

.toolbar-ios-light .toolbar-title-ios,
.toolbar-ios-light .bar-button-clear-ios,
.toolbar-ios-light .bar-button-default-ios {
  color: #000;
}

.toolbar-ios-light .bar-button-primary-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-primary,
.toolbar-ios-light .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-light .bar-button-primary-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-light .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-light .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-light .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-light .bar-button-primary1-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-light .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-light .bar-button-primary1-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-light .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-light .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-light .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-light .bar-button-secondary-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-light .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-light .bar-button-secondary-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-light .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-light .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-light .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-light .bar-button-light-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-light,
.toolbar-ios-light .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-light .bar-button-light-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-light .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-light .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-light .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-light .bar-button-dark-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-dark,
.toolbar-ios-light .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-light .bar-button-dark-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-light .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-light .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-light .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-light .bar-button-indicator-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-light .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-light .bar-button-indicator-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-light .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-light .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-light .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-light .bar-button-success-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-success,
.toolbar-ios-light .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-light .bar-button-success-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-light .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-light .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-light .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-light .bar-button-lightprimary-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-light .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-light .bar-button-lightprimary-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-light .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-light .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-light .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-light .bar-button-danger-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-danger,
.toolbar-ios-light .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-light .bar-button-danger-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-light .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-light .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-light .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-light .bar-button-lightbg-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-light .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-light .bar-button-lightbg-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-light .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-light .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-light .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-light-ios,
.bar-button-default.bar-button-ios-light,
.bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.bar-button-light-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.bar-button-light-ios.activated,
.bar-button-default.bar-button-ios-light.activated,
.bar-button-clear-ios-light.activated {
  opacity: .4;
}

.bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-dark .toolbar-background-ios {
  background: #444444;
}

.toolbar-ios-dark .toolbar-title-ios,
.toolbar-ios-dark .bar-button-clear-ios,
.toolbar-ios-dark .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-dark .bar-button-primary-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary,
.toolbar-ios-dark .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-dark .bar-button-primary-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-dark .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-dark .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-dark .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-dark .bar-button-primary1-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-dark .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-dark .bar-button-primary1-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-dark .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-dark .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-dark .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-dark .bar-button-secondary-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-dark .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-dark .bar-button-secondary-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-dark .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-dark .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-dark .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-dark .bar-button-light-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-light,
.toolbar-ios-dark .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-dark .bar-button-light-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-dark .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-dark .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-dark .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-dark .bar-button-dark-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-dark,
.toolbar-ios-dark .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-dark .bar-button-dark-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-dark .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-dark .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-dark .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-dark .bar-button-indicator-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-dark .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-dark .bar-button-indicator-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-dark .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-dark .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-dark .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-dark .bar-button-success-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-success,
.toolbar-ios-dark .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-dark .bar-button-success-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-dark .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-dark .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-dark .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-dark .bar-button-lightprimary-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-dark .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-dark .bar-button-lightprimary-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-dark .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-dark .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-dark .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-dark .bar-button-danger-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-danger,
.toolbar-ios-dark .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-dark .bar-button-danger-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-dark .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-dark .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-dark .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-dark .bar-button-lightbg-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-dark .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-dark .bar-button-lightbg-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-dark .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-dark .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-dark .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-dark-ios,
.bar-button-default.bar-button-ios-dark,
.bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.bar-button-dark-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.bar-button-dark-ios.activated,
.bar-button-default.bar-button-ios-dark.activated,
.bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-indicator .toolbar-background-ios {
  background: #666666;
}

.toolbar-ios-indicator .toolbar-title-ios,
.toolbar-ios-indicator .bar-button-clear-ios,
.toolbar-ios-indicator .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-indicator .bar-button-primary-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-primary,
.toolbar-ios-indicator .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-indicator .bar-button-primary-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-indicator .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-indicator .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-indicator .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-indicator .bar-button-primary1-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-indicator .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-indicator .bar-button-primary1-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-indicator .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-indicator .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-indicator .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-indicator .bar-button-secondary-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-indicator .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-indicator .bar-button-secondary-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-indicator .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-indicator .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-indicator .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-indicator .bar-button-light-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-light,
.toolbar-ios-indicator .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-indicator .bar-button-light-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-indicator .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-indicator .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-indicator .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-indicator .bar-button-dark-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-dark,
.toolbar-ios-indicator .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-indicator .bar-button-dark-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-indicator .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-indicator .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-indicator .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-indicator .bar-button-indicator-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-indicator .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-indicator .bar-button-indicator-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-indicator .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-indicator .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-indicator .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-indicator .bar-button-success-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-success,
.toolbar-ios-indicator .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-indicator .bar-button-success-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-indicator .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-indicator .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-indicator .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-indicator .bar-button-lightprimary-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-indicator .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-indicator .bar-button-lightprimary-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-indicator .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-indicator .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-indicator .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-indicator .bar-button-danger-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-danger,
.toolbar-ios-indicator .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-indicator .bar-button-danger-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-indicator .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-indicator .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-indicator .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-indicator .bar-button-lightbg-ios,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-indicator .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-indicator .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-indicator .bar-button-lightbg-ios.activated,
.toolbar-ios-indicator .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-indicator .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-indicator .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-indicator .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-indicator .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-indicator .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-indicator-ios,
.bar-button-default.bar-button-ios-indicator,
.bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.bar-button-indicator-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.bar-button-indicator-ios.activated,
.bar-button-default.bar-button-ios-indicator.activated,
.bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-success .toolbar-background-ios {
  background: green;
}

.toolbar-ios-success .toolbar-title-ios,
.toolbar-ios-success .bar-button-clear-ios,
.toolbar-ios-success .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-success .bar-button-primary-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-primary,
.toolbar-ios-success .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-success .bar-button-primary-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-success .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-success .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-success .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-success .bar-button-primary1-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-success .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-success .bar-button-primary1-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-success .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-success .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-success .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-success .bar-button-secondary-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-success .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-success .bar-button-secondary-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-success .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-success .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-success .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-success .bar-button-light-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-light,
.toolbar-ios-success .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-success .bar-button-light-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-success .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-success .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-success .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-success .bar-button-dark-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-dark,
.toolbar-ios-success .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-success .bar-button-dark-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-success .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-success .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-success .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-success .bar-button-indicator-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-success .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-success .bar-button-indicator-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-success .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-success .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-success .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-success .bar-button-success-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-success,
.toolbar-ios-success .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-success .bar-button-success-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-success .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-success .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-success .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-success .bar-button-lightprimary-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-success .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-success .bar-button-lightprimary-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-success .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-success .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-success .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-success .bar-button-danger-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-danger,
.toolbar-ios-success .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-success .bar-button-danger-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-success .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-success .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-success .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-success .bar-button-lightbg-ios,
.toolbar-ios-success .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-success .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-success .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-success .bar-button-lightbg-ios.activated,
.toolbar-ios-success .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-success .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-success .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-success .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-success .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-success .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-success-ios,
.bar-button-default.bar-button-ios-success,
.bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.bar-button-success-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.bar-button-success-ios.activated,
.bar-button-default.bar-button-ios-success.activated,
.bar-button-clear-ios-success.activated {
  opacity: .4;
}

.bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-lightprimary .toolbar-background-ios {
  background: deepskyblue;
}

.toolbar-ios-lightprimary .toolbar-title-ios,
.toolbar-ios-lightprimary .bar-button-clear-ios,
.toolbar-ios-lightprimary .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-lightprimary .bar-button-primary-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-primary,
.toolbar-ios-lightprimary .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-lightprimary .bar-button-primary-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-lightprimary .bar-button-primary1-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-lightprimary .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-lightprimary .bar-button-primary1-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-lightprimary .bar-button-secondary-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-lightprimary .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-lightprimary .bar-button-secondary-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-lightprimary .bar-button-light-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-light,
.toolbar-ios-lightprimary .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-lightprimary .bar-button-light-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-lightprimary .bar-button-dark-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-dark,
.toolbar-ios-lightprimary .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-lightprimary .bar-button-dark-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-lightprimary .bar-button-indicator-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-lightprimary .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-lightprimary .bar-button-indicator-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-lightprimary .bar-button-success-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-success,
.toolbar-ios-lightprimary .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-lightprimary .bar-button-success-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-lightprimary .bar-button-lightprimary-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-lightprimary .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-lightprimary .bar-button-lightprimary-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-lightprimary .bar-button-danger-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-danger,
.toolbar-ios-lightprimary .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-lightprimary .bar-button-danger-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-lightprimary .bar-button-lightbg-ios,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-lightprimary .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-lightprimary .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-lightprimary .bar-button-lightbg-ios.activated,
.toolbar-ios-lightprimary .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-lightprimary .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-lightprimary .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-lightprimary .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-lightprimary-ios,
.bar-button-default.bar-button-ios-lightprimary,
.bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.bar-button-lightprimary-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.bar-button-lightprimary-ios.activated,
.bar-button-default.bar-button-ios-lightprimary.activated,
.bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-danger .toolbar-background-ios {
  background: tomato;
}

.toolbar-ios-danger .toolbar-title-ios,
.toolbar-ios-danger .bar-button-clear-ios,
.toolbar-ios-danger .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-danger .bar-button-primary-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary,
.toolbar-ios-danger .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-danger .bar-button-primary-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-danger .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-danger .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-danger .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-danger .bar-button-primary1-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-danger .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-danger .bar-button-primary1-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-danger .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-danger .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-danger .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-danger .bar-button-secondary-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-danger .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-danger .bar-button-secondary-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-danger .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-danger .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-danger .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-danger .bar-button-light-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-light,
.toolbar-ios-danger .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-danger .bar-button-light-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-danger .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-danger .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-danger .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-danger .bar-button-dark-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-dark,
.toolbar-ios-danger .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-danger .bar-button-dark-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-danger .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-danger .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-danger .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-danger .bar-button-indicator-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-danger .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-danger .bar-button-indicator-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-danger .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-danger .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-danger .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-danger .bar-button-success-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-success,
.toolbar-ios-danger .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-danger .bar-button-success-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-danger .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-danger .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-danger .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-danger .bar-button-lightprimary-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-danger .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-danger .bar-button-lightprimary-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-danger .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-danger .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-danger .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-danger .bar-button-danger-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-danger,
.toolbar-ios-danger .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-danger .bar-button-danger-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-danger .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-danger .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-danger .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-danger .bar-button-lightbg-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-danger .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-danger .bar-button-lightbg-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-danger .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-danger .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-danger .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-danger-ios,
.bar-button-default.bar-button-ios-danger,
.bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.bar-button-danger-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.bar-button-danger-ios.activated,
.bar-button-default.bar-button-ios-danger.activated,
.bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-lightbg .toolbar-background-ios {
  background: whitesmoke;
}

.toolbar-ios-lightbg .toolbar-title-ios,
.toolbar-ios-lightbg .bar-button-clear-ios,
.toolbar-ios-lightbg .bar-button-default-ios {
  color: #000;
}

.toolbar-ios-lightbg .bar-button-primary-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-primary,
.toolbar-ios-lightbg .bar-button-clear-ios-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-ios-lightbg .bar-button-primary-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-primary {
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-lightbg .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-ios-lightbg .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-ios-lightbg .bar-button-primary1-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-primary1,
.toolbar-ios-lightbg .bar-button-clear-ios-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-primary1-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-primary1:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-ios-lightbg .bar-button-primary1-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-primary1.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-primary1.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-primary1 {
  border-color: #4472CA;
  color: #4472CA;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-primary1.activated {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-lightbg .bar-button-solid-ios-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-ios-lightbg .bar-button-solid-ios-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-ios-lightbg .bar-button-secondary-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-lightbg .bar-button-clear-ios-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-ios-lightbg .bar-button-secondary-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-secondary {
  border-color: #7f8490;
  color: #7f8490;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-lightbg .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-ios-lightbg .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-ios-lightbg .bar-button-light-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-light,
.toolbar-ios-lightbg .bar-button-clear-ios-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-ios-lightbg .bar-button-light-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-light {
  border-color: ghostwhite;
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-lightbg .bar-button-solid-ios-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-ios-lightbg .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-ios-lightbg .bar-button-dark-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-dark,
.toolbar-ios-lightbg .bar-button-clear-ios-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-ios-lightbg .bar-button-dark-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-dark {
  border-color: #444444;
  color: #444444;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-lightbg .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-ios-lightbg .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-ios-lightbg .bar-button-indicator-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-indicator,
.toolbar-ios-lightbg .bar-button-clear-ios-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-indicator-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-indicator:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-ios-lightbg .bar-button-indicator-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-indicator.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-indicator.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-indicator {
  border-color: #666666;
  color: #666666;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-indicator.activated {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-lightbg .bar-button-solid-ios-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-ios-lightbg .bar-button-solid-ios-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-ios-lightbg .bar-button-success-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-success,
.toolbar-ios-lightbg .bar-button-clear-ios-success {
  color: green;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-success-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-success:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-ios-lightbg .bar-button-success-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-success.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-success.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-success {
  border-color: green;
  color: green;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-success.activated {
  color: #fff;
  background-color: green;
}

.toolbar-ios-lightbg .bar-button-solid-ios-success {
  color: #fff;
  background-color: green;
}

.toolbar-ios-lightbg .bar-button-solid-ios-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-ios-lightbg .bar-button-lightprimary-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-lightprimary,
.toolbar-ios-lightbg .bar-button-clear-ios-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-lightprimary-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-lightprimary:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-ios-lightbg .bar-button-lightprimary-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-lightprimary.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-lightprimary.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-lightprimary {
  border-color: deepskyblue;
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-lightprimary.activated {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-lightbg .bar-button-solid-ios-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-ios-lightbg .bar-button-solid-ios-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-ios-lightbg .bar-button-danger-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-danger,
.toolbar-ios-lightbg .bar-button-clear-ios-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-ios-lightbg .bar-button-danger-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-danger {
  border-color: tomato;
  color: tomato;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-lightbg .bar-button-solid-ios-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-ios-lightbg .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-ios-lightbg .bar-button-lightbg-ios,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-lightbg,
.toolbar-ios-lightbg .bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-lightbg-ios:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.toolbar-ios-lightbg .bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-ios-lightbg .bar-button-lightbg-ios.activated,
.toolbar-ios-lightbg .bar-button-default.bar-button-ios-lightbg.activated,
.toolbar-ios-lightbg .bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.toolbar-ios-lightbg .bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-ios-lightbg .bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-lightbg .bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-ios-lightbg .bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-lightbg-ios,
.bar-button-default.bar-button-ios-lightbg,
.bar-button-clear-ios-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.bar-button-lightbg-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-lightbg:hover:not(.disable-hover),
.bar-button-clear-ios-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.bar-button-lightbg-ios.activated,
.bar-button-default.bar-button-ios-lightbg.activated,
.bar-button-clear-ios-lightbg.activated {
  opacity: .4;
}

.bar-button-outline-ios-lightbg {
  border-color: whitesmoke;
  color: whitesmoke;
  background-color: transparent;
}

.bar-button-outline-ios-lightbg.activated {
  color: #000;
  background-color: whitesmoke;
}

.bar-button-solid-ios-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.bar-button-solid-ios-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-strong-ios {
  font-weight: 600;
}

.toolbar-md {
  padding: 4px;
  min-height: 56px;
}

.toolbar-background-md {
  border-color: #b2b2b2;
  background: #0167b1;
}

.header-md::after,
.tabs-md[tabsPlacement="top"] > .tabbar::after,
.footer-md::before,
.tabs-md[tabsPlacement="bottom"] > .tabbar::before {
  left: 0;
  bottom: -5px;
  background-position: left 0 top -2px;
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHBAMAAADzDtBxAAAAD1BMVEUAAAAAAAAAAAAAAAAAAABPDueNAAAABXRSTlMUCS0gBIh/TXEAAAAaSURBVAjXYxCEAgY4UIICBmMogMsgFLtAAQCNSwXZKOdPxgAAAABJRU5ErkJggg==);
  background-repeat: repeat-x;
  content: "";
}

.footer-md::before,
.tabs-md[tabsPlacement="bottom"] > .tabbar::before {
  top: -2px;
  bottom: auto;
  background-position: left 0 top 0;
  height: 2px;
}

.header-md[no-border]::after,
.footer-md[no-border]::before,
.tabs-md[tabsPlacement="top"][no-border] > .tabbar::after,
.tabs-md[tabsPlacement="bottom"][no-border] > .tabbar::before {
  display: none;
}

.toolbar-content-md {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  min-width: 0;
  max-width: 100%;
}

.toolbar-title-md {
  padding: 0 12px;
  font-size: 17px !important;
  font-weight: 500;
  color: #0167b1;
}

.bar-buttons-md {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-buttons-md[left] {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.bar-button-md:first-child {
  margin-left: 0;
}

.bar-buttons-md[end] {
  text-align: right;
  text-align: end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.bar-buttons-md[right] {
  text-align: right;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.bar-button-md {
  margin: 0 0.2rem;
  padding: 0 5px;
  border-radius: 2px;
  height: 32px;
  border: 0;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bar-button-solid-md,
.bar-button-outline-md {
  overflow: hidden;
}

.bar-button-outline-md {
  border-width: 1px;
  border-style: solid;
  border-color: #0167b1;
  color: #0167b1;
  background-color: transparent;
}

.bar-button-outline-md:hover:not(.disable-hover) {
  opacity: .4;
}

.bar-button-outline-md.activated {
  background-color: transparent;
}

.bar-button-outline-md .button-effect {
  background-color: #0167b1;
}

.bar-button-solid-md {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-md:hover:not(.disable-hover) {
  color: #fff;
}

.bar-button-solid-md.activated {
  color: #fff;
  background-color: #1573b7;
}

.bar-button-md.bar-button-icon-start ion-icon {
  padding-right: 0.3em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-md.bar-button-icon-end ion-icon {
  padding-left: 0.4em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-md[icon-only] {
  padding: 0;
}

.bar-button-md[icon-only] ion-icon {
  padding: 0 0.1em;
  min-width: 28px;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.back-button-md {
  margin: 0 6px;
  min-width: 44px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.back-button-icon-md {
  margin: 0;
  padding: 0 6px;
  text-align: left;
  text-align: start;
  font-size: 2.4rem;
  font-weight: normal;
}

.bar-button-menutoggle-md {
  margin: 0 6px;
  padding: 0 2px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 44px;
}

.bar-button-menutoggle-md ion-icon {
  padding: 0 6px;
  font-size: 2.4rem;
}

.bar-button-menutoggle-md[end],
.bar-button-menutoggle-md[right] {
  margin: 0 2px;
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
  min-width: 28px;
}

.bar-button-default-md,
.bar-button-clear-md-default,
.bar-button-md-default {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-default-md:hover:not(.disable-hover),
.bar-button-clear-md-default:hover:not(.disable-hover),
.bar-button-md-default:hover:not(.disable-hover) {
  color: #0167b1;
}

.bar-button-clear-md,
.bar-button-clear-md-clear,
.bar-button-md-clear {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-clear-md:hover:not(.disable-hover),
.bar-button-clear-md-clear:hover:not(.disable-hover),
.bar-button-md-clear:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-primary .toolbar-background-md {
  background: #0167b1;
}

.toolbar-md-primary .bar-button-clear-md,
.toolbar-md-primary .bar-button-default-md,
.toolbar-md-primary .bar-button-outline-md,
.toolbar-md-primary .toolbar-title-md {
  color: #fff;
}

.toolbar-md-primary .bar-button-clear-md .button-effect,
.toolbar-md-primary .bar-button-default-md .button-effect,
.toolbar-md-primary .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-primary .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-primary .bar-button-primary-md,
.toolbar-md-primary .bar-button-clear-md-primary,
.toolbar-md-primary .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-primary .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-primary .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-primary .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-primary .bar-button-primary1-md,
.toolbar-md-primary .bar-button-clear-md-primary1,
.toolbar-md-primary .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-primary .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-primary .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-primary .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-primary .bar-button-secondary-md,
.toolbar-md-primary .bar-button-clear-md-secondary,
.toolbar-md-primary .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-primary .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-primary .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-primary .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-primary .bar-button-light-md,
.toolbar-md-primary .bar-button-clear-md-light,
.toolbar-md-primary .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-primary .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-primary .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-primary .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-primary .bar-button-dark-md,
.toolbar-md-primary .bar-button-clear-md-dark,
.toolbar-md-primary .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-primary .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-primary .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-primary .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-primary .bar-button-indicator-md,
.toolbar-md-primary .bar-button-clear-md-indicator,
.toolbar-md-primary .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-primary .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-primary .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-primary .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-primary .bar-button-success-md,
.toolbar-md-primary .bar-button-clear-md-success,
.toolbar-md-primary .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-primary .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-primary .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-primary .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-primary .bar-button-lightprimary-md,
.toolbar-md-primary .bar-button-clear-md-lightprimary,
.toolbar-md-primary .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-primary .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-primary .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-primary .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-primary .bar-button-danger-md,
.toolbar-md-primary .bar-button-clear-md-danger,
.toolbar-md-primary .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-primary .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-primary .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-primary .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-primary .bar-button-lightbg-md,
.toolbar-md-primary .bar-button-clear-md-lightbg,
.toolbar-md-primary .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-primary .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-primary .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-primary .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-primary-md,
.bar-button-clear-md-primary,
.bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-primary-md:hover:not(.disable-hover),
.bar-button-clear-md-primary:hover:not(.disable-hover),
.bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-primary1 .toolbar-background-md {
  background: #4472CA;
}

.toolbar-md-primary1 .bar-button-clear-md,
.toolbar-md-primary1 .bar-button-default-md,
.toolbar-md-primary1 .bar-button-outline-md,
.toolbar-md-primary1 .toolbar-title-md {
  color: #fff;
}

.toolbar-md-primary1 .bar-button-clear-md .button-effect,
.toolbar-md-primary1 .bar-button-default-md .button-effect,
.toolbar-md-primary1 .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-primary1 .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-primary1 .bar-button-primary-md,
.toolbar-md-primary1 .bar-button-clear-md-primary,
.toolbar-md-primary1 .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-primary1 .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-primary1 .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-primary1 .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-primary1 .bar-button-primary1-md,
.toolbar-md-primary1 .bar-button-clear-md-primary1,
.toolbar-md-primary1 .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-primary1 .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-primary1 .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-primary1 .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-primary1 .bar-button-secondary-md,
.toolbar-md-primary1 .bar-button-clear-md-secondary,
.toolbar-md-primary1 .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-primary1 .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-primary1 .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-primary1 .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-primary1 .bar-button-light-md,
.toolbar-md-primary1 .bar-button-clear-md-light,
.toolbar-md-primary1 .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-primary1 .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-primary1 .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-primary1 .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-primary1 .bar-button-dark-md,
.toolbar-md-primary1 .bar-button-clear-md-dark,
.toolbar-md-primary1 .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-primary1 .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-primary1 .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-primary1 .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-primary1 .bar-button-indicator-md,
.toolbar-md-primary1 .bar-button-clear-md-indicator,
.toolbar-md-primary1 .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-primary1 .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-primary1 .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-primary1 .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-primary1 .bar-button-success-md,
.toolbar-md-primary1 .bar-button-clear-md-success,
.toolbar-md-primary1 .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-primary1 .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-primary1 .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-primary1 .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-primary1 .bar-button-lightprimary-md,
.toolbar-md-primary1 .bar-button-clear-md-lightprimary,
.toolbar-md-primary1 .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-primary1 .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-primary1 .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-primary1 .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-primary1 .bar-button-danger-md,
.toolbar-md-primary1 .bar-button-clear-md-danger,
.toolbar-md-primary1 .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-primary1 .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-primary1 .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-primary1 .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-primary1 .bar-button-lightbg-md,
.toolbar-md-primary1 .bar-button-clear-md-lightbg,
.toolbar-md-primary1 .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-primary1 .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-primary1 .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-primary1 .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-primary1 .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-primary1 .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-primary1-md,
.bar-button-clear-md-primary1,
.bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.bar-button-primary1-md:hover:not(.disable-hover),
.bar-button-clear-md-primary1:hover:not(.disable-hover),
.bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-secondary .toolbar-background-md {
  background: #7f8490;
}

.toolbar-md-secondary .bar-button-clear-md,
.toolbar-md-secondary .bar-button-default-md,
.toolbar-md-secondary .bar-button-outline-md,
.toolbar-md-secondary .toolbar-title-md {
  color: #fff;
}

.toolbar-md-secondary .bar-button-clear-md .button-effect,
.toolbar-md-secondary .bar-button-default-md .button-effect,
.toolbar-md-secondary .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-secondary .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-secondary .bar-button-primary-md,
.toolbar-md-secondary .bar-button-clear-md-primary,
.toolbar-md-secondary .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-secondary .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-secondary .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-secondary .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-secondary .bar-button-primary1-md,
.toolbar-md-secondary .bar-button-clear-md-primary1,
.toolbar-md-secondary .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-secondary .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-secondary .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-secondary .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-secondary .bar-button-secondary-md,
.toolbar-md-secondary .bar-button-clear-md-secondary,
.toolbar-md-secondary .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-secondary .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-secondary .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-secondary .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-secondary .bar-button-light-md,
.toolbar-md-secondary .bar-button-clear-md-light,
.toolbar-md-secondary .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-secondary .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-secondary .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-secondary .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-secondary .bar-button-dark-md,
.toolbar-md-secondary .bar-button-clear-md-dark,
.toolbar-md-secondary .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-secondary .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-secondary .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-secondary .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-secondary .bar-button-indicator-md,
.toolbar-md-secondary .bar-button-clear-md-indicator,
.toolbar-md-secondary .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-secondary .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-secondary .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-secondary .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-secondary .bar-button-success-md,
.toolbar-md-secondary .bar-button-clear-md-success,
.toolbar-md-secondary .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-secondary .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-secondary .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-secondary .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-secondary .bar-button-lightprimary-md,
.toolbar-md-secondary .bar-button-clear-md-lightprimary,
.toolbar-md-secondary .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-secondary .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-secondary .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-secondary .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-secondary .bar-button-danger-md,
.toolbar-md-secondary .bar-button-clear-md-danger,
.toolbar-md-secondary .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-secondary .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-secondary .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-secondary .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-secondary .bar-button-lightbg-md,
.toolbar-md-secondary .bar-button-clear-md-lightbg,
.toolbar-md-secondary .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-secondary .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-secondary .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-secondary .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-secondary-md,
.bar-button-clear-md-secondary,
.bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.bar-button-secondary-md:hover:not(.disable-hover),
.bar-button-clear-md-secondary:hover:not(.disable-hover),
.bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-light .toolbar-background-md {
  background: ghostwhite;
}

.toolbar-md-light .bar-button-clear-md,
.toolbar-md-light .bar-button-default-md,
.toolbar-md-light .bar-button-outline-md,
.toolbar-md-light .toolbar-title-md {
  color: #424242;
}

.toolbar-md-light .bar-button-clear-md .button-effect,
.toolbar-md-light .bar-button-default-md .button-effect,
.toolbar-md-light .bar-button-outline-md .button-effect {
  background-color: #424242;
}

.toolbar-md-light .bar-button-outline-md {
  border-color: #424242;
}

.toolbar-md-light .bar-button-primary-md,
.toolbar-md-light .bar-button-clear-md-primary,
.toolbar-md-light .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-light .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-light .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-light .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-light .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-light .bar-button-primary1-md,
.toolbar-md-light .bar-button-clear-md-primary1,
.toolbar-md-light .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-light .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-light .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-light .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-light .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-light .bar-button-secondary-md,
.toolbar-md-light .bar-button-clear-md-secondary,
.toolbar-md-light .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-light .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-light .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-light .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-light .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-light .bar-button-light-md,
.toolbar-md-light .bar-button-clear-md-light,
.toolbar-md-light .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-light .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-light .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-light .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-light .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-light .bar-button-dark-md,
.toolbar-md-light .bar-button-clear-md-dark,
.toolbar-md-light .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-light .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-light .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-light .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-light .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-light .bar-button-indicator-md,
.toolbar-md-light .bar-button-clear-md-indicator,
.toolbar-md-light .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-light .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-light .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-light .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-light .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-light .bar-button-success-md,
.toolbar-md-light .bar-button-clear-md-success,
.toolbar-md-light .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-light .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-light .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-light .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-light .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-light .bar-button-lightprimary-md,
.toolbar-md-light .bar-button-clear-md-lightprimary,
.toolbar-md-light .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-light .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-light .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-light .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-light .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-light .bar-button-danger-md,
.toolbar-md-light .bar-button-clear-md-danger,
.toolbar-md-light .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-light .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-light .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-light .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-light .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-light .bar-button-lightbg-md,
.toolbar-md-light .bar-button-clear-md-lightbg,
.toolbar-md-light .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-light .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-light .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-light .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-light .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-light-md,
.bar-button-clear-md-light,
.bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.bar-button-light-md:hover:not(.disable-hover),
.bar-button-clear-md-light:hover:not(.disable-hover),
.bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.bar-button-outline-md-light.activated {
  background-color: transparent;
}

.bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-dark .toolbar-background-md {
  background: #444444;
}

.toolbar-md-dark .bar-button-clear-md,
.toolbar-md-dark .bar-button-default-md,
.toolbar-md-dark .bar-button-outline-md,
.toolbar-md-dark .toolbar-title-md {
  color: #fff;
}

.toolbar-md-dark .bar-button-clear-md .button-effect,
.toolbar-md-dark .bar-button-default-md .button-effect,
.toolbar-md-dark .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-dark .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-dark .bar-button-primary-md,
.toolbar-md-dark .bar-button-clear-md-primary,
.toolbar-md-dark .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-dark .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-dark .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-dark .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-dark .bar-button-primary1-md,
.toolbar-md-dark .bar-button-clear-md-primary1,
.toolbar-md-dark .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-dark .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-dark .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-dark .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-dark .bar-button-secondary-md,
.toolbar-md-dark .bar-button-clear-md-secondary,
.toolbar-md-dark .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-dark .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-dark .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-dark .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-dark .bar-button-light-md,
.toolbar-md-dark .bar-button-clear-md-light,
.toolbar-md-dark .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-dark .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-dark .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-dark .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-dark .bar-button-dark-md,
.toolbar-md-dark .bar-button-clear-md-dark,
.toolbar-md-dark .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-dark .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-dark .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-dark .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-dark .bar-button-indicator-md,
.toolbar-md-dark .bar-button-clear-md-indicator,
.toolbar-md-dark .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-dark .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-dark .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-dark .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-dark .bar-button-success-md,
.toolbar-md-dark .bar-button-clear-md-success,
.toolbar-md-dark .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-dark .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-dark .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-dark .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-dark .bar-button-lightprimary-md,
.toolbar-md-dark .bar-button-clear-md-lightprimary,
.toolbar-md-dark .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-dark .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-dark .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-dark .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-dark .bar-button-danger-md,
.toolbar-md-dark .bar-button-clear-md-danger,
.toolbar-md-dark .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-dark .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-dark .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-dark .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-dark .bar-button-lightbg-md,
.toolbar-md-dark .bar-button-clear-md-lightbg,
.toolbar-md-dark .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-dark .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-dark .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-dark .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-dark-md,
.bar-button-clear-md-dark,
.bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.bar-button-dark-md:hover:not(.disable-hover),
.bar-button-clear-md-dark:hover:not(.disable-hover),
.bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-indicator .toolbar-background-md {
  background: #666666;
}

.toolbar-md-indicator .bar-button-clear-md,
.toolbar-md-indicator .bar-button-default-md,
.toolbar-md-indicator .bar-button-outline-md,
.toolbar-md-indicator .toolbar-title-md {
  color: #fff;
}

.toolbar-md-indicator .bar-button-clear-md .button-effect,
.toolbar-md-indicator .bar-button-default-md .button-effect,
.toolbar-md-indicator .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-indicator .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-indicator .bar-button-primary-md,
.toolbar-md-indicator .bar-button-clear-md-primary,
.toolbar-md-indicator .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-indicator .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-indicator .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-indicator .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-indicator .bar-button-primary1-md,
.toolbar-md-indicator .bar-button-clear-md-primary1,
.toolbar-md-indicator .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-indicator .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-indicator .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-indicator .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-indicator .bar-button-secondary-md,
.toolbar-md-indicator .bar-button-clear-md-secondary,
.toolbar-md-indicator .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-indicator .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-indicator .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-indicator .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-indicator .bar-button-light-md,
.toolbar-md-indicator .bar-button-clear-md-light,
.toolbar-md-indicator .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-indicator .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-indicator .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-indicator .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-indicator .bar-button-dark-md,
.toolbar-md-indicator .bar-button-clear-md-dark,
.toolbar-md-indicator .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-indicator .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-indicator .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-indicator .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-indicator .bar-button-indicator-md,
.toolbar-md-indicator .bar-button-clear-md-indicator,
.toolbar-md-indicator .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-indicator .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-indicator .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-indicator .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-indicator .bar-button-success-md,
.toolbar-md-indicator .bar-button-clear-md-success,
.toolbar-md-indicator .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-indicator .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-indicator .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-indicator .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-indicator .bar-button-lightprimary-md,
.toolbar-md-indicator .bar-button-clear-md-lightprimary,
.toolbar-md-indicator .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-indicator .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-indicator .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-indicator .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-indicator .bar-button-danger-md,
.toolbar-md-indicator .bar-button-clear-md-danger,
.toolbar-md-indicator .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-indicator .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-indicator .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-indicator .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-indicator .bar-button-lightbg-md,
.toolbar-md-indicator .bar-button-clear-md-lightbg,
.toolbar-md-indicator .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-indicator .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-indicator .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-indicator .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-indicator .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-indicator .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-indicator-md,
.bar-button-clear-md-indicator,
.bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.bar-button-indicator-md:hover:not(.disable-hover),
.bar-button-clear-md-indicator:hover:not(.disable-hover),
.bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-success .toolbar-background-md {
  background: green;
}

.toolbar-md-success .bar-button-clear-md,
.toolbar-md-success .bar-button-default-md,
.toolbar-md-success .bar-button-outline-md,
.toolbar-md-success .toolbar-title-md {
  color: #fff;
}

.toolbar-md-success .bar-button-clear-md .button-effect,
.toolbar-md-success .bar-button-default-md .button-effect,
.toolbar-md-success .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-success .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-success .bar-button-primary-md,
.toolbar-md-success .bar-button-clear-md-primary,
.toolbar-md-success .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-success .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-success .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-success .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-success .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-success .bar-button-primary1-md,
.toolbar-md-success .bar-button-clear-md-primary1,
.toolbar-md-success .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-success .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-success .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-success .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-success .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-success .bar-button-secondary-md,
.toolbar-md-success .bar-button-clear-md-secondary,
.toolbar-md-success .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-success .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-success .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-success .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-success .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-success .bar-button-light-md,
.toolbar-md-success .bar-button-clear-md-light,
.toolbar-md-success .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-success .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-success .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-success .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-success .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-success .bar-button-dark-md,
.toolbar-md-success .bar-button-clear-md-dark,
.toolbar-md-success .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-success .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-success .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-success .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-success .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-success .bar-button-indicator-md,
.toolbar-md-success .bar-button-clear-md-indicator,
.toolbar-md-success .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-success .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-success .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-success .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-success .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-success .bar-button-success-md,
.toolbar-md-success .bar-button-clear-md-success,
.toolbar-md-success .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-success .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-success .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-success .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-success .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-success .bar-button-lightprimary-md,
.toolbar-md-success .bar-button-clear-md-lightprimary,
.toolbar-md-success .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-success .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-success .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-success .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-success .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-success .bar-button-danger-md,
.toolbar-md-success .bar-button-clear-md-danger,
.toolbar-md-success .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-success .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-success .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-success .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-success .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-success .bar-button-lightbg-md,
.toolbar-md-success .bar-button-clear-md-lightbg,
.toolbar-md-success .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-success .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-success .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-success .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-success .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-success .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-success .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-success .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-success-md,
.bar-button-clear-md-success,
.bar-button-md-success {
  color: green;
  background-color: transparent;
}

.bar-button-success-md:hover:not(.disable-hover),
.bar-button-clear-md-success:hover:not(.disable-hover),
.bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.bar-button-outline-md-success.activated {
  background-color: transparent;
}

.bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-lightprimary .toolbar-background-md {
  background: deepskyblue;
}

.toolbar-md-lightprimary .bar-button-clear-md,
.toolbar-md-lightprimary .bar-button-default-md,
.toolbar-md-lightprimary .bar-button-outline-md,
.toolbar-md-lightprimary .toolbar-title-md {
  color: #fff;
}

.toolbar-md-lightprimary .bar-button-clear-md .button-effect,
.toolbar-md-lightprimary .bar-button-default-md .button-effect,
.toolbar-md-lightprimary .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-lightprimary .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-lightprimary .bar-button-primary-md,
.toolbar-md-lightprimary .bar-button-clear-md-primary,
.toolbar-md-lightprimary .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-lightprimary .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-lightprimary .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-lightprimary .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-lightprimary .bar-button-primary1-md,
.toolbar-md-lightprimary .bar-button-clear-md-primary1,
.toolbar-md-lightprimary .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-lightprimary .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-lightprimary .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-lightprimary .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-lightprimary .bar-button-secondary-md,
.toolbar-md-lightprimary .bar-button-clear-md-secondary,
.toolbar-md-lightprimary .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-lightprimary .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-lightprimary .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-lightprimary .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-lightprimary .bar-button-light-md,
.toolbar-md-lightprimary .bar-button-clear-md-light,
.toolbar-md-lightprimary .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-lightprimary .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-lightprimary .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-lightprimary .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-lightprimary .bar-button-dark-md,
.toolbar-md-lightprimary .bar-button-clear-md-dark,
.toolbar-md-lightprimary .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-lightprimary .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-lightprimary .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-lightprimary .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-lightprimary .bar-button-indicator-md,
.toolbar-md-lightprimary .bar-button-clear-md-indicator,
.toolbar-md-lightprimary .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-lightprimary .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-lightprimary .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-lightprimary .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-lightprimary .bar-button-success-md,
.toolbar-md-lightprimary .bar-button-clear-md-success,
.toolbar-md-lightprimary .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-lightprimary .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-lightprimary .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-lightprimary .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-lightprimary .bar-button-lightprimary-md,
.toolbar-md-lightprimary .bar-button-clear-md-lightprimary,
.toolbar-md-lightprimary .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-lightprimary .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-lightprimary .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-lightprimary .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-lightprimary .bar-button-danger-md,
.toolbar-md-lightprimary .bar-button-clear-md-danger,
.toolbar-md-lightprimary .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-lightprimary .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-lightprimary .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-lightprimary .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-lightprimary .bar-button-lightbg-md,
.toolbar-md-lightprimary .bar-button-clear-md-lightbg,
.toolbar-md-lightprimary .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-lightprimary .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-lightprimary .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-lightprimary .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-lightprimary .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-lightprimary .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-lightprimary-md,
.bar-button-clear-md-lightprimary,
.bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.bar-button-lightprimary-md:hover:not(.disable-hover),
.bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-danger .toolbar-background-md {
  background: tomato;
}

.toolbar-md-danger .bar-button-clear-md,
.toolbar-md-danger .bar-button-default-md,
.toolbar-md-danger .bar-button-outline-md,
.toolbar-md-danger .toolbar-title-md {
  color: #fff;
}

.toolbar-md-danger .bar-button-clear-md .button-effect,
.toolbar-md-danger .bar-button-default-md .button-effect,
.toolbar-md-danger .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-danger .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-danger .bar-button-primary-md,
.toolbar-md-danger .bar-button-clear-md-primary,
.toolbar-md-danger .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-danger .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-danger .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-danger .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-danger .bar-button-primary1-md,
.toolbar-md-danger .bar-button-clear-md-primary1,
.toolbar-md-danger .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-danger .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-danger .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-danger .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-danger .bar-button-secondary-md,
.toolbar-md-danger .bar-button-clear-md-secondary,
.toolbar-md-danger .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-danger .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-danger .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-danger .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-danger .bar-button-light-md,
.toolbar-md-danger .bar-button-clear-md-light,
.toolbar-md-danger .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-danger .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-danger .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-danger .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-danger .bar-button-dark-md,
.toolbar-md-danger .bar-button-clear-md-dark,
.toolbar-md-danger .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-danger .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-danger .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-danger .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-danger .bar-button-indicator-md,
.toolbar-md-danger .bar-button-clear-md-indicator,
.toolbar-md-danger .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-danger .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-danger .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-danger .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-danger .bar-button-success-md,
.toolbar-md-danger .bar-button-clear-md-success,
.toolbar-md-danger .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-danger .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-danger .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-danger .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-danger .bar-button-lightprimary-md,
.toolbar-md-danger .bar-button-clear-md-lightprimary,
.toolbar-md-danger .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-danger .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-danger .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-danger .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-danger .bar-button-danger-md,
.toolbar-md-danger .bar-button-clear-md-danger,
.toolbar-md-danger .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-danger .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-danger .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-danger .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-danger .bar-button-lightbg-md,
.toolbar-md-danger .bar-button-clear-md-lightbg,
.toolbar-md-danger .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-danger .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-danger .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-danger .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-danger-md,
.bar-button-clear-md-danger,
.bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.bar-button-danger-md:hover:not(.disable-hover),
.bar-button-clear-md-danger:hover:not(.disable-hover),
.bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-lightbg .toolbar-background-md {
  background: whitesmoke;
}

.toolbar-md-lightbg .bar-button-clear-md,
.toolbar-md-lightbg .bar-button-default-md,
.toolbar-md-lightbg .bar-button-outline-md,
.toolbar-md-lightbg .toolbar-title-md {
  color: #424242;
}

.toolbar-md-lightbg .bar-button-clear-md .button-effect,
.toolbar-md-lightbg .bar-button-default-md .button-effect,
.toolbar-md-lightbg .bar-button-outline-md .button-effect {
  background-color: #424242;
}

.toolbar-md-lightbg .bar-button-outline-md {
  border-color: #424242;
}

.toolbar-md-lightbg .bar-button-primary-md,
.toolbar-md-lightbg .bar-button-clear-md-primary,
.toolbar-md-lightbg .bar-button-md-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-md-lightbg .bar-button-outline-md-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-primary .button-effect {
  background-color: #1573b7;
}

.toolbar-md-lightbg .bar-button-solid-md-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-md-lightbg .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-md-lightbg .bar-button-primary1-md,
.toolbar-md-lightbg .bar-button-clear-md-primary1,
.toolbar-md-lightbg .bar-button-md-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-primary1-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-primary1:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-md-lightbg .bar-button-outline-md-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-primary1.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-primary1 .button-effect {
  background-color: #3f69ba;
}

.toolbar-md-lightbg .bar-button-solid-md-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-md-lightbg .bar-button-solid-md-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-md-lightbg .bar-button-secondary-md,
.toolbar-md-lightbg .bar-button-clear-md-secondary,
.toolbar-md-lightbg .bar-button-md-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-md-lightbg .bar-button-outline-md-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-secondary .button-effect {
  background-color: #757984;
}

.toolbar-md-lightbg .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-md-lightbg .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-md-lightbg .bar-button-light-md,
.toolbar-md-lightbg .bar-button-clear-md-light,
.toolbar-md-lightbg .bar-button-md-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-md-lightbg .bar-button-outline-md-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-light .button-effect {
  background-color: #e4e4eb;
}

.toolbar-md-lightbg .bar-button-solid-md-light {
  color: #424242;
  background-color: ghostwhite;
}

.toolbar-md-lightbg .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e4e4eb;
}

.toolbar-md-lightbg .bar-button-dark-md,
.toolbar-md-lightbg .bar-button-clear-md-dark,
.toolbar-md-lightbg .bar-button-md-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-md-lightbg .bar-button-outline-md-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-dark .button-effect {
  background-color: #535353;
}

.toolbar-md-lightbg .bar-button-solid-md-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-md-lightbg .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-md-lightbg .bar-button-indicator-md,
.toolbar-md-lightbg .bar-button-clear-md-indicator,
.toolbar-md-lightbg .bar-button-md-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-indicator-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-indicator:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-md-lightbg .bar-button-outline-md-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-indicator.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-indicator .button-effect {
  background-color: #727272;
}

.toolbar-md-lightbg .bar-button-solid-md-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-md-lightbg .bar-button-solid-md-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-md-lightbg .bar-button-success-md,
.toolbar-md-lightbg .bar-button-clear-md-success,
.toolbar-md-lightbg .bar-button-md-success {
  color: green;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-success-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-success:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-md-lightbg .bar-button-outline-md-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-success.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-success .button-effect {
  background-color: #148a14;
}

.toolbar-md-lightbg .bar-button-solid-md-success {
  color: #fff;
  background-color: green;
}

.toolbar-md-lightbg .bar-button-solid-md-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-md-lightbg .bar-button-lightprimary-md,
.toolbar-md-lightbg .bar-button-clear-md-lightprimary,
.toolbar-md-lightbg .bar-button-md-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-lightprimary-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-lightprimary:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-md-lightbg .bar-button-outline-md-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-lightprimary.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-lightprimary .button-effect {
  background-color: #14c4ff;
}

.toolbar-md-lightbg .bar-button-solid-md-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-md-lightbg .bar-button-solid-md-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-md-lightbg .bar-button-danger-md,
.toolbar-md-lightbg .bar-button-clear-md-danger,
.toolbar-md-lightbg .bar-button-md-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-md-lightbg .bar-button-outline-md-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-danger .button-effect {
  background-color: #eb5b41;
}

.toolbar-md-lightbg .bar-button-solid-md-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-md-lightbg .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-md-lightbg .bar-button-lightbg-md,
.toolbar-md-lightbg .bar-button-clear-md-lightbg,
.toolbar-md-lightbg .bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-lightbg-md:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-clear-md-lightbg:hover:not(.disable-hover),
.toolbar-md-lightbg .bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-md-lightbg .bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.toolbar-md-lightbg .bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.toolbar-md-lightbg .bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.toolbar-md-lightbg .bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-lightbg-md,
.bar-button-clear-md-lightbg,
.bar-button-md-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.bar-button-lightbg-md:hover:not(.disable-hover),
.bar-button-clear-md-lightbg:hover:not(.disable-hover),
.bar-button-md-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.bar-button-outline-md-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.bar-button-outline-md-lightbg.activated {
  background-color: transparent;
}

.bar-button-outline-md-lightbg .button-effect {
  background-color: #e1e1e1;
}

.bar-button-solid-md-lightbg {
  color: #424242;
  background-color: whitesmoke;
}

.bar-button-solid-md-lightbg.activated {
  color: #424242;
  background-color: #e1e1e1;
}

.bar-button-strong-md {
  font-weight: bold;
}

.toolbar-wp {
  padding: 4px;
  min-height: 46px;
}

.toolbar-background-wp {
  border-color: #b2b2b2;
  background: #0167b1;
}

.toolbar-content-wp {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  min-width: 0;
  max-width: 100%;
}

.toolbar-title-wp {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  padding: 0 6px;
}

.bar-buttons-wp {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-buttons-wp[left] {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.bar-buttons-wp[left] .bar-button:first-child {
  margin-left: 0;
}

.bar-buttons-wp[end] {
  text-align: right;
  text-align: end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.bar-buttons-wp[right] {
  text-align: right;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.bar-button-wp {
  margin: 0 0.2rem;
  padding: 0 5px;
  border-radius: 2px;
  height: 32px;
  border: 0;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bar-button-solid-wp,
.bar-button-outline-wp {
  overflow: hidden;
}

.bar-button-outline-wp {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}

.bar-button-outline-wp:hover:not(.disable-hover) {
  opacity: .4;
}

.bar-button-outline-wp.activated {
  color: #000;
  background-color: #fff;
}

.bar-button-solid-wp {
  color: #000;
  background-color: #fff;
}

.bar-button-solid-wp:hover:not(.disable-hover) {
  color: #000;
}

.bar-button-solid-wp.activated {
  color: #000;
  background-color: #ebebeb;
}

.bar-button-wp.bar-button-icon-start ion-icon {
  padding-right: 0.3em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-wp.bar-button-icon-end ion-icon {
  padding-left: 0.4em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-wp[icon-only] {
  padding: 0;
}

.bar-button-wp[icon-only] ion-icon {
  padding: 0 0.1em;
  min-width: 28px;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.back-button-wp {
  margin: 0 6px;
  min-width: 44px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.back-button-icon-wp {
  text-align: left;
  text-align: start;
  margin: 0;
  padding: 0 6px;
  font-size: 2.4rem;
  font-weight: normal;
}

.bar-button-menutoggle-wp {
  margin: 0 6px;
  padding: 0 2px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 44px;
}

.bar-button-menutoggle-wp ion-icon {
  padding: 0 6px;
  font-size: 2.4rem;
}

.bar-button-menutoggle-wp[end],
.bar-button-menutoggle-wp[right] {
  margin: 0 2px;
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
  min-width: 28px;
}

.bar-button-default-wp,
.bar-button-clear-wp-default,
.bar-button-wp-default {
  color: #fff;
  background-color: transparent;
}

.bar-button-default-wp:hover:not(.disable-hover),
.bar-button-clear-wp-default:hover:not(.disable-hover),
.bar-button-wp-default:hover:not(.disable-hover) {
  color: #fff;
}

.bar-button-clear-wp,
.bar-button-clear-wp-clear,
.bar-button-wp-clear {
  color: #fff;
  background-color: transparent;
}

.bar-button-clear-wp:hover:not(.disable-hover),
.bar-button-clear-wp-clear:hover:not(.disable-hover),
.bar-button-wp-clear:hover:not(.disable-hover) {
  color: #fff;
}

.toolbar-wp-primary .toolbar-background-wp {
  background: #0167b1;
}

.toolbar-wp-primary .bar-button-clear-wp,
.toolbar-wp-primary .bar-button-default-wp,
.toolbar-wp-primary .bar-button-outline-wp,
.toolbar-wp-primary .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-primary .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-primary .bar-button-primary-wp,
.toolbar-wp-primary .bar-button-clear-wp-primary,
.toolbar-wp-primary .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-primary .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-primary .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-primary .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-primary .bar-button-primary1-wp,
.toolbar-wp-primary .bar-button-clear-wp-primary1,
.toolbar-wp-primary .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-primary .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-primary .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-primary .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-primary .bar-button-secondary-wp,
.toolbar-wp-primary .bar-button-clear-wp-secondary,
.toolbar-wp-primary .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-primary .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-primary .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-primary .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-primary .bar-button-light-wp,
.toolbar-wp-primary .bar-button-clear-wp-light,
.toolbar-wp-primary .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-primary .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-primary .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-primary .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-primary .bar-button-dark-wp,
.toolbar-wp-primary .bar-button-clear-wp-dark,
.toolbar-wp-primary .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-primary .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-primary .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-primary .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-primary .bar-button-indicator-wp,
.toolbar-wp-primary .bar-button-clear-wp-indicator,
.toolbar-wp-primary .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-primary .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-primary .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-primary .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-primary .bar-button-success-wp,
.toolbar-wp-primary .bar-button-clear-wp-success,
.toolbar-wp-primary .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-primary .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-primary .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-primary .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-primary .bar-button-lightprimary-wp,
.toolbar-wp-primary .bar-button-clear-wp-lightprimary,
.toolbar-wp-primary .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-primary .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-primary .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-primary .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-primary .bar-button-danger-wp,
.toolbar-wp-primary .bar-button-clear-wp-danger,
.toolbar-wp-primary .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-primary .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-primary .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-primary .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-primary .bar-button-lightbg-wp,
.toolbar-wp-primary .bar-button-clear-wp-lightbg,
.toolbar-wp-primary .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-primary .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-primary .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-primary .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-primary-wp,
.bar-button-clear-wp-primary,
.bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.bar-button-primary-wp:hover:not(.disable-hover),
.bar-button-clear-wp-primary:hover:not(.disable-hover),
.bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-primary1 .toolbar-background-wp {
  background: #4472CA;
}

.toolbar-wp-primary1 .bar-button-clear-wp,
.toolbar-wp-primary1 .bar-button-default-wp,
.toolbar-wp-primary1 .bar-button-outline-wp,
.toolbar-wp-primary1 .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-primary1 .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-primary1 .bar-button-primary-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-primary,
.toolbar-wp-primary1 .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-primary1 .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-primary1 .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-primary1 .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-primary1 .bar-button-primary1-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-primary1,
.toolbar-wp-primary1 .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-primary1 .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-primary1 .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-primary1 .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-primary1 .bar-button-secondary-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-secondary,
.toolbar-wp-primary1 .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-primary1 .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-primary1 .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-primary1 .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-primary1 .bar-button-light-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-light,
.toolbar-wp-primary1 .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-primary1 .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-primary1 .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-primary1 .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-primary1 .bar-button-dark-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-dark,
.toolbar-wp-primary1 .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-primary1 .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-primary1 .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-primary1 .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-primary1 .bar-button-indicator-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-indicator,
.toolbar-wp-primary1 .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-primary1 .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-primary1 .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-primary1 .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-primary1 .bar-button-success-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-success,
.toolbar-wp-primary1 .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-primary1 .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-primary1 .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-primary1 .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-primary1 .bar-button-lightprimary-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-lightprimary,
.toolbar-wp-primary1 .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-primary1 .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-primary1 .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-primary1 .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-primary1 .bar-button-danger-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-danger,
.toolbar-wp-primary1 .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-primary1 .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-primary1 .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-primary1 .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-primary1 .bar-button-lightbg-wp,
.toolbar-wp-primary1 .bar-button-clear-wp-lightbg,
.toolbar-wp-primary1 .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-primary1 .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-primary1 .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-primary1 .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-primary1 .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-primary1 .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-primary1-wp,
.bar-button-clear-wp-primary1,
.bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.bar-button-primary1-wp:hover:not(.disable-hover),
.bar-button-clear-wp-primary1:hover:not(.disable-hover),
.bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-secondary .toolbar-background-wp {
  background: #7f8490;
}

.toolbar-wp-secondary .bar-button-clear-wp,
.toolbar-wp-secondary .bar-button-default-wp,
.toolbar-wp-secondary .bar-button-outline-wp,
.toolbar-wp-secondary .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-secondary .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-secondary .bar-button-primary-wp,
.toolbar-wp-secondary .bar-button-clear-wp-primary,
.toolbar-wp-secondary .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-secondary .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-secondary .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-secondary .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-secondary .bar-button-primary1-wp,
.toolbar-wp-secondary .bar-button-clear-wp-primary1,
.toolbar-wp-secondary .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-secondary .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-secondary .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-secondary .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-secondary .bar-button-secondary-wp,
.toolbar-wp-secondary .bar-button-clear-wp-secondary,
.toolbar-wp-secondary .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-secondary .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-secondary .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-secondary .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-secondary .bar-button-light-wp,
.toolbar-wp-secondary .bar-button-clear-wp-light,
.toolbar-wp-secondary .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-secondary .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-secondary .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-secondary .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-secondary .bar-button-dark-wp,
.toolbar-wp-secondary .bar-button-clear-wp-dark,
.toolbar-wp-secondary .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-secondary .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-secondary .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-secondary .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-secondary .bar-button-indicator-wp,
.toolbar-wp-secondary .bar-button-clear-wp-indicator,
.toolbar-wp-secondary .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-secondary .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-secondary .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-secondary .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-secondary .bar-button-success-wp,
.toolbar-wp-secondary .bar-button-clear-wp-success,
.toolbar-wp-secondary .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-secondary .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-secondary .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-secondary .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-secondary .bar-button-lightprimary-wp,
.toolbar-wp-secondary .bar-button-clear-wp-lightprimary,
.toolbar-wp-secondary .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-secondary .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-secondary .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-secondary .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-secondary .bar-button-danger-wp,
.toolbar-wp-secondary .bar-button-clear-wp-danger,
.toolbar-wp-secondary .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-secondary .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-secondary .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-secondary .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-secondary .bar-button-lightbg-wp,
.toolbar-wp-secondary .bar-button-clear-wp-lightbg,
.toolbar-wp-secondary .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-secondary .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-secondary .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-secondary .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-secondary-wp,
.bar-button-clear-wp-secondary,
.bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.bar-button-secondary-wp:hover:not(.disable-hover),
.bar-button-clear-wp-secondary:hover:not(.disable-hover),
.bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-light .toolbar-background-wp {
  background: ghostwhite;
}

.toolbar-wp-light .bar-button-clear-wp,
.toolbar-wp-light .bar-button-default-wp,
.toolbar-wp-light .bar-button-outline-wp,
.toolbar-wp-light .toolbar-title-wp {
  color: #000;
}

.toolbar-wp-light .bar-button-outline-wp {
  border-color: #000;
}

.toolbar-wp-light .bar-button-primary-wp,
.toolbar-wp-light .bar-button-clear-wp-primary,
.toolbar-wp-light .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-light .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-light .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-light .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-light .bar-button-primary1-wp,
.toolbar-wp-light .bar-button-clear-wp-primary1,
.toolbar-wp-light .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-light .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-light .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-light .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-light .bar-button-secondary-wp,
.toolbar-wp-light .bar-button-clear-wp-secondary,
.toolbar-wp-light .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-light .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-light .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-light .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-light .bar-button-light-wp,
.toolbar-wp-light .bar-button-clear-wp-light,
.toolbar-wp-light .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-light .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-light .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-light .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-light .bar-button-dark-wp,
.toolbar-wp-light .bar-button-clear-wp-dark,
.toolbar-wp-light .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-light .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-light .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-light .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-light .bar-button-indicator-wp,
.toolbar-wp-light .bar-button-clear-wp-indicator,
.toolbar-wp-light .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-light .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-light .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-light .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-light .bar-button-success-wp,
.toolbar-wp-light .bar-button-clear-wp-success,
.toolbar-wp-light .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-light .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-light .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-light .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-light .bar-button-lightprimary-wp,
.toolbar-wp-light .bar-button-clear-wp-lightprimary,
.toolbar-wp-light .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-light .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-light .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-light .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-light .bar-button-danger-wp,
.toolbar-wp-light .bar-button-clear-wp-danger,
.toolbar-wp-light .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-light .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-light .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-light .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-light .bar-button-lightbg-wp,
.toolbar-wp-light .bar-button-clear-wp-lightbg,
.toolbar-wp-light .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-light .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-light .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-light .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-light-wp,
.bar-button-clear-wp-light,
.bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.bar-button-light-wp:hover:not(.disable-hover),
.bar-button-clear-wp-light:hover:not(.disable-hover),
.bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-dark .toolbar-background-wp {
  background: #444444;
}

.toolbar-wp-dark .bar-button-clear-wp,
.toolbar-wp-dark .bar-button-default-wp,
.toolbar-wp-dark .bar-button-outline-wp,
.toolbar-wp-dark .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-dark .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-dark .bar-button-primary-wp,
.toolbar-wp-dark .bar-button-clear-wp-primary,
.toolbar-wp-dark .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-dark .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-dark .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-dark .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-dark .bar-button-primary1-wp,
.toolbar-wp-dark .bar-button-clear-wp-primary1,
.toolbar-wp-dark .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-dark .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-dark .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-dark .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-dark .bar-button-secondary-wp,
.toolbar-wp-dark .bar-button-clear-wp-secondary,
.toolbar-wp-dark .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-dark .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-dark .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-dark .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-dark .bar-button-light-wp,
.toolbar-wp-dark .bar-button-clear-wp-light,
.toolbar-wp-dark .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-dark .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-dark .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-dark .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-dark .bar-button-dark-wp,
.toolbar-wp-dark .bar-button-clear-wp-dark,
.toolbar-wp-dark .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-dark .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-dark .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-dark .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-dark .bar-button-indicator-wp,
.toolbar-wp-dark .bar-button-clear-wp-indicator,
.toolbar-wp-dark .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-dark .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-dark .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-dark .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-dark .bar-button-success-wp,
.toolbar-wp-dark .bar-button-clear-wp-success,
.toolbar-wp-dark .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-dark .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-dark .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-dark .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-dark .bar-button-lightprimary-wp,
.toolbar-wp-dark .bar-button-clear-wp-lightprimary,
.toolbar-wp-dark .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-dark .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-dark .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-dark .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-dark .bar-button-danger-wp,
.toolbar-wp-dark .bar-button-clear-wp-danger,
.toolbar-wp-dark .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-dark .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-dark .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-dark .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-dark .bar-button-lightbg-wp,
.toolbar-wp-dark .bar-button-clear-wp-lightbg,
.toolbar-wp-dark .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-dark .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-dark .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-dark .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-dark-wp,
.bar-button-clear-wp-dark,
.bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.bar-button-dark-wp:hover:not(.disable-hover),
.bar-button-clear-wp-dark:hover:not(.disable-hover),
.bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-indicator .toolbar-background-wp {
  background: #666666;
}

.toolbar-wp-indicator .bar-button-clear-wp,
.toolbar-wp-indicator .bar-button-default-wp,
.toolbar-wp-indicator .bar-button-outline-wp,
.toolbar-wp-indicator .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-indicator .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-indicator .bar-button-primary-wp,
.toolbar-wp-indicator .bar-button-clear-wp-primary,
.toolbar-wp-indicator .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-indicator .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-indicator .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-indicator .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-indicator .bar-button-primary1-wp,
.toolbar-wp-indicator .bar-button-clear-wp-primary1,
.toolbar-wp-indicator .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-indicator .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-indicator .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-indicator .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-indicator .bar-button-secondary-wp,
.toolbar-wp-indicator .bar-button-clear-wp-secondary,
.toolbar-wp-indicator .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-indicator .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-indicator .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-indicator .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-indicator .bar-button-light-wp,
.toolbar-wp-indicator .bar-button-clear-wp-light,
.toolbar-wp-indicator .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-indicator .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-indicator .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-indicator .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-indicator .bar-button-dark-wp,
.toolbar-wp-indicator .bar-button-clear-wp-dark,
.toolbar-wp-indicator .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-indicator .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-indicator .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-indicator .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-indicator .bar-button-indicator-wp,
.toolbar-wp-indicator .bar-button-clear-wp-indicator,
.toolbar-wp-indicator .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-indicator .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-indicator .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-indicator .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-indicator .bar-button-success-wp,
.toolbar-wp-indicator .bar-button-clear-wp-success,
.toolbar-wp-indicator .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-indicator .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-indicator .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-indicator .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-indicator .bar-button-lightprimary-wp,
.toolbar-wp-indicator .bar-button-clear-wp-lightprimary,
.toolbar-wp-indicator .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-indicator .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-indicator .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-indicator .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-indicator .bar-button-danger-wp,
.toolbar-wp-indicator .bar-button-clear-wp-danger,
.toolbar-wp-indicator .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-indicator .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-indicator .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-indicator .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-indicator .bar-button-lightbg-wp,
.toolbar-wp-indicator .bar-button-clear-wp-lightbg,
.toolbar-wp-indicator .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-indicator .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-indicator .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-indicator .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-indicator .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-indicator .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-indicator-wp,
.bar-button-clear-wp-indicator,
.bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.bar-button-indicator-wp:hover:not(.disable-hover),
.bar-button-clear-wp-indicator:hover:not(.disable-hover),
.bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-success .toolbar-background-wp {
  background: green;
}

.toolbar-wp-success .bar-button-clear-wp,
.toolbar-wp-success .bar-button-default-wp,
.toolbar-wp-success .bar-button-outline-wp,
.toolbar-wp-success .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-success .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-success .bar-button-primary-wp,
.toolbar-wp-success .bar-button-clear-wp-primary,
.toolbar-wp-success .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-success .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-success .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-success .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-success .bar-button-primary1-wp,
.toolbar-wp-success .bar-button-clear-wp-primary1,
.toolbar-wp-success .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-success .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-success .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-success .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-success .bar-button-secondary-wp,
.toolbar-wp-success .bar-button-clear-wp-secondary,
.toolbar-wp-success .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-success .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-success .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-success .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-success .bar-button-light-wp,
.toolbar-wp-success .bar-button-clear-wp-light,
.toolbar-wp-success .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-success .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-success .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-success .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-success .bar-button-dark-wp,
.toolbar-wp-success .bar-button-clear-wp-dark,
.toolbar-wp-success .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-success .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-success .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-success .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-success .bar-button-indicator-wp,
.toolbar-wp-success .bar-button-clear-wp-indicator,
.toolbar-wp-success .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-success .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-success .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-success .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-success .bar-button-success-wp,
.toolbar-wp-success .bar-button-clear-wp-success,
.toolbar-wp-success .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-success .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-success .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-success .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-success .bar-button-lightprimary-wp,
.toolbar-wp-success .bar-button-clear-wp-lightprimary,
.toolbar-wp-success .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-success .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-success .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-success .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-success .bar-button-danger-wp,
.toolbar-wp-success .bar-button-clear-wp-danger,
.toolbar-wp-success .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-success .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-success .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-success .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-success .bar-button-lightbg-wp,
.toolbar-wp-success .bar-button-clear-wp-lightbg,
.toolbar-wp-success .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-success .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-success .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-success .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-success .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-success .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-success-wp,
.bar-button-clear-wp-success,
.bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.bar-button-success-wp:hover:not(.disable-hover),
.bar-button-clear-wp-success:hover:not(.disable-hover),
.bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-lightprimary .toolbar-background-wp {
  background: deepskyblue;
}

.toolbar-wp-lightprimary .bar-button-clear-wp,
.toolbar-wp-lightprimary .bar-button-default-wp,
.toolbar-wp-lightprimary .bar-button-outline-wp,
.toolbar-wp-lightprimary .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-lightprimary .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-lightprimary .bar-button-primary-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-primary,
.toolbar-wp-lightprimary .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-lightprimary .bar-button-primary1-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-primary1,
.toolbar-wp-lightprimary .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-lightprimary .bar-button-secondary-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-secondary,
.toolbar-wp-lightprimary .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-lightprimary .bar-button-light-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-light,
.toolbar-wp-lightprimary .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-lightprimary .bar-button-dark-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-dark,
.toolbar-wp-lightprimary .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-lightprimary .bar-button-indicator-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-indicator,
.toolbar-wp-lightprimary .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-lightprimary .bar-button-success-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-success,
.toolbar-wp-lightprimary .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-lightprimary .bar-button-lightprimary-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-lightprimary,
.toolbar-wp-lightprimary .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-lightprimary .bar-button-danger-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-danger,
.toolbar-wp-lightprimary .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-lightprimary .bar-button-lightbg-wp,
.toolbar-wp-lightprimary .bar-button-clear-wp-lightbg,
.toolbar-wp-lightprimary .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-lightprimary .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-lightprimary .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-lightprimary .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-lightprimary-wp,
.bar-button-clear-wp-lightprimary,
.bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.bar-button-lightprimary-wp:hover:not(.disable-hover),
.bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-danger .toolbar-background-wp {
  background: tomato;
}

.toolbar-wp-danger .bar-button-clear-wp,
.toolbar-wp-danger .bar-button-default-wp,
.toolbar-wp-danger .bar-button-outline-wp,
.toolbar-wp-danger .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-danger .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-danger .bar-button-primary-wp,
.toolbar-wp-danger .bar-button-clear-wp-primary,
.toolbar-wp-danger .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-danger .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-danger .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-danger .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-danger .bar-button-primary1-wp,
.toolbar-wp-danger .bar-button-clear-wp-primary1,
.toolbar-wp-danger .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-danger .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-danger .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-danger .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-danger .bar-button-secondary-wp,
.toolbar-wp-danger .bar-button-clear-wp-secondary,
.toolbar-wp-danger .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-danger .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-danger .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-danger .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-danger .bar-button-light-wp,
.toolbar-wp-danger .bar-button-clear-wp-light,
.toolbar-wp-danger .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-danger .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-danger .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-danger .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-danger .bar-button-dark-wp,
.toolbar-wp-danger .bar-button-clear-wp-dark,
.toolbar-wp-danger .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-danger .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-danger .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-danger .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-danger .bar-button-indicator-wp,
.toolbar-wp-danger .bar-button-clear-wp-indicator,
.toolbar-wp-danger .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-danger .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-danger .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-danger .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-danger .bar-button-success-wp,
.toolbar-wp-danger .bar-button-clear-wp-success,
.toolbar-wp-danger .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-danger .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-danger .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-danger .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-danger .bar-button-lightprimary-wp,
.toolbar-wp-danger .bar-button-clear-wp-lightprimary,
.toolbar-wp-danger .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-danger .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-danger .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-danger .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-danger .bar-button-danger-wp,
.toolbar-wp-danger .bar-button-clear-wp-danger,
.toolbar-wp-danger .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-danger .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-danger .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-danger .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-danger .bar-button-lightbg-wp,
.toolbar-wp-danger .bar-button-clear-wp-lightbg,
.toolbar-wp-danger .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-danger .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-danger .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-danger .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-danger-wp,
.bar-button-clear-wp-danger,
.bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.bar-button-danger-wp:hover:not(.disable-hover),
.bar-button-clear-wp-danger:hover:not(.disable-hover),
.bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-lightbg .toolbar-background-wp {
  background: whitesmoke;
}

.toolbar-wp-lightbg .bar-button-clear-wp,
.toolbar-wp-lightbg .bar-button-default-wp,
.toolbar-wp-lightbg .bar-button-outline-wp,
.toolbar-wp-lightbg .toolbar-title-wp {
  color: #000;
}

.toolbar-wp-lightbg .bar-button-outline-wp {
  border-color: #000;
}

.toolbar-wp-lightbg .bar-button-primary-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-primary,
.toolbar-wp-lightbg .bar-button-wp-primary {
  color: #0167b1;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #0167b1;
}

.toolbar-wp-lightbg .bar-button-outline-wp-primary {
  border-color: #1573b7;
  color: #1573b7;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-lightbg .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #0167b1;
}

.toolbar-wp-lightbg .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #1573b7;
}

.toolbar-wp-lightbg .bar-button-primary1-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-primary1,
.toolbar-wp-lightbg .bar-button-wp-primary1 {
  color: #4472CA;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-primary1-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-primary1:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-primary1:hover:not(.disable-hover) {
  color: #4472CA;
}

.toolbar-wp-lightbg .bar-button-outline-wp-primary1 {
  border-color: #3f69ba;
  color: #3f69ba;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-lightbg .bar-button-solid-wp-primary1 {
  color: #fff;
  background-color: #4472CA;
}

.toolbar-wp-lightbg .bar-button-solid-wp-primary1.activated {
  color: #fff;
  background-color: #3f69ba;
}

.toolbar-wp-lightbg .bar-button-secondary-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-secondary,
.toolbar-wp-lightbg .bar-button-wp-secondary {
  color: #7f8490;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #7f8490;
}

.toolbar-wp-lightbg .bar-button-outline-wp-secondary {
  border-color: #757984;
  color: #757984;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-lightbg .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #7f8490;
}

.toolbar-wp-lightbg .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #757984;
}

.toolbar-wp-lightbg .bar-button-light-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-light,
.toolbar-wp-lightbg .bar-button-wp-light {
  color: ghostwhite;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-light:hover:not(.disable-hover) {
  color: ghostwhite;
}

.toolbar-wp-lightbg .bar-button-outline-wp-light {
  border-color: #e4e4eb;
  color: #e4e4eb;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-lightbg .bar-button-solid-wp-light {
  color: #000;
  background-color: ghostwhite;
}

.toolbar-wp-lightbg .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e4e4eb;
}

.toolbar-wp-lightbg .bar-button-dark-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-dark,
.toolbar-wp-lightbg .bar-button-wp-dark {
  color: #444444;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #444444;
}

.toolbar-wp-lightbg .bar-button-outline-wp-dark {
  border-color: #535353;
  color: #535353;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-lightbg .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #444444;
}

.toolbar-wp-lightbg .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #535353;
}

.toolbar-wp-lightbg .bar-button-indicator-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-indicator,
.toolbar-wp-lightbg .bar-button-wp-indicator {
  color: #666666;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-indicator-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-indicator:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-indicator:hover:not(.disable-hover) {
  color: #666666;
}

.toolbar-wp-lightbg .bar-button-outline-wp-indicator {
  border-color: #727272;
  color: #727272;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-lightbg .bar-button-solid-wp-indicator {
  color: #fff;
  background-color: #666666;
}

.toolbar-wp-lightbg .bar-button-solid-wp-indicator.activated {
  color: #fff;
  background-color: #727272;
}

.toolbar-wp-lightbg .bar-button-success-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-success,
.toolbar-wp-lightbg .bar-button-wp-success {
  color: green;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-success-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-success:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-success:hover:not(.disable-hover) {
  color: green;
}

.toolbar-wp-lightbg .bar-button-outline-wp-success {
  border-color: #148a14;
  color: #148a14;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-lightbg .bar-button-solid-wp-success {
  color: #fff;
  background-color: green;
}

.toolbar-wp-lightbg .bar-button-solid-wp-success.activated {
  color: #fff;
  background-color: #148a14;
}

.toolbar-wp-lightbg .bar-button-lightprimary-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-lightprimary,
.toolbar-wp-lightbg .bar-button-wp-lightprimary {
  color: deepskyblue;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-lightprimary-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-lightprimary:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-lightprimary:hover:not(.disable-hover) {
  color: deepskyblue;
}

.toolbar-wp-lightbg .bar-button-outline-wp-lightprimary {
  border-color: #14c4ff;
  color: #14c4ff;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-lightbg .bar-button-solid-wp-lightprimary {
  color: #fff;
  background-color: deepskyblue;
}

.toolbar-wp-lightbg .bar-button-solid-wp-lightprimary.activated {
  color: #fff;
  background-color: #14c4ff;
}

.toolbar-wp-lightbg .bar-button-danger-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-danger,
.toolbar-wp-lightbg .bar-button-wp-danger {
  color: tomato;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-danger:hover:not(.disable-hover) {
  color: tomato;
}

.toolbar-wp-lightbg .bar-button-outline-wp-danger {
  border-color: #eb5b41;
  color: #eb5b41;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-lightbg .bar-button-solid-wp-danger {
  color: #fff;
  background-color: tomato;
}

.toolbar-wp-lightbg .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #eb5b41;
}

.toolbar-wp-lightbg .bar-button-lightbg-wp,
.toolbar-wp-lightbg .bar-button-clear-wp-lightbg,
.toolbar-wp-lightbg .bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-lightbg-wp:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.toolbar-wp-lightbg .bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.toolbar-wp-lightbg .bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.toolbar-wp-lightbg .bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.toolbar-wp-lightbg .bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.toolbar-wp-lightbg .bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-lightbg-wp,
.bar-button-clear-wp-lightbg,
.bar-button-wp-lightbg {
  color: whitesmoke;
  background-color: transparent;
}

.bar-button-lightbg-wp:hover:not(.disable-hover),
.bar-button-clear-wp-lightbg:hover:not(.disable-hover),
.bar-button-wp-lightbg:hover:not(.disable-hover) {
  color: whitesmoke;
}

.bar-button-outline-wp-lightbg {
  border-color: #e1e1e1;
  color: #e1e1e1;
  background-color: transparent;
}

.bar-button-outline-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-solid-wp-lightbg {
  color: #000;
  background-color: whitesmoke;
}

.bar-button-solid-wp-lightbg.activated {
  color: #000;
  background-color: #e1e1e1;
}

.bar-button-strong-wp {
  font-weight: bold;
}

.text-ios-primary {
  color: #0167b1;
}

.text-ios-primary1 {
  color: #4472CA;
}

.text-ios-secondary {
  color: #7f8490;
}

.text-ios-light {
  color: ghostwhite;
}

.text-ios-dark {
  color: #444444;
}

.text-ios-indicator {
  color: #666666;
}

.text-ios-success {
  color: green;
}

.text-ios-lightprimary {
  color: deepskyblue;
}

.text-ios-danger {
  color: tomato;
}

.text-ios-lightbg {
  color: whitesmoke;
}

.text-md-primary {
  color: #0167b1;
}

.text-md-primary1 {
  color: #4472CA;
}

.text-md-secondary {
  color: #7f8490;
}

.text-md-light {
  color: ghostwhite;
}

.text-md-dark {
  color: #444444;
}

.text-md-indicator {
  color: #666666;
}

.text-md-success {
  color: green;
}

.text-md-lightprimary {
  color: deepskyblue;
}

.text-md-danger {
  color: tomato;
}

.text-md-lightbg {
  color: whitesmoke;
}

.text-wp-primary {
  color: #0167b1;
}

.text-wp-primary1 {
  color: #4472CA;
}

.text-wp-secondary {
  color: #7f8490;
}

.text-wp-light {
  color: ghostwhite;
}

.text-wp-dark {
  color: #444444;
}

.text-wp-indicator {
  color: #666666;
}

.text-wp-success {
  color: green;
}

.text-wp-lightprimary {
  color: deepskyblue;
}

.text-wp-danger {
  color: tomato;
}

.text-wp-lightbg {
  color: whitesmoke;
}

.virtual-loading {
  opacity: 0;
}

.virtual-scroll {
  position: relative;
  contain: content;
}

.virtual-scroll .virtual-position,
.virtual-scroll .virtual-position.item {
  left: 0;
  top: 0;
  position: absolute;
  -webkit-transition-duration: 0ms;
  transition-duration: 0ms;
  contain: content;
}

.virtual-scroll .virtual-last {
  display: none;
}

.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
  padding-top: calc(20px + 4px);
  padding-top: calc(constant(safe-area-inset-top) + 4px);
  padding-top: calc(env(safe-area-inset-top) + 4px);
  min-height: calc(44px + 20px);
  min-height: calc(44px + constant(safe-area-inset-top));
  min-height: calc(44px + env(safe-area-inset-top));
}

.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
  padding-top: calc(16px + 20px);
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-title {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
  height: calc(44px + 20px);
  height: calc(44px + constant(safe-area-inset-top));
  height: calc(44px + env(safe-area-inset-top));
  min-height: calc(44px + 20px);
  min-height: calc(44px + constant(safe-area-inset-top));
  min-height: calc(44px + env(safe-area-inset-top));
}

@media only screen and (max-width: 767px) {
  .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
    padding-top: calc(20px + 4px);
    padding-top: calc(constant(safe-area-inset-top) + 4px);
    padding-top: calc(env(safe-area-inset-top) + 4px);
    min-height: calc(44px + 20px);
    min-height: calc(44px + constant(safe-area-inset-top));
    min-height: calc(44px + env(safe-area-inset-top));
  }
  .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
  .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
    padding-top: calc(16px + 20px);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
  .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
    height: calc(44px + 20px);
    height: calc(44px + constant(safe-area-inset-top));
    height: calc(44px + env(safe-area-inset-top));
    min-height: calc(44px + 20px);
    min-height: calc(44px + constant(safe-area-inset-top));
    min-height: calc(44px + env(safe-area-inset-top));
  }
}

.ios .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.ios ion-footer .toolbar:last-child {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
  min-height: calc(44px + constant(safe-area-inset-bottom));
  min-height: calc(44px + env(safe-area-inset-bottom));
}

.md ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
.md ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.md ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
.md ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.md ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
.md ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
.md ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
  padding-top: calc(20px + 4px);
  padding-top: calc(constant(safe-area-inset-top) + 4px);
  padding-top: calc(env(safe-area-inset-top) + 4px);
  min-height: calc(56px + 20px);
  min-height: calc(56px + constant(safe-area-inset-top));
  min-height: calc(56px + env(safe-area-inset-top));
}

.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
  padding-top: calc(16px + 20px);
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

@media only screen and (max-width: 767px) {
  .md .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
    padding-top: calc(20px + 4px);
    padding-top: calc(constant(safe-area-inset-top) + 4px);
    padding-top: calc(env(safe-area-inset-top) + 4px);
    min-height: calc(56px + 20px);
    min-height: calc(56px + constant(safe-area-inset-top));
    min-height: calc(56px + env(safe-area-inset-top));
  }
  .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
  .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
    padding-top: calc(16px + 20px);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
}

.md .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.md ion-footer .toolbar:last-child {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
  min-height: calc(56px + constant(safe-area-inset-bottom));
  min-height: calc(56px + env(safe-area-inset-bottom));
}

.wp ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
.wp ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.wp ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
.wp ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
.wp ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
.wp ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
  padding-top: calc(20px + 4px);
  padding-top: calc(constant(safe-area-inset-top) + 4px);
  padding-top: calc(env(safe-area-inset-top) + 4px);
  min-height: calc(46px + 20px);
  min-height: calc(46px + constant(safe-area-inset-top));
  min-height: calc(46px + env(safe-area-inset-top));
}

.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
  padding-top: calc(16px + 20px);
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

@media only screen and (max-width: 767px) {
  .wp .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
    padding-top: calc(20px + 4px);
    padding-top: calc(constant(safe-area-inset-top) + 4px);
    padding-top: calc(env(safe-area-inset-top) + 4px);
    min-height: calc(46px + 20px);
    min-height: calc(46px + constant(safe-area-inset-top));
    min-height: calc(46px + env(safe-area-inset-top));
  }
  .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
  .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
    padding-top: calc(16px + 20px);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
}

.wp .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.wp ion-footer .toolbar:last-child {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
  min-height: calc(46px + constant(safe-area-inset-bottom));
  min-height: calc(46px + env(safe-area-inset-bottom));
}

image-viewer.ion-page {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  opacity: 1;
}

image-viewer.ion-page ion-navbar.toolbar .toolbar-background {
  background-color: transparent;
}

image-viewer.ion-page ion-navbar.toolbar.toolbar-ios {
  padding-top: calc(20px + 4px);
}

image-viewer.ion-page ion-navbar .bar-button-default {
  color: white;
}

image-viewer.ion-page .backdrop {
  will-change: opacity;
}

image-viewer.ion-page .image-wrapper {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 56px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

image-viewer.ion-page .image {
  will-change: transform;
}

image-viewer.ion-page img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

super-tabs {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

super-tabs > div.container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

super-tabs > div.container > div.inner-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

super-tabs:not([no-shadow]).tabs-placement-bottom > super-tabs-toolbar > ion-toolbar.toolbar::before {
  top: -2px;
  bottom: auto;
  height: 2px;
  background-position: 0 0;
  content: '';
}

super-tabs:not([no-shadow]) > super-tabs-toolbar > ion-toolbar.toolbar {
  contain: inherit;
  display: block;
  overflow: visible;
}

super-tabs:not([no-shadow]) > super-tabs-toolbar > ion-toolbar.toolbar::after, super-tabs:not([no-shadow]) > super-tabs-toolbar > ion-toolbar.toolbar::before {
  position: absolute;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHBAMAAADzDtBxAAAAD1BMVEUAAAAAAAAAAAAAAAAAAABPDueNAAAABXRSTlMUCS0gBIh/TXEAAAAaSURBVAjXYxCEAgY4UIICBmMogMsgFLtAAQCNSwXZKOdPxgAAAABJRU5ErkJggg==);
  background-repeat: repeat-x;
  width: 100%;
  left: 0;
}

super-tabs:not([no-shadow]) > super-tabs-toolbar > ion-toolbar.toolbar::after {
  content: '';
  height: 5px;
  background-position: 0 -2px;
  bottom: -5px;
}

super-tabs.tabs-placement-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

super-tabs.tabs-placement-bottom > super-tabs-toolbar > ion-toolbar.toolbar {
  padding: 0;
}

super-tabs.tabs-placement-bottom > super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .indicator {
  top: 0;
  bottom: auto;
}

super-tabs.tabs-placement-bottom > super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container ion-segment.segment.segment-md {
  padding-top: 4px;
}

super-tabs.tabs-placement-bottom > super-tabs-toolbar > ion-toolbar.toolbar.scroll-tabs .tab-buttons-container .indicator {
  margin-top: 0;
  margin-bottom: -2px;
}

ion-tabs super-tabs ion-content .scroll-content,
ion-tabs super-tabs ion-content .fixed-content {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

super-tab {
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

super-tabs-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

super-tabs-container > div {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

super-tabs-toolbar {
  z-index: 2;
  width: 100%;
  display: block;
}

super-tabs-toolbar > ion-toolbar.toolbar {
  padding: 0;
  min-height: 0;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  height: 48px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  padding: 0 12px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button:not(.selected) ion-icon,
super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button:not(.selected) span:not(.badge) {
  opacity: 0.7;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button.title-only .title {
  line-height: 48px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button.icon-only ion-icon {
  line-height: 48px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button.title-and-icon {
  height: 72px;
  padding-top: 8px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button.title-and-icon ion-icon {
  margin-bottom: 10px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button ion-icon {
  font-size: 24px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button .title {
  vertical-align: middle;
  display: block;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .tab-buttons super-tab-button .badge {
  position: absolute;
  top: 0;
  right: 4px;
}

super-tabs-toolbar > ion-toolbar.toolbar .tab-buttons-container .indicator {
  bottom: 0;
  position: absolute;
  z-index: 2;
  height: 2px;
  width: 100px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
}

super-tabs-toolbar > ion-toolbar.toolbar.scroll-tabs .tab-buttons-container .tab-buttons {
  position: relative;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

super-tabs-toolbar > ion-toolbar.toolbar.scroll-tabs .tab-buttons-container .tab-buttons super-tab-button {
  max-width: 100%;
  width: auto;
  display: inline-table;
  overflow: visible;
}

super-tabs-toolbar > ion-toolbar.toolbar.scroll-tabs .tab-buttons-container .indicator {
  position: relative;
  margin-top: -2px;
}

.alertstar {
  border-radius: 12px;
}

.alertstar button {
  width: 40px;
  margin: 0 !important;
  background-image: url("../assets/icon/star.png");
  background-repeat: no-repeat;
  background-position: center;
  color: white !important;
  min-width: 0 !important;
}

.alertstar .alert-button-group {
  padding: 0;
  margin-top: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.alertstar .alert-wrapper {
  border-radius: 12px;
}

[header-background-image] {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

[header-background-image]::before {
  content: "";
}

[header-background-image] [header-title] {
  padding-right: 10%;
  padding: 0;
  z-index: 999;
  font-weight: bold !important;
  margin-top: 40px;
  line-height: 23px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

[header-background-image] img {
  position: relative;
  border-radius: 10px;
  max-width: 185px;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
  height: 60px;
}

.header-ios [class^="icon-"]:before, .header-ios [class*=" icon-"]:before {
  width: 24px !important;
  margin-right: 0 !important;
}

[main-menu] .icon, [sub-menu] .icon {
  color: #0167b1;
  margin-bottom: 6px !important;
}

[main-menu] .item-inner, [sub-menu] .item-inner {
  margin-left: 6px !important;
}

[main-menu] ion-label, [sub-menu] ion-label {
  font-weight: normal;
  font-size: 15px;
  margin-top: 10px;
}

.avoid-clicks {
  pointer-events: none;
  background-color: ghostwhite;
}

.avoid-clicks .label {
  color: grey;
}

.avoid-clicks .icon {
  color: lightgray;
}

.logout-button {
  width: 50%;
  font-size: 16px !important;
  background-color: #fd7575 !important;
  color: white !important;
}

.home-away {
  width: 100%;
  text-align: center;
  background: white;
  border-radius: 10px;
}

.quotes h3 {
  color: #444;
  text-align: center;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid lightgrey;
}

.quotes ion-card-content {
  background-color: white;
}

.network-status {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  margin: 0;
  color: white;
  font-weight: bold;
  text-align: center;
  width: 100%;
  font-size: 15px;
  border-radius: 0px;
  position: absolute;
  bottom: 0;
}

.online {
  background-color: green;
}

.offline {
  background-color: #fd7575;
}

.icon_h3 {
  color: #989898;
}

.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

ion-calendar {
  font-family: Helvetica, Arial, sans-serif;
}

ion-calendar .center {
  text-align: center;
}

ion-calendar .calendar-header-col {
  font-size: 1rem;
  color: #666;
}

ion-calendar .calendar-row:last-child {
  border-bottom: 1px solid #eee;
}

ion-calendar .calendar-row .calendar-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.8rem;
  font-size: 1.2rem;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

ion-calendar .calendar-row .calendar-col:last-child {
  border-right: 1px solid #eee;
}

ion-calendar .calendar-row .future-date {
  background-color: white;
  color: #666;
}

ion-calendar .calendar-row .not-this-month {
  color: #989898;
  background: #eee;
}

ion-calendar .calendar-row .today {
  color: #666;
  background: lightgray;
}

ion-calendar .calendar-row .eventBlip {
  background: #46b592;
  width: 6.5px;
  height: 6.5px;
  display: inline-block;
  border-radius: 6.5px;
  position: absolute;
  top: 3.5px;
  right: 3.5px;
}

ion-calendar .calendar-row .select {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background: #46b592;
}

page-events .list-img {
  height: 50px;
  width: 50px;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  float: left;
}

page-events .list-img img {
  height: 100%;
  border: 1px solid lightgrey;
  border-radius: 5px;
}

page-events .subject {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 90px);
  float: left;
  margin-bottom: 5px;
}

page-events .subject h2 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #444444;
}

page-events .unread {
  position: absolute;
  right: 19px;
  top: 15px;
  background-color: green;
}

page-events .unread1 .subject h2 {
  color: black;
}

page-events ion-item {
  background-color: white !important;
}

page-events .notice {
  margin-top: 10px;
}

page-events .date-indicator {
  position: absolute;
  top: 38px;
  width: 50px;
  font-weight: bolder;
}

page-events .month-indicator {
  position: absolute;
  top: 14px;
  width: 50px;
  font-size: 14px;
  color: white;
  font-weight: bolder;
}

page-events .attachment {
  position: absolute;
  right: 10px;
  top: 35px;
}

page-account-summary ion-content {
  background-color: whitesmoke !important;
}

page-account-summary .card {
  background-color: white;
}

page-account-summary ion-card {
  margin-bottom: 10px !important;
}

page-account-summary .card-content {
  padding-top: 10px !important;
}

page-account-summary div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
  text-align: center;
  border-bottom: 1px solid lightgrey;
  background-color: white;
  padding: 5px 0;
}

page-account-summary div.scrollmenu a {
  display: inline-block;
  color: #0167b1;
  padding: 14px;
  background-color: ghostwhite;
  text-decoration: none;
  margin: 0 3px;
  border-radius: 5px;
}

page-account-summary div.scrollmenu .active {
  background-color: #0167b1;
  color: white;
}

page-account-summary ion-card .item {
  border-bottom: 1px solid lightgrey;
}

page-account-summary ion-card .item h2 {
  text-transform: capitalize;
}

page-account-summary ion-card .item .label {
  margin: 10px 8px 10px 0;
}

page-account-summary .pay-indicator {
  margin-left: -10px;
  font-size: 20px;
}

page-account-summary .amount {
  text-align: right;
  font-weight: bold !important;
  font-size: 15px !important;
  position: absolute;
  right: 20px;
}

page-account-summary .download {
  position: absolute;
  top: 13px;
  right: 10px;
}

page-account-summary ion-fab {
  position: fixed;
}

page-add-complaints li {
  list-style-type: none;
}

page-add-complaints .item-accordion {
  max-height: 0px;
  display: block !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

page-add-complaints .item-accordion.active {
  max-height: -webkit-max-content !important;
  max-height: -moz-max-content !important;
  max-height: max-content !important;
}

page-add-complaints .item-accordion ion-item {
  background-color: whitesmoke !important;
}

page-add-complaints ion-footer.footer-md::before {
  background-image: none;
}

page-add-complaints ion-footer .toolbar-ios:first-child .toolbar-background-ios {
  border-width: 0 !important;
}

page-add-complaints .button-md {
  height: 44px;
}

page-add-complaints-form .time {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

page-add-complaints-form #desc {
  height: 120px;
  background-color: ghostwhite;
  padding-left: 10px;
  margin: 10px 0;
  width: 100%;
}

page-add-complaints-form .scroll-content {
  padding: 10px !important;
}

page-add-complaints-form .datetime-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

page-add-complaints-form ion-datetime {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

page-add-complaints-form .calendar-icon {
  margin-left: 8px;
  font-size: 24px;
  /* Adjust the size if needed */
}

page-add-complaints-form .fileUpload {
  position: relative;
  overflow: hidden;
  margin: 0;
  margin-left: 10px;
}

page-add-complaints-form .uploaded {
  font-size: 15px;
  padding-left: 5px;
}

page-add-complaints-form .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

page-add-complaints-form ion-grid ion-row button {
  text-transform: none;
}

page-add-complaints-form .attachment {
  font-size: 25px;
}

page-add-complaints-form .uploaded-image {
  padding: 10px;
}

page-add-complaints-form .uploaded-image .icon {
  float: right;
}

page-add-complaints-form .uploaded-image img {
  border: 1px solid ghostwhite;
}

page-add-complaints-form .category {
  font-size: 17px;
}

page-add-complaints-form input[type="file"] {
  display: none;
}

page-add-member ion-content {
  text-align: center;
}

page-add-member .loader {
  height: 30px !important;
  margin: 40px;
}

page-add-member .upload ion-icon {
  float: right;
}

page-add-member .staff-img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-add-member .staff-img ion-icon {
  position: absolute;
  top: 10px;
  right: 35%;
}

page-add-member p {
  margin-top: 0px;
}

page-add-member .staff-img img {
  height: 100%;
}

page-add-member input[type="file"] {
  display: none;
}

page-add-member .custom-file-upload {
  border: none;
  color: #0167b1;
}

page-add-vehicle .car {
  font-size: 100px;
  border-radius: 50%;
  border: 5px solid ghostwhite;
}

page-add-vehicle .vehicle-details {
  text-align: center;
  background-color: white;
}

page-add-vehicle p {
  margin-top: 0px;
}

page-add-vehicle input[type="file"] {
  display: none;
}

page-add-vehicle .item {
  margin: 0px;
}

page-all-bookings .card .item + .card-content {
  padding: 13px 16px;
}

page-all-bookings .card {
  margin-bottom: 10px;
}

page-all-bookings ion-card > .item > div.item-inner > .button {
  padding: 0;
  font-size: 20px;
}

page-all-bookings ion-card-content b {
  color: black;
}

page-all-bookings .canceled {
  float: right;
  color: tomato;
  font-size: small;
  font-weight: bold;
}

page-all-complaints #complaint-name-type {
  margin-top: 5px;
  margin-left: 5px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
}

page-all-complaints #des {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 75px;
}

page-all-complaints .list-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  float: left;
}

page-all-complaints .list-img img {
  height: 100%;
}

page-app-search .toolbar-background {
  background-color: white !important;
}

page-app-search .bar-button {
  color: black !important;
}

page-app-search input {
  border: none;
  font-size: 18px;
}

page-attendance ion-content {
  text-align: center;
}

page-attendance table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
}

page-attendance td, page-attendance th {
  border: 1px solid #eeeeee;
  text-align: center;
  padding: 8px;
}

page-attendance tr:nth-child(even) {
  background-color: #eeeeee;
}

page-attendance a {
  display: inline-block;
  color: #0167b1;
  padding: 14px;
  background-color: ghostwhite;
  text-decoration: none;
  margin: 0 3px;
  text-transform: uppercase;
  width: 100%;
}

page-attendance .absent {
  background-color: lightcoral;
  color: white;
  font-weight: bolder;
}

page-attendance .present {
  background-color: lightgreen;
}

page-attendance .eventBlip {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 6.5px;
}

page-attendance .show-all {
  position: absolute;
  right: 12px;
  color: #0167b1;
}

page-bill-report .chart1 {
  margin-top: 10px;
}

page-bill-report div {
  position: relative;
}

page-billing-list .no-data {
  font-size: 15px;
  text-align: center;
}

page-billing-list .list-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0;
  border: 5px solid ghostwhite;
  float: left;
}

page-billing-list .list-img img {
  height: 100%;
}

page-billing-list ion-col span {
  float: right;
}

page-billing-list .bill-name {
  width: 60%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

page-billing-list ion-card .item {
  border-bottom: 1px solid lightgrey;
}

page-billing-list ion-card .item h2 {
  text-transform: capitalize;
}

page-billing-list ion-card .item .label {
  margin: 10px 8px 10px 0;
}

page-billing-list ion-card-content {
  padding: 0;
}

page-billing-list ion-content {
  background-color: whitesmoke !important;
}

page-billing-list .card {
  background-color: white;
}

page-billing-list ion-card {
  margin-bottom: 10px !important;
  padding-bottom: 10px;
}

page-billing-payments ion-header ion-row {
  padding: 0 16px;
}

page-billing-payments ion-header ion-row h3 {
  font-size: 15px;
}

page-billing-payments ion-header ion-row h3 ion-icon {
  color: #0167b1;
}

page-billing-payments .outstandings {
  height: 90px;
  overflow-y: scroll;
  border-bottom: 1px solid lightgray;
}

page-billing-payments .outstandings ion-col {
  overflow-y: scroll;
}

page-billing-payments .outstandings h3 span span {
  color: green;
}

page-billing-payments .outstandings h3 .dr {
  color: red;
  font-size: 15px;
}

page-billing-payments .outstanding-loader {
  width: 70px;
  margin: 5px;
}

page-billing-payments ion-navbar ion-icon {
  font-size: 20px;
  padding: 0 2px;
}

page-billing-payments .title-md {
  display: inline-block;
}

page-booking .booking-header {
  background-color: white;
  color: white;
  padding: 0 0 15px 0;
  text-align: center;
}

page-booking .booking-header h2 {
  margin: 0;
}

page-booking .booking-header p {
  margin: 0;
}

page-booking .card .item + .card-content {
  padding: 13px 16px;
}

page-booking p.icon-rate {
  color: #5b09f3;
  font-weight: bold;
  font-size: 20px;
}

page-booking .card {
  margin-bottom: 10px;
}

page-booking ion-card > .item > div.item-inner > .button {
  padding: 0;
  font-size: 20px;
}

page-booking ion-card-content b {
  color: black;
}

page-booking .days {
  background-color: white;
}

page-booking .days p {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  color: #0167b1;
  width: 60%;
  margin: auto;
  font-weight: bold;
  padding-top: 10px;
}

page-booking .location-title h2 b, page-booking .location-title p, page-booking .location-title ion-icon {
  color: white;
}

page-booking .txt-center {
  text-align: center;
}

page-booking .inv-date {
  border-bottom: 1px solid #c7c7cc;
  margin: 16px 0 0 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  color: #0167b1;
}

page-booking .inv-date .date {
  color: #30384c;
  margin-top: inherit;
}

page-booking .date-options {
  text-align: center;
  padding-top: 5px;
}

page-booking .date-options button {
  border: 1px solid #0167b1;
  background-color: white;
  color: #444444;
  border-radius: 10px;
}

page-booking .date-options .active {
  color: white;
  background-color: #0167b1 !important;
  font-weight: bold;
}

page-booking .date-options div {
  display: inline-block;
}

page-booking .date-options-calendar {
  padding: 0;
}

page-booking .date-options-calendar ion-icon {
  font-size: x-large;
}

page-booking .white-space-normal {
  white-space: normal;
}

page-booking .pop-section .ion-col {
  white-space: normal;
}

page-booking .pop-Col-1 {
  background: #eee;
}

page-booking .pop-Col-2 {
  background: #fff;
}

page-booking .pop-Col-1, page-booking .pop-Col-2 {
  padding: 20px 10px;
}

page-booking .pop-row {
  -webkit-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.11);
}

page-booking .m--20 {
  margin-top: -20px;
}

page-booking .pop-section {
  right: 0px;
  z-index: 11;
  position: absolute;
  width: 85%;
  margin: auto;
  left: 0px;
}

page-booking .swiper-container-horizontal > .swiper-pagination-bullets {
  left: auto;
  width: auto;
  right: 0;
  top: 0px;
}

page-booking .m-t-0 {
  margin-top: 0px !important;
}

page-booking .m-b-0 {
  margin-bottom: 0px !important;
}

page-booking .m-l-0 {
  margin-left: 0px !important;
}

page-booking .m-r-0 {
  margin-right: 0px !important;
}

page-booking .slct-p {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: bold;
  color: #ff6161;
  margin-top: 3px !important;
}

page-booking .capatalized {
  text-transform: capitalize;
}

page-booking .green {
  color: #00BF6F;
}

page-booking .f-12 {
  font-size: 12px;
}

page-booking .p-l-0 {
  padding-left: 0px;
}

page-booking .form-edit {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px !important;
  font-size: 12px !important;
}

page-booking .clr-black {
  color: #000 !important;
}

page-booking .form-edit .item-inner {
  border: none !important;
}

page-booking .date-time {
  color: #535869;
  padding: 0px;
}

page-booking .btn-confirm {
  width: 100%;
  text-align: center;
  background: #0067b1;
  padding: 7px 6px;
  border-radius: 2px;
  color: #fff;
}

page-booking .f-10 {
  font-size: 10px;
}

page-booking .default-image {
  font-size: 45px;
  text-align: center;
}

page-booking .booking__top__tabs {
  color: #000 !important;
  border-radius: 0px !important;
  width: 50%;
  margin: 0px;
  background: #eee;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-right: 1px solid #b3b3b3;
  padding: 0px !important;
}

page-booking .slot__book__para {
  padding: 15px 12px;
  font-size: 16px;
  background: #eee;
  margin: 10px;
  border-radius: 3px !important;
  text-transform: capitalize;
}

page-booking .slot__book__info {
  padding: 10px;
  margin: 0px;
  text-align: center;
}

page-booking .slot__radios__checks .item-md.item-block .item-inner {
  border-bottom: none !important;
}

page-booking .slot__radios__checks .item-md .radio-md {
  margin: 9px 10px 0px 0 !important;
}

page-booking .item-cover {
  display: none;
}

page-booking .pointer-all {
  pointer-events: all !important;
}

page-booking .booking__slot__false {
  background: #eee !important;
  color: #000 !important;
  border: 1px solid #eee !important;
}

page-booking .booking__slot__ {
  background: #fff !important;
  border: 1px solid #0067b1 !important;
  color: #0067b1 !important;
}

page-booking .booking__slot__btn.active__slot {
  background: #0067b1 !important;
  border: 1px solid #0067b1  !important;
  color: #fff !important;
}

page-booking .booking__slot__btn {
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  font-weight: bold;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 13px !important;
  margin: 0px !important;
  background: #fff;
  border: 1px solid #0067b1;
  color: #0067b1;
}

page-booking .book__slot__dot__available {
  height: 10px;
  width: 10px;
  background: #0067b1;
  border: 1px solid #0067b1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
}

page-booking .book__slot__dot__not__available {
  height: 10px;
  width: 10px;
  border: 1px solid #a2a2a2;
  background: #eee;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
}

page-booking .book__slot__info {
  margin-right: 10px;
}

page-booking .slot__braces {
  overflow-x: scroll;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

page-booking .slot__braces span {
  background: #eee;
  padding: 3px 5px;
  font-size: 15px;
}

page-booking .accept__checkbox {
  margin-right: 10px !important;
  float: left !important;
}

.is__active {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #00BF6F;
  color: #fff;
  padding: 1px;
  border-radius: 10%;
  z-index: 2;
}

page-closed-complaints #complaint-name-type {
  margin-top: 5px;
  margin-left: 5px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
}

page-closed-complaints #des {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 75px;
}

page-closed-complaints .list-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  float: left;
}

page-closed-complaints .list-img img {
  height: 100%;
}

page-complaints-details .card {
  position: relative;
  text-align: left;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin: 0px 0px 10px 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

page-complaints-details .card-title {
  position: absolute;
  bottom: 0%;
  font-size: 1.5em;
  width: 100%;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 14px 18px;
}

page-complaints-details .active {
  max-height: 500px !important;
}

page-complaints-details button {
  text-transform: none;
}

page-complaints-details #complaint-name-type {
  font-weight: bold;
}

page-complaints-details #complaint-img {
  overflow: hidden;
}

page-complaints-details #more-details h3 {
  padding: 2px;
}

page-complaints-details #more-details ion-col {
  padding: 0;
}

page-complaints-details .text-center {
  text-align: center;
  width: 100%;
}

page-complaints-details .text-right {
  float: right;
  text-align: right;
}

page-complaints-details ion-footer {
  background-color: white !important;
  border-top: 1px solid lightgrey;
}

page-complaints-details ion-footer ion-icon {
  font-size: 25px;
  color: #30384c;
}

page-complaints-details ion-content > div.scroll-content > ion-card > ion-col > ion-icon {
  color: orange;
  font-size: 1.75em;
}

page-complaints-details [item-subtitle] {
  font-size: 1.2rem !important;
}

page-complaints-details .label {
  margin: 5px 0;
}

page-complaints-details .comment {
  border-bottom: 1px solid lightgrey;
}

page-complaints-details .comment ion-col {
  padding: 2px 5px;
}

page-complaints-details .otp {
  color: green;
}

page-complaints-details .otp b {
  color: black;
}

page-complaints-details .detail-card {
  background: white;
  border-bottom: 1px solid lightgrey;
}

page-complaints-details .cmnt-date {
  float: right;
  font-size: 13px;
}

page-complaints-details .cmnt-title {
  font-weight: bold;
}

page-complaints-details .job-card ion-col h3 .amount {
  position: absolute;
  top: 0;
  right: 5px;
  text-align: right;
}

page-complaints-details .job-card ion-col h3 .amount b {
  font-size: 20px;
}

page-complaints-details .job-card ion-col .labour-hours {
  font-size: 12px;
}

page-complaints-details .down-arrow ion-icon {
  float: right;
  font-size: 20px;
}

page-complaints-details .description {
  margin-bottom: 10px;
  white-space: normal;
}

page-complaints-details ion-card ion-row ion-col img {
  width: 50px;
}

page-consumption-chart .chart1 {
  margin-top: 10px;
}

page-create-pass .active {
  max-height: 500px !important;
}

page-create-pass #days {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

page-create-pass .gap {
  margin-bottom: 20px;
}

page-dashboard .back-gradiant {
  background: -webkit-gradient(linear, left bottom, left top, from(#0166b2), to(#00a3bd));
  background: linear-gradient(to top, #0166b2, #00a3bd);
}

page-dashboard .width {
  width: 100%;
}

page-dashboard .width-auto {
  width: auto;
}

page-dashboard .scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

page-dashboard .newFeatures .new-btn {
  padding: 5px 10px;
  background-color: #0167B1;
  color: white;
  border-radius: 5px;
  margin-left: 20px;
}

page-dashboard .newFeatures {
  padding: 5px;
  position: relative;
}

page-dashboard .newFeatures .text-p {
  margin-left: 90px;
  margin-top: 0px;
}

page-dashboard .newFeatures img {
  width: 70px !important;
  height: 60px;
  float: left;
  border-radius: 5px;
}

page-dashboard .text-align-n {
  text-align: revert !important;
}

page-dashboard .newFeatures .new-item {
  border-right: 2px solid #0098dd;
  background: #fbfbfb !important;
  padding: 5px;
  width: 100%;
  font-size: 13px;
  -webkit-box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

page-dashboard .scrolling-wrapper .card.category-card {
  display: inline-block;
  width: auto;
  border: 1px solid #eeeeee;
  padding: 5px 10px;
  margin: 0px 5px;
  border-radius: 3px;
  color: #0167b1;
  background-color: white;
  overflow: hidden;
}

page-dashboard .shake {
  position: absolute;
  top: -10px;
  z-index: 1;
  -webkit-animation: shake-animation 3s ease infinite;
  animation: shake-animation 3s ease infinite;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

page-dashboard .shake p {
  padding: 3px 5px;
  display: inline;
  background: #00BF6F;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
}

@-webkit-keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

page-dashboard .request-pending {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(2%, #f3b079), color-stop(70%, #ffb30f));
  background: linear-gradient(to right, #f3b079 2%, #ffb30f 70%);
}

page-dashboard .request-success {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(2%, #97f180), color-stop(70%, #77f03f));
  background: linear-gradient(to right, #97f180 2%, #77f03f 70%);
}

page-dashboard .request-reject {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(2%, #cf7070), color-stop(70%, #e0192a));
  background: linear-gradient(to right, #cf7070 2%, #e0192a 70%);
}

page-dashboard .status-btn {
  margin-right: 5px;
  background: #fff;
  border-radius: 3px;
  color: grey;
  font-weight: bold;
}

page-dashboard .self-register-p {
  margin: 5px;
  font-weight: bold;
}

page-dashboard .modal-wrapper {
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
}

page-dashboard .toolbar-ios ion-title {
  padding: 0 0 0 65px;
}

page-dashboard .toolbar .toolbar-title {
  padding: 0 10px 0 0;
}

page-dashboard marquee {
  padding: 5px;
  height: 30px;
  width: 100%;
}

page-dashboard marquee b {
  color: #0167b1;
}

page-dashboard .top-menu-container {
  margin: 10px 0;
}

page-dashboard .top-menu {
  text-align: center;
}

page-dashboard .top-menu ion-icon {
  color: #0167b1;
  font-size: 25px;
  margin: 2px;
  display: inherit;
}

page-dashboard .top-menu a {
  text-decoration: none;
  color: #444444;
}

page-dashboard .top-menu ion-col {
  border: 1px solid whitesmoke;
}

page-dashboard .dashboard-head {
  background-color: #0167b1;
}

page-dashboard .search {
  display: inline-block;
  float: left;
  margin: 0;
  background-color: white;
  width: 100%;
  padding: 5px;
  border-radius: 10px;
}

page-dashboard .search ion-icon {
  font-size: 20px;
  color: #444444;
}

page-dashboard .search img {
  height: 27px;
  border-radius: 5px;
}

page-dashboard .profile {
  position: absolute;
  font-size: 25px;
  right: 0px;
  top: 5px;
}

page-dashboard .society-logo ion-row h2 {
  font-size: 15px;
  float: right;
  margin: 12px;
  font-weight: bold;
  color: #222222;
}

page-dashboard ion-slides {
  margin: 0;
}

page-dashboard ion-slides ion-slide img {
  width: 100% !important;
}

page-dashboard .scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

page-dashboard .scrolling-wrapper div {
  display: inline-block;
}

page-dashboard .scrolling-wrapper .card {
  display: inline-block;
  width: 150px;
  border: 1px solid #eeeeee;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  color: #0167b1;
  background-color: white;
  overflow: hidden;
}

page-dashboard .scrolling-wrapper .card h2 {
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 13px !important;
}

page-dashboard .block {
  margin: 0 0 10px 0;
  padding: 10px 0;
  background-color: white;
  border-top: 2px solid #eeeeee;
}

page-dashboard .block h3 {
  margin: 10px 0 0 20px;
  color: #444444;
  font-size: 15px;
}

page-dashboard .block ion-icon {
  font-size: 15px;
}

page-dashboard .scrolling-wrapper .more {
  width: 75px !important;
  background-color: white !important;
  color: grey !important;
  margin-top: 10px;
  text-align: center;
}

page-dashboard .staff-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  border: 5px solid whitesmoke;
  display: inline-block;
}

page-dashboard .staff-img img {
  height: 100%;
}

page-dashboard .staff {
  text-align: center;
  font-size: 17px;
  padding: 0;
  margin: 0px;
  width: auto !important;
}

page-dashboard .staff ion-col {
  background-color: white;
}

page-dashboard .staff ion-col h3 {
  font-size: 13px !important;
  margin: 0px;
}

page-dashboard .staff ion-col h4 {
  margin-top: 5px;
}

page-dashboard .staff ion-icon {
  float: none;
}

page-dashboard .bottom-end {
  text-align: center;
  padding: 5px;
  margin: 10px 0;
  border-top: 2px solid whitesmoke;
  color: #444444;
  font-size: 12px;
}

page-dashboard .outstandings-container {
  background: #f9f9f9;
  padding-bottom: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(whitesmoke), to(#f9f9f9));
  background-image: linear-gradient(whitesmoke, #f9f9f9);
}

page-dashboard .outstandings-container ion-slides {
  margin-top: 0px;
  border: none;
}

page-dashboard .outstanding {
  background-color: white;
  margin: 10px 10px 0 10px;
  padding: 8px 20px 5px 20px;
  border-radius: 10px;
}

page-dashboard .outstanding .title {
  font-size: 13px;
  color: #0167b1;
  display: block;
  font-weight: bold;
}

page-dashboard .outstanding span {
  font-size: 20px;
}

page-dashboard .outstanding span span {
  font-size: 15px;
  color: green;
}

page-dashboard .outstanding .refresh-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
}

page-dashboard .outstanding img {
  width: 120px !important;
  padding: 0;
}

page-dashboard .outstanding button {
  padding: 5px 10px;
  background-color: #0167b1;
  color: white;
  border-radius: 5px;
}

page-dashboard .outstanding .switch-pay-btn {
  float: left;
}

page-dashboard .outstanding .switch-app-btn {
  float: right;
  max-width: 28%;
  margin-top: 7px;
  height: auto;
}

page-dashboard .outstanding .os-date {
  font-size: 12px;
  position: absolute;
  left: 20px;
  top: 17px;
  color: #444444;
  font-weight: normal;
}

page-dashboard .outstanding h4 {
  font-size: 12px;
  color: #444444;
  font-weight: lighter;
  margin: 0 0 5px 0;
}

page-dashboard .outstanding h4 span {
  font-size: 12px;
}

page-dashboard .outstanding .dr {
  color: red;
  font-size: 15px;
}

page-dashboard .notice .card {
  height: 80px;
}

page-dashboard .notice h3 {
  margin-bottom: 10px;
}

page-dashboard .staff-block .card {
  height: 110px;
  border-radius: 0px 10px 10px 0;
}

page-dashboard .staff-block .present {
  border-left: 8px solid green;
}

page-dashboard .staff-block .absent {
  border-left: 8px solid tomato;
}

page-dashboard .text-wrap-container {
  white-space: normal;
}

page-dashboard .fakeItem .outstanding {
  padding: 20px 20px 5px 20px;
}

@-webkit-keyframes animatedBar {
  0% {
    background-position: -406px 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes animatedBar {
  0% {
    background-position: -406px 0;
  }
  100% {
    background-position: 0 0;
  }
}

page-dashboard .fakeItem h3, page-dashboard .fakeItem h2 {
  margin: 0;
  margin-left: 30%;
  margin-top: 10px;
}

page-dashboard .fakeItem h3 {
  margin-bottom: 5px;
  height: 20px;
}

page-dashboard .fakeItem h2 {
  margin-left: 33.5%;
  height: 10px;
  margin-bottom: 20px;
}

page-dashboard .fakeItem h4 {
  margin-top: -10px;
  height: 10px;
}

page-dashboard .fakeItem h4, page-dashboard .fakeItem h3, page-dashboard .fakeItem h2 {
  background-color: lightgrey;
  opacity: 0.5;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#dddddd), to(#EEEEEE));
  background: linear-gradient(to right, #dddddd, #EEEEEE);
  -webkit-animation: animatedBar 2s linear infinite;
  animation: animatedBar 2s linear infinite;
}

page-dashboard .fakeItem h4:after, page-dashboard .fakeItem h3:after, page-dashboard .fakeItem h2:after {
  position: absolute;
  display: block;
  content: '';
  right: 0;
  bottom: 0;
  top: 0;
  background-color: white;
}

page-dashboard .fakeItem .outstandings-container h4:after {
  width: 70%;
}

page-dashboard .fakeItem .outstandings-container h3:after {
  width: 33%;
}

page-dashboard .fakeItem .outstandings-container h2:after {
  width: 40%;
}

page-dashboard .fake-image {
  height: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(whitesmoke), to(white));
  background-image: linear-gradient(whitesmoke, white);
  margin-top: 20px;
}

page-dashboard .home-away {
  margin: 0;
  color: white;
  font-weight: bold;
  text-align: center;
  width: 100%;
  background-color: #fd7575;
  font-size: 15px;
  border-radius: 0px;
}

page-dashboard .app-switch {
  margin: 0;
  color: white;
  font-weight: bold;
  text-align: center;
  width: 20%;
  background-color: #fd7575;
  font-size: 15px;
  border-radius: 0px;
}

page-dashboard .top-right-icons {
  margin: auto;
}

page-dashboard .top-right-icons ion-icon {
  font-size: 20px;
}

page-dashboard .title-md {
  display: block;
}

page-dashboard .scrolling-wrapper .notice1 {
  color: white;
  background-color: #0167b1;
  max-width: 213px;
  height: auto;
  width: auto;
  padding: 0px;
  margin: 5px;
}

page-dashboard .unread {
  background-color: greenyellow;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

page-dashboard .quick-links ion-icon {
  font-size: 30px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#0167b1), to(deepskyblue));
  background-image: linear-gradient(to bottom right, #0167b1, deepskyblue);
  background-color: #0167B1;
  border-radius: 50%;
  color: white;
}

page-dashboard .quick-links a {
  font-size: 1.4rem;
  color: #444444;
}

page-dashboard .pull-down-indicator {
  opacity: 0;
  text-align: center;
  text-align: center;
  position: absolute;
  z-index: 2;
  width: 100%;
  animation: fade-out 5s 1;
  -webkit-animation: fade-out 5s 1;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  /* Safari and Chrome */
  -webkit-animation-fill-mode: forwards;
}

page-dashboard .pull-down-indicator div {
  background-color: white;
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 800px) {
  page-dashboard .outstandings-container ion-slide {
    width: 50% !important;
  }
  page-dashboard .bar-button {
    pointer-events: none;
  }
}

page-dashboard .dot {
  display: inline-block;
  position: absolute;
  left: 30%;
  top: 0px;
  border: 5px solid #0067b1;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: showHideDot 2.5s ease-in-out infinite;
  animation: showHideDot 2.5s ease-in-out infinite;
}

page-dashboard .dot.one {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

@-webkit-keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  page-dashboard .ion-slide-new-height {
    height: 230px;
  }
}

.newFeatures .slide-zoom {
  text-align: revert !important;
}

.card-background-page ion-card {
  position: relative;
  text-align: center;
}

.card-background-page .card-title {
  position: absolute;
  top: 36%;
  font-size: 1.2em;
  width: 100%;
  font-weight: bold;
  color: #fff;
}

.card-background-page .card-subtitle {
  font-size: 1.0em;
  position: absolute;
  top: 52%;
  width: 100%;
  color: #fff;
}

page-event-details .card {
  background-color: white !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

page-event-details ion-card-title {
  font-weight: bold;
}

page-event-details .date {
  color: #0167b1;
  margin-bottom: 10px;
}

page-event-details ion-card {
  margin: 0px !important;
  width: 100% !important;
}

page-event-details .attachment {
  height: 150px;
  border: 5px solid white;
}

page-event-details .attachment img {
  height: 100%;
}

page-event-details .attachment a {
  position: absolute;
  color: black;
  font-size: 20px;
  background-color: white;
  left: 9px;
  top: 9px;
}

page-event-details .notice-videos {
  margin: 10px;
  text-align: center;
}

page-event-details .notice-videos video {
  width: 100%;
}

page-export-meter .date-options {
  text-align: center;
  padding-top: 12px;
}

page-export-meter .date-options button {
  border: 1px solid #0167b1;
  background-color: white;
  color: #444444;
  border-radius: 10px;
}

page-export-meter .date-options .active {
  color: white;
  background-color: #0167b1 !important;
  font-weight: bold;
}

page-export-meter .date-options div {
  display: inline-block;
}

page-export-meter .inv-date {
  border-bottom: 1px solid #c7c7cc;
  margin: 42px 0 0 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  color: #0167b1;
}

page-export-meter .inv-date .date {
  color: #30384c;
}

page-export-meter .mrg-16 {
  margin: 16px;
}

page-export-meter .date-options-calendar {
  padding: 0;
}

page-export-meter .date-options-calendar ion-icon {
  font-size: x-large;
}

page-export-meter .width-48 {
  width: 48%;
}

page-export-meter .hgh-inh {
  height: inherit;
  margin-left: 12px;
}

page-facility .card .item + .card-content {
  padding: 13px 16px;
}

page-facility .img__icon {
  float: left;
  width: 25%;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 50px;
  height: 60px;
}

page-facility .card {
  margin-bottom: 10px;
}

page-facility .active-options-right .ion__item__option {
  background: red;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto !important;
}

page-facility .is__active {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #00BF6F;
  color: #fff;
  padding: 1px;
  border-radius: 50%;
}

page-facility .PARKING {
  background: #ff6161 !important;
}

page-facility ion-card > .item > div.item-inner > .button {
  padding: 0;
  font-size: 20px;
}

page-facility ion-card-content b {
  color: black;
}

page-facility-select-location .card .item + .card-content {
  padding: 13px 16px;
}

page-facility-select-location .card {
  margin-bottom: 10px;
}

page-facility-select-location ion-card > .item > div.item-inner > .button {
  padding: 0;
  font-size: 20px;
}

page-facility-select-location ion-card-content b {
  color: black;
}

page-facility-select-location .days {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  color: #0167b1;
  width: 60%;
  margin: auto;
  font-weight: bold;
}

page-facility-select-location .location-title h2 b, page-facility-select-location .location-title p, page-facility-select-location .location-title ion-icon {
  color: white;
}

page-facility-select-location .main__box {
  padding: 10px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 10px -3px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 10px -3px;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
}

page-facility-select-location .sub-icon {
  border-radius: 10px;
  margin: 10px 8px 0px 12px;
}

page-facility-select-location .is__active {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #00BF6F;
  color: #fff;
  padding: 1px;
  border-radius: 10%;
}

page-facility-select-location .icon-r {
  max-width: 100%;
  border: 0;
  width: 100%;
  height: 100px;
  border-radius: 5px;
}

page-facility-select-location p.icon-d {
  margin: 0px;
  color: #464646;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 25px;
}

page-facility-select-location p.icon-rate {
  margin: 5px;
  color: #5b09f3;
  font-weight: bold;
  font-size: 20px;
}

page-facility-select-location .booking {
  text-align: center;
  margin-left: 5px;
}

page-facility-select-location .sub-main-icon {
  background: none;
  border: 1px solid #eee;
}

page-facility-select-location .white {
  color: #fff;
}

page-facility-select-location .icon__default {
  font-size: 100px;
  /* height: 50px; */
  padding: 7px 0px;
}

page-facility-select-location .PARKING {
  background: #ff6161 !important;
}

page-feedback .feedback-header {
  background-color: #0167b1;
  color: white;
  padding: 4px 10px;
}

page-feedback .feedback-header[item-subtitle] {
  color: white !important;
}

page-feedback .feedback-header h1 {
  margin: 0px;
  font-size: 18px;
  font-weight: bold;
}

page-feedback .feedback-header h3 {
  font-size: 12px;
  color: #dddddd;
  margin-top: 10px;
}

page-feedback .feedback-content h2 {
  font-size: 15px;
  padding: 0px 10px;
}

page-feedback .feedback-content ion-input, page-feedback ion-textarea {
  background-color: ghostwhite;
}

page-feedback .feedback-content ion-textarea {
  height: 150px;
}

page-feedback .feedback-content h5 {
  padding: 0px 10px;
}

page-feedback .feedback-content h4 {
  padding: 0px 10px;
}

page-feedback .address-padding {
  padding: 0px 60px;
}

page-feedback .m-t-0 {
  margin-top: 0px;
}

page-feedback .right-float {
  float: right;
}

page-feedback .underline {
  text-decoration: underline;
}

page-forgot-password .scroll-content ion-col {
  white-space: normal;
}

page-forgot-password .scroll-content ion-grid {
  height: 100%;
  padding: 0 !important;
}

page-forgot-password .scroll-content ion-grid ion-row {
  height: 100%;
}

page-forgot-password .scroll-content ion-grid ion-row img {
  max-width: 72px;
  max-height: 72px;
  display: block;
  border-radius: 8px;
}

page-forgot-password .scroll-content ion-grid ion-row [login-title] {
  color: #0167b1;
  margin-right: 35% !important;
}

page-forgot-password .scroll-content ion-grid ion-row [login-subtitle] {
  color: #30384c;
}

page-forgot-password .scroll-content ion-grid ion-row form ion-item {
  padding-left: 0 !important;
  padding-bottom: 15px !important;
}

page-forgot-password .scroll-content ion-grid ion-row form ion-item [error-field] {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 5px !important;
  font-size: 12px;
}

page-forgot-password .scroll-content ion-grid ion-row form ion-item .item-inner {
  border-bottom: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-right: 0 !important;
}

page-forgot-password .scroll-content ion-grid ion-row form ion-item input, page-forgot-password .scroll-content ion-grid ion-row form ion-item ion-select {
  border: none;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
  margin: 5px 5px !important;
  padding: 5px 5px !important;
  width: calc(100% - 20px);
  border-radius: 5px;
  z-index: 999;
}

page-forgot-password .scroll-content ion-grid ion-row form ion-item input .input-cover, page-forgot-password .scroll-content ion-grid ion-row form ion-item ion-select .input-cover {
  display: none;
}

page-forgot-password .scroll-content ion-grid ion-row form ion-item ion-label {
  margin: 0 5px !important;
}

page-forgot-password .scroll-content ion-grid ion-row form p {
  color: red;
  text-align: center;
  font-size: 13px;
  margin-top: 0;
}

page-forgot-password .scroll-content ion-grid ion-row form [stacked] {
  font-size: 10px !important;
}

page-forgot-password .scroll-content ion-grid ion-row form [description] {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

page-forgot-password .scroll-content ion-grid ion-row form [description] a {
  color: #0167b1 !important;
}

page-forgot-password .scroll-content ion-grid ion-row form [description] p {
  color: #30384c !important;
}

page-forgot-password .scroll-content ion-grid ion-row form [default-button] {
  margin: 80px 0 10px;
}

page-forgot-password .scroll-content ion-grid ion-row form [login-button] {
  color: #30384c !important;
  background: white !important;
  margin: 0;
}

page-forgot-password .scroll-content .powered-by {
  text-align: center;
  color: #444444;
  font-size: 13px;
  border-top: 1px solid #4444;
}

page-forgot-password .scroll-content send-pass {
  margin-right: 20px;
}

page-generate-pass .purpose {
  text-align: center;
  color: #0167b1;
  padding: 10px;
  font-size: larger;
  font-weight: bold;
  border-bottom: 1px solid #c7c7cc;
}

page-generate-pass ion-note {
  z-index: 10;
}

page-generate-pass ion-note ion-icon {
  font-size: 3em;
  color: #0167b1;
}

page-generate-pass .otp {
  color: darkgray;
  border-style: none;
  width: 50px;
  height: 50px;
  text-align: center;
}

page-generate-pass .otp input {
  font-size: 35px !important;
  margin: 0;
}

page-generate-pass .otp-container {
  padding-top: 10px;
}

page-generate-pass td {
  border: 1px solid #c7c7cc;
}

page-generate-pass table {
  border-collapse: collapse;
}

page-generate-pass .otp-title {
  padding-left: 16px;
}

page-generate-pass .otp-title ion-label {
  color: #0167b1;
}

page-generate-pass .inv-date {
  border-bottom: 1px solid #c7c7cc;
  margin: 16px 0 0 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  color: #0167b1;
}

page-generate-pass .inv-date .date {
  color: #30384c;
}

page-generate-pass .date-options {
  text-align: center;
  padding-top: 5px;
}

page-generate-pass .date-options button {
  border: 1px solid #0167b1;
  background-color: white;
  color: #444444;
  border-radius: 10px;
}

page-generate-pass .date-options .active {
  color: white;
  background-color: #0167b1 !important;
  font-weight: bold;
}

page-generate-pass .date-options div {
  display: inline-block;
}

page-generate-pass .list-ios > .item-block:first-child {
  border-top: none;
}

page-generate-pass .date-options-calendar {
  padding: 0;
}

page-generate-pass .date-options-calendar ion-icon {
  font-size: x-large;
}

page-generate-pass .item-md ion-avatar, page-generate-pass .item-ios ion-avatar {
  min-width: 35px;
  min-height: 35px;
}

page-generate-pass .item-md ion-avatar img, page-generate-pass .item-ios ion-avatar img {
  width: 35px;
  height: 35px;
}

page-generate-pass .search-box {
  max-width: 300px;
  max-height: 300px;
  overflow: scroll;
  padding-top: 5px;
  margin-left: 16px;
}

page-generate-pass ion-list.list {
  margin: 0;
}

page-generate-pass .full__width__btn {
  padding: 10px !important;
  height: 3.6rem !important;
  font-size: 1.4rem !important;
}

page-generate-pass .booking__info {
  text-align: center;
  font-size: 13px;
}

page-home {
  background-color: white;
}

page-home .scroll-content ion-col {
  white-space: normal;
}

page-home .scroll-content ion-grid {
  height: 100%;
  padding: 0 !important;
}

page-home .scroll-content ion-grid ion-row {
  height: 100%;
}

page-home .scroll-content ion-grid ion-row img {
  display: block;
  border-radius: 8px;
}

page-home .scroll-content ion-grid ion-row [login-title] {
  color: #0167b1;
  margin-right: 35% !important;
}

page-home .scroll-content ion-grid ion-row [login-subtitle] {
  color: #30384c;
}

page-home .scroll-content ion-grid ion-row form ion-item {
  padding-left: 0 !important;
  padding-bottom: 15px !important;
}

page-home .scroll-content ion-grid ion-row form ion-item [error-field] {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 5px !important;
  font-size: 12px;
}

page-home .scroll-content ion-grid ion-row form ion-item .item-inner {
  border-bottom: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-right: 0 !important;
}

page-home .scroll-content ion-grid ion-row form ion-item input, page-home .scroll-content ion-grid ion-row form ion-item ion-select {
  border: 1px solid #0167b1;
  margin: 10px 10px !important;
  padding: 5px 10px !important;
  width: calc(100% - 20px);
  border-radius: 5px;
  z-index: 999;
}

page-home .scroll-content ion-grid ion-row form ion-item input .input-cover, page-home .scroll-content ion-grid ion-row form ion-item ion-select .input-cover {
  display: none;
}

page-home .scroll-content ion-grid ion-row form ion-item ion-label {
  margin: 0 5px !important;
}

page-home .scroll-content ion-grid ion-row form button {
  float: right;
  margin-right: 10px;
}

page-home .scroll-content ion-grid ion-row form p {
  color: red;
  text-align: center;
  font-size: 13px;
  margin-top: 0;
}

page-home .scroll-content ion-grid ion-row form [stacked] {
  font-size: 10px !important;
}

page-home .scroll-content ion-grid ion-row form [description] {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

page-home .scroll-content ion-grid ion-row form [description] a {
  color: #0167b1 !important;
}

page-home .scroll-content ion-grid ion-row form [description] p {
  color: #30384c !important;
}

page-home .scroll-content ion-grid ion-row form [login-button] {
  color: #30384c !important;
  background: white !important;
  margin: 0;
}

page-home .scroll-content .powered-by {
  text-align: center;
  color: #444444;
  font-size: 13px;
  display: inline-block;
}

page-home .scroll-content .tenant-label {
  display: inline-block;
  margin: 8px 0 15px 5px !important;
  color: #444444;
}

page-home .scroll-content ion-checkbox {
  margin-left: 10px;
}

page-home .loader1 .logo {
  opacity: 0;
  margin-top: 50vh;
  width: 100%;
  -webkit-animation: logo-anim 1s;
  animation: logo-anim 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

page-home .loader1 .load {
  width: 30px;
  opacity: 0;
  -webkit-animation: load-anim 1s;
  animation: load-anim 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

page-home .loader1 img {
  display: block;
  margin: auto;
  margin-top: 20px;
}

page-home .agree {
  width: 100%;
  margin: 10px 0;
  text-align: center;
}

page-home .padding-horizontal {
  padding-left: 30px;
  padding-right: 30px;
}

page-home .passwordIcon {
  position: absolute;
  right: 10px;
  color: #0067b1;
}

.my-custom-class .action-sheet-group > button {
  text-align: left !important;
  direction: ltr !important;
}

.sign-up {
  color: #000 !important;
  font-size: 16px !important;
}

.sign-up a {
  font-weight: bold;
  color: #327eff;
  text-decoration: underline;
}

.login-btn {
  text-align: center;
  width: 100%;
  float: none !important;
}

.startImg {
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto;
}

.alert-radio-label {
  white-space: normal !important;
}

@-webkit-keyframes logo-anim {
  from {
    margin-top: 50vh;
    opacity: 0;
  }
  to {
    margin-top: 40vh;
    opacity: 1;
  }
}

@keyframes logo-anim {
  from {
    margin-top: 50vh;
    opacity: 0;
  }
  to {
    margin-top: 40vh;
    opacity: 1;
  }
}

@-webkit-keyframes load-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes load-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

page-how-it-works .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  max-width: 400px;
  max-height: 300px;
}

page-how-it-works .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

page-how-it-works .tutorial-page .toolbar-background {
  background: #fff;
  border-color: transparent;
}

page-how-it-works .tutorial-page .slide-zoom {
  height: 100%;
}

page-how-it-works .tutorial-page .slide-title {
  margin-top: 2.8rem;
  font-size: 20px;
}

page-how-it-works .tutorial-page .slide-image {
  max-height: 50%;
  max-width: 60%;
  margin: 18px 0;
}

page-how-it-works .tutorial-page b {
  font-weight: 500;
}

page-how-it-works .tutorial-page p {
  font-size: 14px;
  line-height: 1.5;
  color: #60646B;
}

page-how-it-works .tutorial-page p b {
  color: #000000;
}

page-how-it-works .tutorial-page ion-buttons button {
  color: #0167b1 !important;
}

page-how-it-works .tutorial-page .cn {
  display: table-cell;
  width: 500px;
  height: 500px;
  vertical-align: middle;
  text-align: center;
}

page-how-it-works .tutorial-page .inner {
  display: inline-block;
}

page-how-it-works .slider-container {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0167b1), to(white));
  background-image: linear-gradient(#0167b1, white);
  height: 90vh;
}

page-how-it-works .slider-container ion-slides {
  margin-top: 0px;
  border: none;
}

page-how-it-works .slider-page {
  height: 90%;
  background-color: white;
  margin: 10px 30px 0 30px;
  padding: 30px 20px 5px 20px;
  border-radius: 20px;
}

page-how-it-works .options {
  font-size: 17px;
  margin-right: 10px;
}

page-ivr-modal ion-content {
  text-align: center;
}

page-ivr-modal .col {
  padding: 0px;
}

page-ivr-modal .button {
  margin: 0;
  height: 4.6rem;
}

page-ivr-modal p {
  font-weight: lighter;
  margin-bottom: 10px;
  margin-top: 0px;
  padding: 10px;
}

page-ivr-modal .gotovisit-button {
  margin: 0 0 20px 0;
}

page-ivr-modal .toolbar-background {
  background-color: white !important;
}

page-ivr-modal .bar-button {
  color: black !important;
}

page-ivr-modal .toolbar .toolbar-title {
  color: black !important;
  font-weight: normal;
  text-transform: uppercase;
}

page-ivr-modal .toolbar {
  border-bottom: 1px solid lightgray;
}

page-ivr-modal .title-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-ivr-modal .item {
  background-color: ghostwhite;
}

page-ivr-modal .title-img img {
  height: 100%;
}

page-ivr-modal .scroll-content {
  max-height: 400px;
}

page-make-payment input {
  border: none;
  width: 100%;
}

page-make-payment p {
  margin: 0 15px;
  color: red;
  text-align: center;
}

page-make-payment .fixed-amounts {
  margin: 10px;
}

page-make-payment .fixed-amounts button {
  border: 1px solid;
  padding: 5px;
  margin: 5px;
}

page-make-payment .note {
  text-align: left;
  padding: 0 16px;
  margin: 0;
  color: #444444;
  white-space: pre-line;
}

page-make-payment input[disabled] {
  color: #444444;
}

page-mark-close-modal textarea {
  background-color: ghostwhite;
  height: 100px;
  border: none;
}

page-mark-close-modal .button {
  margin: 0;
  height: 4.6rem;
}

page-mark-close-modal .col {
  padding: 0px;
}

page-mark-close-modal .star {
  padding: 5px;
  text-align: center;
  font-size: large;
}

page-market-place .width {
  width: 100%;
}

page-market-place .width-auto {
  width: auto;
}

page-market-place .scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  margin-top: 50px;
}

page-market-place .inline {
  display: inline;
}

page-market-place div {
  display: inline-block;
}

page-market-place .card {
  display: inline-block;
  width: 150px;
  border: 1px solid #eeeeee;
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
  color: #0167b1;
  background-color: white;
  overflow: hidden;
}

page-market-place .card h2 {
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 13px !important;
}

page-market-place .category-card {
  padding: 0px 5px;
  border-radius: 5px;
  background: #eee;
  color: #000;
  width: auto;
}

page-market-place .category-default {
  display: block;
}

page-market-place .category-default div {
  display: block;
}

page-market-place .back-gray {
  background: #f4f5f7;
}

page-market-place .m-0 {
  margin: 0px;
}

page-market-place .m-r-5 {
  margin-right: 5px;
}

page-market-place .right {
  float: right;
}

page-market-place .m-t-10 {
  margin-top: 10px !important;
}

page-market-place .m-b-10 {
  margin-bottom: 10px;
}

page-market-place .img {
  width: 100%;
  border: 1px solid #000;
}

page-market-place .views {
  font-size: 12px;
  color: dimgray;
}

page-market-place .bold {
  font-weight: bold;
}

page-market-place .price-off {
  color: #388e3c;
  font-size: 12px;
}

page-market-place .rating {
  background: #0067b1;
  padding: 2px 5px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

page-market-place .rating .rating-icon {
  font-size: 1rem;
}

page-market-place .f-10 {
  font-size: 10px;
}

page-market-place .f-15 {
  font-size: 15px;
}

page-market-place .disp-block {
  display: block;
}

page-market-place .default-pad {
  padding: 20px 10px;
}

page-market-place .btn-default {
  height: 2em;
  width: 80%;
  background: #0067b1;
}

page-market-place .space-bdr {
  border: 1px solid #a7a7a7;
  width: 95%;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

page-market-place .trending-items div {
  display: block;
}

page-market-place .prdct-col {
  width: 50% !important;
  display: inline-block;
  border-bottom: 1px solid #eee;
  overflow: unset;
}

page-market-place .prdct-col:nth-of-type(odd) {
  border-right: 1px solid #eee;
}

page-market-place .padding-3 {
  padding: 3px;
}

page-market-place .f-12 {
  font-size: 12px !important;
}

page-market-place .search-cat {
  position: absolute;
  width: 100%;
  top: 0px;
  margin-bottom: 10px;
}

page-market-place .m-5 {
  margin: 10px 0px 0px 0px;
}

page-market-place .credit {
  color: #0067b1;
}

page-marketplace-add-offer .clear {
  clear: both;
}

page-marketplace-add-offer .disp-none {
  display: none;
}

page-marketplace-add-offer .label-img {
  width: 100%;
  text-align: center;
  min-height: 100px;
  padding: 25px 0px 12px 0px;
  border: 2px solid #eee;
  background: #eee;
  border-radius: 5px;
}

page-marketplace-add-offer .imageuploder-label {
  display: inline;
  font-size: 14px;
  text-transform: uppercase;
}

page-marketplace-add-offer .item-ios {
  padding: 0px !important;
}

page-marketplace-add-offer .main-input .text-input {
  font-size: 15px;
  width: 100%;
  border: 2px solid #ececec;
  padding: 10px 5px;
  border-radius: 5px;
  margin: 0px 0px 10px 0px;
}

page-marketplace-add-offer .main-input .text-input:focus, page-marketplace-add-offer .label-img:focus {
  border-color: #000;
}

page-marketplace-add-offer .main-input .text-input[placeholder] {
  font-weight: bold;
}

page-marketplace-add-offer .item-inner {
  border: 0px;
}

page-marketplace-add-offer .comman-btn {
  width: 47%;
  font-weight: bold;
}

page-marketplace-add-offer .save-btn {
  margin-right: 1.7% !important;
}

page-marketplace-add-offer .cancel-btn {
  margin-left: 1.7% !important;
  background: #eee !important;
  color: #000 !important;
}

page-marketplace-add-offer .m-t-10 {
  margin-top: 10px;
}

page-marketplace-add-offer .m-b-10 {
  margin-bottom: 10px;
}

page-marketplace-add-offer .staff-img.pos-rel {
  overflow-x: scroll;
  width: 100%;
  display: -webkit-inline-box;
}

page-marketplace-add-offer .overflowsection {
  white-space: nowrap;
  display: inline;
  width: 100px;
  height: 100px;
}

page-marketplace-add-offer img.one-img {
  display: inline;
  white-space: nowrap;
  width: 80px;
  height: 80px;
  margin: 0px 3px;
}

page-marketplace-add-offer .disp-block {
  display: block;
}

page-marketplace-add-offer .check-label {
  display: inline;
  font-size: 14px;
  text-transform: uppercase;
}

page-marketplace-add-offer .form-label {
  margin: 0px;
  text-transform: uppercase;
  font-size: 12px;
  margin-left: 3px !important;
}

page-marketplace-add-offer .half-display {
  float: left;
  width: 49%;
}

page-marketplace-add-offer .m-r-5 {
  margin-right: 5px;
}

.prompt_alert_policy .alert-wrapper {
  height: 80% !important;
  position: relative;
  max-width: initial;
  width: 90%;
}

.prompt_alert_policy .alert-button-group {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: #fff;
  padding-top: 10px;
}

.prompt_alert_policy .alert-message {
  top: 6%;
  bottom: -24px;
  position: absolute;
  max-height: initial;
}

.prompt_alert_policy .alert-head {
  background: #fff;
}

page-marketplacecategory {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

page-marketplacecategory .img {
  width: 100%;
  border: 1px solid #000;
}

page-marketplacecategory .views {
  font-size: 12px;
  color: dimgray;
}

page-marketplacecategory .bold {
  font-weight: bold;
}

page-marketplacecategory .price-off {
  color: #388e3c;
  font-size: 12px;
}

page-marketplacecategory .rating {
  background: #0067b1;
  padding: 2px 5px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

page-marketplacecategory .rating .rating-icon {
  font-size: 1rem;
}

page-marketplacecategory .f-10 {
  font-size: 10px;
}

page-marketplacecategory .trending-items div {
  display: block;
}

page-marketplacecategory .f-15 {
  font-size: 15px;
}

page-marketplacecategory .disp-block {
  display: block;
}

page-marketplacecategory .prdct-col {
  width: 50% !important;
  display: inline-block;
  border-bottom: 1px solid #eee;
  overflow: unset;
}

page-marketplacecategory .prdct-col:nth-of-type(odd) {
  border-right: 1px solid #eee;
}

page-marketplacecategory .f-12 {
  font-size: 12px !important;
}

page-marketplacecategory .p-0 {
  padding: 0px;
}

page-marketplacecategory .m-l-10 {
  margin-left: 10px;
}

page-marketplacecategory .m-0 {
  margin: 0px;
}

page-marketplacecategory .m-t-10 {
  margin-top: 10px !important;
}

page-marketplacecategory .m-b-10 {
  margin-bottom: 10px;
}

page-marketplacecategory .captalize {
  text-transform: capitalize;
}

page-marketplacecategory .padding-3 {
  padding: 3px;
}

page-marketplacecategory .box-icon {
  color: #fff;
  background-color: #0067b1;
  position: relative;
}

page-marketplacecategory .icon-title {
  position: absolute;
  background: #0067b1;
  padding: 2px 5px;
  z-index: 1;
  white-space: nowrap;
  right: 50px;
  top: 30%;
  border-radius: 3px;
  color: #fff;
  text-transform: capitalize;
}

page-marketplacecategory .relative {
  position: relative;
}

page-marketplacecategory .list-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
}

page-marketplacecategory .list-img img {
  height: 100%;
}

page-marketplacecategory .status {
  color: green;
  padding-left: 15px;
}

@keyframes animatedBar {
  0% {
    background-position: -406px 0;
  }
  100% {
    background-position: 0 0;
  }
}

page-marketplacecategory .fakeItem h2, page-marketplacecategory .fakeItem h3, page-marketplacecategory .fakeItem p {
  background-color: lightgrey;
  opacity: 0.5;
  height: 1em;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#dddddd), to(#EEEEEE));
  background: linear-gradient(to right, #dddddd, #EEEEEE);
  -webkit-animation: animatedBar 700ms linear infinite;
  animation: animatedBar 700ms linear infinite;
}

page-marketplacecategory .fakeItem h2:after, page-marketplacecategory .fakeItem h3:after, page-marketplacecategory .fakeItem p:after {
  position: absolute;
  display: block;
  content: '';
  right: 0;
  bottom: 0;
  top: 0;
  background-color: white;
}

page-marketplacecategory .fakeItem h2:after {
  width: 65%;
}

page-marketplacecategory .fakeItem h3:after {
  width: 10%;
}

page-marketplacecategory .fakeItem p:after {
  width: 40%;
}

page-marketplacereviewmodal .center {
  text-align: center;
}

page-marketplacereviewmodal .text-area-custom {
  padding: 15px;
  font-size: 15px;
  background: #f9f9f9;
  border-color: #eee;
}

page-marketplacereviewmodal .btn-background {
  background-color: #0067b1 !important;
}

page-marketplacereviewmodal .left {
  float: left !important;
  position: absolute;
}

page-marketplacereviewmodal .feedbak-center {
  text-align: center;
  display: block;
  margin-top: 10px;
}

page-marketplacereviewmodal .rating {
  background: #0067b1;
  padding: 2px 5px;
  color: #fff;
  font-weight: bold;
}

page-marketplacereviewmodal .m-t-5 {
  margin-top: 5px;
}

page-marketplacereviewmodal .m-b-5 {
  margin-bottom: 5px;
}

page-marketplacereviewmodal .bdr-bottom {
  border-bottom: 1px solid #eee;
}

page-marketplacereviewmodal .m-r-10 {
  margin-right: 10px;
}

page-marketplacereviewmodal .m-0 {
  margin: 0px;
}

page-marketplacereviewmodal .inline {
  display: inline;
}

page-marketplacereviewmodal .m-b-0 {
  margin-bottom: 0px;
}

page-marketplacereviewmodal .review-detail-person {
  font-size: 13px;
  font-weight: 600;
  color: #878787;
}

page-marketplacesearch .clear {
  clear: both;
}

page-marketplacesearch .p-5 {
  padding: 5px;
}

page-marketplacesearch .search-img {
  float: left;
  margin-right: 10px;
  width: 45px;
  height: 42px;
  padding: 4px;
}

page-marketplacesearch .info-sec p {
  margin: 0px;
}

page-marketplacesearch .info-sec small {
  float: left;
}

page-marketplacesearch .section {
  margin: 8px 0px;
}

page-marketplacesearch .bdr {
  border-bottom: 1px solid #eee;
}

page-marketplacesearch .searchbar-search-icon {
  display: none;
}

page-marketplacesearch .back {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 10px;
}

page-marketplacesearch .forward {
  position: absolute;
  right: 10px;
  bottom: 20px;
}

page-marketplacesearch .no-msg {
  text-align: center;
  text-transform: capitalize;
}

page-marketplacesearch .relative {
  position: relative;
}

page-members .content {
  background: whitesmoke;
}

page-members .member {
  text-align: center;
  border: 1px solid gainsboro;
  background-color: white;
  border-radius: 20px;
  padding-bottom: 20px;
}

page-members .member ion-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

page-members .member-img {
  width: 100px;
  height: 100px;
  border: 3px solid gainsboro;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-top: 20px;
}

page-members .member h3 {
  font-size: 15px;
  font-weight: bold;
  color: #0167b1;
  margin-bottom: 0;
}

page-members .member h2 {
  margin: 0px;
}

page-members .member-img img {
  height: 100%;
}

page-members .member .phone {
  color: #333333;
  font-size: 13px;
  margin-left: -10px;
  margin-top: 10px;
}

page-members .loader {
  margin: 10px;
  text-align: center;
}

page-members .loader img {
  width: 30px;
}

page-members .phone ion-icon {
  position: inherit;
}

page-meter ion-header ion-row {
  padding: 0 16px;
}

page-meter ion-header ion-row h3 {
  font-size: 17px;
  display: inline-block;
  margin-right: 3px;
}

page-meter .status__button {
  width: 49%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 3px;
  font-weight: bold;
  text-transform: capitalize;
}

page-meter .status__ON {
  color: #00BF6F;
}

page-meter .blink__ON {
  -webkit-animation: blinker 1s linear infinite;
  animation: blinker 1s linear infinite;
}

page-meter .status__OFF {
  color: #ff6161;
}

page-meter .status__head {
  margin: 2px;
  text-align: start;
}

page-meter .status__remarks {
  margin: 2px;
  font-size: 12px;
  color: #868686;
  text-align: left;
  white-space: normal;
}

page-meter .grid__charge {
  padding: 0px;
}

page-meter .refresh-btn {
  float: right;
  margin-right: 5px;
  font-size: 20px !important;
}

page-meter .meter-status {
  border-bottom: 1px solid lightgray;
  width: 100%;
}

page-meter .options {
  float: right;
  background-color: transparent !important;
  color: black !important;
}

page-meter .active {
  background-color: green;
}

page-meter .export {
  float: right;
  color: white;
  margin-right: 4px;
}

page-meter .status___image {
  width: 50px;
}

page-meter .img-box {
  border-radius: 50%;
}

page-meter .status__head__first__box {
  background: #eee;
  border-radius: 10px;
  text-align: center;
  padding: 5px;
}

page-meter .status__head__first__box h3,
page-meter .status__head__second__box h4 {
  margin: 0px;
  text-transform: capitalize;
}

page-meter .status__head__second__box {
  text-align: center;
  border-bottom: 1px solid #eee;
}

page-meter .refresh__float {
  margin: 0px;
  width: 100%;
  margin: 0px 5px;
  right: 0px;
  z-index: 1;
}

page-meter .margin__right__10 {
  margin-right: 10px;
}

page-meter .width__100 {
  width: 100%;
}

@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.status__alert__live__reading .list__box ion-item {
  text-transform: capitalize;
}

.status__alert__live__reading .list__value {
  margin-left: 10px;
  float: right;
}

.status__alert__live__reading .alert-message {
  max-height: 100%;
  padding: 0 15px 15px;
}

.status__alert__live__reading .alert-message h2 {
  font-size: 14px;
  color: #2d2d2d;
  font-family: sans-serif;
  text-transform: capitalize;
  /* background: #eee; */
  padding: 10px;
  border-radius: 10px;
  margin: 10px 0px;
  border-bottom: 1px solid #eee;
}

.status__alert__live__reading .alert-wrapper {
  max-height: 90%;
  min-width: 90%;
}

.status__alert__live__reading .list__right_col {
  width: 45%;
  display: inline-block;
  font-weight: bold;
}

page-meter-reading ion-content {
  text-align: center;
}

page-meter-reading .pagination {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

page-meter-reading .pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

page-meter-reading .pagination a.active {
  background-color: #0167b1;
  color: white;
}

page-meter-reading table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
}

page-meter-reading td, page-meter-reading th {
  border: 1px solid #eee;
  text-align: center;
  padding: 8px;
}

page-meter-reading tr:nth-child(even) {
  background-color: #eee;
}

page-meter-reading .center {
  text-align: center;
}

page-meter-reading .dr {
  color: red;
  font-size: 13px;
}

page-meter-reading .cr {
  font-size: 13px;
  color: green;
}

page-meter-reading .grid__charge {
  padding: 0px;
}

page-meter-reading .refresh-btn {
  float: right;
}

page-my-society ion-content {
  background-color: whitesmoke !important;
}

page-my-society .scroll-content {
  background-color: #fff !important;
}

page-my-society .top-menu {
  text-align: center;
}

page-my-society .top-menu ion-icon {
  color: #222222;
  font-size: 30px;
  display: inherit;
}

page-my-society .top-menu a {
  text-decoration: none;
  color: #222222;
}

page-my-society .top-menu ion-col {
  border: 1px solid gainsboro;
}

page-my-society .active {
  background-color: white !important;
}

page-my-society .active > ion-icon, page-my-society .active > a {
  color: #0167b1 !important;
}

page-my-society .notice-title {
  font-weight: bold;
  color: #222222;
  background-color: white;
  padding: 10px 0 10px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid gainsboro;
}

page-my-society .date {
  color: #0167b1;
  margin-bottom: 10px;
}

page-my-society ion-card {
  margin: 15px 0 !important;
  width: 100% !important;
  background-color: white !important;
}

page-my-society .attachment {
  height: 150px;
  border: 5px solid whitesmoke;
}

page-my-society .attachment img {
  height: 100%;
}

page-my-society .attachment a {
  position: absolute;
  color: #222222;
  font-size: 20px;
  background-color: whitesmoke;
  left: 9px;
  top: 9px;
  text-decoration: none;
}

page-my-society .member {
  text-align: center;
  border: 1px solid gainsboro;
  background-color: white;
  border-radius: 20px;
  height: 277px;
}

page-my-society .member-img {
  width: 100px;
  height: 100px;
  border: 3px solid gainsboro;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-top: 20px;
}

page-my-society .member h3 {
  font-size: 15px;
  font-weight: bold;
  color: #0167b1;
}

page-my-society .member-img img {
  height: 100%;
}

page-my-society .phone {
  white-space: normal;
  margin: 0px;
}

page-my-society .phone a {
  text-decoration: none;
  display: inline-block;
  width: 50%;
  white-space: nowrap;
  margin-bottom: 3px;
}

page-my-society .phone a::after {
  content: ",";
  margin-right: 5px;
  color: #aaa;
}

page-my-society .member h3 {
  margin: 0px;
}

page-my-society .member h2 {
  margin-top: 0px;
}

page-my-society .member__box h2 {
  text-transform: uppercase;
  font-weight: bold;
}

page-my-society .member__box img {
  float: left;
  width: 25%;
  border-radius: 10px;
  margin-right: 10px;
}

page-my-society .heading__label {
  padding: 0px 15px;
  color: #484848;
}

page-my-society ion-col.quick-links.col {
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 0px 10px 0px 10px;
  margin: 0px 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 15% !important;
  -webkit-align-content: unset;
  -ms-flex-line-pack: unset;
  align-content: unset;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #eee;
}

page-my-society .group p {
  font-size: 14px;
  line-height: 22px;
  padding: 1px 5px;
}

page-my-society .main__group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

page-my-society ion-col.quick-links.col.activeFilter {
  background: #0067b1 !important;
  border-color: #0067b1 !important;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff !important;
}

page-my-staff .list-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
}

page-my-staff .list-img img {
  height: 100%;
}

page-my-staff h2 {
  line-height: 25px;
}

page-my-staff h2 span {
  color: #444444;
  display: block;
}

@keyframes animatedBar {
  0% {
    background-position: -100px 0;
  }
  100% {
    background-position: 0 0;
  }
}

page-my-staff .fakeItem h2, page-my-staff .fakeItem h3, page-my-staff .fakeItem p {
  background-color: lightgrey;
  opacity: 0.5;
  height: 1em;
  margin-top: 5px;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#dddddd), to(#EEEEEE));
  background: linear-gradient(to right, #dddddd, #EEEEEE);
  -webkit-animation: animatedBar 2s linear infinite;
  animation: animatedBar 2s linear infinite;
}

page-my-staff .fakeItem h2:after, page-my-staff .fakeItem h3:after, page-my-staff .fakeItem p:after {
  position: absolute;
  display: block;
  content: '';
  right: 0;
  bottom: 0;
  top: 0;
  background-color: white;
}

page-my-staff .fakeItem h2:after {
  width: 65%;
}

page-my-staff .fakeItem h3:after {
  width: 40%;
}

page-my-staff .fakeItem p:after {
  width: 40%;
}

page-my-staff .staff-category {
  text-align: right;
  text-transform: inherit;
}

page-my-staff .rating ion-icon {
  font-size: 15px;
  margin: 0 -2px;
}

page-my-staff .stars {
  font-size: 15px;
}

page-my-staff .rating a {
  font-size: 15px;
  float: right;
}

page-my-staff .present-label {
  text-align: center;
  background-color: #00bb00;
  width: 100%;
  padding: 3px;
  margin: 0;
  color: white;
  font-weight: bolder;
  text-transform: capitalize;
}

page-my-staff .absent-label {
  text-align: center;
  background-color: #fd7575;
  width: 100%;
  padding: 3px;
  margin: 0;
  color: white;
  font-weight: bolder;
  text-transform: capitalize;
}

page-my-staff .list-header {
  margin-bottom: 0;
  min-height: 0;
  font-weight: normal;
}

page-my-staff .list-header .label {
  margin-bottom: 0;
}

page-my-vehicle .title {
  font-size: 10px;
  color: #0167b1;
}

page-my-vehicle .margin1 {
  margin: 5px;
}

page-my-vehicle h2:after {
  width: 65%;
}

page-my-vehicle h3:after {
  width: 40%;
}

page-my-vehicle p:after {
  width: 40%;
}

page-my-vehicle .lock-icon {
  width: 15px;
}

page-my-vehicle .list-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
}

page-my-vehicle .list-img img {
  height: 100%;
}

page-my-vehicle .car {
  color: #0167b1;
  font-size: 35px;
  border-radius: 50%;
  border: 5px solid ghostwhite;
}

page-my-vehicle .pending {
  float: right;
  height: auto;
  font-weight: bolder;
  color: whitesmoke;
  background-color: darkorange;
}

page-my-vehicle .label-md {
  margin: 3px 0px 5px 0px;
}

page-notice-details .card {
  background-color: white !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

page-notice-details ion-card-title {
  font-weight: bold;
}

page-notice-details .date {
  color: #0167b1;
  margin-bottom: 10px;
}

page-notice-details ion-card {
  margin: 0px !important;
  width: 100% !important;
}

page-notice-details .attachment {
  height: 150px;
  border: 5px solid white;
}

page-notice-details .attachment img {
  height: 100%;
}

page-notice-details .attachment a {
  position: absolute;
  color: black;
  font-size: 20px;
  background-color: white;
  left: 9px;
  top: 9px;
}

page-notice-details .notice-videos {
  margin: 10px;
  text-align: center;
}

page-notice-details .notice-videos video {
  width: 100%;
}

page-notices .list-img {
  height: 50px;
  width: 50px;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  float: left;
}

page-notices .list-img img {
  height: 100%;
  border: 1px solid lightgrey;
  border-radius: 5px;
}

page-notices .subject {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 90px);
  float: left;
  margin-bottom: 5px;
}

page-notices .subject h2 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #444444;
}

page-notices .unread {
  position: absolute;
  right: 19px;
  top: 15px;
  background-color: green;
}

page-notices .unread1 .subject h2 {
  color: black;
}

page-notices ion-item {
  background-color: white !important;
}

page-notices .notice {
  margin-top: 10px;
}

page-notices .date-indicator {
  position: absolute;
  top: 38px;
  width: 50px;
  font-weight: bolder;
}

page-notices .month-indicator {
  position: absolute;
  top: 14px;
  width: 50px;
  font-size: 14px;
  color: white;
  font-weight: bolder;
}

page-notices .attachment {
  position: absolute;
  right: 10px;
  top: 35px;
}

page-notifications ion-content {
  background-color: ghostwhite !important;
}

page-notifications .loader {
  text-align: center;
}

page-notifications .loader img {
  width: 30px;
}

page-notifications .card {
  margin: 0px 0px 10px 0px;
  width: calc(100%);
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: white;
}

page-notifications ion-card-subtitle {
  color: gray;
  font-weight: bold;
}

page-notifications .demoOnly {
  padding: 5px;
  background: #ff6161;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}

page-open-complaints #complaint-name-type {
  margin-left: 5px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
}

page-open-complaints #des {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 75px;
  padding: 0;
}

page-open-complaints .list-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  float: left;
}

page-open-complaints .list-img img {
  height: 100%;
}

page-open-complaints .otp {
  font-weight: bold;
}

page-open-complaints .otp span {
  color: green;
}

page-otp-login .scroll-content ion-col {
  white-space: normal;
}

page-otp-login .scroll-content ion-grid {
  height: 100%;
  padding: 0 !important;
}

page-otp-login .scroll-content ion-grid ion-row {
  height: 100%;
}

page-otp-login .scroll-content ion-grid ion-row img {
  max-width: 72px;
  max-height: 72px;
  display: block;
  border-radius: 8px;
}

page-otp-login .scroll-content ion-grid ion-row [login-title] {
  color: #0167b1;
  margin-right: 35% !important;
}

page-otp-login .scroll-content ion-grid ion-row [login-subtitle] {
  color: #30384c;
}

page-otp-login .scroll-content ion-grid ion-row form ion-item {
  padding-left: 0 !important;
  padding-bottom: 15px !important;
}

page-otp-login .scroll-content ion-grid ion-row form ion-item [error-field] {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 5px !important;
  font-size: 12px;
}

page-otp-login .scroll-content ion-grid ion-row form ion-item .item-inner {
  border-bottom: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-right: 0 !important;
}

page-otp-login .scroll-content ion-grid ion-row form ion-item input, page-otp-login .scroll-content ion-grid ion-row form ion-item ion-select {
  border: 1px solid #0167b1;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
  margin: 10px 10px !important;
  padding: 10px 10px !important;
  width: calc(100% - 20px);
  border-radius: 5px;
  z-index: 999;
}

page-otp-login .scroll-content ion-grid ion-row form ion-item input .input-cover, page-otp-login .scroll-content ion-grid ion-row form ion-item ion-select .input-cover {
  display: none;
}

page-otp-login .scroll-content ion-grid ion-row form ion-item ion-label {
  margin: 0 5px !important;
}

page-otp-login .scroll-content ion-grid ion-row form p {
  color: red;
  text-align: center;
  font-size: 13px;
  margin-top: 0;
}

page-otp-login .scroll-content ion-grid ion-row form [stacked] {
  font-size: 10px !important;
}

page-otp-login .scroll-content ion-grid ion-row form [description] {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

page-otp-login .scroll-content ion-grid ion-row form [description] a {
  color: #0167b1 !important;
}

page-otp-login .scroll-content ion-grid ion-row form [description] p {
  color: #30384c !important;
}

page-otp-login .scroll-content ion-grid ion-row form [default-button] {
  margin: 80px 0 10px;
}

page-otp-login .scroll-content ion-grid ion-row form [login-button] {
  color: #30384c !important;
  background: white !important;
  margin: 0;
}

page-otp-login .scroll-content .powered-by {
  text-align: center;
  color: #444444;
  font-size: 13px;
  border-top: 1px solid #4444;
}

ion-modal.popup {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

ion-modal.popup .toolbar-ios ion-title {
  padding: 0;
}

@media (min-height: 500px) {
  ion-modal.popup ion-backdrop {
    visibility: visible;
  }
}

ion-modal.popup .modal-wrapper {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 300px;
  max-height: 90%;
  opacity: 0;
  height: 480px !important;
  max-width: 280px;
  border-radius: 2px;
  background-color: white;
  -webkit-box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
}

ion-modal.popup .modal-wrapper,
ion-modal.popup .modal-wrapper .ion-page,
ion-modal.popup .modal-wrapper .ion-page .content,
ion-modal.popup .modal-wrapper .ion-page .content .scroll-content {
  contain: content;
  position: relative;
  top: auto;
  left: auto;
  border-radius: 10px;
}

page-panic {
  padding: 20px;
}

page-panic .scroll-content {
  height: 380px !important;
}

page-panic p {
  text-align: center;
  font-size: 12px;
  margin: 0;
}

page-panic p b {
  font-size: 15px;
}

page-panic ion-row ion-icon {
  font-size: 30px;
  color: red;
}

page-panic ion-row ion-col {
  text-align: center;
}

page-panic .panic-button {
  color: black !important;
  background-color: ghostwhite !important;
  margin-bottom: 10px;
}

page-panic .contact-button {
  background-color: #f64f4f;
}

page-panic .load {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

page-panic h2 {
  font-size: 15px;
  padding: 0px 10px;
}

page-panic ion-input, page-panic textarea {
  background-color: ghostwhite;
  width: 100%;
}

page-panic ion-label {
  display: inline-block;
  margin: 20px 0 0 5px !important;
}

page-panic .contacts a, page-panic h5 {
  margin: 5px;
}

page-panic .contacts h5 {
  color: #444444;
}

page-panic .contacts a {
  font-weight: bold;
  text-decoration: none;
}

page-panic .contacts {
  border-top: 1px solid ghostwhite;
}

page-panic .toolbar-background {
  background: #fd7575;
}

page-pass {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

page-pass .list-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
}

page-pass .col {
  padding: 0;
}

page-pass .list-img img {
  height: 100%;
}

page-pass .edit {
  color: green;
  font-size: 15px;
}

@keyframes animatedBar {
  0% {
    background-position: -406px 0;
  }
  100% {
    background-position: 0 0;
  }
}

page-pass .fakeItem h2, page-pass .fakeItem h3, page-pass .fakeItem p {
  background-color: lightgrey;
  opacity: 0.5;
  height: 1em;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#dddddd), to(#EEEEEE));
  background: linear-gradient(to right, #dddddd, #EEEEEE);
  -webkit-animation: animatedBar 700ms linear infinite;
  animation: animatedBar 700ms linear infinite;
}

page-pass .fakeItem h2:after, page-pass .fakeItem h3:after, page-pass .fakeItem p:after {
  position: absolute;
  display: block;
  content: '';
  right: 0;
  bottom: 0;
  top: 0;
  background-color: white;
}

page-pass .fakeItem h2:after {
  width: 65%;
}

page-pass .fakeItem h3:after {
  width: 10%;
}

page-pass .fakeItem p:after {
  width: 40%;
}

page-pass .demoOnly {
  padding: 5px;
  background: #ff6161;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}

page-pass .font__20 {
  font-size: 20px;
}

page-pass .margin__right__10 {
  margin-right: 10px;
}

page-pass-detail .pass-icon {
  text-align: center;
  padding: 10px;
}

page-pass-detail .pass-icon div {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-pass-detail .pass-header {
  padding: 10px;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  background-color: #0167b1;
}

page-pass-detail ion-row {
  margin: 10px 0;
}

page-pass-detail .pass {
  background-color: white;
  border: 1px solid #0167b1;
  margin: 5px;
}

page-pass-detail .pass p {
  text-align: center;
  background-color: ghostwhite;
  margin: 0;
  padding: 10px;
}

page-pass-detail .pass-number {
  text-align: center;
  background-color: ghostwhite;
  padding: 10px;
}

page-pass-detail .pass-number ion-col {
  padding: 0;
}

page-pass-detail .pass-content {
  padding: 0 16px 10px 16px;
}

page-pass-detail .large-font {
  font-size: 30px;
}

page-pass-detail .medium-font {
  font-size: 20px;
}

page-pass-detail .label {
  margin: 0;
}

page-pass-detail hr {
  margin: 0;
}

page-pass-detail .text__uppercase {
  text-transform: uppercase;
}

page-pass-purpose .purposes {
  text-align: center;
}

page-pass-purpose .purposes ion-icon {
  border-radius: 50%;
  margin-bottom: 5px;
  color: white;
  display: block;
  font-size: 3em;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#0167b1), to(deepskyblue));
  background-image: linear-gradient(to bottom right, #0167b1, deepskyblue);
}

page-pass-purpose .purposes .name {
  padding-bottom: 10px;
}

page-pass-purpose ion-row {
  margin: 20px 10px;
}

page-pass-purpose .col {
  padding: 10px;
}

page-pass-purpose .bar-button {
  color: black !important;
}

page-pass-purpose .toolbar-background {
  background-color: white !important;
}

page-pass-purpose .toolbar .toolbar-title {
  color: black !important;
}

page-pass-purpose .toolbar {
  border-bottom: 1px solid lightgray;
}

page-payment-detail .note1 {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  border: 1px solid;
}

page-payment-detail ion-list-header {
  color: #0167b1 !important;
  margin: 0 !important;
}

page-payment-detail .note2 {
  padding: 10px;
  font-size: 10px;
  text-align: center;
}

page-payment-detail ion-label {
  white-space: inherit;
}

page-payment-detail ion-note {
  max-width: 50%;
}

page-payment-list .list-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0;
  border: 5px solid ghostwhite;
  float: left;
}

page-payment-list .list-img img {
  height: 100%;
}

page-payment-list ion-col span {
  float: right;
}

page-payment-list .col {
  padding: 0;
  padding-left: 5px;
}

page-popover ion-list {
  margin: 5px 0px !important;
}

page-profile ion-avatar img {
  width: 120px !important;
  height: 120px !important;
  margin: 15px auto 20px;
  margin-bottom: 0px;
  border: 2px solid white;
}

page-profile ion-avatar button {
  height: 2rem !important;
}

page-profile .loader {
  width: 120px !important;
  height: 120px !important;
  margin: 15px auto 20px;
  margin-bottom: 0px;
  border: 2px solid white;
  border-radius: 50%;
}

page-profile .loader img {
  margin: auto;
  border: none;
  width: 30px !important;
  height: 30px !important;
  margin-top: 45px;
}

page-profile ion-card {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

page-profile ion-row ion-col .button-inner {
  display: block;
}

page-profile [small-font] {
  clear: both;
  display: block;
}

page-profile ion-item {
  border-radius: 4px;
}

page-profile .noMargin {
  margin: 0;
  width: 100%;
}

page-profile ion-icon {
  color: #0167b1;
}

page-profile ion-navbar ion-icon {
  color: white;
}

page-profile .logout-button {
  width: 100%;
  font-size: 16px !important;
  background-color: #fd7575 !important;
  color: white !important;
  padding: 10px !important;
}

page-profile .switch-button {
  width: 100%;
  font-size: 16px !important;
  background-color: #00BF6F !important;
  color: white !important;
  padding: 10px !important;
}

page-profile .designation {
  font-size: 15px;
}

page-profile input[type="file"] {
  display: none;
}

page-profile .custom-file-upload {
  border: none;
  color: #0167b1;
}

page-profile .refer__btn {
  background: -webkit-gradient(linear, left bottom, left top, from(#0167b1), to(#218bd8)) !important;
  background: linear-gradient(to top, #0167b1, #218bd8) !important;
  color: #fff !important;
}

page-profile .refer__btn .refer__icon {
  color: #fff !important;
}

page-profile .switch__account__button {
  font-size: 14px !important;
}

page-profile .switch__account__heading {
  margin: 20px 0px 10px 15px;
  font-size: 20px;
}

ion-modal.stack-modal {
  --box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4);
  --backdrop-opacity: var(--ion-backdrop-opacity, 0.32);
}

page-referral .refer__info__box {
  padding: 10px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 10px -3px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 10px -3px;
  border-radius: 10px;
}

page-referral .refer__info__box .refer__info__img {
  float: left;
  width: 50px;
  height: 50px;
}

page-referral .refer__info__box .refer__info__p {
  white-space: break-spaces;
  text-align: justify;
  font-size: 13px !important;
  margin-left: 70px;
  word-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 0px;
}

page-referral .refer__code__info {
  text-align: center;
}

page-referral .refer__code__info .refer__code__p {
  font-weight: bold;
  color: #545454;
  margin: 0px;
}

page-referral .refer__code__info .refer__code__box {
  display: inline-block;
  padding: 7px 20px;
  background: #d6e4f1;
  border-radius: 3px;
  font-size: 16px;
  border: 2px dashed #12b6f5;
}

page-referral .refer__code__info .refer__bw__box .refer__ion__item .item-inner {
  border: 0 !important;
  padding: 0px !important;
}

page-referral .refer__code__info .refer__bw__box .refer__input__text {
  background: #eee;
  /* padding: 10px; */
  border-radius: 3px;
  border: 1px solid #b9b7b7;
  font-size: 20px;
}

page-referral .refer__code__info .refer__bw__box .refer__bw__link {
  width: 50%;
  margin: 0px 50px 0px 0px;
  font-size: 16px;
  color: #0067b3;
  font-weight: bold;
  text-decoration: none;
}

page-referral .refer__code__info .refer__code__btn {
  background: -webkit-gradient(linear, left bottom, left top, from(#0167b1), to(#218bd8));
  background: linear-gradient(to top, #0167b1, #218bd8);
}

page-referral .terms__condition__box {
  text-align: center;
  bottom: 0px;
  right: 0px;
  left: 0px;
  padding: 5px;
  background: #fff;
}

page-referral .terms__condition__box p {
  margin: 0px;
}

page-referral .terms__condition__box p a {
  text-decoration: none;
  font-weight: bold;
  color: #0168b3;
}

page-referral .loader {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  top: 0px;
  right: 0px;
  left: 0px;
  margin: 0;
  border: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* margin: 0 auto; */
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  z-index: 1;
}

page-referral .float__right {
  float: right;
}

.history__img {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 15px;
}

.visible__none {
  opacity: 0;
}

.history__name {
  display: inline-block;
}

.history__date {
  float: right;
}

.referal__image {
  height: 20vh;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.history__phone {
  display: inline-block;
}

.send__again__btn {
  float: right;
  padding: 7px 5px;
  border-radius: 3px;
}

.clear {
  clear: both;
}

.refer__history__btn {
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
}

page-resident-id-card ion-avatar img {
  right: 0px;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  z-index: 111;
  left: 0px;
  margin: 5% auto 0% auto;
}

page-resident-id-card ion-avatar .qr-gen {
  display: block;
  width: 70%;
  border-radius: 3px;
  padding: 10px;
  background: #fff;
  text-align: center;
  margin: 0 auto;
}

page-resident-id-card ion-avatar .qr-gen img {
  width: 100% !important;
  height: auto !important;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid #eee;
  border-radius: 3px !important;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: -15%;
}

page-resident-id-card ion-avatar button {
  height: 2rem !important;
}

page-resident-id-card .padding {
  padding: 3px !important;
}

page-resident-id-card .item .item-inner, page-resident-id-card .item .item-inner .input-wrapper .label.label-md, page-resident-id-card .label-ios {
  padding: 0px !important;
  margin: 0px !important;
}

@media print {
  page-resident-id-card .no-print {
    display: none !important;
  }
}

page-resident-id-card .iconright {
  text-align: right;
}

page-resident-id-card .center {
  text-align: center;
}

page-resident-id-card .text-primary {
  color: #10108d;
}

page-resident-id-card .loader {
  width: 120px !important;
  height: 120px !important;
  margin: 15px auto 20px;
  margin-bottom: 0px;
  border: 2px solid white;
  border-radius: 50%;
}

page-resident-id-card .loader img {
  margin: auto;
  border: none;
  width: 30px !important;
  height: 30px !important;
  margin-top: 45px;
}

page-resident-id-card ion-card {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

page-resident-id-card ion-row ion-col .button-inner {
  display: block;
}

page-resident-id-card [small-font] {
  clear: both;
  display: block;
}

page-resident-id-card ion-item {
  border-radius: 4px;
}

page-resident-id-card .noMargin {
  margin: 0;
  width: 100%;
}

page-resident-id-card .resize-img {
  max-width: 50px;
  max-height: 50px;
  margin-top: -8px;
}

page-resident-id-card ion-icon {
  color: #0167b1;
}

page-resident-id-card ion-navbar ion-icon {
  color: white;
}

page-resident-id-card input[type="file"] {
  display: none;
}

page-resident-id-card .custom-file-upload {
  border: none;
  color: #0167b1;
}

page-search-staff .list-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
}

page-search-staff .list-img img {
  height: 100%;
}

page-search-staff h2 {
  line-height: 25px;
}

page-search-staff h2 span {
  color: #444444;
  display: block;
}

page-search-staff div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
  text-align: center;
}

page-search-staff div.scrollmenu a {
  display: inline-block;
  color: #0167b1;
  padding: 14px;
  background-color: ghostwhite;
  text-decoration: none;
  margin: 0 3px;
  border-radius: 5px;
}

page-search-staff div.scrollmenu a:hover {
  background-color: #0167b1;
  color: white;
}

page-search-staff div.scrollmenu .active {
  background-color: #0167b1;
  color: white;
}

page-search-staff ion-col {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

page-search-staff .rating ion-icon {
  font-size: 15px;
  margin: 0 -2px;
}

page-search-staff .stars {
  font-size: 15px;
}

page-search-staff .rating a {
  font-size: 15px;
  float: right;
}

page-selection-modal ion-col {
  text-align: center;
}

page-selection-modal .item-icon {
  text-align: center;
  display: block;
  height: 50px;
  width: 50px;
  margin: auto;
  overflow: hidden;
  border: 1px solid lightgray;
  border-radius: 10px;
}

page-selection-modal .item-icon img {
  max-width: 100%;
  max-height: 100%;
}

page-selection-modal .item-name {
  height: 33px;
  display: block;
  margin-top: 5px;
  color: #444444;
}

page-send-password .scroll-content ion-col {
  white-space: normal;
}

page-send-password .scroll-content ion-grid {
  height: 100%;
  padding: 0 !important;
}

page-send-password .scroll-content ion-grid ion-row {
  height: 100%;
}

page-send-password .scroll-content ion-grid ion-row img {
  max-width: 72px;
  max-height: 72px;
  display: block;
  border-radius: 8px;
}

page-send-password .scroll-content ion-grid ion-row [login-title] {
  color: #0167b1;
  margin-right: 35% !important;
}

page-send-password .scroll-content ion-grid ion-row [login-subtitle] {
  color: #30384c;
}

page-send-password .scroll-content ion-grid ion-row form ion-item {
  padding-left: 0 !important;
  padding-bottom: 15px !important;
}

page-send-password .scroll-content ion-grid ion-row form ion-item [error-field] {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 5px !important;
  font-size: 12px;
}

page-send-password .scroll-content ion-grid ion-row form ion-item .item-inner {
  border-bottom: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-right: 0 !important;
}

page-send-password .scroll-content ion-grid ion-row form ion-item ion-input, page-send-password .scroll-content ion-grid ion-row form ion-item ion-select {
  background: white !important;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
  margin: 10px 10px !important;
  padding: 10px 10px !important;
  width: calc(100% - 20px);
  border-radius: 5px;
  z-index: 999;
}

page-send-password .scroll-content ion-grid ion-row form ion-item ion-input .input-cover, page-send-password .scroll-content ion-grid ion-row form ion-item ion-select .input-cover {
  display: none;
}

page-send-password .scroll-content ion-grid ion-row form ion-item ion-label {
  margin: 0 5px !important;
}

page-send-password .scroll-content ion-grid ion-row form p {
  color: red;
  text-align: center;
  font-size: 13px;
  margin-top: 0;
}

page-send-password .scroll-content ion-grid ion-row form [stacked] {
  font-size: 10px !important;
}

page-send-password .scroll-content ion-grid ion-row form [description] {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

page-send-password .scroll-content ion-grid ion-row form [description] a {
  color: #0167b1 !important;
}

page-send-password .scroll-content ion-grid ion-row form [description] p {
  color: #30384c !important;
}

page-send-password .scroll-content ion-grid ion-row form [default-button] {
  margin: 80px 0 10px;
}

page-send-password .scroll-content ion-grid ion-row form [login-button] {
  color: #30384c !important;
  background: white !important;
  margin: 0;
}

page-settings ion-item-group {
  margin-top: 5px;
}

page-settings .item-input .label-md {
  color: black !important;
}

page-settings .ivr-title {
  position: relative;
  top: 8px;
}

page-settings .note {
  text-align: center;
  padding: 0 16px;
  color: #444444;
}

page-settings .note1 {
  font-size: 11px;
  text-align: center;
  color: #444444;
}

page-share-pass .pass-icon {
  text-align: center;
  padding: 10px;
}

page-share-pass .pass-icon div {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-share-pass .pass-header {
  padding: 10px;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  background-color: #0167b1;
}

page-share-pass .pass-footer {
  padding: 5px;
  text-align: center;
  color: white;
  background-color: #0167b1;
}

page-share-pass ion-row {
  margin: 10px 0;
}

page-share-pass .pass {
  background-color: white;
  margin: 5px;
}

page-share-pass .pass p {
  text-align: center;
  background-color: ghostwhite;
  margin: 0;
  padding: 10px;
}

page-share-pass .pass-number {
  text-align: center;
  background-color: ghostwhite;
  padding: 10px;
}

page-share-pass .pass-number ion-col {
  padding: 0;
}

page-share-pass .pass-content {
  padding: 0 16px 10px 16px;
}

page-share-pass .large-font {
  font-size: 30px;
}

page-share-pass .medium-font {
  font-size: 20px;
}

page-share-pass .label {
  margin: 0;
}

page-share-pass hr {
  margin: 0;
}

page-sign-up-form .ion-item-cl {
  padding: 0px 15px;
  border: 2px solid #eee;
  margin: 8px 0px;
}

page-sign-up-form .ion-item-cl .item-inner {
  border: 0px !important;
}

page-sign-up-form .center {
  text-align: center;
}

page-sign-up-form ::-webkit-input-placeholder {
  font-weight: bold !important;
}

page-sign-up-form ::-moz-placeholder {
  font-weight: bold !important;
}

page-sign-up-form ::-ms-input-placeholder {
  font-weight: bold !important;
}

page-sign-up-form ::placeholder {
  font-weight: bold !important;
}

page-sign-up-form input {
  font-size: 15px !important;
}

page-sign-up-form .submit-btn {
  text-align: center;
  margin: 0 auto;
  width: 50%;
}

page-sign-up-form .scroll-item-list {
  position: absolute;
  z-index: 1;
  overflow: scroll;
  width: 100%;
  height: 100vh;
}

page-sign-up-form .scroll-item-list-second {
  width: 90% !important;
  background: #8c8c8c6b !important;
}

page-sign-up-form .list-p-cl {
  color: #000;
}

page-sign-up-form .list-small-cl {
  color: #8e9093;
}

page-sign-up-form .imageuploder-label,
page-sign-up-form .item-input .label-ios,
page-sign-up-form .item-select .label-ios,
page-sign-up-form .item-datetime .label-ios {
  color: #838894 !important;
  font-weight: bold;
}

page-sign-up-form .signup-list-true {
  display: inline-block !important;
  background: #4bbe4a;
  padding: 5px;
  display: block;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

page-sign-up-form .signup-list-false {
  display: inline-block !important;
  background: #ff6161;
  padding: 5px;
  display: block;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

page-sign-up-form .unvalidSociety {
  background: #ff6161;
  padding: 5px;
  display: block;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

page-sign-up-form .society-select-placeholder {
  width: 100%;
  max-width: 100% !important;
}

page-sign-up-form .select-placeholder {
  color: #30384c !important;
}

page-sign-up-form .p-0 {
  padding: 0px !important;
}

page-sign-up-form .typeFile {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 11;
}

page-sign-up-form .custom-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

page-sign-up-form .my-custom-class .action-sheet-group > button {
  text-align: left !important;
  direction: ltr !important;
}

page-sign-up-form .ion-spinner {
  height: 100%;
}

page-sign-up-number .custom-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

page-sign-up-number .ion-spinner {
  height: 100%;
}

page-sign-up-number .ion-item-cl {
  padding: 0px 15px;
  border: 2px solid #eee;
  margin-bottom: 15px;
}

page-sign-up-number .ion-item-cl .item-inner {
  border: 0px !important;
}

page-sign-up-number .center {
  text-align: center;
}

page-sign-up-number ::-webkit-input-placeholder {
  font-weight: bold !important;
}

page-sign-up-number ::-moz-placeholder {
  font-weight: bold !important;
}

page-sign-up-number ::-ms-input-placeholder {
  font-weight: bold !important;
}

page-sign-up-number ::placeholder {
  font-weight: bold !important;
}

page-sign-up-number input {
  font-size: 15px !important;
}

page-sign-up-number .submit-btn {
  text-align: center;
  margin: 0 auto;
  width: 50%;
}

page-sign-up-number .background-image-sign-up {
  background: #0067b1;
  height: 100%;
}

page-sign-up-number .formal-detail {
  height: 25%;
  color: #fff;
}

page-sign-up-number .informal-detail {
  border-radius: 0px 25px 0px 0px;
  background: #fff;
  height: 75%;
}

page-sign-up-number .padding-top-10 {
  padding-top: 15% !important;
}

page-sign-up-number .margin-0 {
  margin: 0px !important;
}

page-sign-up-number .informal-footer p span {
  color: #0067b1;
  font-weight: bold;
  font-size: 15px;
}

page-sign-up-number .submit-btn {
  padding: 2.5rem;
}

page-sign-up-otp .custom-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

page-sign-up-otp .ion-spinner {
  height: 100%;
}

page-sign-up-otp .ion-item-cl {
  padding: 0px 15px;
  border: 2px solid #eee;
  margin-bottom: 15px;
}

page-sign-up-otp .ion-item-cl .item-inner {
  border: 0px !important;
}

page-sign-up-otp .center {
  text-align: center;
}

page-sign-up-otp ::-webkit-input-placeholder {
  font-weight: bold !important;
}

page-sign-up-otp ::-moz-placeholder {
  font-weight: bold !important;
}

page-sign-up-otp ::-ms-input-placeholder {
  font-weight: bold !important;
}

page-sign-up-otp ::placeholder {
  font-weight: bold !important;
}

page-sign-up-otp input {
  font-size: 15px !important;
}

page-sign-up-otp .submit-btn {
  text-align: center;
  margin: 0 auto;
  width: 50%;
}

page-sign-up-otp .red {
  color: red;
}

page-single-market-place #single-page-slide .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0px;
}

page-single-market-place .space-bdr {
  border: 1px solid #a7a7a7;
  width: 95%;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

page-single-market-place .f-24 {
  font-size: 24px;
}

page-single-market-place .price-off {
  color: #388e3c;
  font-size: 15px;
}

page-single-market-place .p-10 {
  padding: 10px;
}

page-single-market-place .f-16 {
  font-size: 16px;
}

page-single-market-place .f-18 {
  font-size: 18px;
}

page-single-market-place .views {
  font-size: 12px;
  color: dimgray;
}

page-single-market-place .rating {
  background: #0067b1;
  padding: 2px 5px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

page-single-market-place .rating .rating-icon {
  font-size: 1rem;
}

page-single-market-place .f-10 {
  font-size: 10px;
}

page-single-market-place .disp-block {
  display: block;
}

page-single-market-place .m-b-10 {
  margin-bottom: 10px;
}

page-single-market-place .message-textarea {
  border-radius: 25px;
  background: #eee;
  padding: 10px;
}

page-single-market-place .message-pass .item-inner {
  border: none !important;
}

page-single-market-place .message-pass .message-textarea textarea.text-input {
  display: block;
  padding: 0px 10px;
  margin: 0px;
  font-size: 15px;
  resize: none;
  width: 100%;
}

page-single-market-place .form-btn {
  position: absolute;
  width: 20%;
  display: inline-block;
}

page-single-market-place .message-pass .item.item-textarea {
  display: inline-block;
  padding: 0px;
}

page-single-market-place .message-pass {
  margin: 10px;
  padding: 10px;
  -webkit-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.11);
}

page-single-market-place .form-width {
  width: 110%;
}

page-single-market-place .m-t-0 {
  margin-top: 0px;
}

page-single-market-place .p-t-0 {
  padding-top: 0px;
}

page-single-market-place .clr-44 {
  color: #2c2c2c;
}

page-single-market-place .single-p {
  color: #3c3c3c;
  font-weight: bold;
}

page-single-market-place .single-span {
  font-weight: 400;
  color: #000;
}

page-single-market-place .center {
  text-align: center;
}

page-single-market-place .input-field-one {
  border: 1px solid #eee;
  padding: 6px;
  width: 150% !important;
  margin-left: 10px;
  background: #eee;
  margin-top: 0px;
}

page-single-market-place .input-field-one .text-input.text-input-ios {
  margin: 0px !important;
}

page-single-market-place .m-l-10 {
  margin-left: 10px;
}

page-single-market-place .forward {
  position: absolute;
  right: 20px;
  margin-top: 15px;
}

page-single-market-place .description {
  text-align: justify;
  font-size: 14px;
}

page-single-market-place .message-pass.red {
  border: 1px solid red;
  background: rgba(255, 0, 0, 0.15);
}

page-single-market-place .button-background {
  background-image: linear-gradient(-45deg, #0067b1 25%, #3497ff 100%);
}

page-smart-lock .card .item + .card-content {
  padding: 13px 16px;
}

page-smart-lock .card {
  margin-bottom: 10px;
}

page-smart-lock ion-card > .item > div.item-inner > .button {
  padding: 0;
  font-size: 20px;
}

page-smart-lock ion-card-content b {
  color: black;
}

page-smart-lock .lock-icon {
  width: 110px;
  height: 110px;
}

page-smart-lock .img-center {
  text-align: center;
  display: block;
  margin: 0;
}

page-smart-lock .show-all {
  position: absolute;
  right: 12px;
  color: #0167b1;
}

page-staff-detail .stars {
  font-size: 16px;
}

page-staff-detail .stars ion-icon {
  margin: 0 -3px;
}

page-staff-detail .staff-img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-staff-detail .staff-img img {
  height: 100%;
}

page-staff-detail .staff-details {
  text-align: center;
  padding: 20px 10px;
  background-color: white;
}

page-staff-detail .staff-details ion-row {
  text-align: center;
}

page-staff-detail .staff-details ion-row ion-col {
  text-align: center;
}

page-staff-detail .staff-details ion-row ion-col span {
  color: #0167b1;
  font-weight: bold;
}

page-staff-detail .staff-details h3 {
  font-weight: normal !important;
  margin: 0;
  margin-bottom: 15px;
}

page-staff-detail .staff-details h2 {
  margin-bottom: 0px;
}

page-staff-detail .tab-detail ion-col {
  color: #444444;
}

page-staff-detail .tab-detail {
  border-top: 2px solid ghostwhite;
  border-bottom: 2px solid ghostwhite;
  padding: 10px 0;
}

page-staff-detail .staff-options ion-button {
  color: white;
}

page-staff-detail .staff-options {
  margin-top: 15px;
}

page-staff-detail .staff-options .button span {
  font-size: 15px;
}

page-staff-detail .staff-options .white span {
  color: white;
}

page-staff-detail .notification-btn {
  background-color: white;
}

page-staff-detail .staff-options ion-col {
  border: 1px solid white;
  padding: 0;
}

page-staff-detail .my-review {
  font-size: 15px;
  text-align: right;
}

page-staff-detail form ion-textarea {
  border: 2px solid ghostwhite;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

page-staff-detail .rate-staff {
  border-bottom: 2px solid ghostwhite;
  padding-bottom: 20px;
}

page-staff-detail .rate-staff ion-row {
  text-align: center;
}

page-staff-detail .rate-staff h3 {
  font-size: 17px;
  margin-bottom: 0;
}

page-staff-detail .rate-staff .star ion-icon {
  font-size: 25px;
}

page-staff-detail .rate-staff textarea {
  padding-left: 20px;
}

page-staff-detail .rate-staff button {
  float: right;
  margin-right: 10px;
}

page-staff-detail .rate-staff textarea {
  background-color: ghostwhite;
  margin-top: 10px;
  height: 100px;
  border: none;
}

page-staff-detail [item-subtitle] {
  font-weight: normal !important;
}

page-staff-detail a {
  text-decoration: none;
  color: #30384c;
}

page-staff-detail .active {
  color: #287ebd;
}

page-staff-detail .inActive {
  color: gray;
}

page-staff-detail .disabled {
  pointer-events: none;
}

page-survey .date-indicator {
  position: absolute;
  top: 38px;
  width: 50px;
  font-size: 15px;
}

page-survey .month-indicator {
  position: absolute;
  top: 20px;
  width: 50px;
  font-size: 12px;
  color: white;
  font-weight: bolder;
}

page-survey .subject .notice {
  letter-spacing: 0.4px;
}

page-survey .list-img {
  height: 50px;
  width: 50px;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  float: left;
}

page-survey .list-img img {
  height: 90%;
  border-radius: 5px;
}

page-survey .subject {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 90px);
  float: left;
  margin-bottom: 5px;
  text-transform: capitalize;
}

page-survey .subject h2 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000000;
  font-size: 15px;
  font-weight: bold;
  margin-top: 3px;
}

page-survey .main-item {
  padding-left: 8px;
}

page-survey .main-item .item-inner {
  padding: 0px;
}

page-survey .main-row {
  border-radius: 10px;
  padding: 5px 10px;
  background: #eee;
}

page-survey .main-note {
  top: 20px;
  position: absolute;
  right: 10px;
}

page-survey-detail ion-label {
  white-space: inherit;
  text-overflow: inherit;
}

page-survey-detail .m-5 {
  margin: 5px;
}

page-survey-detail .card {
  margin-bottom: 10px;
}

page-survey-detail .card-content {
  padding: 0;
}

page-survey-detail .scroll-content {
  background-color: whitesmoke;
}

page-survey-detail .survey-header {
  background-color: #0167b1;
  color: white;
  padding: 0 0 15px 0;
  text-align: center;
}

page-survey-detail .survey-header h2 {
  margin: 0;
}

page-survey-detail .survey-given {
  background-color: #00bf00;
  color: white;
  text-align: center;
  padding: 10px 0;
}

page-survey-detail .survey-given h4 {
  margin: 0;
}

page-survey-detail .head {
  text-transform: capitalize;
  background: #fffefe;
  padding: 5px;
}

page-survey-detail .font-18 {
  font-size: 15px;
  font-weight: bold;
}

page-survey-detail .main-input .text-input {
  background: #eee;
  font-size: 15px;
  padding: 5px;
}

page-survey-detail .m-0 {
  margin: 0px;
}

page-survey-detail .transorm {
  text-transform: capitalize;
}

page-survey-detail .cmt {
  padding-left: 10px;
  background: #fff;
  margin: 0px;
}

page-survey-detail .survey-group-item:last-child {
  border: none !important;
}

page-survey-detail .date-picker {
  background: #eee;
  width: 100%;
}

page-survey-detail .form-label {
  color: #000;
}

page-survey-detail .description p, page-survey-detail .description h1, page-survey-detail .description h2, page-survey-detail .description h3, page-survey-detail .description h4, page-survey-detail .m-l-5 {
  margin: 5px;
}

page-survey-detail .m-r-10 {
  margin-right: 10px;
}

page-survey-detail .main-description {
  padding: 2px;
  -webkit-transform: all 200ms ease;
  transform: all 200ms ease;
}

page-survey-detail .close-img {
  z-index: 111;
  top: 0px;
  position: absolute;
  font-size: 20px;
  background: #eee;
}

page-survey-detail .pos-rel {
  position: relative;
}

page-survey-detail .loader-img {
  width: 80px;
  height: 80px;
}

page-survey-detail .attachment-image {
  width: 100px;
  height: 100px;
}

page-survey-detail .attachment a {
  color: #000 !important;
  position: absolute;
  top: 0px;
  left: 0px;
}

page-survey-detail .red {
  color: red;
}

page-survey-detail .staff-img.pos-rel {
  padding: 10px 20px;
}

page-survey-detail .staff-img.pos-rel img {
  border-radius: 5px;
}

page-survey-modal ion-content {
  text-align: center;
}

page-survey-modal .col {
  padding: 0px;
}

page-survey-modal .button {
  margin: 0;
  height: 4.6rem;
}

page-survey-modal p {
  font-weight: lighter;
  margin-bottom: 10px;
  margin-top: 0px;
  padding: 0 10px 10px 10px;
}

page-survey-modal .gotovisit-button {
  margin: 0 0 20px 0;
}

page-survey-modal .toolbar-background {
  background-color: white !important;
}

page-survey-modal .bar-button {
  color: black !important;
}

page-survey-modal .toolbar .toolbar-title {
  color: black !important;
  font-weight: normal;
  text-transform: uppercase;
}

page-survey-modal .toolbar {
  border-bottom: 1px solid lightgray;
}

page-survey-modal .title-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-survey-modal .item {
  background-color: ghostwhite;
}

page-survey-modal .title-img img {
  height: 100%;
}

page-survey-modal .scroll-content {
  max-height: 400px;
}

page-template-details #printData, page-template-details #printParkingPass {
  background: #fff;
  color: #000;
  font-size: 20px;
  border-radius: 5px;
}

page-template-details .text__center {
  text-align: center;
}

page-template-details .head__section {
  background: #0067b1;
  padding: 5px;
  color: #fff;
  border-radius: 5px 5px 0px 0px;
}

page-template-details .head__section h2 {
  font-size: 20px;
  margin: 0px;
}

page-template-details .head__section p {
  font-size: 14px;
  margin: 4px 0px;
}

page-template-details .middle__section {
  padding: 15px 5px;
  border: 2px solid #eee;
  border-top: 0px;
  border-bottom: 0px;
}

page-template-details .middle__section h4 {
  font-size: 14px;
}

page-template-details .middle__section p {
  margin: 0px;
  font-size: 14px;
  color: #333;
}

page-template-details .middle__section h2 {
  font-size: 20px;
  text-transform: uppercase;
}

page-template-details .fotter__section {
  padding: 5px;
  text-align: center;
  background: #0067b1;
  color: #fff;
  font-size: 13px;
  border-radius: 0px 0px 5px 5px;
}

page-template-details .main__icon__parking {
  text-align: center;
  margin: 0 auto;
}

page-template-details .my__icon {
  text-align: center;
  margin: 0 auto;
  font-size: 6rem;
  border: 1px solid #eee;
  border-radius: 50%;
  color: #0067b1;
}

page-update-modal {
  height: 100%;
}

page-update-modal ion-content {
  text-align: center;
}

page-update-modal .col {
  padding: 0px;
}

page-update-modal .button {
  margin: 0;
  height: 4.6rem;
}

page-update-modal p {
  font-weight: lighter;
  margin-bottom: 10px;
  margin-top: 0px;
  padding: 0 10px 10px 10px;
}

page-update-modal .gotovisit-button {
  margin: 0 0 20px 0;
}

page-update-modal .toolbar-background {
  background-color: white !important;
}

page-update-modal .bar-button {
  color: black !important;
}

page-update-modal .toolbar .toolbar-title {
  color: black !important;
  font-weight: normal;
  text-transform: uppercase;
}

page-update-modal .toolbar {
  border-bottom: 1px solid lightgray;
}

page-update-modal .title-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-update-modal .item {
  background-color: ghostwhite;
}

page-update-modal .title-img img {
  height: 100%;
}

page-update-modal .scroll-content {
  max-height: 400px;
}

page-update-modal .update-header h1 {
  font-weight: lighter;
  color: #444444;
  font-size: 25px;
}

page-update-modal .bottom-button {
  text-align: center;
}

page-update-modal .bottom-button a {
  color: grey;
}

page-vehicle-access-log ion-content {
  text-align: center;
}

page-vehicle-access-log a {
  display: inline-block;
  color: #0167b1;
  padding: 14px;
  background-color: ghostwhite;
  text-decoration: none;
  margin: 0 3px;
  text-transform: uppercase;
  width: 100%;
}

page-vehicle-access-log .absent {
  background-color: lightcoral;
  color: white;
  font-weight: bolder;
}

page-vehicle-access-log .present {
  background-color: lightgreen;
}

page-vehicle-access-log .eventBlip {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 6.5px;
}

page-vehicle-access-log .show-all {
  position: absolute;
  right: 12px;
  color: #0167b1;
}

page-vehicle-detail .title {
  font-size: 10px;
  color: #0167b1;
}

page-vehicle-detail .car {
  font-size: 100px;
  border-radius: 50%;
  border: 5px solid ghostwhite;
}

page-vehicle-detail .vehicle-options ion-button {
  color: white;
}

page-vehicle-detail .vehicle-details {
  text-align: center;
  background-color: white;
}

page-vehicle-detail .vehicle-details ion-row {
  text-align: center;
}

page-vehicle-detail .vehicle-details ion-row ion-col {
  text-align: center;
}

page-vehicle-detail .vehicle-details ion-row ion-col span {
  color: #0167b1;
}

page-vehicle-detail .vehicle-details h3 {
  font-size: 12px;
  font-weight: normal !important;
  margin: 0;
  margin-bottom: 15px;
}

page-vehicle-detail .vehicle-details h2 {
  font-size: 12px;
  font-weight: normal !important;
  margin: 0;
  margin-bottom: 0px;
}

page-vehicle-detail .tab-detail ion-col {
  color: #444444;
}

page-vehicle-detail .color-grey {
  color: #444444 !important;
}

page-vehicle-detail .tab-detail {
  border-bottom: 2px solid ghostwhite;
  padding: 10px 0;
}

page-vehicle-detail .card1 {
  margin: 0px;
  width: 100%;
  margin-bottom: 10px;
  background-color: white;
  margin-top: 12px;
  border-top: 1px solid gainsboro;
  padding: 10px;
}

page-vehicle-detail .margin1 {
  margin: 5px;
}

page-vehicle-detail .status {
  padding: 23px;
}

page-vehicle-detail .pending {
  background-color: darkorange;
  font-weight: bolder;
}

page-vehicle-detail .notification {
  font-weight: bolder;
}

page-vehicle-detail .notification-off {
  background-color: darkgray;
  font-weight: bolder;
}

page-vehicle-detail .icon-medium {
  font-size: 1.6em;
}

page-vehicle-detail .lock-icon {
  width: 25px;
  height: 20px;
}

page-visit-detail ion-card {
  position: relative;
  text-align: left;
  margin: 0 !important;
  width: 100% !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

page-visit-detail .card-title {
  padding: 10px;
  padding-left: 17px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0%;
  left: 0;
  font-size: 2.0em;
  width: 100%;
  font-weight: bold;
  color: #fff;
}

page-visit-detail .active {
  max-height: 500px !important;
}

page-visit-detail .rround {
  border-radius: 10px;
  background-color: #37BC9B;
  margin: 0;
}

page-visit-detail .gap {
  margin-top: 10px;
}

page-visit-detail .card {
  background-color: white;
}

page-visit-detail .dynamic_box__list {
  white-space: break-spaces;
}

page-visit-detail .dynamic_box__list__item {
  text-transform: capitalize;
  width: 50%;
  display: inline-block;
  margin-bottom: 3px;
  white-space: nowrap;
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
}

page-visit-detail .dynamic_box__list__item b {
  font-weight: normal !important;
  font-size: 1.6rem !important;
}

page-visit-list {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

page-visit-list .list-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  max-height: 88px;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
}

page-visit-list .list-img img {
  height: 100%;
}

page-visit-list .col {
  padding: 0;
}

page-visit-list .status {
  color: green;
  padding-left: 15px;
}

@keyframes animatedBar {
  0% {
    background-position: -406px 0;
  }
  100% {
    background-position: 0 0;
  }
}

page-visit-list .fakeItem h2, page-visit-list .fakeItem h3, page-visit-list .fakeItem p {
  background-color: lightgrey;
  opacity: 0.5;
  height: 1em;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#dddddd), to(#EEEEEE));
  background: linear-gradient(to right, #dddddd, #EEEEEE);
  -webkit-animation: animatedBar 700ms linear infinite;
  animation: animatedBar 700ms linear infinite;
}

page-visit-list .fakeItem h2:after, page-visit-list .fakeItem h3:after, page-visit-list .fakeItem p:after {
  position: absolute;
  display: block;
  content: '';
  right: 0;
  bottom: 0;
  top: 0;
  background-color: white;
}

page-visit-list .fakeItem h2:after {
  width: 65%;
}

page-visit-list .fakeItem h3:after {
  width: 10%;
}

page-visit-list .fakeItem p:after {
  width: 40%;
}

page-visit-list .demoOnly {
  padding: 5px;
  background: #ff6161;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}

page-visit-list .trash__color {
  color: #ff6161;
}

page-visit-list .dynamic_box__list {
  white-space: break-spaces;
}

page-visit-list .dynamic_box__list__item {
  text-transform: capitalize;
  width: 50%;
  display: inline-block;
  margin-bottom: 3px;
  white-space: nowrap;
  font-size: 13px;
}

page-visitor-modal ion-content {
  text-align: center;
}

page-visitor-modal .col {
  padding: 0px;
}

page-visitor-modal .button {
  margin: 0;
  height: 4.6rem;
}

page-visitor-modal p {
  font-weight: lighter;
  margin-bottom: 10px;
  margin-top: 0px;
  padding: 10px;
}

page-visitor-modal .gotovisit-button {
  margin: 0 0 20px 0;
}

page-visitor-modal .toolbar-background {
  background-color: white !important;
}

page-visitor-modal .bar-button {
  color: black !important;
}

page-visitor-modal .toolbar .toolbar-title {
  color: black !important;
  font-weight: normal;
  text-transform: uppercase;
}

page-visitor-modal .toolbar {
  border-bottom: 1px solid lightgray;
}

page-visitor-modal .title-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin: 0px 10px 0 0px;
  border: 5px solid ghostwhite;
  display: inline-block;
}

page-visitor-modal .item {
  background-color: ghostwhite;
}

page-visitor-modal .title-img img {
  height: 100%;
}

page-visitor-modal .scroll-content {
  max-height: 400px;
}

.popup-big-popup .fixed-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#0166b2), to(#00a3bd));
  background: linear-gradient(to bottom, #0166b2, #00a3bd);
}

.popup-big-popup .pop-ground {
  position: absolute;
  right: 0px;
  left: 0px;
  top: 15%;
  background: #fff;
  margin: 10px;
  border-radius: 10px;
  height: 479px;
  max-height: 230px;
}

.popup-big-popup .attach-btn {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -40%;
}

.popup-big-popup .scroll-content {
  max-height: 100%;
}

.popup-big-popup .pop-ground p {
  margin-top: 10px;
}

.popup-big-popup .gotovisit-button {
  position: absolute;
  /* bottom: 50%; */
  top: 65%;
  left: 0px;
  right: 0px;
  margin: 0 auto;
}

.popup-big-popup .silent-btn {
  top: auto;
  bottom: 5%;
  margin: 0 10px;
}

.popup-big-popup .visitor-icon {
  position: relative;
}

.popup-big-popup .visitor-icon img {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: #fff;
  padding: 10px;
  margin-top: -50px;
  border-radius: 50%;
}

.popup-big-popup .visitPara {
  font-size: 20px;
  margin-top: 0px !important;
}

.text-transform-cap {
  text-transform: capitalize;
}
