/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/theme/variables.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Ionic CSS Variables **/
:root {
  /** primary **/
  --ion-color-primary: #1d78ae;
  --ion-color-primary-rgb: 56, 128, 255;
  --ion-color-primary-contrast: #ffffff;
  --ion-color-primary-contrast-rgb: 255, 255, 255;
  --ion-color-primary-shade: #3171e0;
  --ion-color-primary-tint: #4c8dff;
  /** secondary **/
  --ion-color-secondary: #3dc2ff;
  --ion-color-secondary-rgb: 61, 194, 255;
  --ion-color-secondary-contrast: #ffffff;
  --ion-color-secondary-contrast-rgb: 255, 255, 255;
  --ion-color-secondary-shade: #36abe0;
  --ion-color-secondary-tint: #50c8ff;
  /** tertiary **/
  --ion-color-tertiary: #5260ff;
  --ion-color-tertiary-rgb: 82, 96, 255;
  --ion-color-tertiary-contrast: #ffffff;
  --ion-color-tertiary-contrast-rgb: 255, 255, 255;
  --ion-color-tertiary-shade: #4854e0;
  --ion-color-tertiary-tint: #6370ff;
  /** success **/
  --ion-color-success: #2dd36f;
  --ion-color-success-rgb: 45, 211, 111;
  --ion-color-success-contrast: #ffffff;
  --ion-color-success-contrast-rgb: 255, 255, 255;
  --ion-color-success-shade: #28ba62;
  --ion-color-success-tint: #42d77d;
  /** warning **/
  --ion-color-warning: #ffc409;
  --ion-color-warning-rgb: 255, 196, 9;
  --ion-color-warning-contrast: #000000;
  --ion-color-warning-contrast-rgb: 0, 0, 0;
  --ion-color-warning-shade: #e0ac08;
  --ion-color-warning-tint: #ffca22;
  /** danger **/
  --ion-color-danger: #eb445a;
  --ion-color-danger-rgb: 235, 68, 90;
  --ion-color-danger-contrast: #ffffff;
  --ion-color-danger-contrast-rgb: 255, 255, 255;
  --ion-color-danger-shade: #cf3c4f;
  --ion-color-danger-tint: #ed576b;
  /** dark **/
  --ion-color-dark: #222428;
  --ion-color-dark-rgb: 34, 36, 40;
  --ion-color-dark-contrast: #ffffff;
  --ion-color-dark-contrast-rgb: 255, 255, 255;
  --ion-color-dark-shade: #1e2023;
  --ion-color-dark-tint: #383a3e;
  /** medium **/
  --ion-color-medium: #92949c;
  --ion-color-medium-rgb: 146, 148, 156;
  --ion-color-medium-contrast: #ffffff;
  --ion-color-medium-contrast-rgb: 255, 255, 255;
  --ion-color-medium-shade: #808289;
  --ion-color-medium-tint: #9d9fa6;
  /** light **/
  --ion-color-light: #f4f5f8;
  --ion-color-light-rgb: 244, 245, 248;
  --ion-color-light-contrast: #000000;
  --ion-color-light-contrast-rgb: 0, 0, 0;
  --ion-color-light-shade: #d7d8da;
  --ion-color-light-tint: #f5f6f9;
}
/*!
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 {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
/* 1# Global Settings Font Style Section
/* 2# Global Settings Font Size Section
/* 3# Global Colors Section
/* 4# Global Opacity Section
/* 5# Function to print color Section
/* 6# Gradient Settings Section
/* 7# Changing Background Images in Black&White Mode Section
/* 8# Darkening and Black&White Blend Mode Section
/* 9# Settings Header Animation Section
/* 10# Settings Spinner Section
/* 11# Settings Header Section
/* 12# Settings Divider Section
/* 13# Settings Shadows Section
/* 14# Settings Icon Section
/* 15# Settings Social Icons Color Section
/* 16# Settings Span Section
/* 17# Settings Header Section
/* 18# LIST VIEWS - Item Parameters Section
/* 19# LIST VIEWS - Subitem Parameters Section
/* 20# Settings Button Section
/* 21# Settings Fab Button Section
/* 22# Settings Google Cards Section
/* 23# Settings Swipe Section
/* 24# Settings Parallax Section
/* 25# Settings Checkbox Section
/* 26# Settings Toggle Section
/* 27# Settings Radio Section
/* 28# Settings Wizard Section
/* 29# Settings Input Field Section
/* 30# Settings Tabs Section
/* 31# Settings Search Bar Section
/* 32# Settings Range Section
/* 33# Settings Badge Section
/* 34# Settings Divider Section
/* 35# Settings Google Maps  Section
/* 36# Settings Toolbar Section
/* 37# Settings Alert with input Settings
/* 38# Default Overview Ionic Section
//////////////////////////////////////////////////


/* 1# Global Settings Font Style Section
================================================*/
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTQ7aC6SjiAOpAWOKfJDfVRY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTRdwxCXfZpKo5kWAx_74bHs.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTZ6vnaPZw6nYDxM4SVEMFKg.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTfy1_HTwRwgtl1cPga3Fy3Y.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTfgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTYjoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTRampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/K88pR3goAWT7BTt32Z01m4X0hVgzZQUfRDuZrPvH3D8.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/RjgO7rYTmqiVp7vzi-Q5UYX0hVgzZQUfRDuZrPvH3D8.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/LWCjsQkB6EMdfHrEVqA1KYX0hVgzZQUfRDuZrPvH3D8.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/xozscpT2726on7jbcb_pAoX0hVgzZQUfRDuZrPvH3D8.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/59ZRklaO5bWGqF5A9baEEYX0hVgzZQUfRDuZrPvH3D8.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/u-WUoqrET9fUeobQW7jkRYX0hVgzZQUfRDuZrPvH3D8.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSg7aC6SjiAOpAWOKfJDfVRY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNShdwxCXfZpKo5kWAx_74bHs.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSp6vnaPZw6nYDxM4SVEMFKg.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSvy1_HTwRwgtl1cPga3Fy3Y.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSvgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSojoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNShampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzA7aC6SjiAOpAWOKfJDfVRY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzBdwxCXfZpKo5kWAx_74bHs.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzJ6vnaPZw6nYDxM4SVEMFKg.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzPy1_HTwRwgtl1cPga3Fy3Y.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzPgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzIjoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzBampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hg7aC6SjiAOpAWOKfJDfVRY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hhdwxCXfZpKo5kWAx_74bHs.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hp6vnaPZw6nYDxM4SVEMFKg.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hvy1_HTwRwgtl1cPga3Fy3Y.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hvgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hojoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hhampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxkExlR2MysFCBK8OirNw2kM.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxmdsm03krrxlabhmVQFB99s.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxiJ0caWjaSBdV-xZbEgst_k.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxmMSHb9EAJwuSzGfuRChQzQ.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxupRBTtN4E2_qSPBnw6AgMc.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxtDnm4qiMZlH5rhYv_7LI2Y.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxtTIkQYohD4BpHvJ3NvbHoA.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBvZraR2Tg8w2lzm7kLNL0-w.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBl4sYYdJg5dU2qzJEVSuta0.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBlBW26QxpSj-_ZKm_xT4hWw.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBgt_Rm691LTebKfY2ZkKSmI.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBtDiNsR5a-9Oe_Ivpu8XWlY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBqE8kM4xWR1_1bYURRojRGc.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBogp9Q8gbYrhqGlRav_IXfk.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxjBFCZ8rkaaoOvHyaB4p1V8.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxs2Ua5FNUHV5nolPhplIfzg.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxn1XrJsKtwhNaJmMXegB1eg.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxtDawAUxQv-nqIa2sHgh1E4.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxo6uqQeO3rRcuZb4avK7jaw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxkWd5At5A4dPjoTcH8-WMxA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxsiAiQ_a33snTsJhwZvMEaI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxgXaAXup5mZlfK6xRLrhsco.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxlx-M1I1w5OMiqnVF8xBLhU.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxlT7aJLK6nKpn36IMwTcMMc.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxgn6Wqxo-xwxilDXPU8chVU.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxsbIQSYZnWLaWC9QNCpTK_U.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxogd9OEPUCN3AdYW0e8tat4.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxv79_ZuUxCigM2DespTnFaw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxn6R3Xv-e6B79xl5HkmgNhg.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxh0aj4r8o_EFns5janpBDyI.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxi6YLLovB_TP0ww2BP_2m6E.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxpJkxLuyU7HkgJy3gZf6al0.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxjXFJsAmRr-kbJgAcGJdm8k.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxsI9ytsQgoRd-8mg6J4vcxU.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(https://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxmPkvcX8kXDzy1NrkNCBkJ4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* 2# Global Settings Font Size Section
================================================*/
/* 3# Global Avatar Size Section
================================================*/
/* 4# Global Thumbnail Size Section
================================================*/
/* 5# Global Item Size Section
================================================*/
/* 6# Global Border Radius Section
================================================*/
/* 7# Global Colors Section
================================================*/
/* 8# Global Opacity Section
================================================*/
/*  9# Function to print color Section
================================================*/
/* 10# Gradient Settings Section
================================================*/
/* 11# Changing Background Images in Black&White Mode Section
==============================================================*/
/* 12# Darkening and Black&White Blend Mode Section
=======================================================*/
/* ion-avatar, ion-thumbnail {
  -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
} */
[images-filter] {
  filter: grayscale(100%);
}
img {
  object-fit: cover;
}
/* 13# Settings Header Animation Section
=======================================================*/
/* 14# Settings Spinner Section
=======================================================*/
spinner img {
  width: 70px !important;
  height: 70px !important;
  margin: 0 auto;
}
spinner .swiper-pagination-bullet {
  background: #1d78ae !important;
}
/* 15# Settings Header Section
================================================*/
/* 16# Settings Divider Section
=======================================================*/
/* 17# Settings Shadows Section
=======================================================*/
/* 18# Settings Icon Section
================================================*/
i {
  color: white;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}
[white] i {
  color: white !important;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white !important;
}
[icon-small] {
  color: white !important;
  font-size: 20px !important;
}
[icon-medium] {
  color: white !important;
  font-size: 32px !important;
}
[icon-large] {
  color: white !important;
  font-size: 60px !important;
}
[font-bold] {
  font-weight: bold !important;
}
[small-font] {
  font-size: 14px;
  margin-bottom: 5px;
}
[box-shadow] {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
  z-index: 999;
}
.box-shadow {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
  z-index: 999;
}
/* 19# Settings Social Icons Color Section
================================================*/
/* 20# Settings Span Section
================================================*/
[span-small] {
  color: #1d78ae;
  font-size: 12px;
}
[span-medium] {
  color: #1d78ae;
  font-size: 24px;
}
[span-large] {
  color: #1d78ae;
  font-size: 30px !important;
}
/* 21# Settings Header Section
================================================*/
[header-title] {
  color: #1d78ae !important;
  font-size: 24px;
  letter-spacing: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
[header-subtitle] {
  color: #1d78ae !important;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
/* 22# LIST VIEWS - Item Parameters Section
================================================*/
[item-title] {
  color: #455b65 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
[item-subtitle] {
  color: #455b65 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 300 !important;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* 23# LIST VIEWS - Subitem Parameters Section
================================================*/
[subitem-title] {
  color: white;
  font-size: 14px !important;
  line-height: normal;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
[subitem-subtitle] {
  color: white;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* 24# Settings Button Section
================================================*/
[default-button] {
  background: #1d78ae !important;
  background: linear-gradient(to left, #1d78ae !important 0%, #1d78ae !important 100%);
  color: white !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}
[button-clear] {
  color: #1d78ae !important;
  font-size: 12px !important;
}
[button-clear-outline] {
  color: #1d78ae !important;
  font-size: 12px !important;
  border: 1px solid #1d78ae !important;
  padding: 15px 25px !important;
  font-weight: bold !important;
}
[button-icon] {
  background: #1d78ae !important;
  color: white !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  height: auto !important;
  box-shadow: none !important;
  border-radius: 4px !important;
  text-transform: capitalize !important;
  padding: 6px 10px 6px 8px !important;
}
[button-icon-clear] {
  background-color: transparent !important;
  color: #B2B2B2 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
/* 25# Settings Fab Button Section
================================================*/
[button-ion-fab] {
  background-color: #1d78ae !important;
  color: white !important;
  bottom: 20px;
  right: 20px;
  transition: all 300ms !important;
}
[button-ion-fab] ion-icon {
  margin-top: 2px;
  display: block;
}
.fab-button-out {
  bottom: -80px;
  animation: fade-out 300ms ease-in;
  -ms-animation: fade-out 300ms ease-in;
  -webkit-animation: fade-out 300ms ease-in;
  -o-animation: fade-out 300ms ease-in;
  -moz-animation: fade-out 300ms ease-in;
}
@keyframes fade-out {
  from {
    bottom: 20px;
  }
  to {
    bottom: -80px;
  }
}
/* 26# Settings Google Cards Section
================================================*/
[card-title] {
  color: #455b65 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  letter-spacing: 1px;
}
[card-subtitle] {
  color: #455b65 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
}
[card-body-text] {
  color: #455b65 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
}
/* 27# Settings Swipe Section
================================================*/
[swiped-item-title] {
  color: #455b65;
  margin: 0;
  font-size: 12px !important;
  text-transform: initial;
}
/* 28# Settings Parallax Section
================================================*/
[parallax-title] {
  color: white;
  font-size: 24px !important;
  letter-spacing: 1px;
}
[parallax-subtitle] {
  color: white;
  font-size: 14px !important;
  letter-spacing: 1px;
}
[parallax-description] {
  color: #455b65;
}
/* 29# Settings Checkbox Section
================================================*/
/* 30# Settings Toggle Section
================================================*/
/* Settings Seggments Section
================================================
================================================*/
/* 31# Settings Radio Section
================================================*/
/* 32# Settings Wizard Section
================================================*/
[wizard-title] {
  color: white;
  font-size: 16px !important;
  letter-spacing: 1px;
  font-weight: 300;
}
[wizard-body-text] {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px !important;
  letter-spacing: 1px;
  font-weight: 300;
}
/* 33# Settings Input Field Section
================================================*/
/* 34# Settings Tabs Section
================================================*/
[tabs-title] {
  color: white;
}
[tabs-subtitle] {
  color: white;
}
/* 35# Settings Search Bar Section
================================================*/
/* 36# Settings Range Section
================================================*/
/* 37# Settings Badge Section
================================================*/
/* 38# Settings Divider Section
================================================*/
/* 39# Settings Google Maps Section
================================================*/
[map-header] {
  background-color: #1d78ae;
}
[map-header] ion-icon {
  color: #455b65;
}
[maps-title] {
  font-size: 24px;
  color: white;
}
[maps-subtitle] {
  font-size: 14px;
  font-size: 12px;
  color: white !important;
}
[map-content] [title] {
  font-size: 14px;
  color: #455b65;
}
[map-content] [maps-description] {
  color: #455b65;
  font-size: 12px;
}
[map-content] [info] ion-icon {
  margin: 7px 0 0 !important;
}
[map-content] [info] .label-md {
  margin: 0 !important;
}
[map-content] [info] .item-block {
  min-height: 1.5em !important;
}
/* 40# Settings Toolbar Section
================================================*/
.toolbar {
  /* box-shadow: 0px 0px 3px 3px #888 !important; */
}
.toolbar .toolbar-background {
  background: #1d78ae;
  background: linear-gradient(to left, #1d78ae 0%, #1d78ae 100%);
}
.toolbar .toolbar-title {
  font-weight: bold;
  text-transform: uppercase;
}
/* 41# Settings Alert with input Settings
================================================*/
.alert-title {
  color: #1d78ae !important;
  font-weight: 400 !important;
  float: left;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1d78ae !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #1d78ae !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #1d78ae !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #1d78ae !important;
}
/* 42# Default Overview Ionic Section
================================================*/
[no-margin] {
  margin: 0 !important;
}
[background-size] {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
[white-background] {
  background-color: white !important;
}
[transparent] {
  background-color: transparent !important;
}
[has-header] .scroll-content {
  top: 56px;
}
.platform-ios ion-list {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.platform-ios [has-header] .scroll-content {
  top: 64px;
}
/* Settings Alert Info
================================================
================================================*/
.info-dialog .alert-head,
.info-dialog .alert-message {
  text-align: center !important;
}
.info-dialog .alert-message {
  color: #455b65 !important;
}
.info-dialog .alert-sub-title {
  color: #1d78ae;
}
/* Settings Alert Warning
================================================
================================================*/
.alert-warning .alert-head,
.alert-warning .alert-message {
  text-align: center !important;
}
.alert-warning .alert-message {
  color: #455b65 !important;
}
.alert-warning .alert-sub-title {
  color: #1d78ae;
}
.alert-warning .alert-button {
  width: 100%;
  margin-bottom: 20px;
  background: #1d78ae !important;
  text-align: center;
  color: white !important;
  display: block;
}
.alert-warning .alert-button .button-inner {
  justify-content: center !important;
}
/* Settings Alert Subscribe
================================================
================================================*/
.alert-subscribe .alert-head,
.alert-subscribe .alert-message {
  text-align: center !important;
}
.alert-subscribe .alert-message {
  color: #1d78ae !important;
}
.alert-subscribe .alert-sub-title {
  color: #455b65;
}
.background_color {
  background-color: #fcfdff !important;
}
.buttonCss {
  text-align: center !important;
}
.buttonCss button.alert-button:nth-child(1) {
  color: #ffffff !important;
  background-color: #455B65 !important;
  /* min-width: 40%; */
}
.buttonCss button.alert-button:nth-child(2) {
  color: #ffffff !important;
  background-color: #1d78ae !important;
  /* min-width: 40%; */
  justify-content: none !important;
}
@font-face {
  font-family: "fontello";
  src: url('fontello.eot?89574879');
  src: url('fontello.eot?89574879#iefix') format("embedded-opentype"), url('fontello.woff?89574879') format("woff"), url('fontello.ttf?89574879') format("truetype"), url('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: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-feature-settings: normal;
  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: 0.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";
}
/* '' */
@font-face {
  font-family: "HelveticaRegular";
  font-style: normal;
  font-weight: 400;
  src: local("Helvetica"), local("Helvetica-Regular"), url('helvetica-regular.ttf') format("truetype");
}
@font-face {
  font-family: "HelveticaBold";
  font-style: bold;
  font-weight: 700;
  src: local("Helvetica Bold"), local("Helvetica-Bold"), url('helvetica-bold.ttf') format("truetype");
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/global.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*
 * App Global CSS
 * ----------------------------------------------------------------------------
 * Put style rules here that you want to apply globally. These styles are for
 * the entire app and not just one component. Additionally, this file can be
 * used as an entry point to import other CSS/Sass files to be included in the
 * output CSS.
 * For more information on global stylesheets, visit the documentation:
 * https://ionicframework.com/docs/layout/global-stylesheets
 */
/* Core CSS required for Ionic components to work properly */
html.ios {
  --ion-default-font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Roboto", sans-serif;
}
html.md {
  --ion-default-font: "Roboto", "Helvetica Neue", sans-serif;
}
html {
  --ion-font-family: var(--ion-default-font);
}
body {
  background: var(--ion-background-color);
}
body.backdrop-no-scroll {
  overflow: hidden;
}
/**
 * Card style modal needs additional padding on the
 * top of the header. We accomplish this by targeting
 * the first toolbar in the header.
 * Footer also needs this. We do not adjust the bottom
 * padding though because of the safe area.
 */
html.ios ion-modal.modal-card ion-header ion-toolbar:first-of-type,
html.ios ion-modal.modal-sheet ion-header ion-toolbar:first-of-type,
html.ios ion-modal ion-footer ion-toolbar:first-of-type {
  padding-top: 6px;
}
/**
* Card style modal needs additional padding on the
* bottom of the header. We accomplish this by targeting
* the last toolbar in the header.
*/
html.ios ion-modal.modal-card ion-header ion-toolbar:last-of-type,
html.ios ion-modal.modal-sheet ion-header ion-toolbar:last-of-type {
  padding-bottom: 6px;
}
/**
* Add padding on the left and right
* of toolbars while accounting for
* safe area values when in landscape.
*/
html.ios ion-modal ion-toolbar {
  padding-right: calc(var(--ion-safe-area-right) + 8px);
  padding-left: calc(var(--ion-safe-area-left) + 8px);
}
/**
 * Card style modal on iPadOS
 * should only have backdrop on first instance.
 */
@media screen and (min-width: 768px) {
  html.ios ion-modal.modal-card:first-of-type {
    --backdrop-opacity: 0.18;
  }
}
/**
 * Subsequent modals should not have a backdrop/box shadow
 * as it will cause the screen to appear to get progressively
 * darker. With Ionic 6, declarative modals made it
 * possible to have multiple non-presented modals in the DOM,
 * so we could no longer rely on ion-modal:first-of-type.
 * Here we disable the opacity/box-shadow for every modal
 * that comes after the first presented modal.
 *
 * Note: ion-modal:not(.overlay-hidden):first-of-type
 * does not match the first modal to not have
 * the .overlay-hidden class, it will match the
 * first modal in general only if it does not
 * have the .overlay-hidden class.
 * The :nth-child() pseudo-class has support
 * for selectors which would help us here. At the
 * time of writing it does not have great cross browser
 * support.
 *
 * Note 2: This should only apply to non-card and
 * non-sheet modals. Card and sheet modals have their
 * own criteria for displaying backdrops/box shadows.
 *
 * Do not use :not(.overlay-hidden) in place of
 * .show-modal because that triggers a memory
 * leak in Blink: https://bugs.chromium.org/p/chromium/issues/detail?id=1418768
 */
ion-modal.modal-default.show-modal ~ ion-modal.modal-default {
  --backdrop-opacity: 0;
  --box-shadow: none;
}
/**
 * This works around a bug in WebKit where the
 * content will overflow outside of the bottom border
 * radius when re-painting. As long as a single
 * border radius value is set on .ion-page, this
 * issue does not happen. We set the top left radius
 * here because the top left corner will always have a
 * radius no matter the platform.
 * This behavior only applies to card modals.
 */
html.ios ion-modal.modal-card .ion-page {
  border-top-left-radius: var(--border-radius);
}
.ion-color-primary {
  --ion-color-base: var(--ion-color-primary, #3880ff) !important;
  --ion-color-base-rgb: var(--ion-color-primary-rgb, 56, 128, 255) !important;
  --ion-color-contrast: var(--ion-color-primary-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-primary-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-primary-shade, #3171e0) !important;
  --ion-color-tint: var(--ion-color-primary-tint, #4c8dff) !important;
}
.ion-color-secondary {
  --ion-color-base: var(--ion-color-secondary, #3dc2ff) !important;
  --ion-color-base-rgb: var(--ion-color-secondary-rgb, 61, 194, 255) !important;
  --ion-color-contrast: var(--ion-color-secondary-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-secondary-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-secondary-shade, #36abe0) !important;
  --ion-color-tint: var(--ion-color-secondary-tint, #50c8ff) !important;
}
.ion-color-tertiary {
  --ion-color-base: var(--ion-color-tertiary, #5260ff) !important;
  --ion-color-base-rgb: var(--ion-color-tertiary-rgb, 82, 96, 255) !important;
  --ion-color-contrast: var(--ion-color-tertiary-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-tertiary-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-tertiary-shade, #4854e0) !important;
  --ion-color-tint: var(--ion-color-tertiary-tint, #6370ff) !important;
}
.ion-color-success {
  --ion-color-base: var(--ion-color-success, #2dd36f) !important;
  --ion-color-base-rgb: var(--ion-color-success-rgb, 45, 211, 111) !important;
  --ion-color-contrast: var(--ion-color-success-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-success-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-success-shade, #28ba62) !important;
  --ion-color-tint: var(--ion-color-success-tint, #42d77d) !important;
}
.ion-color-warning {
  --ion-color-base: var(--ion-color-warning, #ffc409) !important;
  --ion-color-base-rgb: var(--ion-color-warning-rgb, 255, 196, 9) !important;
  --ion-color-contrast: var(--ion-color-warning-contrast, #000) !important;
  --ion-color-contrast-rgb: var(--ion-color-warning-contrast-rgb, 0, 0, 0) !important;
  --ion-color-shade: var(--ion-color-warning-shade, #e0ac08) !important;
  --ion-color-tint: var(--ion-color-warning-tint, #ffca22) !important;
}
.ion-color-danger {
  --ion-color-base: var(--ion-color-danger, #eb445a) !important;
  --ion-color-base-rgb: var(--ion-color-danger-rgb, 235, 68, 90) !important;
  --ion-color-contrast: var(--ion-color-danger-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-danger-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-danger-shade, #cf3c4f) !important;
  --ion-color-tint: var(--ion-color-danger-tint, #ed576b) !important;
}
.ion-color-light {
  --ion-color-base: var(--ion-color-light, #f4f5f8) !important;
  --ion-color-base-rgb: var(--ion-color-light-rgb, 244, 245, 248) !important;
  --ion-color-contrast: var(--ion-color-light-contrast, #000) !important;
  --ion-color-contrast-rgb: var(--ion-color-light-contrast-rgb, 0, 0, 0) !important;
  --ion-color-shade: var(--ion-color-light-shade, #d7d8da) !important;
  --ion-color-tint: var(--ion-color-light-tint, #f5f6f9) !important;
}
.ion-color-medium {
  --ion-color-base: var(--ion-color-medium, #92949c) !important;
  --ion-color-base-rgb: var(--ion-color-medium-rgb, 146, 148, 156) !important;
  --ion-color-contrast: var(--ion-color-medium-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-medium-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-medium-shade, #808289) !important;
  --ion-color-tint: var(--ion-color-medium-tint, #9d9fa6) !important;
}
.ion-color-dark {
  --ion-color-base: var(--ion-color-dark, #222428) !important;
  --ion-color-base-rgb: var(--ion-color-dark-rgb, 34, 36, 40) !important;
  --ion-color-contrast: var(--ion-color-dark-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-dark-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-dark-shade, #1e2023) !important;
  --ion-color-tint: var(--ion-color-dark-tint, #383a3e) !important;
}
.ion-page {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: space-between;
  contain: layout size style;
  overflow: hidden;
  z-index: 0;
}
/**
 * When making custom dialogs, using
 * ion-content is not required. As a result,
 * some developers may wish to have dialogs
 * that are automatically sized by the browser.
 * These changes allow certain dimension values
 * such as fit-content to work correctly.
 */
ion-modal > .ion-page {
  position: relative;
  contain: layout style;
  height: 100%;
}
.split-pane-visible > .ion-page.split-pane-main {
  position: relative;
}
ion-route,
ion-route-redirect,
ion-router,
ion-select-option,
ion-nav-controller,
ion-menu-controller,
ion-action-sheet-controller,
ion-alert-controller,
ion-loading-controller,
ion-modal-controller,
ion-picker-controller,
ion-popover-controller,
ion-toast-controller,
.ion-page-hidden {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}
.ion-page-invisible {
  opacity: 0;
}
.can-go-back > ion-header ion-back-button {
  display: block;
}
html.plt-ios.plt-hybrid, html.plt-ios.plt-pwa {
  --ion-statusbar-padding: 20px;
}
@supports (padding-top: 20px) {
  html {
    --ion-safe-area-top: var(--ion-statusbar-padding);
  }
}
@supports (padding-top: constant(safe-area-inset-top)) {
  html {
    --ion-safe-area-top: constant(safe-area-inset-top);
    --ion-safe-area-bottom: constant(safe-area-inset-bottom);
    --ion-safe-area-left: constant(safe-area-inset-left);
    --ion-safe-area-right: constant(safe-area-inset-right);
  }
}
@supports (padding-top: env(safe-area-inset-top)) {
  html {
    --ion-safe-area-top: env(safe-area-inset-top);
    --ion-safe-area-bottom: env(safe-area-inset-bottom);
    --ion-safe-area-left: env(safe-area-inset-left);
    --ion-safe-area-right: env(safe-area-inset-right);
  }
}
ion-card.ion-color .ion-inherit-color,
ion-card-header.ion-color .ion-inherit-color {
  color: inherit;
}
.menu-content {
  transform: translate3d(0,  0,  0);
}
.menu-content-open {
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: none;
}
.ios .menu-content-reveal {
  box-shadow: -8px 0 42px rgba(0, 0, 0, 0.08);
}
[dir=rtl].ios .menu-content-reveal {
  box-shadow: 8px 0 42px rgba(0, 0, 0, 0.08);
}
.md .menu-content-reveal {
  box-shadow: 4px 0px 16px rgba(0, 0, 0, 0.18);
}
.md .menu-content-push {
  box-shadow: 4px 0px 16px rgba(0, 0, 0, 0.18);
}
ion-accordion-group.accordion-group-expand-inset > ion-accordion:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
ion-accordion-group.accordion-group-expand-inset > ion-accordion:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
ion-accordion-group > ion-accordion:last-of-type ion-item[slot=header] {
  --border-width: 0px;
}
ion-accordion.accordion-animated > [slot=header] .ion-accordion-toggle-icon {
  transition: 300ms transform cubic-bezier(0.25, 0.8, 0.5, 1);
}
@media (prefers-reduced-motion: reduce) {
  ion-accordion .ion-accordion-toggle-icon {
    /* stylelint-disable declaration-no-important */
    transition: none !important;
  }
}
/**
 * The > [slot="header"] selector ensures that we do
 * not modify toggle icons for any nested accordions. The state
 * of one accordion should not affect any accordions inside
 * of a nested accordion group.
 */
ion-accordion.accordion-expanding > [slot=header] .ion-accordion-toggle-icon,
ion-accordion.accordion-expanded > [slot=header] .ion-accordion-toggle-icon {
  transform: rotate(180deg);
}
ion-accordion-group.accordion-group-expand-inset.md > ion-accordion.accordion-previous ion-item[slot=header] {
  --border-width: 0px;
  --inner-border-width: 0px;
}
ion-accordion-group.accordion-group-expand-inset.md > ion-accordion.accordion-expanding:first-of-type,
ion-accordion-group.accordion-group-expand-inset.md > ion-accordion.accordion-expanded:first-of-type {
  margin-top: 0;
}
ion-input input::-webkit-date-and-time-value {
  text-align: start;
}
/**
 * The .ion-datetime-button-overlay class contains
 * styles that allow any modal/popover to be
 * sized according to the dimensions of the datetime
 * when used with ion-datetime-button.
 */
.ion-datetime-button-overlay {
  --width: fit-content;
  --height: fit-content;
}
/**
 * The grid variant can scale down when inline.
 * When used in a `fit-content` overlay, this causes
 * the overlay to shrink when the month/year picker is open.
 * Explicitly setting the dimensions lets us have a consistently
 * sized grid interface.
 */
.ion-datetime-button-overlay ion-datetime.datetime-grid {
  width: 320px;
  min-height: 320px;
}
/* Basic CSS for apps built with Ionic */
audio,
canvas,
progress,
video {
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
b,
strong {
  font-weight: bold;
}
img {
  max-width: 100%;
}
hr {
  height: 1px;
  border-width: 0;
  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::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,
.ion-tappable,
[tappable],
[tappable] div,
[tappable] span,
[tappable] ion-icon,
[tappable] ion-label,
input,
textarea {
  touch-action: manipulation;
}
a ion-label,
button ion-label {
  pointer-events: none;
}
button {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-feature-settings: 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=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;
}
* {
  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%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html:not(.hydrated) body {
  display: none;
}
html.ion-ce body {
  display: block;
}
html.plt-pwa {
  height: 100vh;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  /**
   * Because body has position: fixed,
   * it should be promoted to its own
   * layer.
   *
   * WebKit does not always promote
   * the body to its own layer on page
   * load in Ionic apps. Once scrolling on
   * ion-content starts, WebKit will promote
   * body. Unfortunately, this causes a re-paint
   * which results in scrolling being halted
   * until the next user gesture.
   *
   * This impacts the Custom Elements build.
   * The lazy loaded build causes the browser to
   * re-paint during hydration which causes WebKit
   * to promote body to its own layer.
   * In the CE Build, this hydration does not
   * happen, so the additional re-paint does not occur.
   */
  transform: translateZ(0);
  text-rendering: optimizeLegibility;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  word-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
html {
  font-family: var(--ion-font-family);
}
a {
  background-color: transparent;
  color: var(--ion-color-primary, #3880ff);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}
h1 {
  margin-top: 20px;
  font-size: 26px;
}
h2 {
  margin-top: 18px;
  font-size: 24px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
small {
  font-size: 75%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
.ion-hide {
  display: none !important;
}
.ion-hide-up {
  display: none !important;
}
.ion-hide-down {
  display: none !important;
}
@media (min-width: 576px) {
  .ion-hide-sm-up {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .ion-hide-sm-down {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .ion-hide-md-up {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .ion-hide-md-down {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .ion-hide-lg-up {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .ion-hide-lg-down {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .ion-hide-xl-up {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .ion-hide-xl-down {
    display: none !important;
  }
}
/* Optional CSS utils that can be commented out */
.ion-no-padding {
  --padding-start: 0;
  --padding-end: 0;
  --padding-top: 0;
  --padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.ion-padding {
  --padding-start: var(--ion-padding, 16px);
  --padding-end: var(--ion-padding, 16px);
  --padding-top: var(--ion-padding, 16px);
  --padding-bottom: var(--ion-padding, 16px);
  padding-inline-start: var(--ion-padding, 16px);
  padding-inline-end: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-top {
  --padding-top: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
}
.ion-padding-start {
  --padding-start: var(--ion-padding, 16px);
  padding-inline-start: var(--ion-padding, 16px);
}
.ion-padding-end {
  --padding-end: var(--ion-padding, 16px);
  padding-inline-end: var(--ion-padding, 16px);
}
.ion-padding-bottom {
  --padding-bottom: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-vertical {
  --padding-top: var(--ion-padding, 16px);
  --padding-bottom: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-horizontal {
  --padding-start: var(--ion-padding, 16px);
  --padding-end: var(--ion-padding, 16px);
  padding-inline-start: var(--ion-padding, 16px);
  padding-inline-end: var(--ion-padding, 16px);
}
.ion-no-margin {
  --margin-start: 0;
  --margin-end: 0;
  --margin-top: 0;
  --margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.ion-margin {
  --margin-start: var(--ion-margin, 16px);
  --margin-end: var(--ion-margin, 16px);
  --margin-top: var(--ion-margin, 16px);
  --margin-bottom: var(--ion-margin, 16px);
  margin-inline-start: var(--ion-margin, 16px);
  margin-inline-end: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-top {
  --margin-top: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
}
.ion-margin-start {
  --margin-start: var(--ion-margin, 16px);
  margin-inline-start: var(--ion-margin, 16px);
}
.ion-margin-end {
  --margin-end: var(--ion-margin, 16px);
  margin-inline-end: var(--ion-margin, 16px);
}
.ion-margin-bottom {
  --margin-bottom: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-vertical {
  --margin-top: var(--ion-margin, 16px);
  --margin-bottom: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-horizontal {
  --margin-start: var(--ion-margin, 16px);
  --margin-end: var(--ion-margin, 16px);
  margin-inline-start: var(--ion-margin, 16px);
  margin-inline-end: var(--ion-margin, 16px);
}
.ion-float-left {
  float: left !important;
}
.ion-float-right {
  float: right !important;
}
.ion-float-start {
  float: left !important;
}
:host-context([dir=rtl]) .ion-float-start {
  float: right !important;
}
[dir=rtl] .ion-float-start {
  float: right !important;
}
@supports selector(:dir(rtl)) {
  .ion-float-start:dir(rtl) {
    float: right !important;
  }
}
.ion-float-end {
  float: right !important;
}
:host-context([dir=rtl]) .ion-float-end {
  float: left !important;
}
[dir=rtl] .ion-float-end {
  float: left !important;
}
@supports selector(:dir(rtl)) {
  .ion-float-end:dir(rtl) {
    float: left !important;
  }
}
@media (min-width: 576px) {
  .ion-float-sm-left {
    float: left !important;
  }

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

  .ion-float-sm-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-sm-start {
    float: right !important;
  }

  [dir=rtl] .ion-float-sm-start {
    float: right !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-sm-start:dir(rtl) {
      float: right !important;
    }
  }

  .ion-float-sm-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-sm-end {
    float: left !important;
  }

  [dir=rtl] .ion-float-sm-end {
    float: left !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-sm-end:dir(rtl) {
      float: left !important;
    }
  }
}
@media (min-width: 768px) {
  .ion-float-md-left {
    float: left !important;
  }

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

  .ion-float-md-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-md-start {
    float: right !important;
  }

  [dir=rtl] .ion-float-md-start {
    float: right !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-md-start:dir(rtl) {
      float: right !important;
    }
  }

  .ion-float-md-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-md-end {
    float: left !important;
  }

  [dir=rtl] .ion-float-md-end {
    float: left !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-md-end:dir(rtl) {
      float: left !important;
    }
  }
}
@media (min-width: 992px) {
  .ion-float-lg-left {
    float: left !important;
  }

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

  .ion-float-lg-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-lg-start {
    float: right !important;
  }

  [dir=rtl] .ion-float-lg-start {
    float: right !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-lg-start:dir(rtl) {
      float: right !important;
    }
  }

  .ion-float-lg-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-lg-end {
    float: left !important;
  }

  [dir=rtl] .ion-float-lg-end {
    float: left !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-lg-end:dir(rtl) {
      float: left !important;
    }
  }
}
@media (min-width: 1200px) {
  .ion-float-xl-left {
    float: left !important;
  }

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

  .ion-float-xl-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-xl-start {
    float: right !important;
  }

  [dir=rtl] .ion-float-xl-start {
    float: right !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-xl-start:dir(rtl) {
      float: right !important;
    }
  }

  .ion-float-xl-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-xl-end {
    float: left !important;
  }

  [dir=rtl] .ion-float-xl-end {
    float: left !important;
  }

  @supports selector(:dir(rtl)) {
    .ion-float-xl-end:dir(rtl) {
      float: left !important;
    }
  }
}
.ion-text-center {
  text-align: center !important;
}
.ion-text-justify {
  text-align: justify !important;
}
.ion-text-start {
  text-align: start !important;
}
.ion-text-end {
  text-align: end !important;
}
.ion-text-left {
  text-align: left !important;
}
.ion-text-right {
  text-align: right !important;
}
.ion-text-nowrap {
  white-space: nowrap !important;
}
.ion-text-wrap {
  white-space: normal !important;
}
@media (min-width: 576px) {
  .ion-text-sm-center {
    text-align: center !important;
  }

  .ion-text-sm-justify {
    text-align: justify !important;
  }

  .ion-text-sm-start {
    text-align: start !important;
  }

  .ion-text-sm-end {
    text-align: end !important;
  }

  .ion-text-sm-left {
    text-align: left !important;
  }

  .ion-text-sm-right {
    text-align: right !important;
  }

  .ion-text-sm-nowrap {
    white-space: nowrap !important;
  }

  .ion-text-sm-wrap {
    white-space: normal !important;
  }
}
@media (min-width: 768px) {
  .ion-text-md-center {
    text-align: center !important;
  }

  .ion-text-md-justify {
    text-align: justify !important;
  }

  .ion-text-md-start {
    text-align: start !important;
  }

  .ion-text-md-end {
    text-align: end !important;
  }

  .ion-text-md-left {
    text-align: left !important;
  }

  .ion-text-md-right {
    text-align: right !important;
  }

  .ion-text-md-nowrap {
    white-space: nowrap !important;
  }

  .ion-text-md-wrap {
    white-space: normal !important;
  }
}
@media (min-width: 992px) {
  .ion-text-lg-center {
    text-align: center !important;
  }

  .ion-text-lg-justify {
    text-align: justify !important;
  }

  .ion-text-lg-start {
    text-align: start !important;
  }

  .ion-text-lg-end {
    text-align: end !important;
  }

  .ion-text-lg-left {
    text-align: left !important;
  }

  .ion-text-lg-right {
    text-align: right !important;
  }

  .ion-text-lg-nowrap {
    white-space: nowrap !important;
  }

  .ion-text-lg-wrap {
    white-space: normal !important;
  }
}
@media (min-width: 1200px) {
  .ion-text-xl-center {
    text-align: center !important;
  }

  .ion-text-xl-justify {
    text-align: justify !important;
  }

  .ion-text-xl-start {
    text-align: start !important;
  }

  .ion-text-xl-end {
    text-align: end !important;
  }

  .ion-text-xl-left {
    text-align: left !important;
  }

  .ion-text-xl-right {
    text-align: right !important;
  }

  .ion-text-xl-nowrap {
    white-space: nowrap !important;
  }

  .ion-text-xl-wrap {
    white-space: normal !important;
  }
}
.ion-text-uppercase {
  /* stylelint-disable-next-line declaration-no-important */
  text-transform: uppercase !important;
}
.ion-text-lowercase {
  /* stylelint-disable-next-line declaration-no-important */
  text-transform: lowercase !important;
}
.ion-text-capitalize {
  /* stylelint-disable-next-line declaration-no-important */
  text-transform: capitalize !important;
}
@media (min-width: 576px) {
  .ion-text-sm-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-sm-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-sm-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
@media (min-width: 768px) {
  .ion-text-md-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-md-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-md-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
@media (min-width: 992px) {
  .ion-text-lg-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-lg-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-lg-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
@media (min-width: 1200px) {
  .ion-text-xl-uppercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: uppercase !important;
  }

  .ion-text-xl-lowercase {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: lowercase !important;
  }

  .ion-text-xl-capitalize {
    /* stylelint-disable-next-line declaration-no-important */
    text-transform: capitalize !important;
  }
}
.ion-align-self-start {
  align-self: flex-start !important;
}
.ion-align-self-end {
  align-self: flex-end !important;
}
.ion-align-self-center {
  align-self: center !important;
}
.ion-align-self-stretch {
  align-self: stretch !important;
}
.ion-align-self-baseline {
  align-self: baseline !important;
}
.ion-align-self-auto {
  align-self: auto !important;
}
.ion-wrap {
  flex-wrap: wrap !important;
}
.ion-nowrap {
  flex-wrap: nowrap !important;
}
.ion-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.ion-justify-content-start {
  justify-content: flex-start !important;
}
.ion-justify-content-center {
  justify-content: center !important;
}
.ion-justify-content-end {
  justify-content: flex-end !important;
}
.ion-justify-content-around {
  justify-content: space-around !important;
}
.ion-justify-content-between {
  justify-content: space-between !important;
}
.ion-justify-content-evenly {
  justify-content: space-evenly !important;
}
.ion-align-items-start {
  align-items: flex-start !important;
}
.ion-align-items-center {
  align-items: center !important;
}
.ion-align-items-end {
  align-items: flex-end !important;
}
.ion-align-items-stretch {
  align-items: stretch !important;
}
.ion-align-items-baseline {
  align-items: baseline !important;
}
.alertstar {
  border-radius: 12px;
}
.alertstar .rating-alert {
  width: 30px !important;
  margin: 0 !important;
  background-image: url('star-outer.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  color: rgba(0, 0, 0, 0) !important;
}
.alertstar .alert-title {
  font-size: 21px;
  color: #1d78ae !important;
  font-weight: 700 !important;
  text-align: center;
  float: none;
}
.alertstar .alert-sub-title {
  font-size: 14px;
  text-align: center;
  margin: 0px;
}
.alertstar .alert-button-group {
  padding: 0;
  padding-bottom: 10px;
  flex-direction: row;
  justify-content: space-around;
}
.alertstar .alert-wrapper {
  border-radius: 12px;
  width: 100% !important;
  max-width: 450px !important;
  height: 25%;
}
.buttonCss {
  width: 100% !important;
}
.buttonCss .alert-wrapper {
  width: 96% !important;
  max-width: 100% !important;
}
.alert-warning {
  width: 100% !important;
}
.alert-warning .alert-wrapper {
  width: 96% !important;
  max-width: 100% !important;
}
hr {
  height: 0px !important;
  border: 0.1px solid rgba(128, 128, 128, 0.2117647059) !important;
  box-sizing: unset;
}
ion-title {
  font-size: 100%;
  font-weight: bolder;
}
.item-native {
  padding: 0% !important;
}
ion-item .item-native {
  padding-left: 0% !important;
}
.alert-warning .alert-button-group {
  padding: 8px 120px 8px 120px !important;
}
.alert-button-inner.sc-ion-alert-md {
  justify-content: center;
}
ion-button {
  font-size: 0.8rem;
}
.alert-wrapper {
  border-radius: 12px !important;
  width: 100% !important;
  max-width: 450px !important;
}
.alert-md .alert-message {
  color: #000000;
}
.alert-warning .alert-button-group {
  padding: 8px 120px 8px 120px !important;
}
.profile-warning .alert-button-group {
  padding: 0 !important;
}
.alert-radio-label.sc-ion-alert-md {
  font-size: 14px !important;
}
.alert-title.sc-ion-alert-md {
  font-size: 18px !important;
}
.error {
  color: red;
  font-size: 11px !important;
  display: flex !important;
  padding-left: 5% !important;
  padding-top: 2% !important;
}
ion-popover [popover]:not(:popover-open):not(dialog[open]) {
  display: contents;
}

/*# sourceMappingURL=styles.css.map*/