/*
* Ignite UI JS Blocks default theme
* TODO: Move global color variables here.
*/
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

html {
  box-sizing: border-box; }

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

/* ==========================================================================
   Ignite UI JS Blocks Variables
   ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. Colors
 *  2. Badges
 *  3. Buttons
 *  TODO: 4. Cards
 *  TODO: 5. Collapsible
 *  TODO: 6. Chips
 *  TODO: 7. Date Picker
 *  TODO: 8. Dropdown
 *  9. Fonts
 *  10. Forms
 *  11. Global
 *  TODO: 12. Navigation Bar
 *  TODO: 13. Navigation Drawer
 *  TODO: 14. Slider
 *  TODO: 15. Spinners | Loaders
 *  TODO: 16. Tabs
 *  TODO: 17. Tables
 *  TODO: 18. Toasts
 *  19. Typography
 *  TODO: 20. Flow Text
 *  TODO: 21. Collections
 *  TODO: 22. Progress Bar
 *  23. Lists
 */
/* 1. Colors
   ========================================================================== */
/* 2. Material Elevations / Shadows
   ========================================================================== */
/* 2. Badges
   ========================================================================== */
/* 3. Buttons
   ========================================================================== */
/* 9. Fonts
   ========================================================================== */
/* 10. Forms
   ========================================================================== */
/* 11. Global
   ========================================================================== */
/* 16. Bottom navigation bar / Tabs
   ========================================================================== */
/* 19. Typography
   ========================================================================== */
/* 23. List
   ========================================================================== */
/* Rectangle: */
/* 24. Modal
   ========================================================================== */
.ig-form-group {
  display: block;
  position: relative;
  margin: 20px 0;
  min-height: 40px;
  transform: translateZ(0); }
  .ig-form-group ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #757575; }

.ig-form-group label {
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0;
  transform-origin: bottom left;
  font-size: 1em;
  line-height: 1.5em;
  color: #757575;
  cursor: text;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all .3s ease-in-out; }

.ig-form-group__input--filled ~ label, .ig-form-group__input--placeholder ~ label {
  color: #a8a8a8;
  transform: translate3d(0, -20px, 0) scale(0.75); }

.ig-form-group__input--filled ~ label {
  color: #a8a8a8; }

.ig-form-group__input--focused ~ label {
  color: #e41c77;
  transform: translate3d(0, -20px, 0) scale(0.75); }

.ig-form-group__input, .ig-form-group__textarea, .ig-form-group__input--filled, .ig-form-group__input--focused, .ig-form-group__input--placeholder, .ig-form-group__input--search {
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(117, 117, 117, 0.5);
  color: #484848;
  background: transparent;
  font-size: 1em;
  line-height: 1.5em;
  width: 100%; }

.ig-form-group__input:focus, .ig-form-group__textarea:focus {
  border-bottom: 2px solid #e41c77; }

.ig-form-group__input:disabled, .ig-form-group__textarea:disabled {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-text-fill-color: #888888;
  border-bottom: 1px dotted rgba(117, 117, 117, 0.5); }

.ig-form-group__input.ng-valid[required].ng-touched, .ng-valid[required].ng-touched.ig-form-group__textarea, .ig-form-group__input.ng-valid.required, .ng-valid.required.ig-form-group__textarea {
  border-bottom: 2px solid #4CAF50; }

.ig-form-group__input.ng-valid[required].ng-touched ~ label, .ng-valid[required].ng-touched.ig-form-group__textarea ~ label, .ig-form-group__input.ng-valid.required ~ label, .ng-valid.required.ig-form-group__textarea ~ label {
  color: #4CAF50; }

.ig-form-group__input.ng-warning, .ng-warning.ig-form-group__textarea {
  border-bottom: 2px solid orange; }

.ig-form-group__input.ng-warning ~ label, .ng-warning.ig-form-group__textarea ~ label {
  color: orange; }

.ig-form-group__input.ng-invalid.ng-touched, .ng-invalid.ng-touched.ig-form-group__textarea, .ig-form-group__input.ng-invalid.ng-touched:not(form), .ng-invalid.ng-touched.ig-form-group__textarea:not(form) {
  border-bottom: 2px solid #F44336; }

.ig-form-group__input.ng-invalid.ng-touched ~ label, .ng-invalid.ng-touched.ig-form-group__textarea ~ label, .ig-form-group__input.ng-invalid:not(form).ng-touched ~ label, .ng-invalid.ig-form-group__textarea:not(form).ng-touched ~ label {
  color: #F44336; }

.ig-form-group__textarea {
  resize: none; }

.ig-form-group__input--search {
  padding: 12px 12px 12px 64px;
  border-bottom: none;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  font-size: 1em; }

.ig-form-group__clear, .ig-form-group__clear--hidden,
.ig-form-group__input--search ~ label {
  max-height: 100%;
  padding: 12px 16px;
  color: #484848; }

.ig-form-group__clear, .ig-form-group__clear--hidden {
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0;
  cursor: pointer; }

.ig-form-group__clear--hidden {
  visibility: hidden;
  pointer-events: none; }

.ig-control__radio ~ .ig-control__label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 20px;
  line-height: 20px;
  font-size: 1em;
  color: #484848;
  padding-left: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .ig-control__radio ~ .ig-control__label:before, .ig-control__radio ~ .ig-control__label:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    left: 0;
    border-radius: 50% 50%; }
  .ig-control__radio ~ .ig-control__label:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.2s ease-in; }

.ig-control__radio:not(:checked) ~ .ig-control__label:before {
  transform: scale(0); }

.ig-control__radio:not(:checked) ~ .ig-control__label:after {
  border: 2px solid #757575; }

.ig-control__radio:checked ~ .ig-control__label:before {
  border: 2px solid #e41c77;
  background-color: #e41c77;
  transform: scale(0.5); }

.ig-control__radio:checked ~ .ig-control__label:after {
  border: 2px solid #e41c77; }

.ig-control__radio:disabled ~ .ig-control__label {
  pointer-events: none;
  color: #888888; }

.ig-control__radio:disabled:not(:checked) ~ .ig-control__label:after {
  border: 2px solid #888888; }

.ig-control__radio:disabled:checked ~ .ig-control__label:before {
  background-color: #888888;
  border: 2px solid #888888; }

.ig-control__radio:disabled:checked ~ .ig-control__label:after {
  border: 2px solid #888888; }

.ig-control__cbx ~ .ig-control__label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  min-height: 20px;
  line-height: 20px;
  font-size: 1em;
  color: #484848;
  padding-left: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0); }
  .ig-control__cbx ~ .ig-control__label:before {
    transition: all 0.2s ease-in; }
  .ig-control__cbx ~ .ig-control__label:before, .ig-control__cbx ~ .ig-control__label:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    border-radius: 2px; }

.ig-control__cbx:not(:checked) ~ .ig-control__label:before {
  width: 8px;
  height: 14px;
  border: none;
  top: -2px;
  left: 2px;
  transform-origin: 20% 100%;
  transform: rotateZ(0) scale(0.1); }

.ig-control__cbx:not(:checked) ~ .ig-control__label:after {
  width: 20px;
  height: 20px;
  background: none;
  border: 2px solid #757575;
  z-index: 0; }

.ig-control__cbx:checked ~ .ig-control__label:before {
  width: 8px;
  height: 14px;
  top: -2px;
  left: 2px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: 20% 100%;
  transform: rotateZ(37deg) scale(1);
  z-index: 1; }

.ig-control__cbx:checked ~ .ig-control__label:after {
  width: 20px;
  height: 20px;
  background-color: #e41c77;
  border: 2px solid #e41c77; }

.ig-control__cbx:disabled ~ .ig-control__label {
  color: #d1d1d1;
  pointer-events: none; }

.ig-control__cbx:disabled:checked ~ .ig-control__label:before {
  background-color: transparent; }

.ig-control__cbx:disabled:checked ~ .ig-control__label:after {
  background-color: #888888;
  border-color: #888888; }

.ig-control__cbx:disabled:not(:checked) ~ .ig-control__label:before {
  background-color: transparent;
  border: 2px solid transparent; }

.ig-control__cbx:disabled:not(:checked) ~ .ig-control__label:after {
  border-color: #888888;
  background-color: transparent; }

.ig-control__switch ~ .ig-control__label {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 14px;
  background-color: #757575;
  color: transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .ig-control__switch ~ .ig-control__label:after {
    display: block;
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: -3px;
    left: -1px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease-in; }

.ig-control__switch:checked ~ .ig-control__label {
  background-color: rgba(228, 28, 119, 0.5); }
  .ig-control__switch:checked ~ .ig-control__label:after {
    left: 16px;
    background: #e41c77; }

.ig-control__switch:disabled ~ .ig-control__label {
  background: #F0F0F0;
  pointer-events: none; }
  .ig-control__switch:disabled ~ .ig-control__label:after {
    background: #D1D1D1;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12); }

.ig-list {
  background-color: #f2f2f2;
  overflow: hidden; }

ig-list-item {
  display: list-item;
  position: relative;
  list-style-type: none; }

.ig-list__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #e41c77;
  background-color: #fff;
  font-size: 0.8125em;
  font-weight: normal;
  height: 3em;
  line-height: 3em;
  padding: 8px 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ig-list__item {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 16px;
  min-height: 3em;
  font-size: 1em;
  color: #484848;
  background-color: #fff;
  z-index: 2; }

.ig-list__item:active {
  background-color: #fcfcfc;
  box-shadow: 4px 0px 6px -3px rgba(167, 167, 167, 0.3); }

.ig-avatar, .ig-avatar--rounded, .ig-avatar--small, .ig-avatar--medium, .ig-avatar--large, .ig-avatar--icon, .ig-avatar--image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }

.ig-avatar--rounded {
  border-radius: 50% 50%; }

.ig-avatar--small {
  width: 2.875em;
  height: 2.875em; }

.ig-avatar--medium {
  width: 4.25em;
  height: 4.25em; }

.ig-avatar--large {
  width: 5.375em;
  height: 5.375em; }

.ig-avatar--icon {
  background-color: #d1d1d1; }

.ig-avatar--image {
  background-color: transparent !important; }

.ig-button, .ig-button--flat, .ig-button--raised, .ig-button--gradient {
  display: inline-block;
  position: relative;
  min-width: 5.5em;
  padding: 0.5em 1em;
  font-size: 1em;
  font-weight: normal;
  text-align: center;
  color: #484848;
  border: none;
  border-radius: 2px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  transition: all 0.25s ease-out 0s; }

.ig-button--flat {
  color: #e41c77; }
  .ig-button--flat:hover {
    background: #F0F0F0; }
  .ig-button--flat:focus, .ig-button--flat:active {
    background: #D1D1D1; }

.ig-button--raised {
  color: #fff;
  background: #e41c77;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
  .ig-button--raised:hover {
    background: #ce196b;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
  .ig-button--raised:focus, .ig-button--raised:active {
    background: #ce196b;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }

.ig-button--gradient {
  color: #fff;
  background: linear-gradient(to bottom right, #e41c77, #fbb13c);
  box-shadow: 0 4px 10px -2px rgba(138, 16, 72, 0.8); }
  .ig-button--gradient:hover {
    background: linear-gradient(to bottom right, #ce196b, #faa723);
    box-shadow: 0 4px 10px -2px rgba(138, 16, 72, 0.8); }
  .ig-button--gradient:focus, .ig-button--gradient:active {
    background: linear-gradient(to bottom right, #ce196b, #faa723);
    box-shadow: 0 6px 12px -1px rgba(115, 14, 60, 0.75); }

.ig-button--fab, .ig-button--icon, .ig-button--navbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease-out 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 0 0 white); }

.ig-button--fab {
  width: 3.5em;
  height: 3.5em;
  color: #fff;
  background: #e41c77;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); }
  .ig-button--fab:hover {
    box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }
  .ig-button--fab:focus, .ig-button--fab:active {
    background: #ce196b; }

.ig-button--icon, .ig-button--navbar {
  width: 1.75em;
  height: 1.75em;
  font-size: 1.5em;
  background: transparent; }
  .ig-button--icon:hover, .ig-button--navbar:hover {
    transition: all 0.25s ease-out 0s;
    background: rgba(240, 240, 240, 0.5); }
  .ig-button--icon:focus, .ig-button--navbar:focus, .ig-button--icon:active, .ig-button--navbar:active {
    background: rgba(209, 209, 209, 0.5); }

.ig-button--navbar {
  width: 1.5em;
  height: 1.5em;
  font-size: 1.5em;
  padding: 0; }

.ig-button--disabled {
  color: #AEAEAE !important;
  background: #F0F0F0 !important;
  pointer-events: none !important;
  box-shadow: none !important;
  opacity: 0.9 !important; }

.ig-tab-bar-inner {
  width: 100%;
  position: absolute; }

.ig-tab-bar-inner__menu {
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 3.5em;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  overflow: hidden;
  z-index: 8; }

.ig-tab-bar-inner__menu--top {
  bottom: inherit;
  top: 0;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }

.ig-tab-bar-inner__menu--bottom {
  top: inherit;
  bottom: 0;
  box-shadow: 0px -2px 4px -1px rgba(0, 0, 0, 0.14), 0px -4px 5px 0px rgba(0, 0, 0, 0.14), 0px -1px 10px 0px rgba(0, 0, 0, 0.12); }

.ig-tab-bar-inner__menu .ig-tab-bar-inner__menu-item {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 80px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  list-style: none;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent; }

.ig-tab-bar-inner__menu .ig-tab-bar-inner__menu-item--disabled {
  opacity: 0.5;
  cursor: default; }

.ig-tab-bar-inner__menu .ig-tab-bar-inner__menu-item--selected .tab-label, .ig-tab-bar-inner__menu .ig-tab-bar-inner__menu-item--selected .tab-icon {
  opacity: 1;
  color: #e41c77;
  transition: all .25s ease-out; }

.ig-tab-bar-inner .tab-label {
  max-width: 168px;
  padding-top: 5px;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 1;
  opacity: .75; }

.ig-tab-bar-inner .tab-icon {
  position: relative;
  height: 24px;
  z-index: 1;
  opacity: .75; }

.ig-badge, .ig-badge--top-left, .ig-badge--bottom-left, .ig-badge--top-right, .ig-badge--bottom-right {
  position: absolute;
  max-width: 100%; }

.ig-badge__circle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 22px;
  height: 22px;
  font-size: 0.625em;
  font-weight: 600;
  color: #fff;
  background-color: #e41c77;
  border: 2px solid #fff;
  line-height: 2px;
  border-radius: 4px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
  overflow: hidden; }
  .ig-badge__circle i {
    font-size: 1.2em;
    font-weight: 600; }

.ig-badge__circle .ig-badge__circle-value {
  white-space: nowrap;
  padding: 0 2px; }

.ig-badge__circle {
  border-radius: 11px; }

.ig-badge__circle--success {
  background-color: #4CAF50; }

.ig-badge__circle--info {
  background-color: #0375be; }

.ig-badge__circle--warning {
  background-color: orange; }

.ig-badge__circle--error {
  background-color: #F44336; }

.ig-badge--hidden {
  visibility: hidden; }

.ig-badge--top-left {
  top: -5px;
  left: -5px; }

.ig-badge--top-right {
  top: -5px;
  right: -5px; }

.ig-badge--bottom-left {
  bottom: -5px;
  left: -5px; }

.ig-badge--bottom-right {
  bottom: -5px;
  right: -5px; }

@keyframes scale-in {
  0% {
    transform: scale(0); } }

.ig-ripple-host__ripple {
  display: inline-block;
  position: absolute;
  will-change: opacity, transform;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50% 50%;
  background: rgba(72, 72, 72, 0.5);
  opacity: .85;
  transform: scale(0);
  pointer-events: none;
  overflow: inherit;
  transform: translate3d(0, 0, 0); }

.ig-ripple-host {
  overflow: hidden; }

.ig-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(72, 72, 72, 0.5);
  opacity: 1;
  z-index: 9999;
  transition: all 0.4s ease-in; }

.ig-modal__window {
  position: relative;
  width: 25em;
  margin: 10% auto;
  padding: 5px 25px 10px 10px;
  background: #fff;
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); }

.ig-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
  background: #0375be;
  color: #fff;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  z-index: 4; }

.ig-navbar__left-btn {
  padding-left: 16px; }

.ig-navbar__left-btn--disabled {
  display: none; }

.ig-navbar__title {
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  padding-left: 16px; }

@font-face {
  font-family: "Titillium Web";
  src: local(Titillium Web Light), url("fonts/titillium/TitilliumWeb-Light.ttf");
  src: url("fonts/titillium/TitilliumWeb-Light.ttf") format("truetype");
  font-weight: 300; }

@font-face {
  font-family: "Titillium Web";
  src: local(Titillium Web Regular), url("fonts/titillium/TitilliumWeb-Regular.ttf");
  src: url("fonts/titillium/TitilliumWeb-Regular.ttf") format("truetype");
  font-weight: 400; }

@font-face {
  font-family: "Titillium Web";
  src: local(Titillium Web Semi-Bold), url("fonts/titillium/TitilliumWeb-SemiBold.ttf");
  src: url("fonts/titillium/TitilliumWeb-SemiBold.ttf") format("truetype");
  font-weight: 600; }

@font-face {
  font-family: "Titillium Web";
  src: local(Titillium Web Bold), url("fonts/titillium/TitilliumWeb-Bold.ttf");
  src: url("fonts/titillium/TitilliumWeb-Bold.ttf") format("truetype");
  font-weight: 700; }

a {
  text-decoration: none; }

html {
  font-size: 100%;
  font-size-adjust: 0.58;
  font-family: 'Titillium Web', sans-serif;
  font-weight: normal;
  color: #484848; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  -webkit-font-smoothing: antialiased; }

@media only screen and (min-width: 0) {
  h1 {
    font-size: 2em;
    line-height: 2.5em; }
  h2 {
    font-size: 1.625em;
    line-height: 1.875em; }
  h3 {
    font-size: 1.375em;
    line-height: 1.5625em; }
  h4 {
    font-size: 1.375em;
    line-height: 1.25em; }
  p {
    line-height: 1.25em; } }

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.5em;
    line-height: 2.8125em; }
  h2 {
    font-size: 2em;
    line-height: 2.5em; }
  h3 {
    font-size: 1.5em;
    line-height: 1.875em; }
  h4 {
    font-size: 1.125em;
    line-height: 1.375em; }
  p {
    line-height: 1.375em; } }

@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 3em;
    line-height: 3.375em; }
  h2 {
    font-size: 2.25em;
    line-height: 2.8125em; }
  h3 {
    font-size: 1.75em;
    line-height: 2.1875em; }
  h4 {
    font-size: 1.125em;
    line-height: 1.375em; } }

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.woff2) format("woff2"), url(../../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.woff) format("woff"), url(../../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.ttf) format("truetype"); }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

.ig-control__radio {
  position: absolute;
  opacity: 0;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none; }

.ig-control__cbx {
  position: absolute;
  opacity: 0;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none; }

.ig-control__switch {
  position: absolute;
  opacity: 0;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none; }

.ig-control__text {
  padding-right: 16px; }

ig-tab .ig-tab-inner {
  display: none;
  overflow: auto; }
  ig-tab .ig-tab-inner.selected {
    display: block; }
  ig-tab .ig-tab-inner::-webkit-scrollbar {
    display: none; }

@keyframes selected {
  from {
    transform: scale(0); }
  to {
    transform: scale(44.5); } }

/* Main Navigation Drawer state styles */
.ig-nav-drawer {
  position: fixed;
  width: 18.75em;
  height: 100%;
  max-width: 90%;
  min-height: 100%;
  overflow-x: hidden;
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  /*transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);*/
  /* use full syntax, iOS Safari won't work with transition: width .3s ease-in, transform .3s ease-in; shorthand */
  transition-property: width, transform;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease-in-out, ease-in;
  transition-delay: 0s, 0s;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  /* states */ }
  .ig-nav-drawer.collapsed {
    transform: translate3d(-300px, 0px, 0px);
    box-shadow: none; }
  .ig-nav-drawer.right {
    left: auto;
    right: 0; }
  .ig-nav-drawer.collapsed.right {
    transform: translate3d(300px, 0px, 0px);
    box-shadow: none; }
  .ig-nav-drawer.mini {
    width: 60px;
    transition-duration: 0.2s, 0.2s; }
  .ig-nav-drawer.pinned {
    position: relative;
    box-shadow: none; }
  .ig-nav-drawer.pinned.collapsed {
    transform: none;
    width: 0;
    padding: 0;
    overflow: hidden; }

/* Utility classes for active pan */
.ig-nav-drawer.panning {
  overflow-x: hidden;
  transition: none; }

.ig-nav-drawer-overlay.panning {
  transform: translate3d(0, 0, 0);
  /* try layer creation manually in advance for opacity */
  transition: none; }
  .ig-nav-drawer-overlay.panning.hidden {
    visibility: visible; }

.style-dummy {
  height: 0;
  background: none;
  box-shadow: none;
  transition: none;
  visibility: hidden;
  /* potentially don't use this? */ }

/* Navigation Drawer overlay styles */
.ig-nav-drawer-overlay {
  opacity: 1;
  background-color: rgba(72, 72, 72, 0.5);
  transition-property: opacity, visibility;
  /* opacity must match drawer transition, step over visibility to reduce animation cost */
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease-in, step-start;
  transition-delay: 0s, 0s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: visible; }
  .ig-nav-drawer-overlay.hidden {
    transition-timing-function: ease-in-out, step-end;
    /* use visibility so opacity can be animated */
    visibility: hidden;
    opacity: 0; }
  .ig-nav-drawer-overlay.pinned {
    display: none; }

[hidden] {
  display: none !important; }

.ig-carousel {
  position: relative;
  transform-style: preserve-3d;
  outline: none; }

.ig-carousel-indicators {
  position: absolute;
  text-align: center;
  list-style: none;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  padding: 0; }
  .ig-carousel-indicators li {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 1px;
    text-indent: -9999px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 10px; }
  .ig-carousel-indicators .active {
    color: #fff;
    background: #fff;
    width: 12px;
    height: 12px;
    border-radius: 10px; }

.ig-carousel-inner {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden; }
  .ig-carousel-inner .item {
    position: relative;
    display: none;
    transition: .5s ease-in-out left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px; }
    .ig-carousel-inner .item .next,
    .ig-carousel-inner .item .prev,
    .ig-carousel-inner .item .next.left,
    .ig-carousel-inner .item .prev.right,
    .ig-carousel-inner .item .active.right,
    .ig-carousel-inner .item .active.left {
      left: 0;
      transform: translate3d(100%, 0, 0); }
    .ig-carousel-inner .item img {
      width: 100%;
      height: 100%; }
  .ig-carousel-inner .active,
  .ig-carousel-inner .next,
  .ig-carousel-inner .prev {
    display: block; }
  .ig-carousel-inner .next,
  .ig-carousel-inner .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .ig-carousel-inner .next {
    left: 100%; }
  .ig-carousel-inner .prev {
    left: -100%; }

.ig-carousel-control {
  position: absolute;
  display: block;
  padding: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 26px; }
  .ig-carousel-control :hover {
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer; }
  .ig-carousel-control span {
    padding: 10px; }

.left {
  left: 0; }

.right {
  right: 0; }

.ig-goUp {
  animation: goUp 1s ease both; }

.ig-goDown {
  animation: goDown 1s ease both; }

.ig-goLeft {
  animation: goLeft 1s ease both; }

.ig-goRight {
  animation: goRight 1s ease both; }

.ig-fade {
  animation: fade 3s ease both; }

@keyframes fade {
  0% {
    opacity: .25; }
  50% {
    opacity: 1; }
  100% {
    opacity: .0; } }

@keyframes goUp {
  from {
    transform: translateY(100%); } }

@keyframes goDown {
  from {
    transform: translateY(-100%); } }

@keyframes goLeft {
  from {
    transform: translateX(-100%); } }

@keyframes goRight {
  from {
    transform: translateX(100%); } }

/*# sourceMappingURL=zero-blocks.css.map */
