/*
 * Normalize
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *		without disabling user zoom.
 */
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 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent 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;
}
/**
 * Address 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
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
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.
 */
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.
 */
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.
 */
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;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
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.
 */
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;
}
/*
 * Base
 */
/*
 * Global
 */
/*
 * Definitions
 */
/*
 * Root Size
 */
:root {
  font-size: 10px;
  /*	@media @xlarge {
		font-size: @root-size-xlarge;
	}
	
	@media @large {
		font-size: @root-size-large;
	}

	@media @medium {
		font-size: @root-size-medium;
	}
	
	@media @small {
		font-size: @root-size-small;
	}

	@media @xsmall {
		font-size: @root-size-xsmall;
	}*/
}
/*
 * Definitions
 */
/*
 * Body
 */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
:focus {
  outline: 0;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  background: #FAF7FB;
}
/*
 * Colors
 */
/*
 * Fonts
 */
@font-face {
  font-family: 'fisio';
  src: url('/assets/fonts/fisio/fisio.eot');
  src: url('/assets/fonts/fisio/fisio.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/fisio/fisio.svg#icon') format('svg'), url('/assets/fonts/fisio/fisio.woff') format('woff'), url('/assets/fonts/fisio/fisio.ttf') format('truetype'), url('/assets/fonts/fisio/fisio.svg#icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'National';
  src: url('/assets/fonts/National/National-Extrabold.eot');
  src: url('/assets/fonts/National/National-Extrabold.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/National/National-Extrabold.svg#icon') format('svg'), url('/assets/fonts/National/National-Extrabold.woff') format('woff'), url('/assets/fonts/National/National-Extrabold.ttf') format('truetype'), url('/assets/fonts/National/National-Extrabold.svg#icon') format('svg');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'National';
  src: url('/assets/fonts/National/National-Bold.eot');
  src: url('/assets/fonts/National/National-Bold.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/National/National-Bold.svg#icon') format('svg'), url('/assets/fonts/National/National-Bold.woff') format('woff'), url('/assets/fonts/National/National-Bold.ttf') format('truetype'), url('/assets/fonts/National/National-Bold.svg#icon') format('svg');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'National';
  src: url('/assets/fonts/National/National-Semibold.eot');
  src: url('/assets/fonts/National/National-Semibold.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/National/National-Semibold.svg#icon') format('svg'), url('/assets/fonts/National/National-Semibold.woff') format('woff'), url('/assets/fonts/National/National-Semibold.ttf') format('truetype'), url('/assets/fonts/National/National-Semibold.svg#icon') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'National';
  src: url('/assets/fonts/National/National-Regular.eot');
  src: url('/assets/fonts/National/National-Regular.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/National/National-Regular.svg#icon') format('svg'), url('/assets/fonts/National/National-Regular.woff') format('woff'), url('/assets/fonts/National/National-Regular.ttf') format('truetype'), url('/assets/fonts/National/National-Regular.svg#icon') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'National';
  src: url('/assets/fonts/National/National-Light.eot');
  src: url('/assets/fonts/National/National-Light.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/National/National-Light.svg#icon') format('svg'), url('/assets/fonts/National/National-Light.woff') format('woff'), url('/assets/fonts/National/National-Light.ttf') format('truetype'), url('/assets/fonts/National/National-Light.svg#icon') format('svg');
  font-weight: 300;
  font-style: normal;
}
/*
 * Definitions
 */
/*
 * Link
 */
a {
  color: #9A76AF;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}
a:not(.button):hover,
a:not(.button):focus {
  color: #656565;
  text-decoration: none;
}
/*
 * Definitions
 */
/*
 * Image
 */
img {
  vertical-align: bottom;
}
img.rounded {
  border-radius: 8px;
}
img.circle {
  border-radius: 50%;
}
img.responsive {
  width: 100%;
  height: auto;
}
/*
 * Breakpoints
 */
/*
 * Media Queries
 */
/*
 * Definitions
 */
/*
 * Print
 */
@page {
  size: A4;
  margin: 1.5cm 2cm;
}
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: '("attr(href)")';
  }
  a[href^="#"]:after {
    content: '';
  }
  abbr[title]:after {
    content: '("attr(title)")';
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  table {
    border-collapse: collapse !important;
  }
  table td,
  table th {
    background-color: #FFFFFF !important;
  }
}
/*
 * Typography
 */
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child,
dl:first-child,
dd:first-child,
dt:first-child,
ul > li:first-child,
ol > li:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
dl:last-child,
dd:last-child,
dt:last-child,
ul > li:last-child,
ol > li:last-child {
  margin-bottom: 0;
}
/*
 * Definitions
 */
/*
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1em 0;
  padding: 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.6em;
  color: #555;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.4rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.8rem;
}
h5 {
  font-size: 1.6rem;
}
h6 {
  font-size: 1.4rem;
}
/*
 * Definitions
 */
/*
 * Paragraph
 */
p {
  margin: 2rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}
/*
 * Definitions
 */
/*
 * Lead
 */
.lead {
  margin: 0 0 2rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #000000;
  line-height: 1.5;
}
/*
 * Definitions
 */
/*
 * Strong
 */
strong {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
/*
 * Definitions
 */
/*
 * Emphasis
 */
em {
  font-style: italic;
}
/*
 * Definitions
 */
/*
 * Horizontal Rule
 */
hr {
  clear: both;
  margin: 3rem auto;
  border: 0;
  height: 1px;
  background: #DDD;
}
/*
 * Definitions
 */
/*
 * Blockquote
 */
blockquote {
  margin: 3rem 0;
  padding: 0 2rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1.5;
  color: #000000;
}
blockquote p {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  color: inherit;
}
blockquote cite {
  display: block;
  margin: 1rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  color: #000000;
  text-align: left;
}
/*
 * Definitions
 */
/*
 * Pullout
 */
.pullout {
  margin: 3rem 0;
  padding: 0 2rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #000000;
  border: solid #9A76AF;
  border-width: 0 0 0 0.4rem;
}
/*
 * Definitions
 */
/*
 * Lists
 */
ul,
ol {
  margin: 2rem 0;
  padding: 0;
}
ul li,
ol li {
  margin: 1rem 0 1rem 2rem;
  padding: 0 0 0 0.5rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}
ul li ul,
ol li ul {
  margin: 1rem 0;
  padding: 0;
}
ul li ul li,
ol li ul li {
  margin: 1rem 0 1rem 2rem;
}
ul {
  list-style: disc;
}
ul li ul {
  list-style: disc;
}
.list-unstyled {
  list-style: none;
}
.list-unstyled li {
  margin-left: 0;
}
.list-inline li {
  display: inline-block;
}
/*
 * Definitions
 */
/*
 * Definition List
 */
dl {
  margin: 2rem 0;
  padding: 0;
}
dt {
  margin: 1rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.65);
}
dd {
  margin: 0 0 2rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.65);
}
/*
 * Definitions
 */
/*
 * Code
 */
code {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-weight: normal;
  font-size: 1.2rem;
  color: #8B008B;
}
/*
 * Definitions
 */
/*
 * Code
 */
pre {
  margin: 2rem 0;
  padding: 1rem;
  overflow: auto;
  color: #000000;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  hyphens: none;
  background: #FAFAFC;
  border: 1px solid #DDD;
}
pre code {
  color: #8B008B;
}
/*
 * Definitions
 */
/*
 * Kbd
 */
kbd {
  margin: 0 0.5rem;
  padding: 0.4rem;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-weight: normal;
  font-size: 1.2rem;
  color: #8B008B;
  background: #FAFAFC;
  border: 1px solid #DDD;
}
/*
 * Definitions
 */
/*
 * mark
 */
mark {
  margin: 0;
  padding: 0.3rem 0.6rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.65);
  background: yellow;
  border: none;
  border-radius: 0.4rem;
}
mark.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
mark.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
mark.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
mark.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
/*
 * Fonticons
 */
.icon--worker:before {
  content: "\e90b";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--clients:before {
  content: "\e90d";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--bono:before {
  content: "\e90c";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--material:before {
  content: "\e90e";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--logout:before {
  content: "\e904";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--plus:before {
  content: "\e907";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--arrow:before {
  content: "\e901";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--chevron-left:before {
  content: "\e910";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--chevron-right:before {
  content: "\e906";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--chevron-down:before {
  content: "\e903";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--magnifying:before {
  content: "\e90f";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--session:before {
  content: "\e909";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--cancel-session:before {
  content: "\e902";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--report:before {
  content: "\e908";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--stop:before {
  content: "\e90a";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--info:before {
  content: "\e905";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--caution:before {
  content: "\e911";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--trash:before {
  content: "\e915";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--download:before {
  content: "\e91b";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--list:before {
  content: "\e91a";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.icon--calendar:before {
  content: "\e919";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
/*
 * Grid
 */
/*
 * Definitions
 */
/*
 * Container
 */
.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  *zoom: 1;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  max-width: 1440px;
  /*@media @xlarge {
		padding-left: @gutter-xlarge;
		padding-right: @gutter-xlarge;
		max-width: @container-xlarge;
	}

	@media @large {
		padding-left: @gutter-large;
		padding-right: @gutter-large;
		max-width: @container-large;
	}

	@media @medium {
		padding-left: @gutter-medium;
		padding-right: @gutter-medium;
		max-width: @container-medium;
	}
	
	@media @small {
		padding-left: @gutter-small;
		padding-right: @gutter-small;
		max-width: @container-small;
	}

	@media @xsmall {
		padding-left: @gutter-xsmall;
		padding-right: @gutter-xsmall;
		max-width: @container-xsmall;
	}*/
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
/*
 * Row
 */
.row {
  margin-left: -1.6rem;
  margin-right: -1.6rem;
  *zoom: 1;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1680px) {
  .row {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
  }
  .row.no-gutter-xlarge {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1280px) and (max-width: 1679px) {
  .row {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
  }
  .row.no-gutter-large {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .row {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
  }
  .row.no-gutter-medium {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .row {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
  }
  .row.no-gutter-small {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
  }
  .row.no-gutter-xsmall {
    margin-left: 0;
    margin-right: 0;
  }
}
/*
 * Definitions
 */
/*
 * Gutter
 */
.no-gutter {
  padding: 0 !important;
}
.gutter-top {
  padding-top: 3.2rem !important;
}
.gutter-bottom {
  padding-bottom: 3.2rem !important;
}
.gutter-left {
  padding-left: 1.6rem !important;
}
.gutter-right {
  padding-right: 1.6rem !important;
}
@media (min-width: 1680px) {
  .no-gutter-xlarge {
    padding: 0 !important;
  }
  .gutter-top {
    padding-top: 3.2rem !important;
  }
  .gutter-bottom {
    padding-bottom: 3.2rem !important;
  }
  .gutter-left {
    padding-left: 1.6rem !important;
  }
  .gutter-right {
    padding-right: 1.6rem !important;
  }
}
@media (min-width: 1280px) and (max-width: 1679px) {
  .no-gutter-large {
    padding: 0 !important;
  }
  .gutter-top {
    padding-top: 3.2rem !important;
  }
  .gutter-bottom {
    padding-bottom: 3.2rem !important;
  }
  .gutter-left {
    padding-left: 1.6rem !important;
  }
  .gutter-right {
    padding-right: 1.6rem !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .no-gutter-medium {
    padding: 0 !important;
  }
  .gutter-top {
    padding-top: 3.2rem !important;
  }
  .gutter-bottom {
    padding-bottom: 3.2rem !important;
  }
  .gutter-left {
    padding-left: 1.6rem !important;
  }
  .gutter-right {
    padding-right: 1.6rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .no-gutter-small {
    padding: 0 !important;
  }
  .gutter-top {
    padding-top: 3.2rem !important;
  }
  .gutter-bottom {
    padding-bottom: 3.2rem !important;
  }
  .gutter-left {
    padding-left: 1.6rem !important;
  }
  .gutter-right {
    padding-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  .no-gutter-xsmall {
    padding: 0 !important;
  }
  .gutter-top {
    padding-top: 3.2rem !important;
  }
  .gutter-bottom {
    padding-bottom: 3.2rem !important;
  }
  .gutter-left {
    padding-left: 1.6rem !important;
  }
  .gutter-right {
    padding-right: 1.6rem !important;
  }
}
/*
 * Definitions
 */
/*
 * Columns
 */
[class*='column-'] {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
[class*='column-'].column-center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1680px) {
  [class*='column-'] {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
@media (min-width: 1280px) and (max-width: 1679px) {
  [class*='column-'] {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  [class*='column-'] {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [class*='column-'] {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
@media (max-width: 767px) {
  [class*='column-'] {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
/*
 * Column Classes
 */
.column-1 {
  width: 100%;
}
.column-1-2,
.column-2-4,
.column-3-6,
.column-4-8,
.column-5-10,
.column-6-12 {
  width: 50%;
}
.column-1-3,
.column-2-6,
.column-3-9,
.column-4-12 {
  width: 33.3333%;
}
.column-2-3,
.column-4-6,
.column-6-9,
.column-8-12 {
  width: 66.6666%;
}
.column-1-4,
.column-2-8,
.column-3-12 {
  width: 25%;
}
.column-3-4,
.column-6-8,
.column-9-12 {
  width: 75%;
}
.column-1-5,
.column-2-10 {
  width: 20%;
}
.column-2-5,
.column-4-10 {
  width: 40%;
}
.column-3-5,
.column-6-10 {
  width: 60%;
}
.column-4-5,
.column-8-10 {
  width: 80%;
}
.column-1-6,
.column-2-12 {
  width: 16.6667%;
}
.column-5-6 {
  width: 83.3335%;
}
.column-1-7 {
  width: 14.2857%;
}
.column-2-7 {
  width: 28.5714%;
}
.column-3-7 {
  width: 42.8571%;
}
.column-4-7 {
  width: 57.1428%;
}
.column-5-7 {
  width: 71.4285%;
}
.column-6-7 {
  width: 85.7142%;
}
.column-1-8 {
  width: 12.5%;
}
.column-3-8 {
  width: 37.5%;
}
.column-5-8 {
  width: 62.5%;
}
.column-7-8 {
  width: 87.5%;
}
.column-1-9 {
  width: 11.1111%;
}
.column-2-9 {
  width: 22.2222%;
}
.column-4-9 {
  width: 44.4444%;
}
.column-5-9 {
  width: 55.5555%;
}
.column-7-9 {
  width: 77.7777%;
}
.column-8-9 {
  width: 88.8888%;
}
.column-1-10 {
  width: 10%;
}
.column-3-10 {
  width: 30%;
}
.column-7-10 {
  width: 70%;
}
.column-9-10 {
  width: 90%;
}
.column-1-11 {
  width: 9.0909%;
}
.column-2-11 {
  width: 18.1818%;
}
.column-3-11 {
  width: 27.2727%;
}
.column-4-11 {
  width: 36.3636%;
}
.column-5-11 {
  width: 45.4545%;
}
.column-6-11 {
  width: 54.5454%;
}
.column-7-11 {
  width: 63.6363%;
}
.column-8-11 {
  width: 72.7272%;
}
.column-9-11 {
  width: 81.8181%;
}
.column-10-11 {
  width: 90.909%;
}
.column-1-12 {
  width: 8.3333%;
}
.column-5-12 {
  width: 41.6665%;
}
.column-7-12 {
  width: 58.3331%;
}
.column-10-12 {
  width: 83.333%;
}
.column-11-12 {
  width: 91.6663%;
}
/*
 * Column Extra Large Classes
 */
@media (min-width: 1680px) {
  .column-xlarge-1 {
    width: 100%;
  }
  .column-xlarge-1-2,
  .column-xlarge-2-4,
  .column-xlarge-3-6,
  .column-xlarge-4-8,
  .column-xlarge-5-10,
  .column-xlarge-6-12 {
    width: 50%;
  }
  .column-xlarge-1-3,
  .column-xlarge-2-6,
  .column-xlarge-3-9,
  .column-xlarge-4-12 {
    width: 33.3333%;
  }
  .column-xlarge-2-3,
  .column-xlarge-4-6,
  .column-xlarge-6-9,
  .column-xlarge-8-12 {
    width: 66.6666%;
  }
  .column-xlarge-1-4,
  .column-xlarge-2-8,
  .column-xlarge-3-12 {
    width: 25%;
  }
  .column-xlarge-3-4,
  .column-xlarge-6-8,
  .column-xlarge-9-12 {
    width: 75%;
  }
  .column-xlarge-1-5,
  .column-xlarge-2-10 {
    width: 20%;
  }
  .column-xlarge-2-5,
  .column-xlarge-4-10 {
    width: 40%;
  }
  .column-xlarge-3-5,
  .column-xlarge-6-10 {
    width: 60%;
  }
  .column-xlarge-4-5,
  .column-xlarge-8-10 {
    width: 80%;
  }
  .column-xlarge-1-6,
  .column-xlarge-2-12 {
    width: 16.6667%;
  }
  .column-xlarge-5-6 {
    width: 83.3335%;
  }
  .column-xlarge-1-7 {
    width: 14.2857%;
  }
  .column-xlarge-2-7 {
    width: 28.5714%;
  }
  .column-xlarge-3-7 {
    width: 42.8571%;
  }
  .column-xlarge-4-7 {
    width: 57.1428%;
  }
  .column-xlarge-5-7 {
    width: 71.4285%;
  }
  .column-xlarge-6-7 {
    width: 85.7142%;
  }
  .column-xlarge-1-8 {
    width: 12.5%;
  }
  .column-xlarge-3-8 {
    width: 37.5%;
  }
  .column-xlarge-5-8 {
    width: 62.5%;
  }
  .column-xlarge-7-8 {
    width: 87.5%;
  }
  .column-xlarge-1-9 {
    width: 11.1111%;
  }
  .column-xlarge-2-9 {
    width: 22.2222%;
  }
  .column-xlarge-4-9 {
    width: 44.4444%;
  }
  .column-xlarge-5-9 {
    width: 55.5555%;
  }
  .column-xlarge-7-9 {
    width: 77.7777%;
  }
  .column-xlarge-8-9 {
    width: 88.8888%;
  }
  .column-xlarge-1-10 {
    width: 10%;
  }
  .column-xlarge-3-10 {
    width: 30%;
  }
  .column-xlarge-7-10 {
    width: 70%;
  }
  .column-xlarge-9-10 {
    width: 90%;
  }
  .column-xlarge-1-11 {
    width: 9.0909%;
  }
  .column-xlarge-2-11 {
    width: 18.1818%;
  }
  .column-xlarge-3-11 {
    width: 27.2727%;
  }
  .column-xlarge-4-11 {
    width: 36.3636%;
  }
  .column-xlarge-5-11 {
    width: 45.4545%;
  }
  .column-xlarge-6-11 {
    width: 54.5454%;
  }
  .column-xlarge-7-11 {
    width: 63.6363%;
  }
  .column-xlarge-8-11 {
    width: 72.7272%;
  }
  .column-xlarge-9-11 {
    width: 81.8181%;
  }
  .column-xlarge-10-11 {
    width: 90.909%;
  }
  .column-xlarge-1-12 {
    width: 8.3333%;
  }
  .column-xlarge-5-12 {
    width: 41.6665%;
  }
  .column-xlarge-7-12 {
    width: 58.3331%;
  }
  .column-xlarge-10-12 {
    width: 83.333%;
  }
  .column-xlarge-11-12 {
    width: 91.6663%;
  }
}
/*
 * Column Large Classes
 */
@media (min-width: 1280px) and (max-width: 1679px) {
  .column-large-1 {
    width: 100%;
  }
  .column-large-1-2,
  .column-large-2-4,
  .column-large-3-6,
  .column-large-4-8,
  .column-large-5-10,
  .column-large-6-12 {
    width: 50%;
  }
  .column-large-1-3,
  .column-large-2-6,
  .column-large-3-9,
  .column-large-4-12 {
    width: 33.3333%;
  }
  .column-large-2-3,
  .column-large-4-6,
  .column-large-6-9,
  .column-large-8-12 {
    width: 66.6666%;
  }
  .column-large-1-4,
  .column-large-2-8,
  .column-large-3-12 {
    width: 25%;
  }
  .column-large-3-4,
  .column-large-6-8,
  .column-large-9-12 {
    width: 75%;
  }
  .column-large-1-5,
  .column-large-2-10 {
    width: 20%;
  }
  .column-large-2-5,
  .column-large-4-10 {
    width: 40%;
  }
  .column-large-3-5,
  .column-large-6-10 {
    width: 60%;
  }
  .column-large-4-5,
  .column-large-8-10 {
    width: 80%;
  }
  .column-large-1-6,
  .column-large-2-12 {
    width: 16.6667%;
  }
  .column-large-5-6 {
    width: 83.3335%;
  }
  .column-large-1-7 {
    width: 14.2857%;
  }
  .column-large-2-7 {
    width: 28.5714%;
  }
  .column-large-3-7 {
    width: 42.8571%;
  }
  .column-large-4-7 {
    width: 57.1428%;
  }
  .column-large-5-7 {
    width: 71.4285%;
  }
  .column-large-6-7 {
    width: 85.7142%;
  }
  .column-large-1-8 {
    width: 12.5%;
  }
  .column-large-3-8 {
    width: 37.5%;
  }
  .column-large-5-8 {
    width: 62.5%;
  }
  .column-large-7-8 {
    width: 87.5%;
  }
  .column-large-1-9 {
    width: 11.1111%;
  }
  .column-large-2-9 {
    width: 22.2222%;
  }
  .column-large-4-9 {
    width: 44.4444%;
  }
  .column-large-5-9 {
    width: 55.5555%;
  }
  .column-large-7-9 {
    width: 77.7777%;
  }
  .column-large-8-9 {
    width: 88.8888%;
  }
  .column-large-1-10 {
    width: 10%;
  }
  .column-large-3-10 {
    width: 30%;
  }
  .column-large-7-10 {
    width: 70%;
  }
  .column-large-9-10 {
    width: 90%;
  }
  .column-large-1-11 {
    width: 9.0909%;
  }
  .column-large-2-11 {
    width: 18.1818%;
  }
  .column-large-3-11 {
    width: 27.2727%;
  }
  .column-large-4-11 {
    width: 36.3636%;
  }
  .column-large-5-11 {
    width: 45.4545%;
  }
  .column-large-6-11 {
    width: 54.5454%;
  }
  .column-large-7-11 {
    width: 63.6363%;
  }
  .column-large-8-11 {
    width: 72.7272%;
  }
  .column-large-9-11 {
    width: 81.8181%;
  }
  .column-large-10-11 {
    width: 90.909%;
  }
  .column-large-1-12 {
    width: 8.3333%;
  }
  .column-large-5-12 {
    width: 41.6665%;
  }
  .column-large-7-12 {
    width: 58.3331%;
  }
  .column-large-10-12 {
    width: 83.333%;
  }
  .column-large-11-12 {
    width: 91.6663%;
  }
}
/*
 * Column Medium Classes
 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .column-medium-1 {
    width: 100%;
  }
  .column-medium-1-2,
  .column-medium-2-4,
  .column-medium-3-6,
  .column-medium-4-8,
  .column-medium-5-10,
  .column-medium-6-12 {
    width: 50%;
  }
  .column-medium-1-3,
  .column-medium-2-6,
  .column-medium-3-9,
  .column-medium-4-12 {
    width: 33.3333%;
  }
  .column-medium-2-3,
  .column-medium-4-6,
  .column-medium-6-9,
  .column-medium-8-12 {
    width: 66.6666%;
  }
  .column-medium-1-4,
  .column-medium-2-8,
  .column-medium-3-12 {
    width: 25%;
  }
  .column-medium-3-4,
  .column-medium-6-8,
  .column-medium-9-12 {
    width: 75%;
  }
  .column-medium-1-5,
  .column-medium-2-10 {
    width: 20%;
  }
  .column-medium-2-5,
  .column-medium-4-10 {
    width: 40%;
  }
  .column-medium-3-5,
  .column-medium-6-10 {
    width: 60%;
  }
  .column-medium-4-5,
  .column-medium-8-10 {
    width: 80%;
  }
  .column-medium-1-6,
  .column-medium-2-12 {
    width: 16.6667%;
  }
  .column-medium-5-6 {
    width: 83.3335%;
  }
  .column-medium-1-7 {
    width: 14.2857%;
  }
  .column-medium-2-7 {
    width: 28.5714%;
  }
  .column-medium-3-7 {
    width: 42.8571%;
  }
  .column-medium-4-7 {
    width: 57.1428%;
  }
  .column-medium-5-7 {
    width: 71.4285%;
  }
  .column-medium-6-7 {
    width: 85.7142%;
  }
  .column-medium-1-8 {
    width: 12.5%;
  }
  .column-medium-3-8 {
    width: 37.5%;
  }
  .column-medium-5-8 {
    width: 62.5%;
  }
  .column-medium-7-8 {
    width: 87.5%;
  }
  .column-medium-1-9 {
    width: 11.1111%;
  }
  .column-medium-2-9 {
    width: 22.2222%;
  }
  .column-medium-4-9 {
    width: 44.4444%;
  }
  .column-medium-5-9 {
    width: 55.5555%;
  }
  .column-medium-7-9 {
    width: 77.7777%;
  }
  .column-medium-8-9 {
    width: 88.8888%;
  }
  .column-medium-1-10 {
    width: 10%;
  }
  .column-medium-3-10 {
    width: 30%;
  }
  .column-medium-7-10 {
    width: 70%;
  }
  .column-medium-9-10 {
    width: 90%;
  }
  .column-medium-1-11 {
    width: 9.0909%;
  }
  .column-medium-2-11 {
    width: 18.1818%;
  }
  .column-medium-3-11 {
    width: 27.2727%;
  }
  .column-medium-4-11 {
    width: 36.3636%;
  }
  .column-medium-5-11 {
    width: 45.4545%;
  }
  .column-medium-6-11 {
    width: 54.5454%;
  }
  .column-medium-7-11 {
    width: 63.6363%;
  }
  .column-medium-8-11 {
    width: 72.7272%;
  }
  .column-medium-9-11 {
    width: 81.8181%;
  }
  .column-medium-10-11 {
    width: 90.909%;
  }
  .column-medium-1-12 {
    width: 8.3333%;
  }
  .column-medium-5-12 {
    width: 41.6665%;
  }
  .column-medium-7-12 {
    width: 58.3331%;
  }
  .column-medium-10-12 {
    width: 83.333%;
  }
  .column-medium-11-12 {
    width: 91.6663%;
  }
}
/*
 * Column Small Classes
 */
@media (min-width: 768px) and (max-width: 1023px) {
  .column-small-1 {
    width: 100%;
  }
  .column-small-1-2,
  .column-small-2-4,
  .column-small-3-6,
  .column-small-4-8,
  .column-small-5-10,
  .column-small-6-12 {
    width: 50%;
  }
  .column-small-1-3,
  .column-small-2-6,
  .column-small-3-9,
  .column-small-4-12 {
    width: 33.3333%;
  }
  .column-small-2-3,
  .column-small-4-6,
  .column-small-6-9,
  .column-small-8-12 {
    width: 66.6666%;
  }
  .column-small-1-4,
  .column-small-2-8,
  .column-small-3-12 {
    width: 25%;
  }
  .column-small-3-4,
  .column-small-6-8,
  .column-small-9-12 {
    width: 75%;
  }
  .column-small-1-5,
  .column-small-2-10 {
    width: 20%;
  }
  .column-small-2-5,
  .column-small-4-10 {
    width: 40%;
  }
  .column-small-3-5,
  .column-small-6-10 {
    width: 60%;
  }
  .column-small-4-5,
  .column-small-8-10 {
    width: 80%;
  }
  .column-small-1-6,
  .column-small-2-12 {
    width: 16.6667%;
  }
  .column-small-5-6 {
    width: 83.3335%;
  }
  .column-small-1-7 {
    width: 14.2857%;
  }
  .column-small-2-7 {
    width: 28.5714%;
  }
  .column-small-3-7 {
    width: 42.8571%;
  }
  .column-small-4-7 {
    width: 57.1428%;
  }
  .column-small-5-7 {
    width: 71.4285%;
  }
  .column-small-6-7 {
    width: 85.7142%;
  }
  .column-small-1-8 {
    width: 12.5%;
  }
  .column-small-3-8 {
    width: 37.5%;
  }
  .column-small-5-8 {
    width: 62.5%;
  }
  .column-small-7-8 {
    width: 87.5%;
  }
  .column-small-1-9 {
    width: 11.1111%;
  }
  .column-small-2-9 {
    width: 22.2222%;
  }
  .column-small-4-9 {
    width: 44.4444%;
  }
  .column-small-5-9 {
    width: 55.5555%;
  }
  .column-small-7-9 {
    width: 77.7777%;
  }
  .column-small-8-9 {
    width: 88.8888%;
  }
  .column-small-1-10 {
    width: 10%;
  }
  .column-small-3-10 {
    width: 30%;
  }
  .column-small-7-10 {
    width: 70%;
  }
  .column-small-9-10 {
    width: 90%;
  }
  .column-small-1-11 {
    width: 9.0909%;
  }
  .column-small-2-11 {
    width: 18.1818%;
  }
  .column-small-3-11 {
    width: 27.2727%;
  }
  .column-small-4-11 {
    width: 36.3636%;
  }
  .column-small-5-11 {
    width: 45.4545%;
  }
  .column-small-6-11 {
    width: 54.5454%;
  }
  .column-small-7-11 {
    width: 63.6363%;
  }
  .column-small-8-11 {
    width: 72.7272%;
  }
  .column-small-9-11 {
    width: 81.8181%;
  }
  .column-small-10-11 {
    width: 90.909%;
  }
  .column-small-1-12 {
    width: 8.3333%;
  }
  .column-small-5-12 {
    width: 41.6665%;
  }
  .column-small-7-12 {
    width: 58.3331%;
  }
  .column-small-10-12 {
    width: 83.333%;
  }
  .column-small-11-12 {
    width: 91.6663%;
  }
}
/*
 * Column Extra Small Classes
 */
@media (max-width: 767px) {
  [class*='column-'] {
    width: 100%;
  }
  .column-xsmall-1 {
    width: 100%;
  }
  .column-xsmall-1-2,
  .column-xsmall-2-4,
  .column-xsmall-3-6,
  .column-xsmall-4-8,
  .column-xsmall-5-10,
  .column-xsmall-6-12 {
    width: 50%;
  }
  .column-xsmall-1-3,
  .column-xsmall-2-6,
  .column-xsmall-3-9,
  .column-xsmall-4-12 {
    width: 33.3333%;
  }
  .column-xsmall-2-3,
  .column-xsmall-4-6,
  .column-xsmall-6-9,
  .column-xsmall-8-12 {
    width: 66.6666%;
  }
  .column-xsmall-1-4,
  .column-xsmall-2-8,
  .column-xsmall-3-12 {
    width: 25%;
  }
  .column-xsmall-3-4,
  .column-xsmall-6-8,
  .column-xsmall-9-12 {
    width: 75%;
  }
  .column-xsmall-1-5,
  .column-xsmall-2-10 {
    width: 20%;
  }
  .column-xsmall-2-5,
  .column-xsmall-4-10 {
    width: 40%;
  }
  .column-xsmall-3-5,
  .column-xsmall-6-10 {
    width: 60%;
  }
  .column-xsmall-4-5,
  .column-xsmall-8-10 {
    width: 80%;
  }
  .column-xsmall-1-6,
  .column-xsmall-2-12 {
    width: 16.6667%;
  }
  .column-xsmall-5-6 {
    width: 83.3335%;
  }
  .column-xsmall-1-7 {
    width: 14.2857%;
  }
  .column-xsmall-2-7 {
    width: 28.5714%;
  }
  .column-xsmall-3-7 {
    width: 42.8571%;
  }
  .column-xsmall-4-7 {
    width: 57.1428%;
  }
  .column-xsmall-5-7 {
    width: 71.4285%;
  }
  .column-xsmall-6-7 {
    width: 85.7142%;
  }
  .column-xsmall-1-8 {
    width: 12.5%;
  }
  .column-xsmall-3-8 {
    width: 37.5%;
  }
  .column-xsmall-5-8 {
    width: 62.5%;
  }
  .column-xsmall-7-8 {
    width: 87.5%;
  }
  .column-xsmall-1-9 {
    width: 11.1111%;
  }
  .column-xsmall-2-9 {
    width: 22.2222%;
  }
  .column-xsmall-4-9 {
    width: 44.4444%;
  }
  .column-xsmall-5-9 {
    width: 55.5555%;
  }
  .column-xsmall-7-9 {
    width: 77.7777%;
  }
  .column-xsmall-8-9 {
    width: 88.8888%;
  }
  .column-xsmall-1-10 {
    width: 10%;
  }
  .column-xsmall-3-10 {
    width: 30%;
  }
  .column-xsmall-7-10 {
    width: 70%;
  }
  .column-xsmall-9-10 {
    width: 90%;
  }
  .column-xsmall-1-11 {
    width: 9.0909%;
  }
  .column-xsmall-2-11 {
    width: 18.1818%;
  }
  .column-xsmall-3-11 {
    width: 27.2727%;
  }
  .column-xsmall-4-11 {
    width: 36.3636%;
  }
  .column-xsmall-5-11 {
    width: 45.4545%;
  }
  .column-xsmall-6-11 {
    width: 54.5454%;
  }
  .column-xsmall-7-11 {
    width: 63.6363%;
  }
  .column-xsmall-8-11 {
    width: 72.7272%;
  }
  .column-xsmall-9-11 {
    width: 81.8181%;
  }
  .column-xsmall-10-11 {
    width: 90.909%;
  }
  .column-xsmall-1-12 {
    width: 8.3333%;
  }
  .column-xsmall-5-12 {
    width: 41.6665%;
  }
  .column-xsmall-7-12 {
    width: 58.3331%;
  }
  .column-xsmall-10-12 {
    width: 83.333%;
  }
  .column-xsmall-11-12 {
    width: 91.6663%;
  }
}
/*
 * Column Offset Classes
 */
.column-offset-1 {
  margin-left: 100%;
}
.column-offset-1-2,
.column-offset-2-4,
.column-offset-3-6,
.column-offset-4-8,
.column-offset-5-10,
.column-offset-6-12 {
  margin-left: 50%;
}
.column-offset-1-3,
.column-offset-2-6,
.column-offset-3-9,
.column-offset-4-12 {
  margin-left: 33.3333%;
}
.column-offset-2-3,
.column-offset-4-6,
.column-offset-6-9,
.column-offset-8-12 {
  margin-left: 66.6666%;
}
.column-offset-1-4,
.column-offset-2-8,
.column-offset-3-12 {
  margin-left: 25%;
}
.column-offset-3-4,
.column-offset-6-8,
.column-offset-9-12 {
  margin-left: 75%;
}
.column-offset-1-5,
.column-offset-2-10 {
  margin-left: 20%;
}
.column-offset-2-5,
.column-offset-4-10 {
  margin-left: 40%;
}
.column-offset-3-5,
.column-offset-6-10 {
  margin-left: 60%;
}
.column-offset-4-5,
.column-offset-8-10 {
  margin-left: 80%;
}
.column-offset-1-6,
.column-offset-2-12 {
  margin-left: 16.6667%;
}
.column-offset-5-6 {
  margin-left: 83.3335%;
}
.column-offset-1-7 {
  margin-left: 14.2857%;
}
.column-offset-2-7 {
  margin-left: 28.5714%;
}
.column-offset-3-7 {
  margin-left: 42.8571%;
}
.column-offset-4-7 {
  margin-left: 57.1428%;
}
.column-offset-5-7 {
  margin-left: 71.4285%;
}
.column-offset-6-7 {
  margin-left: 85.7142%;
}
.column-offset-1-8 {
  margin-left: 12.5%;
}
.column-offset-3-8 {
  margin-left: 37.5%;
}
.column-offset-5-8 {
  margin-left: 62.5%;
}
.column-offset-7-8 {
  margin-left: 87.5%;
}
.column-offset-1-9 {
  margin-left: 11.1111%;
}
.column-offset-2-9 {
  margin-left: 22.2222%;
}
.column-offset-4-9 {
  margin-left: 44.4444%;
}
.column-offset-5-9 {
  margin-left: 55.5555%;
}
.column-offset-7-9 {
  margin-left: 77.7777%;
}
.column-offset-8-9 {
  margin-left: 88.8888%;
}
.column-offset-1-10 {
  margin-left: 10%;
}
.column-offset-3-10 {
  margin-left: 30%;
}
.column-offset-7-10 {
  margin-left: 70%;
}
.column-offset-9-10 {
  margin-left: 90%;
}
.column-offset-1-11 {
  margin-left: 9.0909%;
}
.column-offset-2-11 {
  margin-left: 18.1818%;
}
.column-offset-3-11 {
  margin-left: 27.2727%;
}
.column-offset-4-11 {
  margin-left: 36.3636%;
}
.column-offset-5-11 {
  margin-left: 45.4545%;
}
.column-offset-6-11 {
  margin-left: 54.5454%;
}
.column-offset-7-11 {
  margin-left: 63.6363%;
}
.column-offset-8-11 {
  margin-left: 72.7272%;
}
.column-offset-9-11 {
  margin-left: 81.8181%;
}
.column-offset-10-11 {
  margin-left: 90.909%;
}
.column-offset-1-12 {
  margin-left: 8.3333%;
}
.column-offset-5-12 {
  margin-left: 41.6665%;
}
.column-offset-7-12 {
  margin-left: 58.3331%;
}
.column-offset-10-12 {
  margin-left: 83.333%;
}
.column-offset-11-12 {
  margin-left: 91.6663%;
}
/*
 * Column Offset Extra Large Classes
 */
@media (min-width: 1680px) {
  .column-offset-xlarge-reset {
    margin-left: 0;
  }
  .column-offset-xlarge-1 {
    margin-left: 100%;
  }
  .column-offset-xlarge-1-2,
  .column-offset-xlarge-2-4,
  .column-offset-xlarge-3-6,
  .column-offset-xlarge-4-8,
  .column-offset-xlarge-5-10,
  .column-offset-xlarge-6-12 {
    margin-left: 50%;
  }
  .column-offset-xlarge-1-3,
  .column-offset-xlarge-2-6,
  .column-offset-xlarge-3-9,
  .column-offset-xlarge-4-12 {
    margin-left: 33.3333%;
  }
  .column-offset-xlarge-2-3,
  .column-offset-xlarge-4-6,
  .column-offset-xlarge-6-9,
  .column-offset-xlarge-8-12 {
    margin-left: 66.6666%;
  }
  .column-offset-xlarge-1-4,
  .column-offset-xlarge-2-8,
  .column-offset-xlarge-3-12 {
    margin-left: 25%;
  }
  .column-offset-xlarge-3-4,
  .column-offset-xlarge-6-8,
  .column-offset-xlarge-9-12 {
    margin-left: 75%;
  }
  .column-offset-xlarge-1-5,
  .column-offset-xlarge-2-10 {
    margin-left: 20%;
  }
  .column-offset-xlarge-2-5,
  .column-offset-xlarge-4-10 {
    margin-left: 40%;
  }
  .column-offset-xlarge-3-5,
  .column-offset-xlarge-6-10 {
    margin-left: 60%;
  }
  .column-offset-xlarge-4-5,
  .column-offset-xlarge-8-10 {
    margin-left: 80%;
  }
  .column-offset-xlarge-1-6,
  .column-offset-xlarge-2-12 {
    margin-left: 16.6667%;
  }
  .column-offset-xlarge-5-6 {
    margin-left: 83.3335%;
  }
  .column-offset-xlarge-1-7 {
    margin-left: 14.2857%;
  }
  .column-offset-xlarge-2-7 {
    margin-left: 28.5714%;
  }
  .column-offset-xlarge-3-7 {
    margin-left: 42.8571%;
  }
  .column-offset-xlarge-4-7 {
    margin-left: 57.1428%;
  }
  .column-offset-xlarge-5-7 {
    margin-left: 71.4285%;
  }
  .column-offset-xlarge-6-7 {
    margin-left: 85.7142%;
  }
  .column-offset-xlarge-1-8 {
    margin-left: 12.5%;
  }
  .column-offset-xlarge-3-8 {
    margin-left: 37.5%;
  }
  .column-offset-xlarge-5-8 {
    margin-left: 62.5%;
  }
  .column-offset-xlarge-7-8 {
    margin-left: 87.5%;
  }
  .column-offset-xlarge-1-9 {
    margin-left: 11.1111%;
  }
  .column-offset-xlarge-2-9 {
    margin-left: 22.2222%;
  }
  .column-offset-xlarge-4-9 {
    margin-left: 44.4444%;
  }
  .column-offset-xlarge-5-9 {
    margin-left: 55.5555%;
  }
  .column-offset-xlarge-7-9 {
    margin-left: 77.7777%;
  }
  .column-offset-xlarge-8-9 {
    margin-left: 88.8888%;
  }
  .column-offset-xlarge-1-10 {
    margin-left: 10%;
  }
  .column-offset-xlarge-3-10 {
    margin-left: 30%;
  }
  .column-offset-xlarge-7-10 {
    margin-left: 70%;
  }
  .column-offset-xlarge-9-10 {
    margin-left: 90%;
  }
  .column-offset-xlarge-1-11 {
    margin-left: 9.0909%;
  }
  .column-offset-xlarge-2-11 {
    margin-left: 18.1818%;
  }
  .column-offset-xlarge-3-11 {
    margin-left: 27.2727%;
  }
  .column-offset-xlarge-4-11 {
    margin-left: 36.3636%;
  }
  .column-offset-xlarge-5-11 {
    margin-left: 45.4545%;
  }
  .column-offset-xlarge-6-11 {
    margin-left: 54.5454%;
  }
  .column-offset-xlarge-7-11 {
    margin-left: 63.6363%;
  }
  .column-offset-xlarge-8-11 {
    margin-left: 72.7272%;
  }
  .column-offset-xlarge-9-11 {
    margin-left: 81.8181%;
  }
  .column-offset-xlarge-10-11 {
    margin-left: 90.909%;
  }
  .column-offset-xlarge-1-12 {
    margin-left: 8.3333%;
  }
  .column-offset-xlarge-5-12 {
    margin-left: 41.6665%;
  }
  .column-offset-xlarge-7-12 {
    margin-left: 58.3331%;
  }
  .column-offset-xlarge-10-12 {
    margin-left: 83.333%;
  }
  .column-offset-xlarge-11-12 {
    margin-left: 91.6663%;
  }
}
/*
 * Column Offset Large Classes
 */
@media (min-width: 1280px) and (max-width: 1679px) {
  .column-offset-large-reset {
    margin-left: 0;
  }
  .column-offset-large-1 {
    margin-left: 100%;
  }
  .column-offset-large-1-2,
  .column-offset-large-2-4,
  .column-offset-large-3-6,
  .column-offset-large-4-8,
  .column-offset-large-5-10,
  .column-offset-large-6-12 {
    margin-left: 50%;
  }
  .column-offset-large-1-3,
  .column-offset-large-2-6,
  .column-offset-large-3-9,
  .column-offset-large-4-12 {
    margin-left: 33.3333%;
  }
  .column-offset-large-2-3,
  .column-offset-large-4-6,
  .column-offset-large-6-9,
  .column-offset-large-8-12 {
    margin-left: 66.6666%;
  }
  .column-offset-large-1-4,
  .column-offset-large-2-8,
  .column-offset-large-3-12 {
    margin-left: 25%;
  }
  .column-offset-large-3-4,
  .column-offset-large-6-8,
  .column-offset-large-9-12 {
    margin-left: 75%;
  }
  .column-offset-large-1-5,
  .column-offset-large-2-10 {
    margin-left: 20%;
  }
  .column-offset-large-2-5,
  .column-offset-large-4-10 {
    margin-left: 40%;
  }
  .column-offset-large-3-5,
  .column-offset-large-6-10 {
    margin-left: 60%;
  }
  .column-offset-large-4-5,
  .column-offset-large-8-10 {
    margin-left: 80%;
  }
  .column-offset-large-1-6,
  .column-offset-large-2-12 {
    margin-left: 16.6667%;
  }
  .column-offset-large-5-6 {
    margin-left: 83.3335%;
  }
  .column-offset-large-1-7 {
    margin-left: 14.2857%;
  }
  .column-offset-large-2-7 {
    margin-left: 28.5714%;
  }
  .column-offset-large-3-7 {
    margin-left: 42.8571%;
  }
  .column-offset-large-4-7 {
    margin-left: 57.1428%;
  }
  .column-offset-large-5-7 {
    margin-left: 71.4285%;
  }
  .column-offset-large-6-7 {
    margin-left: 85.7142%;
  }
  .column-offset-large-1-8 {
    margin-left: 12.5%;
  }
  .column-offset-large-3-8 {
    margin-left: 37.5%;
  }
  .column-offset-large-5-8 {
    margin-left: 62.5%;
  }
  .column-offset-large-7-8 {
    margin-left: 87.5%;
  }
  .column-offset-large-1-9 {
    margin-left: 11.1111%;
  }
  .column-offset-large-2-9 {
    margin-left: 22.2222%;
  }
  .column-offset-large-4-9 {
    margin-left: 44.4444%;
  }
  .column-offset-large-5-9 {
    margin-left: 55.5555%;
  }
  .column-offset-large-7-9 {
    margin-left: 77.7777%;
  }
  .column-offset-large-8-9 {
    margin-left: 88.8888%;
  }
  .column-offset-large-1-10 {
    margin-left: 10%;
  }
  .column-offset-large-3-10 {
    margin-left: 30%;
  }
  .column-offset-large-7-10 {
    margin-left: 70%;
  }
  .column-offset-large-9-10 {
    margin-left: 90%;
  }
  .column-offset-large-1-11 {
    margin-left: 9.0909%;
  }
  .column-offset-large-2-11 {
    margin-left: 18.1818%;
  }
  .column-offset-large-3-11 {
    margin-left: 27.2727%;
  }
  .column-offset-large-4-11 {
    margin-left: 36.3636%;
  }
  .column-offset-large-5-11 {
    margin-left: 45.4545%;
  }
  .column-offset-large-6-11 {
    margin-left: 54.5454%;
  }
  .column-offset-large-7-11 {
    margin-left: 63.6363%;
  }
  .column-offset-large-8-11 {
    margin-left: 72.7272%;
  }
  .column-offset-large-9-11 {
    margin-left: 81.8181%;
  }
  .column-offset-large-10-11 {
    margin-left: 90.909%;
  }
  .column-offset-large-1-12 {
    margin-left: 8.3333%;
  }
  .column-offset-large-5-12 {
    margin-left: 41.6665%;
  }
  .column-offset-large-7-12 {
    margin-left: 58.3331%;
  }
  .column-offset-large-10-12 {
    margin-left: 83.333%;
  }
  .column-offset-large-11-12 {
    margin-left: 91.6663%;
  }
}
/*
 * Column Offset Medium Classes
 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .column-offset-medium-reset {
    margin-left: 0;
  }
  .column-offset-medium-1 {
    margin-left: 100%;
  }
  .column-offset-medium-1-2,
  .column-offset-medium-2-4,
  .column-offset-medium-3-6,
  .column-offset-medium-4-8,
  .column-offset-medium-5-10,
  .column-offset-medium-6-12 {
    margin-left: 50%;
  }
  .column-offset-medium-1-3,
  .column-offset-medium-2-6,
  .column-offset-medium-3-9,
  .column-offset-medium-4-12 {
    margin-left: 33.3333%;
  }
  .column-offset-medium-2-3,
  .column-offset-medium-4-6,
  .column-offset-medium-6-9,
  .column-offset-medium-8-12 {
    margin-left: 66.6666%;
  }
  .column-offset-medium-1-4,
  .column-offset-medium-2-8,
  .column-offset-medium-3-12 {
    margin-left: 25%;
  }
  .column-offset-medium-3-4,
  .column-offset-medium-6-8,
  .column-offset-medium-9-12 {
    margin-left: 75%;
  }
  .column-offset-medium-1-5,
  .column-offset-medium-2-10 {
    margin-left: 20%;
  }
  .column-offset-medium-2-5,
  .column-offset-medium-4-10 {
    margin-left: 40%;
  }
  .column-offset-medium-3-5,
  .column-offset-medium-6-10 {
    margin-left: 60%;
  }
  .column-offset-medium-4-5,
  .column-offset-medium-8-10 {
    margin-left: 80%;
  }
  .column-offset-medium-1-6,
  .column-offset-medium-2-12 {
    margin-left: 16.6667%;
  }
  .column-offset-medium-5-6 {
    margin-left: 83.3335%;
  }
  .column-offset-medium-1-7 {
    margin-left: 14.2857%;
  }
  .column-offset-medium-2-7 {
    margin-left: 28.5714%;
  }
  .column-offset-medium-3-7 {
    margin-left: 42.8571%;
  }
  .column-offset-medium-4-7 {
    margin-left: 57.1428%;
  }
  .column-offset-medium-5-7 {
    margin-left: 71.4285%;
  }
  .column-offset-medium-6-7 {
    margin-left: 85.7142%;
  }
  .column-offset-medium-1-8 {
    margin-left: 12.5%;
  }
  .column-offset-medium-3-8 {
    margin-left: 37.5%;
  }
  .column-offset-medium-5-8 {
    margin-left: 62.5%;
  }
  .column-offset-medium-7-8 {
    margin-left: 87.5%;
  }
  .column-offset-medium-1-9 {
    margin-left: 11.1111%;
  }
  .column-offset-medium-2-9 {
    margin-left: 22.2222%;
  }
  .column-offset-medium-4-9 {
    margin-left: 44.4444%;
  }
  .column-offset-medium-5-9 {
    margin-left: 55.5555%;
  }
  .column-offset-medium-7-9 {
    margin-left: 77.7777%;
  }
  .column-offset-medium-8-9 {
    margin-left: 88.8888%;
  }
  .column-offset-medium-1-10 {
    margin-left: 10%;
  }
  .column-offset-medium-3-10 {
    margin-left: 30%;
  }
  .column-offset-medium-7-10 {
    margin-left: 70%;
  }
  .column-offset-medium-9-10 {
    margin-left: 90%;
  }
  .column-offset-medium-1-11 {
    margin-left: 9.0909%;
  }
  .column-offset-medium-2-11 {
    margin-left: 18.1818%;
  }
  .column-offset-medium-3-11 {
    margin-left: 27.2727%;
  }
  .column-offset-medium-4-11 {
    margin-left: 36.3636%;
  }
  .column-offset-medium-5-11 {
    margin-left: 45.4545%;
  }
  .column-offset-medium-6-11 {
    margin-left: 54.5454%;
  }
  .column-offset-medium-7-11 {
    margin-left: 63.6363%;
  }
  .column-offset-medium-8-11 {
    margin-left: 72.7272%;
  }
  .column-offset-medium-9-11 {
    margin-left: 81.8181%;
  }
  .column-offset-medium-10-11 {
    margin-left: 90.909%;
  }
  .column-offset-medium-1-12 {
    margin-left: 8.3333%;
  }
  .column-offset-medium-5-12 {
    margin-left: 41.6665%;
  }
  .column-offset-medium-7-12 {
    margin-left: 58.3331%;
  }
  .column-offset-medium-10-12 {
    margin-left: 83.333%;
  }
  .column-offset-medium-11-12 {
    margin-left: 91.6663%;
  }
}
/*
 * Column Offset Small Classes
 */
@media (min-width: 768px) and (max-width: 1023px) {
  .column-offset-small-1 {
    margin-left: 100%;
  }
  .column-offset-small-1-2,
  .column-offset-small-2-4,
  .column-offset-small-3-6,
  .column-offset-small-4-8,
  .column-offset-small-5-10,
  .column-offset-small-6-12 {
    margin-left: 50%;
  }
  .column-offset-small-1-3,
  .column-offset-small-2-6,
  .column-offset-small-3-9,
  .column-offset-small-4-12 {
    margin-left: 33.3333%;
  }
  .column-offset-small-2-3,
  .column-offset-small-4-6,
  .column-offset-small-6-9,
  .column-offset-small-8-12 {
    margin-left: 66.6666%;
  }
  .column-offset-small-1-4,
  .column-offset-small-2-8,
  .column-offset-small-3-12 {
    margin-left: 25%;
  }
  .column-offset-small-3-4,
  .column-offset-small-6-8,
  .column-offset-small-9-12 {
    margin-left: 75%;
  }
  .column-offset-small-1-5,
  .column-offset-small-2-10 {
    margin-left: 20%;
  }
  .column-offset-small-2-5,
  .column-offset-small-4-10 {
    margin-left: 40%;
  }
  .column-offset-small-3-5,
  .column-offset-small-6-10 {
    margin-left: 60%;
  }
  .column-offset-small-4-5,
  .column-offset-small-8-10 {
    margin-left: 80%;
  }
  .column-offset-small-1-6,
  .column-offset-small-2-12 {
    margin-left: 16.6667%;
  }
  .column-offset-small-5-6 {
    margin-left: 83.3335%;
  }
  .column-offset-small-1-7 {
    margin-left: 14.2857%;
  }
  .column-offset-small-2-7 {
    margin-left: 28.5714%;
  }
  .column-offset-small-3-7 {
    margin-left: 42.8571%;
  }
  .column-offset-small-4-7 {
    margin-left: 57.1428%;
  }
  .column-offset-small-5-7 {
    margin-left: 71.4285%;
  }
  .column-offset-small-6-7 {
    margin-left: 85.7142%;
  }
  .column-offset-small-1-8 {
    margin-left: 12.5%;
  }
  .column-offset-small-3-8 {
    margin-left: 37.5%;
  }
  .column-offset-small-5-8 {
    margin-left: 62.5%;
  }
  .column-offset-small-7-8 {
    margin-left: 87.5%;
  }
  .column-offset-small-1-9 {
    margin-left: 11.1111%;
  }
  .column-offset-small-2-9 {
    margin-left: 22.2222%;
  }
  .column-offset-small-4-9 {
    margin-left: 44.4444%;
  }
  .column-offset-small-5-9 {
    margin-left: 55.5555%;
  }
  .column-offset-small-7-9 {
    margin-left: 77.7777%;
  }
  .column-offset-small-8-9 {
    margin-left: 88.8888%;
  }
  .column-offset-small-1-10 {
    margin-left: 10%;
  }
  .column-offset-small-3-10 {
    margin-left: 30%;
  }
  .column-offset-small-7-10 {
    margin-left: 70%;
  }
  .column-offset-small-9-10 {
    margin-left: 90%;
  }
  .column-offset-small-1-11 {
    margin-left: 9.0909%;
  }
  .column-offset-small-2-11 {
    margin-left: 18.1818%;
  }
  .column-offset-small-3-11 {
    margin-left: 27.2727%;
  }
  .column-offset-small-4-11 {
    margin-left: 36.3636%;
  }
  .column-offset-small-5-11 {
    margin-left: 45.4545%;
  }
  .column-offset-small-6-11 {
    margin-left: 54.5454%;
  }
  .column-offset-small-7-11 {
    margin-left: 63.6363%;
  }
  .column-offset-small-8-11 {
    margin-left: 72.7272%;
  }
  .column-offset-small-9-11 {
    margin-left: 81.8181%;
  }
  .column-offset-small-10-11 {
    margin-left: 90.909%;
  }
  .column-offset-small-1-12 {
    margin-left: 8.3333%;
  }
  .column-offset-small-5-12 {
    margin-left: 41.6665%;
  }
  .column-offset-small-7-12 {
    margin-left: 58.3331%;
  }
  .column-offset-small-10-12 {
    margin-left: 83.333%;
  }
  .column-offset-small-11-12 {
    margin-left: 91.6663%;
  }
}
/*
 * Column Offset Extra Small Classes
 */
@media (max-width: 767px) {
  [class*='column-offset-'] {
    margin-left: 0;
  }
  .column-offset-xsmall-1 {
    margin-left: 100%;
  }
  .column-offset-xsmall-1-2,
  .column-offset-xsmall-2-4,
  .column-offset-xsmall-3-6,
  .column-offset-xsmall-4-8,
  .column-offset-xsmall-5-10,
  .column-offset-xsmall-6-12 {
    margin-left: 50%;
  }
  .column-offset-xsmall-1-3,
  .column-offset-xsmall-2-6,
  .column-offset-xsmall-3-9,
  .column-offset-xsmall-4-12 {
    margin-left: 33.3333%;
  }
  .column-offset-xsmall-2-3,
  .column-offset-xsmall-4-6,
  .column-offset-xsmall-6-9,
  .column-offset-xsmall-8-12 {
    margin-left: 66.6666%;
  }
  .column-offset-xsmall-1-4,
  .column-offset-xsmall-2-8,
  .column-offset-xsmall-3-12 {
    margin-left: 25%;
  }
  .column-offset-xsmall-3-4,
  .column-offset-xsmall-6-8,
  .column-offset-xsmall-9-12 {
    margin-left: 75%;
  }
  .column-offset-xsmall-1-5,
  .column-offset-xsmall-2-10 {
    margin-left: 20%;
  }
  .column-offset-xsmall-2-5,
  .column-offset-xsmall-4-10 {
    margin-left: 40%;
  }
  .column-offset-xsmall-3-5,
  .column-offset-xsmall-6-10 {
    margin-left: 60%;
  }
  .column-offset-xsmall-4-5,
  .column-offset-xsmall-8-10 {
    margin-left: 80%;
  }
  .column-offset-xsmall-1-6,
  .column-offset-xsmall-2-12 {
    margin-left: 16.6667%;
  }
  .column-offset-xsmall-5-6 {
    margin-left: 83.3335%;
  }
  .column-offset-xsmall-1-7 {
    margin-left: 14.2857%;
  }
  .column-offset-xsmall-2-7 {
    margin-left: 28.5714%;
  }
  .column-offset-xsmall-3-7 {
    margin-left: 42.8571%;
  }
  .column-offset-xsmall-4-7 {
    margin-left: 57.1428%;
  }
  .column-offset-xsmall-5-7 {
    margin-left: 71.4285%;
  }
  .column-offset-xsmall-6-7 {
    margin-left: 85.7142%;
  }
  .column-offset-xsmall-1-8 {
    margin-left: 12.5%;
  }
  .column-offset-xsmall-3-8 {
    margin-left: 37.5%;
  }
  .column-offset-xsmall-5-8 {
    margin-left: 62.5%;
  }
  .column-offset-xsmall-7-8 {
    margin-left: 87.5%;
  }
  .column-offset-xsmall-1-9 {
    margin-left: 11.1111%;
  }
  .column-offset-xsmall-2-9 {
    margin-left: 22.2222%;
  }
  .column-offset-xsmall-4-9 {
    margin-left: 44.4444%;
  }
  .column-offset-xsmall-5-9 {
    margin-left: 55.5555%;
  }
  .column-offset-xsmall-7-9 {
    margin-left: 77.7777%;
  }
  .column-offset-xsmall-8-9 {
    margin-left: 88.8888%;
  }
  .column-offset-xsmall-1-10 {
    margin-left: 10%;
  }
  .column-offset-xsmall-3-10 {
    margin-left: 30%;
  }
  .column-offset-xsmall-7-10 {
    margin-left: 70%;
  }
  .column-offset-xsmall-9-10 {
    margin-left: 90%;
  }
  .column-offset-xsmall-1-11 {
    margin-left: 9.0909%;
  }
  .column-offset-xsmall-2-11 {
    margin-left: 18.1818%;
  }
  .column-offset-xsmall-3-11 {
    margin-left: 27.2727%;
  }
  .column-offset-xsmall-4-11 {
    margin-left: 36.3636%;
  }
  .column-offset-xsmall-5-11 {
    margin-left: 45.4545%;
  }
  .column-offset-xsmall-6-11 {
    margin-left: 54.5454%;
  }
  .column-offset-xsmall-7-11 {
    margin-left: 63.6363%;
  }
  .column-offset-xsmall-8-11 {
    margin-left: 72.7272%;
  }
  .column-offset-xsmall-9-11 {
    margin-left: 81.8181%;
  }
  .column-offset-xsmall-10-11 {
    margin-left: 90.909%;
  }
  .column-offset-xsmall-1-12 {
    margin-left: 8.3333%;
  }
  .column-offset-xsmall-5-12 {
    margin-left: 41.6665%;
  }
  .column-offset-xsmall-7-12 {
    margin-left: 58.3331%;
  }
  .column-offset-xsmall-10-12 {
    margin-left: 83.333%;
  }
  .column-offset-xsmall-11-12 {
    margin-left: 91.6663%;
  }
}
/*
 * Column Push Classes
 */
.column-push-1 {
  left: 100%;
}
.column-push-1-2,
.column-push-2-4,
.column-push-3-6,
.column-push-4-8,
.column-push-5-10,
.column-push-6-12 {
  left: 50%;
}
.column-push-1-3,
.column-push-2-6,
.column-push-3-9,
.column-push-4-12 {
  left: 33.3333%;
}
.column-push-2-3,
.column-push-4-6,
.column-push-6-9,
.column-push-8-12 {
  left: 66.6666%;
}
.column-push-1-4,
.column-push-2-8,
.column-push-3-12 {
  left: 25%;
}
.column-push-3-4,
.column-push-6-8,
.column-push-9-12 {
  left: 75%;
}
.column-push-1-5,
.column-push-2-10 {
  left: 20%;
}
.column-push-2-5,
.column-push-4-10 {
  left: 40%;
}
.column-push-3-5,
.column-push-6-10 {
  left: 60%;
}
.column-push-4-5,
.column-push-8-10 {
  left: 80%;
}
.column-push-1-6,
.column-push-2-12 {
  left: 16.6667%;
}
.column-push-5-6 {
  left: 83.3335%;
}
.column-push-1-7 {
  left: 14.2857%;
}
.column-push-2-7 {
  left: 28.5714%;
}
.column-push-3-7 {
  left: 42.8571%;
}
.column-push-4-7 {
  left: 57.1428%;
}
.column-push-5-7 {
  left: 71.4285%;
}
.column-push-6-7 {
  left: 85.7142%;
}
.column-push-1-8 {
  left: 12.5%;
}
.column-push-3-8 {
  left: 37.5%;
}
.column-push-5-8 {
  left: 62.5%;
}
.column-push-7-8 {
  left: 87.5%;
}
.column-push-1-9 {
  left: 11.1111%;
}
.column-push-2-9 {
  left: 22.2222%;
}
.column-push-4-9 {
  left: 44.4444%;
}
.column-push-5-9 {
  left: 55.5555%;
}
.column-push-7-9 {
  left: 77.7777%;
}
.column-push-8-9 {
  left: 88.8888%;
}
.column-push-1-10 {
  left: 10%;
}
.column-push-3-10 {
  left: 30%;
}
.column-push-7-10 {
  left: 70%;
}
.column-push-9-10 {
  left: 90%;
}
.column-push-1-11 {
  left: 9.0909%;
}
.column-push-2-11 {
  left: 18.1818%;
}
.column-push-3-11 {
  left: 27.2727%;
}
.column-push-4-11 {
  left: 36.3636%;
}
.column-push-5-11 {
  left: 45.4545%;
}
.column-push-6-11 {
  left: 54.5454%;
}
.column-push-7-11 {
  left: 63.6363%;
}
.column-push-8-11 {
  left: 72.7272%;
}
.column-push-9-11 {
  left: 81.8181%;
}
.column-push-10-11 {
  left: 90.909%;
}
.column-push-1-12 {
  left: 8.3333%;
}
.column-push-5-12 {
  left: 41.6665%;
}
.column-push-7-12 {
  left: 58.3331%;
}
.column-push-10-12 {
  left: 83.333%;
}
.column-push-11-12 {
  left: 91.6663%;
}
/*
 * Column Push Extra Large Classes
 */
@media (min-width: 1680px) {
  .column-push-xlarge-reset {
    left: 0;
  }
  .column-push-xlarge-1 {
    left: 100%;
  }
  .column-push-xlarge-1-2,
  .column-push-xlarge-2-4,
  .column-push-xlarge-3-6,
  .column-push-xlarge-4-8,
  .column-push-xlarge-5-10,
  .column-push-xlarge-6-12 {
    left: 50%;
  }
  .column-push-xlarge-1-3,
  .column-push-xlarge-2-6,
  .column-push-xlarge-3-9,
  .column-push-xlarge-4-12 {
    left: 33.3333%;
  }
  .column-push-xlarge-2-3,
  .column-push-xlarge-4-6,
  .column-push-xlarge-6-9,
  .column-push-xlarge-8-12 {
    left: 66.6666%;
  }
  .column-push-xlarge-1-4,
  .column-push-xlarge-2-8,
  .column-push-xlarge-3-12 {
    left: 25%;
  }
  .column-push-xlarge-3-4,
  .column-push-xlarge-6-8,
  .column-push-xlarge-9-12 {
    left: 75%;
  }
  .column-push-xlarge-1-5,
  .column-push-xlarge-2-10 {
    left: 20%;
  }
  .column-push-xlarge-2-5,
  .column-push-xlarge-4-10 {
    left: 40%;
  }
  .column-push-xlarge-3-5,
  .column-push-xlarge-6-10 {
    left: 60%;
  }
  .column-push-xlarge-4-5,
  .column-push-xlarge-8-10 {
    left: 80%;
  }
  .column-push-xlarge-1-6,
  .column-push-xlarge-2-12 {
    left: 16.6667%;
  }
  .column-push-xlarge-5-6 {
    left: 83.3335%;
  }
  .column-push-xlarge-1-7 {
    left: 14.2857%;
  }
  .column-push-xlarge-2-7 {
    left: 28.5714%;
  }
  .column-push-xlarge-3-7 {
    left: 42.8571%;
  }
  .column-push-xlarge-4-7 {
    left: 57.1428%;
  }
  .column-push-xlarge-5-7 {
    left: 71.4285%;
  }
  .column-push-xlarge-6-7 {
    left: 85.7142%;
  }
  .column-push-xlarge-1-8 {
    left: 12.5%;
  }
  .column-push-xlarge-3-8 {
    left: 37.5%;
  }
  .column-push-xlarge-5-8 {
    left: 62.5%;
  }
  .column-push-xlarge-7-8 {
    left: 87.5%;
  }
  .column-push-xlarge-1-9 {
    left: 11.1111%;
  }
  .column-push-xlarge-2-9 {
    left: 22.2222%;
  }
  .column-push-xlarge-4-9 {
    left: 44.4444%;
  }
  .column-push-xlarge-5-9 {
    left: 55.5555%;
  }
  .column-push-xlarge-7-9 {
    left: 77.7777%;
  }
  .column-push-xlarge-8-9 {
    left: 88.8888%;
  }
  .column-push-xlarge-1-10 {
    left: 10%;
  }
  .column-push-xlarge-3-10 {
    left: 30%;
  }
  .column-push-xlarge-7-10 {
    left: 70%;
  }
  .column-push-xlarge-9-10 {
    left: 90%;
  }
  .column-push-xlarge-1-11 {
    left: 9.0909%;
  }
  .column-push-xlarge-2-11 {
    left: 18.1818%;
  }
  .column-push-xlarge-3-11 {
    left: 27.2727%;
  }
  .column-push-xlarge-4-11 {
    left: 36.3636%;
  }
  .column-push-xlarge-5-11 {
    left: 45.4545%;
  }
  .column-push-xlarge-6-11 {
    left: 54.5454%;
  }
  .column-push-xlarge-7-11 {
    left: 63.6363%;
  }
  .column-push-xlarge-8-11 {
    left: 72.7272%;
  }
  .column-push-xlarge-9-11 {
    left: 81.8181%;
  }
  .column-push-xlarge-10-11 {
    left: 90.909%;
  }
  .column-push-xlarge-1-12 {
    left: 8.3333%;
  }
  .column-push-xlarge-5-12 {
    left: 41.6665%;
  }
  .column-push-xlarge-7-12 {
    left: 58.3331%;
  }
  .column-push-xlarge-10-12 {
    left: 83.333%;
  }
  .column-push-xlarge-11-12 {
    left: 91.6663%;
  }
}
/*
 * Column Push Large Classes
 */
@media (min-width: 1280px) and (max-width: 1679px) {
  .column-push-large-reset {
    left: 0;
  }
  .column-push-large-1 {
    left: 100%;
  }
  .column-push-large-1-2,
  .column-push-large-2-4,
  .column-push-large-3-6,
  .column-push-large-4-8,
  .column-push-large-5-10,
  .column-push-large-6-12 {
    left: 50%;
  }
  .column-push-large-1-3,
  .column-push-large-2-6,
  .column-push-large-3-9,
  .column-push-large-4-12 {
    left: 33.3333%;
  }
  .column-push-large-2-3,
  .column-push-large-4-6,
  .column-push-large-6-9,
  .column-push-large-8-12 {
    left: 66.6666%;
  }
  .column-push-large-1-4,
  .column-push-large-2-8,
  .column-push-large-3-12 {
    left: 25%;
  }
  .column-push-large-3-4,
  .column-push-large-6-8,
  .column-push-large-9-12 {
    left: 75%;
  }
  .column-push-large-1-5,
  .column-push-large-2-10 {
    left: 20%;
  }
  .column-push-large-2-5,
  .column-push-large-4-10 {
    left: 40%;
  }
  .column-push-large-3-5,
  .column-push-large-6-10 {
    left: 60%;
  }
  .column-push-large-4-5,
  .column-push-large-8-10 {
    left: 80%;
  }
  .column-push-large-1-6,
  .column-push-large-2-12 {
    left: 16.6667%;
  }
  .column-push-large-5-6 {
    left: 83.3335%;
  }
  .column-push-large-1-7 {
    left: 14.2857%;
  }
  .column-push-large-2-7 {
    left: 28.5714%;
  }
  .column-push-large-3-7 {
    left: 42.8571%;
  }
  .column-push-large-4-7 {
    left: 57.1428%;
  }
  .column-push-large-5-7 {
    left: 71.4285%;
  }
  .column-push-large-6-7 {
    left: 85.7142%;
  }
  .column-push-large-1-8 {
    left: 12.5%;
  }
  .column-push-large-3-8 {
    left: 37.5%;
  }
  .column-push-large-5-8 {
    left: 62.5%;
  }
  .column-push-large-7-8 {
    left: 87.5%;
  }
  .column-push-large-1-9 {
    left: 11.1111%;
  }
  .column-push-large-2-9 {
    left: 22.2222%;
  }
  .column-push-large-4-9 {
    left: 44.4444%;
  }
  .column-push-large-5-9 {
    left: 55.5555%;
  }
  .column-push-large-7-9 {
    left: 77.7777%;
  }
  .column-push-large-8-9 {
    left: 88.8888%;
  }
  .column-push-large-1-10 {
    left: 10%;
  }
  .column-push-large-3-10 {
    left: 30%;
  }
  .column-push-large-7-10 {
    left: 70%;
  }
  .column-push-large-9-10 {
    left: 90%;
  }
  .column-push-large-1-11 {
    left: 9.0909%;
  }
  .column-push-large-2-11 {
    left: 18.1818%;
  }
  .column-push-large-3-11 {
    left: 27.2727%;
  }
  .column-push-large-4-11 {
    left: 36.3636%;
  }
  .column-push-large-5-11 {
    left: 45.4545%;
  }
  .column-push-large-6-11 {
    left: 54.5454%;
  }
  .column-push-large-7-11 {
    left: 63.6363%;
  }
  .column-push-large-8-11 {
    left: 72.7272%;
  }
  .column-push-large-9-11 {
    left: 81.8181%;
  }
  .column-push-large-10-11 {
    left: 90.909%;
  }
  .column-push-large-1-12 {
    left: 8.3333%;
  }
  .column-push-large-5-12 {
    left: 41.6665%;
  }
  .column-push-large-7-12 {
    left: 58.3331%;
  }
  .column-push-large-10-12 {
    left: 83.333%;
  }
  .column-push-large-11-12 {
    left: 91.6663%;
  }
}
/*
 * Column Push Medium Classes
 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .column-push-medium-reset {
    left: 0;
  }
  .column-push-medium-1 {
    left: 100%;
  }
  .column-push-medium-1-2,
  .column-push-medium-2-4,
  .column-push-medium-3-6,
  .column-push-medium-4-8,
  .column-push-medium-5-10,
  .column-push-medium-6-12 {
    left: 50%;
  }
  .column-push-medium-1-3,
  .column-push-medium-2-6,
  .column-push-medium-3-9,
  .column-push-medium-4-12 {
    left: 33.3333%;
  }
  .column-push-medium-2-3,
  .column-push-medium-4-6,
  .column-push-medium-6-9,
  .column-push-medium-8-12 {
    left: 66.6666%;
  }
  .column-push-medium-1-4,
  .column-push-medium-2-8,
  .column-push-medium-3-12 {
    left: 25%;
  }
  .column-push-medium-3-4,
  .column-push-medium-6-8,
  .column-push-medium-9-12 {
    left: 75%;
  }
  .column-push-medium-1-5,
  .column-push-medium-2-10 {
    left: 20%;
  }
  .column-push-medium-2-5,
  .column-push-medium-4-10 {
    left: 40%;
  }
  .column-push-medium-3-5,
  .column-push-medium-6-10 {
    left: 60%;
  }
  .column-push-medium-4-5,
  .column-push-medium-8-10 {
    left: 80%;
  }
  .column-push-medium-1-6,
  .column-push-medium-2-12 {
    left: 16.6667%;
  }
  .column-push-medium-5-6 {
    left: 83.3335%;
  }
  .column-push-medium-1-7 {
    left: 14.2857%;
  }
  .column-push-medium-2-7 {
    left: 28.5714%;
  }
  .column-push-medium-3-7 {
    left: 42.8571%;
  }
  .column-push-medium-4-7 {
    left: 57.1428%;
  }
  .column-push-medium-5-7 {
    left: 71.4285%;
  }
  .column-push-medium-6-7 {
    left: 85.7142%;
  }
  .column-push-medium-1-8 {
    left: 12.5%;
  }
  .column-push-medium-3-8 {
    left: 37.5%;
  }
  .column-push-medium-5-8 {
    left: 62.5%;
  }
  .column-push-medium-7-8 {
    left: 87.5%;
  }
  .column-push-medium-1-9 {
    left: 11.1111%;
  }
  .column-push-medium-2-9 {
    left: 22.2222%;
  }
  .column-push-medium-4-9 {
    left: 44.4444%;
  }
  .column-push-medium-5-9 {
    left: 55.5555%;
  }
  .column-push-medium-7-9 {
    left: 77.7777%;
  }
  .column-push-medium-8-9 {
    left: 88.8888%;
  }
  .column-push-medium-1-10 {
    left: 10%;
  }
  .column-push-medium-3-10 {
    left: 30%;
  }
  .column-push-medium-7-10 {
    left: 70%;
  }
  .column-push-medium-9-10 {
    left: 90%;
  }
  .column-push-medium-1-11 {
    left: 9.0909%;
  }
  .column-push-medium-2-11 {
    left: 18.1818%;
  }
  .column-push-medium-3-11 {
    left: 27.2727%;
  }
  .column-push-medium-4-11 {
    left: 36.3636%;
  }
  .column-push-medium-5-11 {
    left: 45.4545%;
  }
  .column-push-medium-6-11 {
    left: 54.5454%;
  }
  .column-push-medium-7-11 {
    left: 63.6363%;
  }
  .column-push-medium-8-11 {
    left: 72.7272%;
  }
  .column-push-medium-9-11 {
    left: 81.8181%;
  }
  .column-push-medium-10-11 {
    left: 90.909%;
  }
  .column-push-medium-1-12 {
    left: 8.3333%;
  }
  .column-push-medium-5-12 {
    left: 41.6665%;
  }
  .column-push-medium-7-12 {
    left: 58.3331%;
  }
  .column-push-medium-10-12 {
    left: 83.333%;
  }
  .column-push-medium-11-12 {
    left: 91.6663%;
  }
}
/*
 * Column Push Small Classes
 */
@media (min-width: 768px) and (max-width: 1023px) {
  .column-push-small-1 {
    left: 100%;
  }
  .column-push-small-1-2,
  .column-push-small-2-4,
  .column-push-small-3-6,
  .column-push-small-4-8,
  .column-push-small-5-10,
  .column-push-small-6-12 {
    left: 50%;
  }
  .column-push-small-1-3,
  .column-push-small-2-6,
  .column-push-small-3-9,
  .column-push-small-4-12 {
    left: 33.3333%;
  }
  .column-push-small-2-3,
  .column-push-small-4-6,
  .column-push-small-6-9,
  .column-push-small-8-12 {
    left: 66.6666%;
  }
  .column-push-small-1-4,
  .column-push-small-2-8,
  .column-push-small-3-12 {
    left: 25%;
  }
  .column-push-small-3-4,
  .column-push-small-6-8,
  .column-push-small-9-12 {
    left: 75%;
  }
  .column-push-small-1-5,
  .column-push-small-2-10 {
    left: 20%;
  }
  .column-push-small-2-5,
  .column-push-small-4-10 {
    left: 40%;
  }
  .column-push-small-3-5,
  .column-push-small-6-10 {
    left: 60%;
  }
  .column-push-small-4-5,
  .column-push-small-8-10 {
    left: 80%;
  }
  .column-push-small-1-6,
  .column-push-small-2-12 {
    left: 16.6667%;
  }
  .column-push-small-5-6 {
    left: 83.3335%;
  }
  .column-push-small-1-7 {
    left: 14.2857%;
  }
  .column-push-small-2-7 {
    left: 28.5714%;
  }
  .column-push-small-3-7 {
    left: 42.8571%;
  }
  .column-push-small-4-7 {
    left: 57.1428%;
  }
  .column-push-small-5-7 {
    left: 71.4285%;
  }
  .column-push-small-6-7 {
    left: 85.7142%;
  }
  .column-push-small-1-8 {
    left: 12.5%;
  }
  .column-push-small-3-8 {
    left: 37.5%;
  }
  .column-push-small-5-8 {
    left: 62.5%;
  }
  .column-push-small-7-8 {
    left: 87.5%;
  }
  .column-push-small-1-9 {
    left: 11.1111%;
  }
  .column-push-small-2-9 {
    left: 22.2222%;
  }
  .column-push-small-4-9 {
    left: 44.4444%;
  }
  .column-push-small-5-9 {
    left: 55.5555%;
  }
  .column-push-small-7-9 {
    left: 77.7777%;
  }
  .column-push-small-8-9 {
    left: 88.8888%;
  }
  .column-push-small-1-10 {
    left: 10%;
  }
  .column-push-small-3-10 {
    left: 30%;
  }
  .column-push-small-7-10 {
    left: 70%;
  }
  .column-push-small-9-10 {
    left: 90%;
  }
  .column-push-small-1-11 {
    left: 9.0909%;
  }
  .column-push-small-2-11 {
    left: 18.1818%;
  }
  .column-push-small-3-11 {
    left: 27.2727%;
  }
  .column-push-small-4-11 {
    left: 36.3636%;
  }
  .column-push-small-5-11 {
    left: 45.4545%;
  }
  .column-push-small-6-11 {
    left: 54.5454%;
  }
  .column-push-small-7-11 {
    left: 63.6363%;
  }
  .column-push-small-8-11 {
    left: 72.7272%;
  }
  .column-push-small-9-11 {
    left: 81.8181%;
  }
  .column-push-small-10-11 {
    left: 90.909%;
  }
  .column-push-small-1-12 {
    left: 8.3333%;
  }
  .column-push-small-5-12 {
    left: 41.6665%;
  }
  .column-push-small-7-12 {
    left: 58.3331%;
  }
  .column-push-small-10-12 {
    left: 83.333%;
  }
  .column-push-small-11-12 {
    left: 91.6663%;
  }
}
/*
 * Column Push Extra Small Classes
 */
@media (max-width: 767px) {
  [class*='column-push-'] {
    left: auto;
  }
  .column-push-xsmall-1 {
    left: 100%;
  }
  .column-push-xsmall-1-2,
  .column-push-xsmall-2-4,
  .column-push-xsmall-3-6,
  .column-push-xsmall-4-8,
  .column-push-xsmall-5-10,
  .column-push-xsmall-6-12 {
    left: 50%;
  }
  .column-push-xsmall-1-3,
  .column-push-xsmall-2-6,
  .column-push-xsmall-3-9,
  .column-push-xsmall-4-12 {
    left: 33.3333%;
  }
  .column-push-xsmall-2-3,
  .column-push-xsmall-4-6,
  .column-push-xsmall-6-9,
  .column-push-xsmall-8-12 {
    left: 66.6666%;
  }
  .column-push-xsmall-1-4,
  .column-push-xsmall-2-8,
  .column-push-xsmall-3-12 {
    left: 25%;
  }
  .column-push-xsmall-3-4,
  .column-push-xsmall-6-8,
  .column-push-xsmall-9-12 {
    left: 75%;
  }
  .column-push-xsmall-1-5,
  .column-push-xsmall-2-10 {
    left: 20%;
  }
  .column-push-xsmall-2-5,
  .column-push-xsmall-4-10 {
    left: 40%;
  }
  .column-push-xsmall-3-5,
  .column-push-xsmall-6-10 {
    left: 60%;
  }
  .column-push-xsmall-4-5,
  .column-push-xsmall-8-10 {
    left: 80%;
  }
  .column-push-xsmall-1-6,
  .column-push-xsmall-2-12 {
    left: 16.6667%;
  }
  .column-push-xsmall-5-6 {
    left: 83.3335%;
  }
  .column-push-xsmall-1-7 {
    left: 14.2857%;
  }
  .column-push-xsmall-2-7 {
    left: 28.5714%;
  }
  .column-push-xsmall-3-7 {
    left: 42.8571%;
  }
  .column-push-xsmall-4-7 {
    left: 57.1428%;
  }
  .column-push-xsmall-5-7 {
    left: 71.4285%;
  }
  .column-push-xsmall-6-7 {
    left: 85.7142%;
  }
  .column-push-xsmall-1-8 {
    left: 12.5%;
  }
  .column-push-xsmall-3-8 {
    left: 37.5%;
  }
  .column-push-xsmall-5-8 {
    left: 62.5%;
  }
  .column-push-xsmall-7-8 {
    left: 87.5%;
  }
  .column-push-xsmall-1-9 {
    left: 11.1111%;
  }
  .column-push-xsmall-2-9 {
    left: 22.2222%;
  }
  .column-push-xsmall-4-9 {
    left: 44.4444%;
  }
  .column-push-xsmall-5-9 {
    left: 55.5555%;
  }
  .column-push-xsmall-7-9 {
    left: 77.7777%;
  }
  .column-push-xsmall-8-9 {
    left: 88.8888%;
  }
  .column-push-xsmall-1-10 {
    left: 10%;
  }
  .column-push-xsmall-3-10 {
    left: 30%;
  }
  .column-push-xsmall-7-10 {
    left: 70%;
  }
  .column-push-xsmall-9-10 {
    left: 90%;
  }
  .column-push-xsmall-1-11 {
    left: 9.0909%;
  }
  .column-push-xsmall-2-11 {
    left: 18.1818%;
  }
  .column-push-xsmall-3-11 {
    left: 27.2727%;
  }
  .column-push-xsmall-4-11 {
    left: 36.3636%;
  }
  .column-push-xsmall-5-11 {
    left: 45.4545%;
  }
  .column-push-xsmall-6-11 {
    left: 54.5454%;
  }
  .column-push-xsmall-7-11 {
    left: 63.6363%;
  }
  .column-push-xsmall-8-11 {
    left: 72.7272%;
  }
  .column-push-xsmall-9-11 {
    left: 81.8181%;
  }
  .column-push-xsmall-10-11 {
    left: 90.909%;
  }
  .column-push-xsmall-1-12 {
    left: 8.3333%;
  }
  .column-push-xsmall-5-12 {
    left: 41.6665%;
  }
  .column-push-xsmall-7-12 {
    left: 58.3331%;
  }
  .column-push-xsmall-10-12 {
    left: 83.333%;
  }
  .column-push-xsmall-11-12 {
    left: 91.6663%;
  }
}
/*
 * Column Pull Classes
 */
.column-pull-1 {
  right: 100%;
}
.column-pull-1-2,
.column-pull-2-4,
.column-pull-3-6,
.column-pull-4-8,
.column-pull-5-10,
.column-pull-6-12 {
  right: 50%;
}
.column-pull-1-3,
.column-pull-2-6,
.column-pull-3-9,
.column-pull-4-12 {
  right: 33.3333%;
}
.column-pull-2-3,
.column-pull-4-6,
.column-pull-6-9,
.column-pull-8-12 {
  right: 66.6666%;
}
.column-pull-1-4,
.column-pull-2-8,
.column-pull-3-12 {
  right: 25%;
}
.column-pull-3-4,
.column-pull-6-8,
.column-pull-9-12 {
  right: 75%;
}
.column-pull-1-5,
.column-pull-2-10 {
  right: 20%;
}
.column-pull-2-5,
.column-pull-4-10 {
  right: 40%;
}
.column-pull-3-5,
.column-pull-6-10 {
  right: 60%;
}
.column-pull-4-5,
.column-pull-8-10 {
  right: 80%;
}
.column-pull-1-6,
.column-pull-2-12 {
  right: 16.6667%;
}
.column-pull-5-6 {
  right: 83.3335%;
}
.column-pull-1-7 {
  right: 14.2857%;
}
.column-pull-2-7 {
  right: 28.5714%;
}
.column-pull-3-7 {
  right: 42.8571%;
}
.column-pull-4-7 {
  right: 57.1428%;
}
.column-pull-5-7 {
  right: 71.4285%;
}
.column-pull-6-7 {
  right: 85.7142%;
}
.column-pull-1-8 {
  right: 12.5%;
}
.column-pull-3-8 {
  right: 37.5%;
}
.column-pull-5-8 {
  right: 62.5%;
}
.column-pull-7-8 {
  right: 87.5%;
}
.column-pull-1-9 {
  right: 11.1111%;
}
.column-pull-2-9 {
  right: 22.2222%;
}
.column-pull-4-9 {
  right: 44.4444%;
}
.column-pull-5-9 {
  right: 55.5555%;
}
.column-pull-7-9 {
  right: 77.7777%;
}
.column-pull-8-9 {
  right: 88.8888%;
}
.column-pull-1-10 {
  right: 10%;
}
.column-pull-3-10 {
  right: 30%;
}
.column-pull-7-10 {
  right: 70%;
}
.column-pull-9-10 {
  right: 90%;
}
.column-pull-1-11 {
  right: 9.0909%;
}
.column-pull-2-11 {
  right: 18.1818%;
}
.column-pull-3-11 {
  right: 27.2727%;
}
.column-pull-4-11 {
  right: 36.3636%;
}
.column-pull-5-11 {
  right: 45.4545%;
}
.column-pull-6-11 {
  right: 54.5454%;
}
.column-pull-7-11 {
  right: 63.6363%;
}
.column-pull-8-11 {
  right: 72.7272%;
}
.column-pull-9-11 {
  right: 81.8181%;
}
.column-pull-10-11 {
  right: 90.909%;
}
.column-pull-1-12 {
  right: 8.3333%;
}
.column-pull-5-12 {
  right: 41.6665%;
}
.column-pull-7-12 {
  right: 58.3331%;
}
.column-pull-10-12 {
  right: 83.333%;
}
.column-pull-11-12 {
  right: 91.6663%;
}
/*
 * Column Pull Extra Large Classes
 */
@media (min-width: 1680px) {
  .column-pull-xlarge-reset {
    right: 0;
  }
  .column-pull-xlarge-1 {
    right: 100%;
  }
  .column-pull-xlarge-1-2,
  .column-pull-xlarge-2-4,
  .column-pull-xlarge-3-6,
  .column-pull-xlarge-4-8,
  .column-pull-xlarge-5-10,
  .column-pull-xlarge-6-12 {
    right: 50%;
  }
  .column-pull-xlarge-1-3,
  .column-pull-xlarge-2-6,
  .column-pull-xlarge-3-9,
  .column-pull-xlarge-4-12 {
    right: 33.3333%;
  }
  .column-pull-xlarge-2-3,
  .column-pull-xlarge-4-6,
  .column-pull-xlarge-6-9,
  .column-pull-xlarge-8-12 {
    right: 66.6666%;
  }
  .column-pull-xlarge-1-4,
  .column-pull-xlarge-2-8,
  .column-pull-xlarge-3-12 {
    right: 25%;
  }
  .column-pull-xlarge-3-4,
  .column-pull-xlarge-6-8,
  .column-pull-xlarge-9-12 {
    right: 75%;
  }
  .column-pull-xlarge-1-5,
  .column-pull-xlarge-2-10 {
    right: 20%;
  }
  .column-pull-xlarge-2-5,
  .column-pull-xlarge-4-10 {
    right: 40%;
  }
  .column-pull-xlarge-3-5,
  .column-pull-xlarge-6-10 {
    right: 60%;
  }
  .column-pull-xlarge-4-5,
  .column-pull-xlarge-8-10 {
    right: 80%;
  }
  .column-pull-xlarge-1-6,
  .column-pull-xlarge-2-12 {
    right: 16.6667%;
  }
  .column-pull-xlarge-5-6 {
    right: 83.3335%;
  }
  .column-pull-xlarge-1-7 {
    right: 14.2857%;
  }
  .column-pull-xlarge-2-7 {
    right: 28.5714%;
  }
  .column-pull-xlarge-3-7 {
    right: 42.8571%;
  }
  .column-pull-xlarge-4-7 {
    right: 57.1428%;
  }
  .column-pull-xlarge-5-7 {
    right: 71.4285%;
  }
  .column-pull-xlarge-6-7 {
    right: 85.7142%;
  }
  .column-pull-xlarge-1-8 {
    right: 12.5%;
  }
  .column-pull-xlarge-3-8 {
    right: 37.5%;
  }
  .column-pull-xlarge-5-8 {
    right: 62.5%;
  }
  .column-pull-xlarge-7-8 {
    right: 87.5%;
  }
  .column-pull-xlarge-1-9 {
    right: 11.1111%;
  }
  .column-pull-xlarge-2-9 {
    right: 22.2222%;
  }
  .column-pull-xlarge-4-9 {
    right: 44.4444%;
  }
  .column-pull-xlarge-5-9 {
    right: 55.5555%;
  }
  .column-pull-xlarge-7-9 {
    right: 77.7777%;
  }
  .column-pull-xlarge-8-9 {
    right: 88.8888%;
  }
  .column-pull-xlarge-1-10 {
    right: 10%;
  }
  .column-pull-xlarge-3-10 {
    right: 30%;
  }
  .column-pull-xlarge-7-10 {
    right: 70%;
  }
  .column-pull-xlarge-9-10 {
    right: 90%;
  }
  .column-pull-xlarge-1-11 {
    right: 9.0909%;
  }
  .column-pull-xlarge-2-11 {
    right: 18.1818%;
  }
  .column-pull-xlarge-3-11 {
    right: 27.2727%;
  }
  .column-pull-xlarge-4-11 {
    right: 36.3636%;
  }
  .column-pull-xlarge-5-11 {
    right: 45.4545%;
  }
  .column-pull-xlarge-6-11 {
    right: 54.5454%;
  }
  .column-pull-xlarge-7-11 {
    right: 63.6363%;
  }
  .column-pull-xlarge-8-11 {
    right: 72.7272%;
  }
  .column-pull-xlarge-9-11 {
    right: 81.8181%;
  }
  .column-pull-xlarge-10-11 {
    right: 90.909%;
  }
  .column-pull-xlarge-1-12 {
    right: 8.3333%;
  }
  .column-pull-xlarge-5-12 {
    right: 41.6665%;
  }
  .column-pull-xlarge-7-12 {
    right: 58.3331%;
  }
  .column-pull-xlarge-10-12 {
    right: 83.333%;
  }
  .column-pull-xlarge-11-12 {
    right: 91.6663%;
  }
}
/*
 * Column Pull Large Classes
 */
@media (min-width: 1280px) and (max-width: 1679px) {
  .column-pull-large-reset {
    right: 0;
  }
  .column-pull-large-1 {
    right: 100%;
  }
  .column-pull-large-1-2,
  .column-pull-large-2-4,
  .column-pull-large-3-6,
  .column-pull-large-4-8,
  .column-pull-large-5-10,
  .column-pull-large-6-12 {
    right: 50%;
  }
  .column-pull-large-1-3,
  .column-pull-large-2-6,
  .column-pull-large-3-9,
  .column-pull-large-4-12 {
    right: 33.3333%;
  }
  .column-pull-large-2-3,
  .column-pull-large-4-6,
  .column-pull-large-6-9,
  .column-pull-large-8-12 {
    right: 66.6666%;
  }
  .column-pull-large-1-4,
  .column-pull-large-2-8,
  .column-pull-large-3-12 {
    right: 25%;
  }
  .column-pull-large-3-4,
  .column-pull-large-6-8,
  .column-pull-large-9-12 {
    right: 75%;
  }
  .column-pull-large-1-5,
  .column-pull-large-2-10 {
    right: 20%;
  }
  .column-pull-large-2-5,
  .column-pull-large-4-10 {
    right: 40%;
  }
  .column-pull-large-3-5,
  .column-pull-large-6-10 {
    right: 60%;
  }
  .column-pull-large-4-5,
  .column-pull-large-8-10 {
    right: 80%;
  }
  .column-pull-large-1-6,
  .column-pull-large-2-12 {
    right: 16.6667%;
  }
  .column-pull-large-5-6 {
    right: 83.3335%;
  }
  .column-pull-large-1-7 {
    right: 14.2857%;
  }
  .column-pull-large-2-7 {
    right: 28.5714%;
  }
  .column-pull-large-3-7 {
    right: 42.8571%;
  }
  .column-pull-large-4-7 {
    right: 57.1428%;
  }
  .column-pull-large-5-7 {
    right: 71.4285%;
  }
  .column-pull-large-6-7 {
    right: 85.7142%;
  }
  .column-pull-large-1-8 {
    right: 12.5%;
  }
  .column-pull-large-3-8 {
    right: 37.5%;
  }
  .column-pull-large-5-8 {
    right: 62.5%;
  }
  .column-pull-large-7-8 {
    right: 87.5%;
  }
  .column-pull-large-1-9 {
    right: 11.1111%;
  }
  .column-pull-large-2-9 {
    right: 22.2222%;
  }
  .column-pull-large-4-9 {
    right: 44.4444%;
  }
  .column-pull-large-5-9 {
    right: 55.5555%;
  }
  .column-pull-large-7-9 {
    right: 77.7777%;
  }
  .column-pull-large-8-9 {
    right: 88.8888%;
  }
  .column-pull-large-1-10 {
    right: 10%;
  }
  .column-pull-large-3-10 {
    right: 30%;
  }
  .column-pull-large-7-10 {
    right: 70%;
  }
  .column-pull-large-9-10 {
    right: 90%;
  }
  .column-pull-large-1-11 {
    right: 9.0909%;
  }
  .column-pull-large-2-11 {
    right: 18.1818%;
  }
  .column-pull-large-3-11 {
    right: 27.2727%;
  }
  .column-pull-large-4-11 {
    right: 36.3636%;
  }
  .column-pull-large-5-11 {
    right: 45.4545%;
  }
  .column-pull-large-6-11 {
    right: 54.5454%;
  }
  .column-pull-large-7-11 {
    right: 63.6363%;
  }
  .column-pull-large-8-11 {
    right: 72.7272%;
  }
  .column-pull-large-9-11 {
    right: 81.8181%;
  }
  .column-pull-large-10-11 {
    right: 90.909%;
  }
  .column-pull-large-1-12 {
    right: 8.3333%;
  }
  .column-pull-large-5-12 {
    right: 41.6665%;
  }
  .column-pull-large-7-12 {
    right: 58.3331%;
  }
  .column-pull-large-10-12 {
    right: 83.333%;
  }
  .column-pull-large-11-12 {
    right: 91.6663%;
  }
}
/*
 * Column Pull Medium Classes
 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .column-pull-medium-reset {
    right: 0;
  }
  .column-pull-medium-1 {
    right: 100%;
  }
  .column-pull-medium-1-2,
  .column-pull-medium-2-4,
  .column-pull-medium-3-6,
  .column-pull-medium-4-8,
  .column-pull-medium-5-10,
  .column-pull-medium-6-12 {
    right: 50%;
  }
  .column-pull-medium-1-3,
  .column-pull-medium-2-6,
  .column-pull-medium-3-9,
  .column-pull-medium-4-12 {
    right: 33.3333%;
  }
  .column-pull-medium-2-3,
  .column-pull-medium-4-6,
  .column-pull-medium-6-9,
  .column-pull-medium-8-12 {
    right: 66.6666%;
  }
  .column-pull-medium-1-4,
  .column-pull-medium-2-8,
  .column-pull-medium-3-12 {
    right: 25%;
  }
  .column-pull-medium-3-4,
  .column-pull-medium-6-8,
  .column-pull-medium-9-12 {
    right: 75%;
  }
  .column-pull-medium-1-5,
  .column-pull-medium-2-10 {
    right: 20%;
  }
  .column-pull-medium-2-5,
  .column-pull-medium-4-10 {
    right: 40%;
  }
  .column-pull-medium-3-5,
  .column-pull-medium-6-10 {
    right: 60%;
  }
  .column-pull-medium-4-5,
  .column-pull-medium-8-10 {
    right: 80%;
  }
  .column-pull-medium-1-6,
  .column-pull-medium-2-12 {
    right: 16.6667%;
  }
  .column-pull-medium-5-6 {
    right: 83.3335%;
  }
  .column-pull-medium-1-7 {
    right: 14.2857%;
  }
  .column-pull-medium-2-7 {
    right: 28.5714%;
  }
  .column-pull-medium-3-7 {
    right: 42.8571%;
  }
  .column-pull-medium-4-7 {
    right: 57.1428%;
  }
  .column-pull-medium-5-7 {
    right: 71.4285%;
  }
  .column-pull-medium-6-7 {
    right: 85.7142%;
  }
  .column-pull-medium-1-8 {
    right: 12.5%;
  }
  .column-pull-medium-3-8 {
    right: 37.5%;
  }
  .column-pull-medium-5-8 {
    right: 62.5%;
  }
  .column-pull-medium-7-8 {
    right: 87.5%;
  }
  .column-pull-medium-1-9 {
    right: 11.1111%;
  }
  .column-pull-medium-2-9 {
    right: 22.2222%;
  }
  .column-pull-medium-4-9 {
    right: 44.4444%;
  }
  .column-pull-medium-5-9 {
    right: 55.5555%;
  }
  .column-pull-medium-7-9 {
    right: 77.7777%;
  }
  .column-pull-medium-8-9 {
    right: 88.8888%;
  }
  .column-pull-medium-1-10 {
    right: 10%;
  }
  .column-pull-medium-3-10 {
    right: 30%;
  }
  .column-pull-medium-7-10 {
    right: 70%;
  }
  .column-pull-medium-9-10 {
    right: 90%;
  }
  .column-pull-medium-1-11 {
    right: 9.0909%;
  }
  .column-pull-medium-2-11 {
    right: 18.1818%;
  }
  .column-pull-medium-3-11 {
    right: 27.2727%;
  }
  .column-pull-medium-4-11 {
    right: 36.3636%;
  }
  .column-pull-medium-5-11 {
    right: 45.4545%;
  }
  .column-pull-medium-6-11 {
    right: 54.5454%;
  }
  .column-pull-medium-7-11 {
    right: 63.6363%;
  }
  .column-pull-medium-8-11 {
    right: 72.7272%;
  }
  .column-pull-medium-9-11 {
    right: 81.8181%;
  }
  .column-pull-medium-10-11 {
    right: 90.909%;
  }
  .column-pull-medium-1-12 {
    right: 8.3333%;
  }
  .column-pull-medium-5-12 {
    right: 41.6665%;
  }
  .column-pull-medium-7-12 {
    right: 58.3331%;
  }
  .column-pull-medium-10-12 {
    right: 83.333%;
  }
  .column-pull-medium-11-12 {
    right: 91.6663%;
  }
}
/*
 * Column Pull Small Classes
 */
@media (min-width: 768px) and (max-width: 1023px) {
  .column-pull-small-1 {
    right: 100%;
  }
  .column-pull-small-1-2,
  .column-pull-small-2-4,
  .column-pull-small-3-6,
  .column-pull-small-4-8,
  .column-pull-small-5-10,
  .column-pull-small-6-12 {
    right: 50%;
  }
  .column-pull-small-1-3,
  .column-pull-small-2-6,
  .column-pull-small-3-9,
  .column-pull-small-4-12 {
    right: 33.3333%;
  }
  .column-pull-small-2-3,
  .column-pull-small-4-6,
  .column-pull-small-6-9,
  .column-pull-small-8-12 {
    right: 66.6666%;
  }
  .column-pull-small-1-4,
  .column-pull-small-2-8,
  .column-pull-small-3-12 {
    right: 25%;
  }
  .column-pull-small-3-4,
  .column-pull-small-6-8,
  .column-pull-small-9-12 {
    right: 75%;
  }
  .column-pull-small-1-5,
  .column-pull-small-2-10 {
    right: 20%;
  }
  .column-pull-small-2-5,
  .column-pull-small-4-10 {
    right: 40%;
  }
  .column-pull-small-3-5,
  .column-pull-small-6-10 {
    right: 60%;
  }
  .column-pull-small-4-5,
  .column-pull-small-8-10 {
    right: 80%;
  }
  .column-pull-small-1-6,
  .column-pull-small-2-12 {
    right: 16.6667%;
  }
  .column-pull-small-5-6 {
    right: 83.3335%;
  }
  .column-pull-small-1-7 {
    right: 14.2857%;
  }
  .column-pull-small-2-7 {
    right: 28.5714%;
  }
  .column-pull-small-3-7 {
    right: 42.8571%;
  }
  .column-pull-small-4-7 {
    right: 57.1428%;
  }
  .column-pull-small-5-7 {
    right: 71.4285%;
  }
  .column-pull-small-6-7 {
    right: 85.7142%;
  }
  .column-pull-small-1-8 {
    right: 12.5%;
  }
  .column-pull-small-3-8 {
    right: 37.5%;
  }
  .column-pull-small-5-8 {
    right: 62.5%;
  }
  .column-pull-small-7-8 {
    right: 87.5%;
  }
  .column-pull-small-1-9 {
    right: 11.1111%;
  }
  .column-pull-small-2-9 {
    right: 22.2222%;
  }
  .column-pull-small-4-9 {
    right: 44.4444%;
  }
  .column-pull-small-5-9 {
    right: 55.5555%;
  }
  .column-pull-small-7-9 {
    right: 77.7777%;
  }
  .column-pull-small-8-9 {
    right: 88.8888%;
  }
  .column-pull-small-1-10 {
    right: 10%;
  }
  .column-pull-small-3-10 {
    right: 30%;
  }
  .column-pull-small-7-10 {
    right: 70%;
  }
  .column-pull-small-9-10 {
    right: 90%;
  }
  .column-pull-small-1-11 {
    right: 9.0909%;
  }
  .column-pull-small-2-11 {
    right: 18.1818%;
  }
  .column-pull-small-3-11 {
    right: 27.2727%;
  }
  .column-pull-small-4-11 {
    right: 36.3636%;
  }
  .column-pull-small-5-11 {
    right: 45.4545%;
  }
  .column-pull-small-6-11 {
    right: 54.5454%;
  }
  .column-pull-small-7-11 {
    right: 63.6363%;
  }
  .column-pull-small-8-11 {
    right: 72.7272%;
  }
  .column-pull-small-9-11 {
    right: 81.8181%;
  }
  .column-pull-small-10-11 {
    right: 90.909%;
  }
  .column-pull-small-1-12 {
    right: 8.3333%;
  }
  .column-pull-small-5-12 {
    right: 41.6665%;
  }
  .column-pull-small-7-12 {
    right: 58.3331%;
  }
  .column-pull-small-10-12 {
    right: 83.333%;
  }
  .column-pull-small-11-12 {
    right: 91.6663%;
  }
}
/*
 * Column Pull  Extra Small Classes
 */
@media (max-width: 767px) {
  [class*='column-pull-'] {
    right: auto;
  }
  .column-pull-xsmall-1 {
    right: 100%;
  }
  .column-pull-xsmall-1-2,
  .column-pull-xsmall-2-4,
  .column-pull-xsmall-3-6,
  .column-pull-xsmall-4-8,
  .column-pull-xsmall-5-10,
  .column-pull-xsmall-6-12 {
    right: 50%;
  }
  .column-pull-xsmall-1-3,
  .column-pull-xsmall-2-6,
  .column-pull-xsmall-3-9,
  .column-pull-xsmall-4-12 {
    right: 33.3333%;
  }
  .column-pull-xsmall-2-3,
  .column-pull-xsmall-4-6,
  .column-pull-xsmall-6-9,
  .column-pull-xsmall-8-12 {
    right: 66.6666%;
  }
  .column-pull-xsmall-1-4,
  .column-pull-xsmall-2-8,
  .column-pull-xsmall-3-12 {
    right: 25%;
  }
  .column-pull-xsmall-3-4,
  .column-pull-xsmall-6-8,
  .column-pull-xsmall-9-12 {
    right: 75%;
  }
  .column-pull-xsmall-1-5,
  .column-pull-xsmall-2-10 {
    right: 20%;
  }
  .column-pull-xsmall-2-5,
  .column-pull-xsmall-4-10 {
    right: 40%;
  }
  .column-pull-xsmall-3-5,
  .column-pull-xsmall-6-10 {
    right: 60%;
  }
  .column-pull-xsmall-4-5,
  .column-pull-xsmall-8-10 {
    right: 80%;
  }
  .column-pull-xsmall-1-6,
  .column-pull-xsmall-2-12 {
    right: 16.6667%;
  }
  .column-pull-xsmall-5-6 {
    right: 83.3335%;
  }
  .column-pull-xsmall-1-7 {
    right: 14.2857%;
  }
  .column-pull-xsmall-2-7 {
    right: 28.5714%;
  }
  .column-pull-xsmall-3-7 {
    right: 42.8571%;
  }
  .column-pull-xsmall-4-7 {
    right: 57.1428%;
  }
  .column-pull-xsmall-5-7 {
    right: 71.4285%;
  }
  .column-pull-xsmall-6-7 {
    right: 85.7142%;
  }
  .column-pull-xsmall-1-8 {
    right: 12.5%;
  }
  .column-pull-xsmall-3-8 {
    right: 37.5%;
  }
  .column-pull-xsmall-5-8 {
    right: 62.5%;
  }
  .column-pull-xsmall-7-8 {
    right: 87.5%;
  }
  .column-pull-xsmall-1-9 {
    right: 11.1111%;
  }
  .column-pull-xsmall-2-9 {
    right: 22.2222%;
  }
  .column-pull-xsmall-4-9 {
    right: 44.4444%;
  }
  .column-pull-xsmall-5-9 {
    right: 55.5555%;
  }
  .column-pull-xsmall-7-9 {
    right: 77.7777%;
  }
  .column-pull-xsmall-8-9 {
    right: 88.8888%;
  }
  .column-pull-xsmall-1-10 {
    right: 10%;
  }
  .column-pull-xsmall-3-10 {
    right: 30%;
  }
  .column-pull-xsmall-7-10 {
    right: 70%;
  }
  .column-pull-xsmall-9-10 {
    right: 90%;
  }
  .column-pull-xsmall-1-11 {
    right: 9.0909%;
  }
  .column-pull-xsmall-2-11 {
    right: 18.1818%;
  }
  .column-pull-xsmall-3-11 {
    right: 27.2727%;
  }
  .column-pull-xsmall-4-11 {
    right: 36.3636%;
  }
  .column-pull-xsmall-5-11 {
    right: 45.4545%;
  }
  .column-pull-xsmall-6-11 {
    right: 54.5454%;
  }
  .column-pull-xsmall-7-11 {
    right: 63.6363%;
  }
  .column-pull-xsmall-8-11 {
    right: 72.7272%;
  }
  .column-pull-xsmall-9-11 {
    right: 81.8181%;
  }
  .column-pull-xsmall-10-11 {
    right: 90.909%;
  }
  .column-pull-xsmall-1-12 {
    right: 8.3333%;
  }
  .column-pull-xsmall-5-12 {
    right: 41.6665%;
  }
  .column-pull-xsmall-7-12 {
    right: 58.3331%;
  }
  .column-pull-xsmall-10-12 {
    right: 83.333%;
  }
  .column-pull-xsmall-11-12 {
    right: 91.6663%;
  }
}
.grid {
  display: grid;
  display: -ms-grid;
  -ms-grid-columns: 9rem 1fr;
  -ms-grid-rows: 6.5rem 1fr;
  grid-template-columns: 9rem 1fr;
  grid-template-rows: 6.5rem 1fr;
  grid-gap: 0;
  grid-template-areas: "header header" "main main";
}
.grid--full-width {
  grid-template-areas: "header header" "main main";
}
main.main {
  overflow: auto;
  grid-area: main;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  font-size: 1.6rem;
  height: calc(100vh - 6.5rem);
  height: -o-calc(100vh - 6.5rem);
  padding-top: 2rem;
}
[id^=page-admin-] {
  width: calc(100vw - 9rem);
  width: -o-calc(100vw - 9rem);
  margin-left: 9rem;
}
[id^=page-admin-] .text-center .button + button {
  margin-left: 1rem;
}
/*
 * Form
 */
/*
 * Definitions
 */
/*
 * Label
 */
label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #656565;
  line-height: 1.5;
}
/*
 * Definitions
 */
/*
 * Fieldset
 */
fieldset {
  display: block;
  margin: 0;
  padding: 2rem;
  border: 1px solid #DDD;
}
fieldset legend {
  display: inline-block;
  padding: 1rem;
  font-size: 1.6rem;
  color: #555;
}
/*
 * Definitions
 */
/*
 * Form Message
 */
.form-message {
  margin: 1rem 0 0.5rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #000000;
  line-height: 1.5;
}
.form-message.error {
  color: #FF3737;
}
.form-message.warning {
  color: #FF4500;
}
.form-message.success {
  color: #00AA00;
}
.form-message.info {
  color: #1E90FF;
}
/*
 * Definitions
 */
/*
 * Input
 */
input,
textarea {
  display: block;
  margin: 0.5rem 0 1rem;
  width: 100%;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  padding: 0 1.6rem;
  height: 4.4rem;
  font-size: 1.6rem;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #DDD;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
input:hover,
textarea:hover {
  color: #000000;
  background: #fafafa;
  border: 1px solid #c4c4c4;
}
input:focus,
textarea:focus {
  color: #000000;
  background: #fafafa;
  border: 1px solid #1E90FF;
}
input:disabled,
textarea:disabled {
  cursor: no-drop;
  color: #FAFAFC;
  background: #FAFAFC;
  border: 1px solid #dadae9;
}
/*
 * Textarea
 */
textarea {
  max-width: 100%;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
}
/*
 * Input Styles
 */
.input-inverse {
  color: #FFFFFF;
  background: #656565;
  border: none;
}
.input-inverse::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-inverse:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.input-inverse:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-inverse:focus:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.input-inverse::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-inverse:focus::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.input-inverse:hover {
  color: #FFFFFF;
  background: #5f5f5f;
  border: none;
}
.input-inverse:focus {
  color: #FFFFFF;
  background: #585858;
  border: 1px solid #1E90FF;
}
/*
 * Input Search
 */
input[type="search"] {
  border-radius: 2rem;
  -webkit-appearance: none;
  box-sizing: border-box;
}
/*
 * Input File
 */
input[type="file"] {
  padding: 0;
  height: auto;
  background: transparent;
  border: none;
  box-sizing: border-box;
}
/*
 * Checkbox and Radio
 */
input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
  width: auto;
  height: auto;
}
input[type="checkbox"] + p,
input[type="radio"] + p {
  margin: 0;
  display: inline-block;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}
/*
 * Textarea
 */
textarea {
  padding: 1.6rem;
  height: auto;
  line-height: 1.5;
}
/*
 * Definitions
 */
/*
 * Input Indicators 
 */
input.error,
textarea.error {
  color: #FF3737;
  border-color: #FF3737;
}
input.warning,
textarea.warning {
  color: #FF4500;
  border-color: #FF4500;
}
input.success,
textarea.success {
  color: #00AA00;
  border-color: #00AA00;
}
input.info,
textarea.info {
  color: #1E90FF;
  border-color: #1E90FF;
}
/*
 * Definitions
 */
/*
 * Input Sizes
 */
.input-xlarge {
  padding: 0 3rem;
  height: 6rem;
  font-size: 2rem;
}
.input-xlarge::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-xlarge:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-xlarge:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-xlarge:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-xlarge::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-xlarge:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-large {
  padding: 0 2.5rem;
  height: 5rem;
  font-size: 1.8rem;
}
.input-large::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-large:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-large:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-large:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-large::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-large:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-medium {
  padding: 0 1.6rem;
  height: 4.4rem;
  font-size: 1.6rem;
}
.input-medium::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-medium:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-medium:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-medium:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-medium::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-medium:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-small {
  padding: 0 1.2rem;
  height: 3.6rem;
  font-size: 1.4rem;
}
.input-small::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-small:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-small:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-small:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-small::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-small:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-xsmall {
  padding: 0 0.8rem;
  height: 2.4rem;
  font-size: 1.2rem;
}
.input-xsmall::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-xsmall:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-xsmall:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-xsmall:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.input-xsmall::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: italic;
}
.input-xsmall:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
/*
 * Input Group
 */
.input-group {
  position: relative;
  display: table;
  margin: 0.5rem 0 1rem;
  border-collapse: separate;
}
.input-group.input-inline {
  float: left;
}
.input-group input {
  margin: 0;
  border-radius: 0.4rem 0 0 0.4rem;
  background-clip: padding-box;
}
.input-group[class*="column-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .input-group-button,
.input-group .input-group .form-input {
  display: table-cell;
}
.input-group-button {
  position: relative;
  font-size: 0rem;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-button > button,
.input-group-button > .button {
  position: relative;
  border-radius: 0 0.4rem 0.4rem 0;
  background-clip: padding-box;
}
.input-group-button > button + .button,
.input-group-button > .button + .button {
  margin-left: -1px;
}
.input-group-button > button:hover,
.input-group-button > .button:hover,
.input-group-button > button:focus,
.input-group-button > .button:focus,
.input-group-button > button:active,
.input-group-button > .button:active {
  z-index: 2;
}
.input-group-button:first-child > .button {
  margin-right: -1px;
}
.input-group-button:last-child > .button {
  margin-left: -1px;
}
.input-group-search {
  border-radius: 2rem;
  overflow: hidden;
}
.input-group-search input[type="search"] {
  padding-left: 2rem;
  border-radius: 2rem 0 0 2rem;
  background-clip: padding-box;
}
.input-group-search button,
.input-group-search .button {
  border-radius: 0 2rem 2rem 0;
  background-clip: padding-box;
}
/*
 * Definitions
 */
/*
 * Controls (Radio + Checkbox)
 */
.control {
  position: relative;
  display: block;
  margin: 0.5rem 0 1rem;
  padding: 0 0 0 1.5em;
  color: #000000;
  cursor: pointer;
}
.control.control-inline {
  display: inline-block;
  margin-right: 2rem;
}
.control:hover .control-indicator {
  border: 1px solid #c4c4c4;
  background-color: #fafafa;
}
.control input {
  z-index: -1;
  position: absolute;
  opacity: 0;
}
.control input:focus ~ .control-indicator {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 2px #1E90FF;
}
.control input:checked ~ .control-indicator {
  background: #9A76AF;
  border: 1px solid #9A76AF;
}
.control input:checked ~ .control-label {
  color: #000000;
}
.control.checkbox .control-indicator {
  border-radius: none;
}
.control.checkbox input:checked ~ .control-indicator {
  background: #9A76AF no-repeat 50% 50% url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTIuOHB4IiBoZWlnaHQ9IjkuOHB4IiB2aWV3Qm94PSIwIDAgMTIuOCA5LjgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEyLjggOS44IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iMTEuNCwwIDQuNCw3IDEuNCw0IDAsNS40IDMsOC40IDQuNCw5LjggNS44LDguNCAxMi44LDEuNCAiLz4NCjwvc3ZnPg0K');
}
.control.radio .control-indicator {
  border-radius: 50%;
}
.control.radio input:checked ~ .control-indicator:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
}
.control-indicator {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1rem;
  color: #9A76AF;
  text-align: center;
  background-color: #FFFFFF;
  background-size: 50% 50%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #DDD;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.control-label {
  display: block;
  margin: 0 0 0 1rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}
/*
 * Definitions
 */
/*
 * Select
 */
select {
  display: block;
  width: 100%;
}
.select {
  position: relative;
  display: block;
  margin: 0.5rem 0 1rem;
}
.select select {
  margin: 0;
  padding: 0 1.6rem;
  height: 4.4rem;
  line-height: auto;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000;
  cursor: pointer;
  outline: 0;
  background: #FFFFFF;
  border: 1px solid #DDD;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select select::-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover {
  color: #000000;
  background: #fafafa;
  border: 1px solid #c4c4c4;
}
.select select:focus {
  color: #000000;
  background: #fafafa;
  border: 1px solid #1E90FF;
}
.select:after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -0.2rem;
  width: 0;
  height: 0;
  content: '';
  pointer-events: none;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid #656565;
}
/*
 * Select Inverse
 */
.select-inverse select {
  color: #FFFFFF;
  border: none;
  background: #656565;
}
.select-inverse select:hover {
  color: #FFFFFF;
  background: #5f5f5f;
  border: none;
}
.select-inverse select:focus {
  color: #FFFFFF;
  background: #585858;
  border: 1px solid #1E90FF;
}
.select-inverse:after {
  border-top: 0.4rem solid #FFFFFF;
}
@media screen and (min-width:0\0) {
  .select select {
    padding: 0.5em;
  }
  .select:before,
  .select:after {
    display: none;
  }
}
@-moz-document url-prefix() {
  .select select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem;
  }
  .select:before {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    pointer-events: none;
    width: 1em;
    border: 1px solid #DDD;
    border-width: 1px 1px 1px 0px;
    background: #FFFFFF;
    border-radius: 0 0.4rem 0.4rem 0;
    background-clip: padding-box;
  }
  .select.large:before {
    width: 1.5em;
  }
  .select.select-inverse:before {
    border: none;
    background: #656565;
  }
}
/*
 * Definitions
 */
/*
 * Select Sizes
 */
.select-xlarge select {
  padding: 0 3rem;
  height: 6rem;
  font-size: 2rem;
  line-height: 6rem;
}
.select-large select {
  padding: 0 2.5rem;
  height: 5rem;
  font-size: 1.8rem;
  line-height: 5rem;
}
.select-medium select {
  padding: 0 1.6rem;
  height: 4.4rem;
  font-size: 1.6rem;
  line-height: 4.4rem;
}
.select-small select {
  padding: 0 1.2rem;
  height: 3.6rem;
  font-size: 1.4rem;
  line-height: 3.6rem;
}
.select-xsmall select {
  padding: 0 0.8rem;
  height: 2.4rem;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
app-select-field,
app-datepicker-field,
app-textarea-field,
app-input-text-field,
app-input-number-field,
app-autocomplete-field {
  width: 100%;
}
app-autocomplete-field {
  height: 4rem;
}
.field {
  margin-bottom: 2rem;
  position: relative;
}
.field .box-error {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1.8rem;
}
.field .box-error p.error {
  color: #FF3737 !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  margin: 0;
  text-align: left;
}
.field.error:before {
  position: absolute;
  right: 2rem;
  bottom: 2.2rem;
  transform: translateY(50%);
  color: #FF3737 !important;
  content: "\e918";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.field.error input {
  border: 1px solid #FF3737;
}
.field.error .box-error {
  display: block;
}
.field.error .box-error p.error:not([hidden]) {
  display: block;
}
.field.error .box-error p.error:not([hidden]) ~ p {
  display: none;
}
/*
 * Elements
 */
/*
 * Definitions
 */
/*
 * Button
 */
button,
.button {
  display: inline-block;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
  padding: 1.3rem 2.2rem;
  height: 4.4rem;
  font-size: 1.6rem;
  color: #333;
  background: #FFFFFF;
  border: 1px solid #DDD;
}
button.error,
.button.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
button.error:not(:disabled):hover,
.button.error:not(:disabled):hover,
button.error:not(:disabled):focus,
.button.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
button.warning,
.button.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
button.warning:not(:disabled):hover,
.button.warning:not(:disabled):hover,
button.warning:not(:disabled):focus,
.button.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
button.success,
.button.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
button.success:not(:disabled):hover,
.button.success:not(:disabled):hover,
button.success:not(:disabled):focus,
.button.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
button.info,
.button.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
button.info:not(:disabled):hover,
.button.info:not(:disabled):hover,
button.info:not(:disabled):focus,
.button.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
button:not(:disabled):hover,
.button:not(:disabled):hover,
button:not(:disabled):focus,
.button:not(:disabled):focus {
  color: #333;
  background: #e6e6e6;
  border: 1px solid #c4c4c4;
}
button:disabled {
  cursor: no-drop;
  opacity: 0.5;
}
[role="button"] {
  cursor: pointer;
}
/*
 * Button Modifiers
 */
.button-block {
  display: block;
  width: 100%;
  text-align: center;
}
.button-center {
  display: inline-block;
  margin: 0 auto;
}
/*
 * Definitions
 */
/*
 * Button Styles
 */
.button-inverse {
  color: #FAFAFC;
  background: #656565;
  border: none;
}
.button-inverse:not(:disabled):hover,
.button-inverse:not(:disabled):focus {
  color: #FAFAFC;
  background: #4b4b4b;
  border: none;
}
.button-text {
  color: #656565;
  background: transparent;
  border: none;
}
.button-text:not(:disabled):hover,
.button-text:not(:disabled):focus {
  color: #9A76AF;
  background: transparent;
  border: none;
}
.button-primary {
  color: #FFFFFF;
  background: #9A76AF;
  border: none;
}
.button-primary:not(:disabled):hover,
.button-primary:not(:disabled):focus {
  color: #FFFFFF;
  background: #815999;
  border: none;
}
.button-secondary {
  color: #FFFFFF;
  background: #663399;
  border: none;
}
.button-secondary:not(:disabled):hover,
.button-secondary:not(:disabled):focus {
  color: #FFFFFF;
  background: #4c2673;
  border: none;
}
.button-tertiary {
  color: #FFFFFF;
  background: #8B008B;
  border: none;
}
.button-tertiary:not(:disabled):hover,
.button-tertiary:not(:disabled):focus {
  color: #FFFFFF;
  background: #580058;
  border: none;
}
.button-black {
  color: #FFFFFF;
  background: #000000;
  border: none;
}
.button-black:not(:disabled):hover,
.button-black:not(:disabled):focus {
  color: #FFFFFF;
  background: #000000;
  border: none;
}
.button-danger {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
.button-danger:not(:disabled):hover,
.button-danger:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
.button-border {
  color: #656565;
  background: transparent;
  border: 1px solid #656565;
}
.button-border:not(:disabled):hover,
.button-border:not(:disabled):focus {
  color: #FFFFFF;
  background: #656565;
  border: 1px solid #656565;
}
/*
 * Definitions
 */
/*
 * Button Indicators
 */
button.error,
.button.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
button.error:not(:disabled):hover,
.button.error:not(:disabled):hover,
button.error:not(:disabled):focus,
.button.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
button.warning,
.button.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
button.warning:not(:disabled):hover,
.button.warning:not(:disabled):hover,
button.warning:not(:disabled):focus,
.button.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
button.success,
.button.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
button.success:not(:disabled):hover,
.button.success:not(:disabled):hover,
button.success:not(:disabled):focus,
.button.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
button.info,
.button.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
button.info:not(:disabled):hover,
.button.info:not(:disabled):hover,
button.info:not(:disabled):focus,
.button.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
/*
 * Definitions
 */
/*
 * Button Sizes
 */
.button-xlarge {
  padding: 1.8rem 3.2rem;
  height: 6rem;
  font-size: 2rem;
}
.button-large {
  padding: 1.6rem 2.8rem;
  height: 5rem;
  font-size: 1.8rem;
}
.button-medium {
  padding: 1.3rem 2.2rem;
  height: 4.4rem;
  font-size: 1.6rem;
}
.button-small {
  padding: 1.1rem 1.6rem;
  height: 3.6rem;
  font-size: 1.4rem;
}
.button-xsmall {
  padding: 0.6rem 1.2rem;
  height: 2.4rem;
  font-size: 1.2rem;
}
/*
 * Definitions
 */
/*
 * Button Icon
 */
.button-icon > svg {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
  vertical-align: bottom;
  transition: fill 0.2s ease-in-out;
}
.button-icon-left > svg {
  margin-right: 1em;
}
.button-icon-right > svg {
  margin-left: 1em;
}
/*
 * Button Icon Styles
 */
.button-icon.button-inverse > svg {
  fill: #FAFAFC;
}
.button-icon.button-inverse:not(:disabled):hover > svg,
.button-icon.button-inverse:not(:disabled):focus > svg {
  fill: #FAFAFC;
}
.button-icon.button-text > svg {
  fill: #656565;
}
.button-icon.button-text:not(:disabled):hover > svg,
.button-icon.button-text:not(:disabled):focus > svg {
  fill: #9A76AF;
}
.button-icon.button-primary > svg {
  fill: #FFFFFF;
}
.button-icon.button-primary:not(:disabled):hover > svg,
.button-icon.button-primary:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
.button-icon.button-secondary > svg {
  fill: #FFFFFF;
}
.button-icon.button-secondary:not(:disabled):hover > svg,
.button-icon.button-secondary:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
.button-icon.button-tertiary > svg {
  fill: #FFFFFF;
}
.button-icon.button-tertiary:not(:disabled):hover > svg,
.button-icon.button-tertiary:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
.button-icon.button-border > svg {
  fill: #656565;
}
.button-icon.button-border:not(:disabled):hover > svg,
.button-icon.button-border:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
/*
 * Button Icon Indicators
 */
.button-icon.error > svg {
  fill: #FFFFFF;
}
.button-icon.error:not(:disabled):hover > svg,
.button-icon.error:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
.button-icon.warning > svg {
  fill: #FFFFFF;
}
.button-icon.warning:not(:disabled):hover > svg,
.button-icon.warning:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
.button-icon.success > svg {
  fill: #FFFFFF;
}
.button-icon.success:not(:disabled):hover > svg,
.button-icon.success:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
.button-icon.info > svg {
  fill: #FFFFFF;
}
.button-icon.info:not(:disabled):hover > svg,
.button-icon.info:not(:disabled):focus > svg {
  fill: #FFFFFF;
}
/*
 * Button Sizes
 */
.button-icon.button-xlarge > svg {
  width: 2rem;
  height: 2rem;
}
.button-icon.button-large > svg {
  width: 1.8rem;
  height: 1.8rem;
}
.button-icon.button-medium > svg {
  width: 1.6rem;
  height: 1.6rem;
}
.button-icon.button-small > svg {
  width: 1.4rem;
  height: 1.4rem;
}
.button-icon.button-xsmall > svg {
  width: 1.2rem;
  height: 1.2rem;
}
/*
 * Button Group
 */
.button-group {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.button-group > button,
.button-group > .button {
  position: relative;
  float: left;
}
.button-group > button:hover,
.button-group > .button:hover,
.button-group > button:focus,
.button-group > .button:focus,
.button-group > button:active,
.button-group > .button:active,
.button-group > button.active,
.button-group > .button.active {
  z-index: 2;
}
.button-group button + button,
.button-group .button + .button,
.button-group button + .button-group,
.button-group .button + .button-group,
.button-group .button-group + button,
.button-group .button-group + .button,
.button-group .button-group + .button-group {
  margin-left: -1px;
}
.button-group > .button-group {
  float: left;
}
.button-group button:not(:first-child):not(:last-child),
.button-group .button:not(:first-child):not(:last-child),
.button-group .button-group:not(:first-child):not(:last-child) > button,
.button-group .button-group:not(:first-child):not(:last-child) > .button {
  border-radius: 0;
}
.button-group > .button-group:first-child > button:last-child,
.button-group > .button-group:first-child > .button:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.button-group > .button-group:last-child > button:first-child,
.button-group > .button-group:last-child > .button:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.button-group > button:first-child,
.button-group > .button:first-child {
  margin-left: 0;
}
.button-group > button:first-child:not(:last-child),
.button-group > .button:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.button-group > button:last-child:not(:first-child),
.button-group > .button:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.button-group-block {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.button-group-block > button,
.button-group-block > .button,
.button-group-block > .button-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.button-group-block > .button-group .button,
.button-group-block > .button-group button {
  width: 100%;
}
/*
 * Definitions
 */
/*
 * Figure
 */
figure {
  display: block;
  margin: 0;
  padding: 1rem;
  border: 1px solid #DDD;
}
figcaption {
  margin: 1rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000;
  text-align: center;
}
/*
 * Definitions
 */
/*
 * Media
 */
.media {
  display: block;
  position: relative;
  overflow: hidden;
  background: #FAFAFC;
}
.media > svg,
.media > img,
.media > video,
.media > iframe,
.media > .media-inner {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.media-1-2 {
  padding-top: 200%;
}
.media-9-16 {
  padding-top: 177.77777778%;
}
.media-9-14 {
  padding-top: 155.55555556%;
}
.media-2-3 {
  padding-top: 150%;
}
.media-3-4 {
  padding-top: 133.33333333%;
}
.media-1 {
  padding-top: 100%;
}
.media-4-3 {
  padding-top: 75%;
}
.media-3-2 {
  padding-top: 66.66666667%;
}
.media-16-9 {
  padding-top: 56.25%;
}
.media-2-1 {
  padding-top: 50%;
}
/*
 * Definitions
 */
/*
 * Nav
 */
nav ul,
.nav ul {
  margin: 0;
  list-style: none;
}
nav ul li,
.nav ul li {
  margin: 1rem 0;
}
.nav-inline ul li {
  display: inline-block;
  margin: 0 1rem;
}
/*
 * Definitions
 */
/*
 * Table
 */
.table {
  box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.11);
}
table,
.table {
  margin: 2rem 0;
  width: 100%;
  background: none;
  border-radius: 0.4rem;
  background: #FFFFFF;
}
table caption,
.table caption {
  margin: 1rem 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000;
  text-align: left;
}
table th,
.table th {
  padding: 1rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
}
table th .th__content,
.table th .th__content {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 3rem;
}
table th .th__content .th__content__order,
.table th .th__content .th__content__order {
  position: relative;
  margin-right: 0.5rem;
}
table th .th__content .th__content__order .order,
.table th .th__content .th__content__order .order {
  display: block;
  line-height: 0;
  color: #656565;
}
table th .th__content .th__content__order .order:before,
.table th .th__content .th__content__order .order:before {
  font-size: 1rem;
  margin: 0!important;
}
table th .th__content .th__content__order .order:hover,
.table th .th__content .th__content__order .order:hover,
table th .th__content .th__content__order .order.active,
.table th .th__content .th__content__order .order.active {
  color: #9A76AF !important;
}
table th .th__content .th__content__order .order__bottom,
.table th .th__content .th__content__order .order__bottom {
  padding: 0 4px 4px 4px;
}
table th .th__content .th__content__order .order__bottom:before,
.table th .th__content .th__content__order .order__bottom:before {
  content: "\e917";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
table th .th__content .th__content__order .order__up,
.table th .th__content .th__content__order .order__up {
  padding: 4px 4px 0 4px;
  position: relative;
  z-index: 2;
}
table th .th__content .th__content__order .order__up:before,
.table th .th__content .th__content__order .order__up:before {
  content: "\e916";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
table th .th__content .th__content__title,
.table th .th__content .th__content__title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
table td,
.table td {
  padding: 2rem 1rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  vertical-align: middle;
  border-bottom: 1px solid #DDD;
}
table td:not(.actions) a,
.table td:not(.actions) a {
  color: rgba(0, 0, 0, 0.65);
}
table td.actions,
.table td.actions {
  text-align: right;
}
table td.actions a,
.table td.actions a {
  padding: 1rem;
}
table td.actions a:before,
.table td.actions a:before {
  font-size: 2.5rem;
}
table td.cell-truncate,
.table td.cell-truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 1px;
}
table td:first-child,
.table td:first-child,
table th:first-child,
.table th:first-child {
  padding-left: 4rem;
}
table td:last-child,
.table td:last-child,
table th:last-child,
.table th:last-child {
  padding-right: 2rem;
}
.table-responsive {
  margin: 2rem 0;
  overflow-x: auto;
  min-height: 0.01%;
}
@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #DDD;
  }
  .table-responsive > table {
    margin: 0;
    border: none;
  }
  .table-responsive > table th,
  .table-responsive > table td {
    white-space: nowrap;
  }
  .table-responsive > table th:first-child,
  .table-responsive > table td:first-child {
    border-left: none;
  }
  .table-responsive > table th:last-child,
  .table-responsive > table td:last-child {
    border-right: none;
  }
  .table-responsive > table tr:first-child > th,
  .table-responsive > table tr:first-child > td {
    border-top: none;
  }
  .table-responsive > table tr:last-child > th,
  .table-responsive > table tr:last-child > td {
    border-bottom: none;
  }
}
header.main-header {
  background: #FFFFFF !important;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.22);
  grid-column: 2 / span 2;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: header;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 99;
}
header.main-header .container {
  height: 6.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 0 4.5rem;
}
header.main-header .container .main-header__logo {
  display: block;
  max-width: 15rem;
}
header.main-header .container .main-header__logo img {
  width: 100%;
}
header.main-header .container .main-header__right {
  margin-left: auto;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}
header.main-header .container .main-header__right nav {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header.main-header .container .main-header__right nav ul {
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0;
}
header.main-header .container .main-header__right nav ul li {
  margin-left: 0;
}
header.main-header .container .main-header__right nav ul li {
  margin: 0;
  padding: 0;
  position: relative;
}
header.main-header .container .main-header__right nav ul li.active a {
  color: #9A76AF;
}
header.main-header .container .main-header__right nav ul li.active a:before {
  content: '';
  background: #9A76AF;
  height: 0.4rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
header.main-header .container .main-header__right nav ul li a {
  font-size: 1.8rem;
  color: #656565;
  padding: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
  height: 6.5rem;
  display: block;
  position: relative;
  line-height: 3.2;
}
header.main-header .container .main-header__right a[class^='icon-'] {
  margin-left: 2rem;
  display: block;
  width: 4rem;
  height: 6.5rem;
  border-radius: 0.4rem;
  position: relative;
}
header.main-header .container .main-header__right a[class^='icon-']:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #656565;
  font-size: 2rem;
}
.sidebar {
  width: 9rem;
  background: #9A76AF;
  height: 100%;
  grid-area: aside;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-col: 1;
  -ms-grid-col-span: 1;
  position: fixed;
  left: 0;
  top: 6.5rem;
  height: calc(100vh - 6.5rem);
  height: -o-calc(100vh - 6.5rem);
  overflow: auto;
}
.sidebar nav ul li {
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .sidebar nav ul li {
    padding: 0;
  }
}
.sidebar nav ul li.active a {
  background: #FAF7FB;
  color: #9A76AF;
}
.sidebar nav ul li.active a:before {
  color: #9A76AF;
}
.sidebar nav ul li a {
  display: block;
  margin: auto;
  position: relative;
  border-radius: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  border-bottom: 0.2rem solid #FFFFFF;
}
.sidebar nav ul li a:before {
  color: #F5E4F0;
  font-size: 3rem !important;
  margin: auto;
}
.sidebar nav ul li a span {
  font-size: 0rem;
}
.sidebar--dates {
  position: fixed;
  top: 15.5rem;
  height: calc(100vh - (6.5rem + 9rem));
  height: -o-calc(100vh - (6.5rem + 9rem));
  overflow: auto;
  width: 22.5rem;
}
.sidebar--dates nav ul li a {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 1.2rem 2rem 1.2rem 3.5rem;
  color: #FFFFFF;
}
.sidebar--dates nav ul li a span {
  font-size: 1.6rem;
}
.sidebar--dates nav ul li a span.time {
  font-size: 2rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-right: 1rem;
  font-family: 'Lato', sans-serif;
}
.sidebar--dates nav ul li a span.worker {
  background: #F5E4F0;
  border-radius: 0.4rem;
  padding: 0 0.5rem;
  color: #9A76AF;
}
.subheader {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #FFFFFF;
  height: 4.5rem;
}
.subheader--back .subheader__center {
  text-align: center;
  border-radius: 0 0.4rem 0.4rem 0;
}
.subheader--back-add .subheader__center {
  text-align: center;
  border-radius: 0;
}
.subheader__left .button {
  height: 4.5rem;
  width: 12rem;
  border-radius: 0.4rem 0 0 0.4rem;
  font-size: 1.8rem;
  line-height: 1.3;
}
.subheader__left .button .icon--chevron-left {
  margin-right: 0.5rem;
}
.subheader__center {
  width: 100%;
  border: 0.1rem solid #656565;
  border-radius: 0.4rem 0 0 0.4rem;
  padding: 0 2rem;
  height: 4.5rem;
  overflow: hidden;
}
.subheader__center h1 {
  font-size: 2rem;
  line-height: 4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.subheader__right .button {
  height: 4.5rem;
  width: 13rem;
  border-radius: 0 0.4rem 0.4rem 0;
  font-size: 1.8rem;
  line-height: 1.3;
}
.subheader__right .button .icon--stop {
  margin-left: 0.5rem;
}
#filter-bar {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin-top: 3rem;
}
#filter-bar > app-input-text-field {
  width: 30%;
  margin: 0 0.6rem !important;
  display: block;
}
#filter-bar > app-input-text-field input {
  max-width: 100%;
  margin: 0;
}
#filter-bar input {
  border: 0.1rem solid #F5E4F0;
  margin: 0 0.6rem;
  max-width: 30%;
}
#filter-bar input:first-child {
  margin-left: 0;
}
#filter-bar input:last-child {
  margin-right: 0;
}
.data {
  border-radius: 0.4rem;
  background: #FFFFFF;
  box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.11);
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.data__title {
  border-bottom: 0.1rem solid #F5E4F0;
  padding: 1rem 1.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  font-size: 1.6rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.data__title a {
  margin-left: auto;
}
.data__info {
  padding: 3rem 1.5rem 1rem;
}
.data__info p {
  margin-bottom: 2rem;
}
.data__info p.block span {
  display: block;
}
.data__info p.default {
  color: #000000;
  font-size: 1.6rem;
}
.data__info p span:first-child {
  min-width: 15rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
}
.data__info p span:last-child {
  color: #000000;
  font-size: 1.6rem;
}
.data__info p span:last-child img {
  width: 2rem;
}
.data__info .table,
.data__info table {
  margin-top: 0;
  box-shadow: none;
}
.data__info .bono {
  width: 7.6rem;
  height: 6.3rem;
  border-radius: 0.4rem;
  background: #000000;
  margin-right: 0.5rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 6rem;
}
.data__info .bono--empty {
  border: 0.1rem solid #F5E4F0;
  background: transparent;
}
.data__info .bono--empty span {
  color: rgba(0, 0, 0, 0.65);
  transform: rotate(-45deg);
  display: block;
}
.data__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.data__info ul li {
  margin-left: 0;
}
.data__info ul li {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
}
.data__info ul li p {
  font-size: 1.6rem;
  margin: 0;
}
.data__info form {
  padding-bottom: 0.5rem;
}
.data__info form .form-actions .button {
  margin-right: 1rem;
}
.data hr {
  background: #F5E4F0;
}
.modal .modal-content,
.nsm-dialog .modal-content,
.modal .nsm-content,
.nsm-dialog .nsm-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  max-width: 420px;
  width: 100vw;
  min-height: 4rem;
  box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.08);
  border-radius: 0.4rem;
  padding: 0!important;
}
.modal .modal-content .modal-header,
.nsm-dialog .modal-content .modal-header,
.modal .nsm-content .modal-header,
.nsm-dialog .nsm-content .modal-header {
  padding: 2rem 3rem;
  position: relative;
  font-size: 3rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  border-bottom: 1px solid #555;
  color: #000000;
  text-align: center;
}
.modal .modal-content .modal-header h4,
.nsm-dialog .modal-content .modal-header h4,
.modal .nsm-content .modal-header h4,
.nsm-dialog .nsm-content .modal-header h4,
.modal .modal-content .modal-header p,
.nsm-dialog .modal-content .modal-header p,
.modal .nsm-content .modal-header p,
.nsm-dialog .nsm-content .modal-header p {
  margin: 0;
  font-size: 2rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.modal .modal-content .modal-header .close,
.nsm-dialog .modal-content .modal-header .close,
.modal .nsm-content .modal-header .close,
.nsm-dialog .nsm-content .modal-header .close {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.modal .modal-content .modal-header .close:before,
.nsm-dialog .modal-content .modal-header .close:before,
.modal .nsm-content .modal-header .close:before,
.nsm-dialog .nsm-content .modal-header .close:before {
  content: "\e907";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
  font-size: 1.8rem;
  margin: 0;
  color: #656565 !important;
}
.modal .modal-content .modal-header .close:hover,
.nsm-dialog .modal-content .modal-header .close:hover,
.modal .nsm-content .modal-header .close:hover,
.nsm-dialog .nsm-content .modal-header .close:hover {
  @extend .text-primary;
}
.modal .modal-content .modal-body,
.nsm-dialog .modal-content .modal-body,
.modal .nsm-content .modal-body,
.nsm-dialog .nsm-content .modal-body {
  padding: 3rem 3rem 1.5rem;
  font-size: 1.6rem;
}
.modal .modal-content .modal-body > .info .actions,
.nsm-dialog .modal-content .modal-body > .info .actions,
.modal .nsm-content .modal-body > .info .actions,
.nsm-dialog .nsm-content .modal-body > .info .actions {
  text-align: center;
}
.modal .modal-content .modal-body > .info .actions .button,
.nsm-dialog .modal-content .modal-body > .info .actions .button,
.modal .nsm-content .modal-body > .info .actions .button,
.nsm-dialog .nsm-content .modal-body > .info .actions .button {
  margin: 0 0.5rem;
}
.modal .modal-content .modal-body p,
.nsm-dialog .modal-content .modal-body p,
.modal .nsm-content .modal-body p,
.nsm-dialog .nsm-content .modal-body p {
  font-size: 1.8rem;
}
.modal .modal-content .modal-footer,
.nsm-dialog .modal-content .modal-footer,
.modal .nsm-content .modal-footer,
.nsm-dialog .nsm-content .modal-footer {
  text-align: center;
  padding: 0 3rem 3rem;
}
.modal .modal-content .modal-footer .button,
.nsm-dialog .modal-content .modal-footer .button,
.modal .nsm-content .modal-footer .button,
.nsm-dialog .nsm-content .modal-footer .button,
.modal .modal-content .modal-footer a,
.nsm-dialog .modal-content .modal-footer a,
.modal .nsm-content .modal-footer a,
.nsm-dialog .nsm-content .modal-footer a {
  margin: 0 1.6rem;
}
.modal--confirmation .modal-content,
.modal--confirmation .nsm-content {
  max-width: 40rem;
}
.modal--confirmation .modal-content .modal-body,
.modal--confirmation .nsm-content .modal-body {
  text-align: center;
}
.modal--cancel-date .modal-content {
  max-width: 49rem;
}
.modal--cancel-date .modal-content [class^="column"] span {
  font-size: 1.8rem;
}
.modal--cancel-date .modal-content [class^="column"] span:first-of-type {
  width: 6.3rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
}
.modal--cancel-date .modal-content .field {
  margin-top: 2rem;
}
.modal--cancel-date .modal-content .field textarea {
  height: 7.4rem;
}
.pagination {
  font-size: 1.4rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.pagination .results {
  margin-right: 2rem;
  font-size: 1.8rem;
}
.pagination .go-to {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  white-space: nowrap;
}
.pagination .go-to input {
  height: 3.6rem;
  width: 4.4rem;
  margin-left: 1rem;
}
.pagination .pages {
  margin-left: 2rem;
}
.pagination .pages ul {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination .pages ul li {
  margin-left: 0;
}
.pagination .pages ul li {
  margin: 0;
  padding: 0;
}
.pagination .pages ul li:not(.navigation) a,
.pagination .pages ul li:not(.navigation) span {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  display: block;
  text-align: center;
  font-size: 1.8rem;
}
.pagination .pages ul li:not(.navigation) a {
  color: #000000;
}
.pagination .pages ul li:not(.navigation) span {
  background: #9A76AF;
  color: #FFFFFF;
  border-radius: 0.4rem;
}
.pagination .pages ul li.navigation--left a:before {
  content: "\e910";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.pagination .pages ul li.navigation--right a:before {
  content: "\e906";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
.spinner {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
}
.spinner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 14rem;
}
.ng-select {
  z-index: 99999;
  height: 4.4rem;
}
.ng-select .ng-has-value .ng-placeholder {
  display: none;
}
.ng-select .ng-select-container {
  height: 4.4rem;
}
.ng-select .ng-select-container .ng-value {
  line-height: 4.4rem;
  padding-left: 1.6rem;
}
.ng-dropdown-panel {
  border-bottom-right-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
  border-top-color: #e6e6e6;
  margin-top: -1px;
  background-color: #FFFFFF;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  left: 0;
}
.ng-dropdown-panel .ng-dropdown-panel-items {
  max-height: 24rem;
  overflow: auto;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  padding: 0.8rem 1rem;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.owl-dt-popup-container {
  font-size: 1.6rem !important;
}
.owl-dt-popup-container .owl-dt-calendar {
  height: auto!important;
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif !important;
}
.owl-dt-calendar-table {
  margin: 0!important;
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-weekdays th {
  padding: 0.8rem !important;
}
.owl-dt-calendar-table .owl-dt-calendar-cell {
  border-bottom: 0!important;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-selected {
  background: #9A76AF !important;
}
.owl-dt-timer .owl-dt-timer-box input {
  margin: 0!important;
  font-family: 'Lato', sans-serif !important;
}
.owl-dt-timer .owl-dt-timer-box button:hover {
  border: 0!important;
}
.owl-dt-container-buttons {
  color: #9A76AF !important;
}
.nsm-dialog {
  top: 50%;
  min-height: inherit!important;
  transform: translateY(-50%);
}
.cdk-overlay-container {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  z-index: 9999999 !important;
}
.cdk-global-overlay-wrapper,
.cdk-overlay-container {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  z-index: 9999999 !important;
}
/*
 * Utilities
 */
/*
 * Utility Classes
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.full-height {
  height: 100%;
}
.fixed {
  position: fixed;
}
.pointer {
  cursor: pointer;
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-border {
  border: none !important;
}
/*
 * Visibility
 */
.hide {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.show {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hide-visually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Print & Screen
 */
@media print {
  .hidden-print {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media screen {
  .hidden-screen {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
.visible-print {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media print {
  .visible-print {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-screen {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media screen {
  .visible-screen {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
/*
 * Hidden Breakpoints
 */
@media (min-width: 1680px) {
  .hidden-xlarge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (min-width: 1280px) and (max-width: 1679px) {
  .hidden-large {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (min-width: 1280px) {
  .hidden-large-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 1679px) {
  .hidden-large-down {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hidden-medium {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (min-width: 1024px) {
  .hidden-medium-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 1279px) {
  .hidden-medium-down {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-small {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (min-width: 768px) {
  .hidden-small-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 1023px) {
  .hidden-small-down {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media (max-width: 767px) {
  .hidden-xsmall {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
/*
 * Visible Breakpoints
 */
.visible-xlarge {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 1680px) {
  .visible-xlarge {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-large {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 1280px) and (max-width: 1679px) {
  .visible-large {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-large-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 1280px) {
  .visible-large-up {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-large-down {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (max-width: 1679px) {
  .visible-large-down {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-medium {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .visible-medium {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-medium-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 1024px) {
  .visible-medium-up {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-medium-down {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (max-width: 1279px) {
  .visible-medium-down {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-small {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .visible-small {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-small-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (min-width: 768px) {
  .visible-small-up {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-small-down {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (max-width: 1023px) {
  .visible-small-down {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.visible-xsmall {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (max-width: 767px) {
  .visible-xsmall {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
/*
 * Display
 */
.display-block {
  display: block;
}
.display-inline-block {
  display: inline-block;
}
.display-table {
  display: table;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}
/*
 * Position
 */
.position-top-left {
  position: absolute !important;
  top: 0;
  left: 0;
}
.position-top-left.gutter {
  top: 1.6rem;
  left: 1.6rem;
}
.position-top-right {
  position: absolute !important;
  top: 0;
  right: 0;
}
.position-top-right.gutter {
  top: 1.6rem;
  right: 1.6rem;
}
.position-bottom-left {
  position: absolute !important;
  bottom: 0;
  left: 0;
}
.position-bottom-left.gutter {
  bottom: 1.6rem;
  left: 1.6rem;
}
.position-bottom-right {
  position: absolute !important;
  bottom: 0;
  right: 0;
}
.position-bottom-right.gutter {
  bottom: 1.6rem;
  right: 1.6rem;
}
.position-left-center {
  position: absolute !important;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.position-left-center.gutter {
  left: 1.6rem;
}
.position-right-center {
  position: absolute !important;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.position-right-center.gutter {
  right: 1.6rem;
}
.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*
 * Flex
 */
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-flex-inline;
  display: -moz-flex-inline;
  display: -ms-flex-inlinebox;
  display: -ms-flex-inline;
  display: flex-inline;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-row {
  -moz-flex-direction: row;
  flex-direction: row;
}
.flex-column {
  -moz-flex-direction: column;
  flex-direction: column;
}
.flex-1 {
  -moz-flex: 1;
  flex: 1;
}
.flex-1-1-auto {
  -moz-flex: 1 1 auto;
  flex: 1 1 auto;
}
.flex-1-0-auto {
  -moz-flex: 1 0 auto;
  flex: 1 0 auto;
}
.flex-0-0-auto {
  -moz-flex: 0 0 auto;
  flex: 0 0 auto;
}
.justify-content-flex-start {
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.justify-content-flex-end {
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.justify-content-center {
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.justify-content-space-between {
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.justify-content-space-around {
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.align-content-flex-start {
  -ms-align-content: flex-start;
  align-content: flex-start;
}
.align-content-flex-end {
  -ms-align-content: flex-end;
  align-content: flex-end;
}
.align-content-center {
  -ms-align-content: center;
  align-content: center;
}
.align-content-space-between {
  -ms-align-content: space-between;
  align-content: space-between;
}
.align-content-space-around {
  -ms-align-content: space-around;
  align-content: space-around;
}
.align-content-stretch {
  -ms-align-content: stretch;
  align-content: stretch;
}
.align-items-flex-start {
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.align-items-flex-end {
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.align-items-center {
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.align-items-baseline {
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}
.align-items-stretch {
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.align-self-flex-start {
  -ms-align-self: flex-start;
  align-self: flex-start;
}
.align-self-flex-end {
  -ms-align-self: flex-end;
  align-self: flex-end;
}
.align-self-center {
  -ms-align-self: center;
  align-self: center;
}
.align-self-baseline {
  -ms-align-self: baseline;
  align-self: baseline;
}
.align-self-stretch {
  -ms-align-self: stretch;
  align-self: stretch;
}
/*
 * Float
 */
.right {
  float: right !important;
}
@media (min-width: 1680px) {
  .clear-right-xlarge {
    float: none !important;
  }
}
@media (min-width: 1280px) and (max-width: 1679px) {
  .clear-right-large {
    float: none !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .clear-right-medium {
    float: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .clear-right-small {
    float: none !important;
  }
}
@media (max-width: 767px) {
  .clear-right-xsmall {
    float: none !important;
  }
}
.left {
  float: left !important;
}
@media (min-width: 1680px) {
  .clear-left-xlarge {
    float: none !important;
  }
}
@media (min-width: 1280px) and (max-width: 1679px) {
  .clear-left-large {
    float: none !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .clear-left-medium {
    float: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .clear-left-small {
    float: none !important;
  }
}
@media (max-width: 767px) {
  .clear-left-xsmall {
    float: none !important;
  }
}
/*
 * Max Width
 */
.max-width-xlarge {
  max-width: 128rem;
}
.max-width-large {
  max-width: 100rem;
}
.max-width-medium {
  max-width: 80rem;
}
.max-width-small {
  max-width: 60rem;
}
.max-width-xsmall {
  max-width: 48rem;
}
/*
 * Margin
 */
.margin-xlarge {
  margin: 8rem;
}
.margin-large {
  margin: 5rem;
}
.margin-medium {
  margin: 3.5rem;
}
.margin-small {
  margin: 2rem;
}
.margin-xsmall {
  margin: 1.5rem;
}
.margin-top-xlarge {
  margin-top: 8rem;
}
.margin-top-large {
  margin-top: 5rem;
}
.margin-top-medium {
  margin-top: 3.5rem;
}
.margin-top-small {
  margin-top: 2rem;
}
.margin-top-xsmall {
  margin-top: 1.5rem;
}
.margin-bottom-xlarge {
  margin-bottom: 8rem;
}
.margin-bottom-large {
  margin-bottom: 5rem;
}
.margin-bottom-medium {
  margin-bottom: 3.5rem;
}
.margin-bottom-small {
  margin-bottom: 2rem;
}
.margin-bottom-xsmall {
  margin-bottom: 1.5rem;
}
.margin-left-xlarge {
  margin-left: 8rem;
}
.margin-left-large {
  margin-left: 5rem;
}
.margin-left-medium {
  margin-left: 3.5rem;
}
.margin-left-small {
  margin-left: 2rem;
}
.margin-left-xsmall {
  margin-left: 1.5rem;
}
.margin-right-xlarge {
  margin-right: 8rem;
}
.margin-right-large {
  margin-right: 5rem;
}
.margin-right-medium {
  margin-right: 3.5rem;
}
.margin-right-small {
  margin-right: 2rem;
}
.margin-right-xsmall {
  margin-right: 1.5rem;
}
/*
 * Padding
 */
.padding-xlarge {
  padding: 8rem;
}
.padding-large {
  padding: 5rem;
}
.padding-medium {
  padding: 3.5rem;
}
.padding-small {
  padding: 2rem;
}
.padding-xsmall {
  padding: 1.5rem;
}
.padding-top-xlarge {
  padding-top: 8rem;
}
.padding-top-large {
  padding-top: 5rem;
}
.padding-top-medium {
  padding-top: 3.5rem;
}
.padding-top-small {
  padding-top: 2rem;
}
.padding-top-xsmall {
  padding-top: 1.5rem;
}
.padding-bottom-xlarge {
  padding-bottom: 8rem;
}
.padding-bottom-large {
  padding-bottom: 5rem;
}
.padding-bottom-medium {
  padding-bottom: 3.5rem;
}
.padding-bottom-small {
  padding-bottom: 2rem;
}
.padding-bottom-xsmall {
  padding-bottom: 1.5rem;
}
.padding-left-xlarge {
  padding-left: 8rem;
}
.padding-left-large {
  padding-left: 5rem;
}
.padding-left-medium {
  padding-left: 3.5rem;
}
.padding-left-small {
  padding-left: 2rem;
}
.padding-left-xsmall {
  padding-left: 1.5rem;
}
.padding-right-xlarge {
  padding-right: 8rem;
}
.padding-right-large {
  padding-right: 5rem;
}
.padding-right-medium {
  padding-right: 3.5rem;
}
.padding-right-small {
  padding-right: 2rem;
}
.padding-right-xsmall {
  padding-right: 1.5rem;
}
/*
 * Font Family
 */
.sans-serif-font {
  font-family: "Lato", Helvetica, Arial, sans-serif;
}
.serif-font {
  font-family: Georgia, "Times New Roman", Times, serif;
}
.monospace-font {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}
.thin-font {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.regular-font {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.medium-font {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.semibold-font {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.bold-font {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
/*
 * Font Size
 */
.font-size-xlarge {
  font-size: 2rem;
}
.font-size-large {
  font-size: 1.8rem;
}
.font-size-medium {
  font-size: 1.6rem;
}
.font-size-small {
  font-size: 1.4rem;
}
.font-size-xsmall {
  font-size: 1.2rem;
}
/*
 * Text
 */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-center {
  text-align: center;
}
.truncate {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
/*
 * Text Color
 */
.text-white {
  color: #FFFFFF !important;
}
.text-light-grey {
  color: #DDD !important;
}
.text-grey {
  color: #555 !important;
}
.text-dark-grey {
  color: #333 !important;
}
.text-black {
  color: #000000 !important;
}
.text-error {
  color: #FF3737 !important;
}
.text-warning {
  color: #FF4500 !important;
}
.text-success {
  color: #00AA00 !important;
}
.text-info {
  color: #1E90FF !important;
}
.text-primary {
  color: #9A76AF !important;
}
.text-secondary {
  color: #663399 !important;
}
.text-tertiary {
  color: #8B008B !important;
}
.text-dark {
  color: #656565 !important;
}
.text-light {
  color: #FAFAFC !important;
}
/*
 * Background
 */
.background-transparent {
  background: transparent !important;
}
.background-white {
  background: #FFFFFF !important;
}
.background-light-grey {
  background: #DDD !important;
}
.background-grey {
  background: #555 !important;
}
.background-dark-grey {
  background: #333 !important;
}
.background-black {
  background: #000000 !important;
}
.background-error {
  background: #FF3737 !important;
}
.background-warning {
  background: #FF4500 !important;
}
.background-success {
  background: #00AA00 !important;
}
.background-info {
  background: #1E90FF !important;
}
.background-primary {
  background: #9A76AF !important;
}
.background-secondary {
  background: #663399 !important;
}
.background-tertiary {
  background: #8B008B !important;
}
.background-dark {
  background: #656565 !important;
}
.background-light {
  background: #FAFAFC !important;
}
/*
 * Mixins
 */
/*
 * General Mixins
 */
/*
 * Button
 */
/*
 * Input
 */
/*
 * Select
 */
/*
 * Font
 */
/*
 * Border Radius
 */
/*
 * Backgrounds
 */
/*
 * Placeholder
 */
/*
 * Arrows
 */
/*
 * Transitions
 */
/*
 * Transformations
 */
/*
 * Animations
 */
/*
 * Filters
 */
/*
 * Flexbox
 * via: https://gist.github.com/jayj
 * url: https://gist.github.com/jayj/4012969
 */
/*
 * Mark
 */
/*
 * Accessibility
 */
/*
 * Screen Reader
 */
.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/*
 * Pages
 */
#page-auth {
  /* background: url("/assets/images/bg.jpg"); */
  background: #f5f5f5;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
#page-auth .auth-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 48rem;
}
#page-auth .auth-box h1 {
  text-align: center;
}
#page-auth .auth-box .auth-box__form {
  background: #FFFFFF;
  box-shadow: 0 0 1.4rem rgba(0, 0, 0, 0.32);
  border-radius: 0.4rem;
  padding: 5rem 7rem 2rem;
}
#page-auth .auth-box .auth-box__form .header {
  text-align: center;
  margin-bottom: 2rem;
}
#page-auth .auth-box .auth-box__form .header p {
  font-size: 2rem;
  line-height: 1;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  max-width: 28rem;
  margin: 2rem auto 0;
}
#page-auth .auth-box .auth-box__form .button {
  width: 100%;
}
#page-auth .auth-box .auth-box__form .recover-link {
  text-align: center;
}
#page-report .box {
  box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.11);
  background: #FFFFFF;
}
#page-report .box .table {
  box-shadow: none;
}
#page-report .box #filter-bar {
  margin: 0;
  padding: 3rem 2rem 0;
}
#page-report .tabs {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin-top: 4rem;
}
#page-report .tabs a,
#page-report .tabs div {
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 0.4rem 0.4rem 0 0;
  margin-right: 1rem;
  background: #000000;
}
#page-report .tabs a.active,
#page-report .tabs div.active {
  background: #9A76AF;
}
#page-report .table {
  margin: 0;
}
#page-dates-dashboard .search {
  position: fixed;
  top: 6.5rem;
  width: 100%;
  z-index: 9;
  height: 9rem;
  background: #FFFFFF;
}
#page-dates-dashboard .search:before {
  content: "\e90f";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4rem;
  font-size: 2.5rem;
}
#page-dates-dashboard .search .ng-select {
  height: 9rem;
}
#page-dates-dashboard .search .ng-select .ng-has-value .ng-value-icon {
  position: absolute;
  display: block;
  right: 3rem;
  z-index: 9;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}
#page-dates-dashboard .search .ng-select .ng-select-container {
  height: 9rem;
}
#page-dates-dashboard .search .ng-select .ng-select-container .ng-placeholder {
  width: 100%;
  line-height: 9rem;
  font-size: 2.4rem;
  padding-left: 8rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-dashboard .search .ng-select .ng-select-container .ng-value {
  width: 100%;
  line-height: 9rem;
  font-size: 2.4rem;
  padding-left: 8rem;
}
#page-dates-dashboard .search .ng-dropdown-panel {
  background: #FAF7FB;
  border: 0;
}
#page-dates-dashboard .search .ng-dropdown-panel .ng-dropdown-panel-items {
  max-height: calc(100vh - (6.5rem + 9rem));
  max-height: -o-calc(100vh - (6.5rem + 9rem));
  height: calc(100vh - (6.5rem + 9rem));
  height: -o-calc(100vh - (6.5rem + 9rem));
}
#page-dates-dashboard .search .ng-dropdown-panel .ng-option {
  font-size: 2.7rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0 4.5rem;
  color: rgba(0, 0, 0, 0.65);
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.2);
  padding: 2rem 1rem;
}
#page-dates-dashboard .search input {
  margin: 0;
  height: 9rem;
  font-size: 2.4rem;
  padding-left: 8rem;
}
#page-dates-dashboard .search input::-moz-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  color: #000000;
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: normal;
}
#page-dates-dashboard .search input:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
#page-dates-dashboard .search input:-ms-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  color: #000000;
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: normal;
}
#page-dates-dashboard .search input:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
#page-dates-dashboard .search input::-webkit-input-placeholder {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  color: #000000;
  letter-spacing: 0px;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  font-style: normal;
}
#page-dates-dashboard .search input:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
#page-dates-dashboard section {
  position: fixed;
  top: 15.5rem;
  height: calc(100vh - (6.5rem + 9rem));
  height: -o-calc(100vh - (6.5rem + 9rem));
  overflow: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#page-dates-dashboard section .dates-views {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
#page-dates-dashboard section .dates-views a {
  width: 5rem;
  height: 5rem;
  border-radius: 0.4rem;
  background: #F5E4F0;
  margin-left: 1rem;
  position: relative;
}
#page-dates-dashboard section .dates-views a:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem !important;
}
#page-dates-dashboard section .dates-views a.active {
  background: #9A76AF;
  color: #FFFFFF;
}
#page-dates-dashboard section a.calendar {
  padding: 1.3rem 2.2rem;
  height: 4.4rem;
  font-size: 1.6rem;
  color: #333;
  background: #FFFFFF;
  border: 1px solid #DDD;
  display: inline-block;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
  color: #FFFFFF;
  background: #9A76AF;
  border: none;
  margin: 0.5rem auto;
  max-width: 40rem;
  width: 100%;
  display: block;
  height: 6rem;
  line-height: 3rem;
  font-size: 1.8rem;
  margin-top: 2rem;
}
#page-dates-dashboard section a.calendar.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
#page-dates-dashboard section a.calendar.error:not(:disabled):hover,
#page-dates-dashboard section a.calendar.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
#page-dates-dashboard section a.calendar.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
#page-dates-dashboard section a.calendar.warning:not(:disabled):hover,
#page-dates-dashboard section a.calendar.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
#page-dates-dashboard section a.calendar.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
#page-dates-dashboard section a.calendar.success:not(:disabled):hover,
#page-dates-dashboard section a.calendar.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
#page-dates-dashboard section a.calendar.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
#page-dates-dashboard section a.calendar.info:not(:disabled):hover,
#page-dates-dashboard section a.calendar.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
#page-dates-dashboard section a.calendar:not(:disabled):hover,
#page-dates-dashboard section a.calendar:not(:disabled):focus {
  color: #333;
  background: #e6e6e6;
  border: 1px solid #c4c4c4;
}
#page-dates-dashboard section a.calendar.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
#page-dates-dashboard section a.calendar.error:not(:disabled):hover,
#page-dates-dashboard section a.calendar.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
#page-dates-dashboard section a.calendar.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
#page-dates-dashboard section a.calendar.warning:not(:disabled):hover,
#page-dates-dashboard section a.calendar.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
#page-dates-dashboard section a.calendar.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
#page-dates-dashboard section a.calendar.success:not(:disabled):hover,
#page-dates-dashboard section a.calendar.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
#page-dates-dashboard section a.calendar.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
#page-dates-dashboard section a.calendar.info:not(:disabled):hover,
#page-dates-dashboard section a.calendar.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
#page-dates-dashboard section a.calendar:not(:disabled):hover,
#page-dates-dashboard section a.calendar:not(:disabled):focus {
  color: #FFFFFF;
  background: #815999;
  border: none;
}
#page-dates-dashboard section article {
  height: calc(100% - 13rem);
  height: -o-calc(100% - 13rem);
  overflow: auto;
}
#page-dates-dashboard section article ul {
  list-style: none;
}
#page-dates-dashboard section article ul li {
  margin-left: 0;
}
#page-dates-dashboard section article ul li {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 2.5rem;
  border-radius: 0.4rem;
  box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.11);
  background: #FFFFFF;
  max-width: 40rem;
  margin: 0.5rem auto;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
#page-dates-dashboard section article ul li.old {
  opacity: 0.6;
  box-shadow: none;
}
#page-dates-dashboard section article ul li .info span {
  display: block;
  color: #000000;
}
#page-dates-dashboard section article ul li .info span.time {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-dashboard section article ul li .actions {
  margin-left: auto;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#page-dates-dashboard section article ul li .actions hr {
  display: inline-block;
  height: 4rem;
  width: 0.1rem;
  margin: 0 2rem;
  background: #F5E4F0;
}
#page-dates-dashboard section article ul li .actions .icon:before {
  font-size: 3.5rem !important;
  color: #000000;
  margin: 0;
}
#page-dates-dashboard section article ul li p {
  margin: 0;
  width: 100%;
}
#page-dates-dashboard .calendar-bar {
  height: 7.5rem;
  background: rgba(154, 118, 175, 0.12);
  margin-left: -4.5rem;
  width: calc(100% + 4.5rem * 2);
  width: -o-calc(100% + 4.5rem * 2);
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 2rem;
}
#page-dates-dashboard .calendar-bar .navigation {
  width: 8rem;
  height: 100%;
  position: relative;
}
#page-dates-dashboard .calendar-bar .navigation:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem !important;
}
#page-dates-dashboard .calendar-bar .navigation--left {
  border-right: 0.1rem solid #FAF7FB;
}
#page-dates-dashboard .calendar-bar .navigation--left:before {
  content: "\e910";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-dashboard .calendar-bar .navigation--right {
  border-left: 0.1rem solid #FAF7FB;
}
#page-dates-dashboard .calendar-bar .navigation--right:before {
  content: "\e906";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-dashboard .calendar-bar .info {
  width: 100%;
}
#page-dates-dashboard .calendar-bar .info .workers {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 0.1rem solid #FAF7FB;
}
#page-dates-dashboard .calendar-bar .info .workers a {
  width: 100%;
  height: 3.75rem;
  line-height: 3.75rem;
  color: #000000;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  border-right: 0.1rem solid #FAF7FB;
}
#page-dates-dashboard .calendar-bar .info .workers a:last-child {
  border: 0;
}
#page-dates-dashboard .calendar-bar .info .workers a.active {
  background: #9A76AF;
  color: #FFFFFF;
}
#page-dates-dashboard .calendar-bar .info .add {
  height: 3.75rem;
  display: block;
  line-height: 3.75rem;
  color: #000000;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
#page-dates-dashboard .calendar-bar .info .add:before {
  content: "\e907";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-dashboard .calendar-bar .info .add span {
  font-size: 1.6rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#page-dates-dashboard .calendar {
  height: calc(100vh - 34rem);
  height: -o-calc(100vh - 34rem);
  background: #FFFFFF;
  margin-left: -4.5rem;
  width: calc(100% + 4.5rem * 2);
  width: -o-calc(100% + 4.5rem * 2);
  position: relative;
  margin-bottom: -4rem;
}
#page-dates-dashboard .calendar .event__tooltip {
  max-width: 34rem;
  position: absolute;
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.4rem;
  filter: drop-shadow(0 0.2rem 0.7rem rgba(0, 0, 0, 0.3));
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#444')";
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#444')";
}
#page-dates-dashboard .calendar .event__tooltip:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
}
#page-dates-dashboard .calendar .event__tooltip--up:before {
  top: -0.8rem;
  right: 1rem;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 0.8rem solid #FFFFFF;
}
#page-dates-dashboard .calendar .event__tooltip__header {
  padding: 1rem 1.6rem;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#page-dates-dashboard .calendar .event__tooltip__header > span {
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.65);
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a,
#page-dates-dashboard .calendar .event__tooltip__header .actions button {
  color: rgba(0, 0, 0, 0.65);
  padding: 1.3rem 2.2rem;
  height: 4.4rem;
  font-size: 1.6rem;
  color: #333;
  background: #FFFFFF;
  border: 1px solid #DDD;
  display: inline-block;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
  border: 0;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.error,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.error:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.error:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.error:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.warning,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.warning:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.warning:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.warning:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.success,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.success:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.success:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.success:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.info,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.info:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.info:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.info:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button:not(:disabled):focus {
  color: #333;
  background: #e6e6e6;
  border: 1px solid #c4c4c4;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.error,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.error:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.error:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.error:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.warning,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.warning:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.warning:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.warning:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.success,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.success:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.success:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.success:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.info,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.info:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.info:not(:disabled):hover,
#page-dates-dashboard .calendar .event__tooltip__header .actions a.info:not(:disabled):focus,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
#page-dates-dashboard .calendar .event__tooltip__header .actions a.close,
#page-dates-dashboard .calendar .event__tooltip__header .actions button.close {
  color: #9A76AF;
}
#page-dates-dashboard .calendar .event__tooltip__body .column-1 > span {
  padding: 1rem 1.6rem;
}
#page-dates-dashboard .calendar .event__tooltip__body form .fields .field {
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.2);
  margin: 0;
}
#page-dates-dashboard .calendar .event__tooltip__body form .fields .field.error .box-error {
  display: none;
}
#page-dates-dashboard .calendar .event__tooltip__body form .fields .field label {
  padding-left: 1.6rem;
}
#page-dates-dashboard .calendar .event__tooltip__body form .fields .field input {
  border: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}
#page-dates-dashboard .calendar .event__tooltip__footer .pending-dates > span {
  width: 100%;
  padding: 1rem;
  background: rgba(85, 85, 85, 0.1);
  display: block;
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.2);
}
#page-dates-dashboard .calendar .event__tooltip__footer .pending-dates ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#page-dates-dashboard .calendar .event__tooltip__footer .pending-dates ul li {
  margin-left: 0;
}
#page-dates-dashboard .calendar .event__tooltip__footer .pending-dates ul li {
  padding: 0.5rem 1rem;
  margin: 0;
}
#page-dates-dashboard .calendar .event__tooltip__footer .cancel-dates > span {
  width: 100%;
  padding: 1rem 1rem 0;
  display: block;
}
#page-dates-dashboard .calendar .event__tooltip__footer .cancel-dates > span .number {
  width: 2rem;
  height: 2rem;
  text-align: center;
  background: #FF3737;
  border-radius: 50%;
  display: inline-block;
  color: #FFFFFF;
  line-height: 1.2;
  margin-left: 1rem;
}
#page-dates-dashboard .calendar .event__tooltip__footer .cancel-dates ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#page-dates-dashboard .calendar .event__tooltip__footer .cancel-dates ul li {
  margin-left: 0;
}
#page-dates-dashboard .calendar .event__tooltip__footer .cancel-dates ul li {
  padding: 0.5rem 1rem;
  margin: 0;
}
#page-dates-session h2 {
  margin: 1rem 0 0 0;
  font-size: 1.8rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-session h2:before {
  content: "\e905";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-session p {
  margin: 0;
}
#page-dates-session .calendar-bar {
  height: 7.5rem;
  background: rgba(154, 118, 175, 0.12);
  margin-left: -4.5rem;
  width: calc(100% + 4.5rem * 2);
  width: -o-calc(100% + 4.5rem * 2);
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 1rem;
}
#page-dates-session .calendar-bar .navigation {
  width: 8rem;
  height: 100%;
  position: relative;
}
#page-dates-session .calendar-bar .navigation:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem !important;
}
#page-dates-session .calendar-bar .navigation--left {
  border-right: 0.1rem solid #FAF7FB;
}
#page-dates-session .calendar-bar .navigation--left:before {
  content: "\e910";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-session .calendar-bar .navigation--right {
  border-left: 0.1rem solid #FAF7FB;
}
#page-dates-session .calendar-bar .navigation--right:before {
  content: "\e906";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-session .calendar-bar .info {
  width: 100%;
}
#page-dates-session .calendar-bar .info .workers {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 0.1rem solid #FAF7FB;
}
#page-dates-session .calendar-bar .info .workers a {
  width: 100%;
  height: 3.75rem;
  line-height: 3.75rem;
  color: #000000;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  border-right: 0.1rem solid #FAF7FB;
}
#page-dates-session .calendar-bar .info .workers a:last-child {
  border: 0;
}
#page-dates-session .calendar-bar .info .workers a.active {
  background: #9A76AF;
  color: #FFFFFF;
}
#page-dates-session .calendar-bar .info .add {
  height: 3.75rem;
  display: block;
  line-height: 3.75rem;
  color: #000000;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
#page-dates-session .calendar-bar .info .add:before {
  content: "\e907";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-session .calendar-bar .info .add span {
  font-size: 1.6rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#page-dates-session .calendar {
  height: calc(100vh - 30rem);
  height: -o-calc(100vh - 30rem);
  background: #FFFFFF;
  margin-left: -4.5rem;
  width: calc(100% + 4.5rem * 2);
  width: -o-calc(100% + 4.5rem * 2);
  position: relative;
}
#page-dates-session .calendar .event__tooltip {
  max-width: 34rem;
  position: absolute;
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.4rem;
  filter: drop-shadow(0 0.2rem 0.7rem rgba(0, 0, 0, 0.3));
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#444')";
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#444')";
}
#page-dates-session .calendar .event__tooltip:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
}
#page-dates-session .calendar .event__tooltip--up:before {
  top: -0.8rem;
  right: 1rem;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 0.8rem solid #FFFFFF;
}
#page-dates-session .calendar .event__tooltip__header {
  padding: 1rem 1.6rem;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#page-dates-session .calendar .event__tooltip__header > span {
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.65);
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-session .calendar .event__tooltip__header .actions a,
#page-dates-session .calendar .event__tooltip__header .actions button {
  color: rgba(0, 0, 0, 0.65);
  padding: 1.3rem 2.2rem;
  height: 4.4rem;
  font-size: 1.6rem;
  color: #333;
  background: #FFFFFF;
  border: 1px solid #DDD;
  display: inline-block;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
  border: 0;
}
#page-dates-session .calendar .event__tooltip__header .actions a.error,
#page-dates-session .calendar .event__tooltip__header .actions button.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.error:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.error:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.error:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.warning,
#page-dates-session .calendar .event__tooltip__header .actions button.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.warning:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.warning:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.warning:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.success,
#page-dates-session .calendar .event__tooltip__header .actions button.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.success:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.success:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.success:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.info,
#page-dates-session .calendar .event__tooltip__header .actions button.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.info:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.info:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.info:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button:not(:disabled):focus {
  color: #333;
  background: #e6e6e6;
  border: 1px solid #c4c4c4;
}
#page-dates-session .calendar .event__tooltip__header .actions a.error,
#page-dates-session .calendar .event__tooltip__header .actions button.error {
  color: #FFFFFF;
  background: #FF3737;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.error:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.error:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.error:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.error:not(:disabled):focus {
  color: #FFFFFF;
  background: #ff0404;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.warning,
#page-dates-session .calendar .event__tooltip__header .actions button.warning {
  color: #FFFFFF;
  background: #FF4500;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.warning:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.warning:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.warning:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.warning:not(:disabled):focus {
  color: #FFFFFF;
  background: #cc3700;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.success,
#page-dates-session .calendar .event__tooltip__header .actions button.success {
  color: #FFFFFF;
  background: #00AA00;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.success:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.success:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.success:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.success:not(:disabled):focus {
  color: #FFFFFF;
  background: #007700;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.info,
#page-dates-session .calendar .event__tooltip__header .actions button.info {
  color: #FFFFFF;
  background: #1E90FF;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.info:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions button.info:not(:disabled):hover,
#page-dates-session .calendar .event__tooltip__header .actions a.info:not(:disabled):focus,
#page-dates-session .calendar .event__tooltip__header .actions button.info:not(:disabled):focus {
  color: #FFFFFF;
  background: #0077ea;
  border: none;
}
#page-dates-session .calendar .event__tooltip__header .actions a.close,
#page-dates-session .calendar .event__tooltip__header .actions button.close {
  color: #9A76AF;
}
#page-dates-session .calendar .event__tooltip__body .column-1 > span {
  padding: 1rem 1.6rem;
}
#page-dates-session .calendar .event__tooltip__body form .fields .field {
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.2);
  margin: 0;
}
#page-dates-session .calendar .event__tooltip__body form .fields .field.error .box-error {
  display: none;
}
#page-dates-session .calendar .event__tooltip__body form .fields .field label {
  padding-left: 1.6rem;
}
#page-dates-session .calendar .event__tooltip__body form .fields .field input {
  border: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}
#page-dates-session .calendar .event__tooltip__footer .pending-dates > span {
  width: 100%;
  padding: 1rem;
  background: rgba(85, 85, 85, 0.1);
  display: block;
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.2);
}
#page-dates-session .calendar .event__tooltip__footer .pending-dates ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#page-dates-session .calendar .event__tooltip__footer .pending-dates ul li {
  margin-left: 0;
}
#page-dates-session .calendar .event__tooltip__footer .pending-dates ul li {
  padding: 0.5rem 1rem;
  margin: 0;
}
#page-dates-session .calendar .event__tooltip__footer .cancel-dates > span {
  width: 100%;
  padding: 1rem 1rem 0;
  display: block;
}
#page-dates-session .calendar .event__tooltip__footer .cancel-dates > span .number {
  width: 2rem;
  height: 2rem;
  text-align: center;
  background: #FF3737;
  border-radius: 50%;
  display: inline-block;
  color: #FFFFFF;
  line-height: 1.2;
  margin-left: 1rem;
}
#page-dates-session .calendar .event__tooltip__footer .cancel-dates ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#page-dates-session .calendar .event__tooltip__footer .cancel-dates ul li {
  margin-left: 0;
}
#page-dates-session .calendar .event__tooltip__footer .cancel-dates ul li {
  padding: 0.5rem 1rem;
  margin: 0;
}
#page-dates-session full-calendar {
  width: 100vw;
  display: block;
  margin-left: -4.5rem;
  height: calc(100vh - 21.5rem);
  height: -o-calc(100vh - 21.5rem);
}
#page-dates-session full-calendar table {
  margin: 0;
  background: inherit;
}
#page-dates-session full-calendar table td:first-child,
#page-dates-session full-calendar .table td:first-child,
#page-dates-session full-calendar table th:first-child,
#page-dates-session full-calendar .table th:first-child {
  padding-left: 1rem;
}
#page-dates-session full-calendar table td:last-child,
#page-dates-session full-calendar .table td:last-child,
#page-dates-session full-calendar table th:last-child,
#page-dates-session full-calendar .table th:last-child {
  padding-right: 1rem;
}
#page-dates-session full-calendar .fc-scroller {
  height: calc(100vh - 24.5rem) !important;
  height: -o-calc(100vh - 24.5rem) !important;
}
#page-dates-session full-calendar .fc-time-grid .fc-event.appointment {
  background: #9A76AF !important;
  border: 0;
  padding: 0.2rem;
}
#page-dates-session full-calendar .fc-time-grid .fc-event.absence {
  background: #000000 !important;
  border: 0;
  padding: 0.2rem;
}
#page-dates-session full-calendar .fc-time-grid .fc-event.active {
  background: #00AA00 !important;
}
#page-dates-summary .box {
  box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.11);
  background: #FFFFFF;
  border-radius: 0.4rem;
  padding: 2rem;
  margin-top: 2rem;
  height: calc(100vh - 28rem);
  height: -o-calc(100vh - 28rem);
  overflow: auto;
}
#page-dates-summary .box .title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#page-dates-summary .box .subtotal {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}
#page-dates-summary .box .subtotal .field--total {
  position: relative;
  margin-right: 4rem;
}
#page-dates-summary .box .subtotal .field--total .euro {
  position: absolute;
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  left: 5rem;
  top: 2.2rem;
}
#page-dates-summary .box .subtotal .field--total input {
  height: 8.8rem;
  border-radius: 0.4rem 0 0 0.4rem;
  width: 7.5rem;
  margin: 0;
  margin-right: 5.5rem;
  font-size: 3rem;
  font-family: 'Lato', sans-serif;
  text-align: center;
  padding-right: 2rem;
  padding-left: 0.5rem;
}
#page-dates-summary .box .subtotal .field--total .icon {
  position: absolute;
  right: 0;
  width: 5rem;
  height: 4.1rem;
  background: #9A76AF;
}
#page-dates-summary .box .subtotal .field--total .icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 3rem;
}
#page-dates-summary .box .subtotal .field--total .icon--up {
  top: 0;
  border-radius: 0 0.4rem 0 0;
}
#page-dates-summary .box .subtotal .field--total .icon--down {
  top: 4.6rem;
  border-radius: 0 0 0.4rem 0;
}
#page-dates-summary .box .subtotal .field--checkbox {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
#page-dates-summary .box .subtotal .field--checkbox input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
#page-dates-summary .box .subtotal .field--checkbox input[type=checkbox]:checked + label {
  background: #9A76AF;
  color: #FFFFFF;
}
#page-dates-summary .box .subtotal .field--checkbox input[type=checkbox]:checked + label img {
  filter: brightness(0) invert(1);
}
#page-dates-summary .box .subtotal .field--checkbox input[type=checkbox] + label {
  margin: 0.5rem;
  padding: 0.5rem 1.5rem;
  display: flex;
  border: 0.1rem solid #F5E4F0;
  border-radius: 0.4rem;
}
#page-dates-summary .box .subtotal .field--checkbox input[type=checkbox] + label img {
  margin-right: 0.5rem;
}
#page-dates-summary .box .field-textarea:before {
  content: "\e914";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
  position: absolute;
  top: 2rem;
  left: 1rem;
  color: rgba(0, 0, 0, 0.65);
}
#page-dates-summary .box .field-textarea label {
  display: none;
}
#page-dates-summary .box .field-textarea textarea {
  padding-left: 2.5rem;
  color: rgba(0, 0, 0, 0.65);
}
#page-dates-summary .box .pending .title {
  background: #FF3737;
  text-align: center;
  margin: 0;
  font-size: 1.8rem;
  color: #FFFFFF;
  padding: 1rem;
  margin-left: -2rem;
  width: calc(100% + 4rem);
  width: -o-calc(100% + 4rem);
  position: relative;
}
#page-dates-summary .box .pending .title:after {
  position: absolute;
  content: "\e903";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
#page-dates-summary .box .pending .content {
  margin-left: -2rem;
  width: calc(100% + 4rem);
  width: -o-calc(100% + 4rem);
  display: none;
  background: rgba(255, 55, 55, 0.2);
  margin-bottom: 2rem;
  padding: 2rem;
}
#page-dates-summary .box .pending .content ul {
  list-style: none;
  margin: 0;
}
#page-dates-summary .box .pending .content ul li {
  margin-left: 0;
}
#page-dates-summary .box .pending--open .content {
  display: block;
}
#page-dates-summary .box .pay input {
  position: absolute;
  left: -9999px;
}
#page-dates-summary .box .pay input + label {
  width: 13.5rem;
  height: 10rem;
  border: 0.1rem solid #F5E4F0;
  margin-left: 1rem;
  border-radius: 0.4rem;
  position: relative;
}
#page-dates-summary .box .pay input + label:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem !important;
}
#page-dates-summary .box .pay input + label:first-of-type:before {
  content: "\e912";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-summary .box .pay input + label:last-of-type:before {
  content: "\e913";
  font-family: 'fisio';
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.25em;
  text-indent: 0;
}
#page-dates-summary .box .pay input:checked + label {
  background: #9A76AF;
}
#page-dates-summary .box .pay input:checked + label:before {
  color: #FFFFFF;
}
#page-dates-summary .box .bono {
  width: 7.6rem;
  height: 6.3rem;
  border-radius: 0.4rem;
  background: #000000;
  margin-right: 0.5rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 6rem;
}
#page-dates-summary .box .bono--empty {
  border: 0.1rem solid #F5E4F0;
  background: transparent;
}
#page-dates-summary .box .bono--empty span {
  color: rgba(0, 0, 0, 0.65);
  transform: rotate(-45deg);
  display: block;
}
#page-dates-summary .total {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 2rem;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
#page-dates-summary .total p {
  font-size: 2rem;
  color: #000000;
  margin: 0;
}
#page-dates-summary .total p span {
  font-size: 3rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-summary .total .actions {
  margin-left: auto;
}
#page-dates-summary .total .actions .button,
#page-dates-summary .total .actions button {
  margin: 0.5rem 0;
}
#page-dates-summary-read .data .materials p {
  margin-bottom: 0;
}
#page-dates-summary-read .data .materials ul {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}
#page-dates-summary-read .data .materials ul li {
  color: #000000;
  padding: 0;
  margin-right: 1rem;
}
#page-dates-summary-read .total {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 2rem;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
#page-dates-summary-read .total p {
  font-size: 2rem;
  color: #000000;
  margin: 0;
}
#page-dates-summary-read .total p span {
  font-size: 3rem;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#page-dates-summary-read .total .actions {
  margin-left: auto;
}
#page-dates-summary-read .total .actions .button,
#page-dates-summary-read .total .actions button {
  display: block;
  margin: 0.5rem 0;
  width: 100%;
}
#page-admin-clients-detail ul.appointment-history li {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 0.1rem solid #F5E4F0;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#page-admin-clients-detail ul.appointment-history li:last-of-type {
  border-bottom: 0;
}
#page-admin-clients-detail ul.appointment-history li .info {
  padding-right: 1rem;
}
#page-admin-clients-detail ul.appointment-history li .info .date .pending {
  background: #FF3737;
  border-radius: 0.4rem;
  padding: 0.3rem 0.5rem;
  color: #FFFFFF;
  font-size: 1.4rem;
}
#page-admin-clients-detail ul.appointment-history li .info .date .cancel {
  background: #FF4500;
  border-radius: 0.4rem;
  padding: 0.3rem 0.5rem;
  color: #FFFFFF;
  font-size: 1.4rem;
}
#page-admin-clients-detail ul.appointment-history li .info p {
  color: #000000;
}
#page-admin-clients-detail ul.appointment-history li .action {
  height: 100%;
  margin-left: auto;
}
#page-admin-clients-detail ul.appointment-history li .action a {
  display: block;
  height: 100%;
}
#page-admin-clients-detail ul.appointment-history li .action a:before {
  font-size: 2.5rem;
}
/* You can add global styles to this file, and also import other style files */
body.dialog-open {
  overflow: hidden; }
.nsm-dialog-btn-close {
  border: 0;
  background: none;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.2em;
  cursor: pointer; }
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: background-color 500ms;
  background-color: transparent;
  z-index: 999; }
.overlay.nsm-overlay-open {
    background-color: rgba(0, 0, 0, 0.5); }
.overlay.transparent {
    background-color: transparent; }
.nsm-dialog {
  position: relative;
  opacity: 1;
  visibility: visible;
  min-height: 200px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  pointer-events: none;
  outline: none; }
.nsm-dialog.nsm-dialog-close {
    opacity: 0; }
.nsm-dialog.nsm-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - (1.75rem * 2)); }
.nsm-content {
  position: relative;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 2px;
  padding: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  margin-left: 1.75rem;
  margin-right: 1.75rem;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  outline: 0;
  transform: translate3d(0, 0, 0); }
.nsm-body {
  position: relative;
  flex: 1 1 auto; }
/* *************************
* Animations
* *************************/
.nsm-dialog[class*=nsm-dialog-animation-] {
  transition: transform 500ms ease-in-out, opacity 500ms; }
.nsm-dialog-animation-ltr {
  transform: translate3d(-50%, 0, 0); }
.nsm-dialog-animation-ltr.nsm-dialog-open {
    transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-ltr.nsm-dialog-close {
    transform: translate3d(-50%, 0, 0); }
.nsm-dialog-animation-rtl {
  transform: translate3d(50%, 0, 0); }
.nsm-dialog-animation-rtl.nsm-dialog-open {
    transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-rtl.nsm-dialog-close {
    transform: translate3d(50%, 0, 0); }
.nsm-dialog-animation-ttb {
  transform: translate3d(0, -50%, 0); }
.nsm-dialog-animation-ttb.nsm-dialog-open {
    transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-ttb.nsm-dialog-close {
    transform: translate3d(0, -50%, 0); }
.nsm-dialog-animation-btt {
  transform: translate3d(0, 50%, 0); }
.nsm-dialog-animation-btt.nsm-dialog-open {
    transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-btt.nsm-dialog-close {
    transform: translate3d(0, 50%, 0); }
.cdk-global-overlay-wrapper,.cdk-overlay-container{pointer-events:none;top:0;left:0;height:100%;width:100%}
.cdk-overlay-container{position:fixed;z-index:1000}
.cdk-overlay-container:empty{display:none}
.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}
.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}
.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}
@media screen and (-ms-high-contrast:active){.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}}
.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.288)}
.cdk-overlay-transparent-backdrop,.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}
.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}
.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}
.owl-dialog-container{position:relative;pointer-events:auto;box-sizing:border-box;display:block;padding:1.5em;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);border-radius:2px;overflow:auto;background:#fff;color:rgba(0,0,0,.87);width:100%;height:100%;outline:0}
.owl-dt-container,.owl-dt-container *{box-sizing:border-box}
.owl-dt-container{display:block;font-size:16px;font-size:1rem;background:#fff;pointer-events:auto;z-index:1000}
.owl-dt-container-row{border-bottom:1px solid rgba(0,0,0,.12)}
.owl-dt-container-row:last-child{border-bottom:none}
.owl-dt-calendar{display:flex;flex-direction:column;width:100%}
.owl-dt-calendar-control{display:flex;align-items:center;font-size:1em;width:100%;padding:.5em;color:#000}
.owl-dt-calendar-control .owl-dt-calendar-control-content{flex:1 1 auto;display:flex;justify-content:center;align-items:center}
.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button{padding:0 .8em}
.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button:hover{background-color:rgba(0,0,0,.12)}
.owl-dt-calendar-main{display:flex;flex-direction:column;flex:1 1 auto;padding:0 .5em .5em;outline:0}
.owl-dt-calendar-view{display:block;flex:1 1 auto}
.owl-dt-calendar-multi-year-view{display:flex;align-items:center}
.owl-dt-calendar-multi-year-view .owl-dt-calendar-table{width:calc(100% - 3em)}
.owl-dt-calendar-multi-year-view .owl-dt-calendar-table .owl-dt-calendar-header th{padding-bottom:.25em}
.owl-dt-calendar-table{width:100%;border-collapse:collapse;border-spacing:0}
.owl-dt-calendar-table .owl-dt-calendar-header{color:rgba(0,0,0,.4)}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-weekdays th{font-size:.7em;font-weight:400;text-align:center;padding-bottom:1em}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider{position:relative;height:1px;padding-bottom:.5em}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider:after{content:'';position:absolute;top:0;left:-.5em;right:-.5em;height:1px;background:rgba(0,0,0,.12)}
.owl-dt-calendar-table .owl-dt-calendar-cell{position:relative;height:0;line-height:0;text-align:center;outline:0;color:rgba(0,0,0,.85);-webkit-appearance:none;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}
.owl-dt-calendar-table .owl-dt-calendar-cell-content{position:absolute;top:5%;left:5%;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;font-size:.8em;line-height:1;border:1px solid transparent;border-radius:999px;color:inherit;cursor:pointer}
.owl-dt-calendar-table .owl-dt-calendar-cell-out{opacity:.2}
.owl-dt-calendar-table .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected){border-color:rgba(0,0,0,.4)}
.owl-dt-calendar-table .owl-dt-calendar-cell-selected{color:rgba(255,255,255,.85);background-color:#3f51b5}
.owl-dt-calendar-table .owl-dt-calendar-cell-selected.owl-dt-calendar-cell-today{box-shadow:inset 0 0 0 1px rgba(255,255,255,.85)}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled{cursor:default}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected){color:rgba(0,0,0,.4)}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled>.owl-dt-calendar-cell-content.owl-dt-calendar-cell-selected{opacity:.4}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled>.owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected){border-color:rgba(0,0,0,.2)}
.owl-dt-calendar-table .owl-dt-calendar-cell-active:focus>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected),.owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover>.owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected){background-color:rgba(0,0,0,.04)}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range{background:rgba(63,81,181,.2)}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from{border-top-left-radius:999px;border-bottom-left-radius:999px}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to{border-top-right-radius:999px;border-bottom-right-radius:999px}
.owl-dt-timer{display:flex;justify-content:center;width:100%;height:7em;padding:.5em;outline:0}
.owl-dt-timer-box{position:relative;display:inline-flex;flex-direction:column;align-items:center;width:25%;height:100%}
.owl-dt-timer-content{flex:1 1 auto;display:flex;justify-content:center;align-items:center;width:100%;margin:.2em 0}
.owl-dt-timer-content .owl-dt-timer-input{display:block;width:2em;text-align:center;border:1px solid rgba(0,0,0,.5);border-radius:3px;outline:medium none;font-size:1.2em;padding:.2em}
.owl-dt-timer-divider{display:inline-block;align-self:flex-end;position:absolute;width:.6em;height:100%;left:-.3em}
.owl-dt-timer-divider:after,.owl-dt-timer-divider:before{content:'';display:inline-block;width:.35em;height:.35em;position:absolute;left:50%;border-radius:50%;transform:translateX(-50%);background-color:currentColor}
.owl-dt-timer-divider:before{top:35%}
.owl-dt-timer-divider:after{bottom:35%}
.owl-dt-control-button{-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;margin:0;padding:0;background-color:transparent;font-size:1em;color:inherit}
.owl-dt-control-button .owl-dt-control-button-content{position:relative;display:inline-flex;justify-content:center;align-items:center;outline:0}
.owl-dt-control-period-button .owl-dt-control-button-content{height:1.5em;padding:0 .5em;border-radius:3px;transition:background-color .1s linear}
.owl-dt-control-period-button:hover>.owl-dt-control-button-content{background-color:rgba(0,0,0,.12)}
.owl-dt-control-period-button .owl-dt-control-button-arrow{display:flex;justify-content:center;align-items:center;width:1em;height:1em;margin:.1em;transition:transform .2s ease}
.owl-dt-control-arrow-button .owl-dt-control-button-content{padding:0;border-radius:50%;width:1.5em;height:1.5em}
.owl-dt-control-arrow-button[disabled]{color:rgba(0,0,0,.4);cursor:default}
.owl-dt-control-arrow-button svg{width:50%;height:50%;fill:currentColor}
.owl-dt-inline-container,.owl-dt-popup-container{position:relative;width:18.5em;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}
.owl-dt-inline-container .owl-dt-calendar,.owl-dt-inline-container .owl-dt-timer,.owl-dt-popup-container .owl-dt-calendar,.owl-dt-popup-container .owl-dt-timer{width:100%}
.owl-dt-inline-container .owl-dt-calendar,.owl-dt-popup-container .owl-dt-calendar{height:20.25em}
.owl-dt-dialog-container{max-height:95vh;margin:-1.5em}
.owl-dt-dialog-container .owl-dt-calendar{min-width:250px;min-height:330px;max-width:750px;max-height:750px}
.owl-dt-dialog-container .owl-dt-timer{min-width:250px;max-width:750px}
@media all and (orientation:landscape){.owl-dt-dialog-container .owl-dt-calendar{width:58vh;height:62vh}.owl-dt-dialog-container .owl-dt-timer{width:58vh}}
@media all and (orientation:portrait){.owl-dt-dialog-container .owl-dt-calendar{width:80vw;height:80vw}.owl-dt-dialog-container .owl-dt-timer{width:80vw}}
.owl-dt-container-buttons{display:flex;width:100%;height:2em;color:#3f51b5}
.owl-dt-container-control-button{font-size:1em;width:50%;height:100%;border-radius:0}
.owl-dt-container-control-button .owl-dt-control-button-content{height:100%;width:100%;transition:background-color .1s linear}
.owl-dt-container-control-button:hover .owl-dt-control-button-content{background-color:rgba(0,0,0,.1)}
.owl-dt-container-info{padding:0 .5em;cursor:pointer;-webkit-tap-highlight-color:transparent}
.owl-dt-container-info .owl-dt-container-range{outline:0}
.owl-dt-container-info .owl-dt-container-range .owl-dt-container-range-content{display:flex;justify-content:space-between;padding:.5em 0;font-size:.8em}
.owl-dt-container-info .owl-dt-container-range:last-child{border-top:1px solid rgba(0,0,0,.12)}
.owl-dt-container-info .owl-dt-container-info-active{color:#3f51b5}
.owl-dt-container-disabled,.owl-dt-trigger-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none;cursor:default!important}
.owl-dt-timer-hour12{display:flex;justify-content:center;align-items:center;color:#3f51b5}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box{border:1px solid currentColor;border-radius:2px;transition:background .2s ease}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box .owl-dt-control-button-content{width:100%;height:100%;padding:.5em}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:focus .owl-dt-control-button-content,.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:hover .owl-dt-control-button-content{background:#3f51b5;color:#fff}
.owl-dt-calendar-only-current-month .owl-dt-calendar-cell-out{visibility:hidden;cursor:default}
.owl-dt-inline{display:inline-block}
.owl-dt-control{outline:0;cursor:pointer}
.owl-dt-control .owl-dt-control-content{outline:0}
.owl-dt-control:focus>.owl-dt-control-content{background-color:rgba(0,0,0,.12)}
.owl-dt-control:not(:-moz-focusring):focus>.owl-dt-control-content{box-shadow:none}
.owl-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}
/* @import "~@fullcalendar/core/main.css";
@import "~@fullcalendar/daygrid/main.css"; */
@charset "UTF-8";
.fc {
  direction: ltr;
  text-align: left;
}
.fc-rtl {
  text-align: right;
}
body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}
.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}
.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}
/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
}
.fc-rtl .fc-popover .fc-header {
  flex-direction: row-reverse;
}
.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}
/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}
hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}
.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}
.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}
/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}
.fc th {
  text-align: center;
}
.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}
/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}
a[data-goto]:hover {
  text-decoration: underline;
}
/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}
.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}
.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}
/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}
.fc-row .fc-bg {
  z-index: 1;
}
/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}
.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}
.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.fc-row .fc-highlight-skeleton {
  z-index: 3;
}
/*
row content (which contains day/week numbers and events) as well as "mirror" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}
.fc-row .fc-mirror-skeleton {
  z-index: 5;
}
.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}
.fc-row .fc-content-skeleton td,
.fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}
.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}
/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}
/* TODO: move to timegrid/daygrid */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}
/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}
.fc-event,
.fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}
.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}
.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}
.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}
.fc-event .fc-content {
  position: relative;
  z-index: 2;
}
/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}
/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}
.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}
/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}
/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}
/* Event Dragging
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-dragging.fc-selected {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.fc-event.fc-dragging:not(.fc-selected) {
  opacity: 0.75;
}
/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}
/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}
/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}
/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}
/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}
/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}
/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}
tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}
.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}
.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}
.fc-day-grid-event .fc-time {
  font-weight: bold;
}
/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}
/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}
/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}
a.fc-more:hover {
  text-decoration: underline;
}
.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}
/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}
.fc-more-popover {
  z-index: 2;
  width: 220px;
}
.fc-more-popover .fc-event-container {
  padding: 10px;
}
/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}
/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}
.fc-unthemed .fc-popover {
  background-color: #fff;
}
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}
.fc-unthemed td.fc-today {
  background: #fcf8e3;
}
.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}
/* Icons
--------------------------------------------------------------------------------------------------
from https://feathericons.com/ and built with IcoMoon
*/
@font-face {
  font-family: "fcicons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "fcicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fc-icon-chevron-left:before {
  content: "";
}
.fc-icon-chevron-right:before {
  content: "";
}
.fc-icon-chevrons-left:before {
  content: "";
}
.fc-icon-chevrons-right:before {
  content: "";
}
.fc-icon-minus-square:before {
  content: "";
}
.fc-icon-plus-square:before {
  content: "";
}
.fc-icon-x:before {
  content: "";
}
.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}
/* Buttons
--------------------------------------------------------------------------------------------------
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
*/
/* reset */
.fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.fc-button {
  -webkit-appearance: button;
}
.fc-button:not(:disabled) {
  cursor: pointer;
}
.fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
/* theme */
.fc-button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}
.fc-button:hover {
  color: #212529;
  text-decoration: none;
}
.fc-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}
.fc-button:disabled {
  opacity: 0.65;
}
/* "primary" coloring */
.fc-button-primary {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}
.fc-button-primary:hover {
  color: #fff;
  background-color: #1e2b37;
  border-color: #1a252f;
}
.fc-button-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
.fc-button-primary:disabled {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  background-color: #1a252f;
  border-color: #151e27;
}
.fc-button-primary:not(:disabled):active:focus,
.fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
/* icons within buttons */
.fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em;
}
/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.fc-button-group > .fc-button {
  position: relative;
  flex: 1 1 auto;
}
.fc-button-group > .fc-button:hover {
  z-index: 1;
}
.fc-button-group > .fc-button:focus,
.fc-button-group > .fc-button:active,
.fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}
.fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}
.fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}
/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}
.fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}
/* inner content */
.fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75em;
}
.fc-toolbar h2 {
  font-size: 1.75em;
  margin: 0;
}
/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-view-container {
  position: relative;
}
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box;
}
.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}
@media print {
  .fc {
    max-width: 100% !important;
  }

  /* Global Event Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc-event {
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }

  .fc-event .fc-resizer {
    display: none;
  }

  /* Table & Day-Row Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc th,
.fc td,
.fc hr,
.fc thead,
.fc tbody,
.fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }

  /* kill the overlaid, absolutely-positioned components */
  /* common... */
  .fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton,
.fc-bgevent-container,
.fc-business-container,
.fc-highlight-container,
.fc-mirror-container {
    display: none;
  }

  /* don't force a min-height on rows (for DayGrid) */
  .fc tbody .fc-row {
    height: auto !important;
    /* undo height that JS set in distributeHeight */
    min-height: 0 !important;
    /* undo the min-height from each view's specific stylesheet */
  }

  .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    padding-bottom: 0 !important;
    /* use a more border-friendly method for this... */
  }

  .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }

  .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
       making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }

  /* Undo month-view event limiting. Display all events and hide the "more" links
  --------------------------------------------------------------------------------------------------*/
  .fc-more-cell,
.fc-more {
    display: none !important;
  }

  .fc tr.fc-limited {
    display: table-row !important;
  }

  .fc td.fc-limited {
    display: table-cell !important;
  }

  .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }

  /* TimeGrid Restyling
  --------------------------------------------------------------------------------------------------*/
  /* undo the min-height 100% trick used to fill the container's height */
  .fc-time-grid {
    min-height: 0 !important;
  }

  /* don't display the side axis at all ("all-day" and time cells) */
  .fc-timeGrid-view .fc-axis {
    display: none;
  }

  /* don't display the horizontal lines */
  .fc-slats,
.fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    display: none !important;
    /* important overrides inline declaration */
  }

  /* let the container that holds the events be naturally positioned and create real height */
  .fc-time-grid .fc-content-skeleton {
    position: static;
  }

  /* in case there are no events, we still want some height */
  .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }

  /* kill the horizontal spacing made by the event container. event margins will be done below */
  .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }

  /* TimeGrid *Event* Restyling
  --------------------------------------------------------------------------------------------------*/
  /* naturally position events, vertically stacking them */
  .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }

  /* for events that continue to a future day, give the bottom border back */
  .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }

  /* indicate the event continues via "..." text */
  .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }

  /* for events that are continuations from previous days, give the top border back */
  .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }

  /* indicate the event is a continuation via "..." text */
  .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }

  /* time */
  /* undo a previous declaration and let the time text span to a second line */
  .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }

  /* hide the the time that is normally displayed... */
  .fc-time-grid .fc-event .fc-time span {
    display: none;
  }

  /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
  .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }

  /* Vertical Scroller & Containers
  --------------------------------------------------------------------------------------------------*/
  /* kill the scrollbars and allow natural height */
  .fc-scroller,
.fc-day-grid-container,
.fc-time-grid-container {
    /* */
    overflow: visible !important;
    height: auto !important;
  }

  /* kill the horizontal border/padding used to compensate for scrollbars */
  .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }

  /* Button Controls
  --------------------------------------------------------------------------------------------------*/
  .fc-button-group,
.fc button {
    display: none;
    /* don't display any button-related controls */
  }
}
/* DayGridView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-dayGridWeek-view .fc-content-skeleton,
.fc-dayGridDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}
.fc-dayGrid-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}
/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden;
}
.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}
.fc-dayGrid-view .fc-week-number,
.fc-dayGrid-view .fc-day-number {
  padding: 2px;
}
.fc-dayGrid-view th.fc-week-number,
.fc-dayGrid-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: right;
}
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: left;
}
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}
.fc-dayGrid-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}
/* when week/day number have own column */
.fc-dayGrid-view td.fc-week-number {
  text-align: center;
}
.fc-dayGrid-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}
@charset "UTF-8";
/* TimeGridView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-timeGrid-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}
.fc-timeGrid-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}
.fc-timeGrid-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}
/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}
.fc-ltr .fc-axis {
  text-align: right;
}
.fc-rtl .fc-axis {
  text-align: left;
}
/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}
.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}
.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}
.fc-time-grid > .fc-bg {
  z-index: 1;
}
.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> TimeGridView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}
/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}
.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}
.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}
.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}
.fc-time-grid .fc-mirror-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}
/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}
.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}
/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}
.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}
/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}
.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}
.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}
.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}
/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  margin-bottom: 1px;
}
.fc-time-grid-event-inset {
  box-shadow: 0px 0px 0px 1px #fff;
}
.fc-time-grid-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.fc-time-grid-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-time-grid-event .fc-content {
  overflow: hidden;
  max-height: 100%;
}
.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}
.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}
/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}
.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}
.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}
.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}
.fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
  /* seperate with a dash, wrapped in nbsp's */
}
.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}
/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}
/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}
/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}
/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}
.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
/* Slider styles */
.slider-container {
  margin-top: 10px;
}
.slider {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #9b7aaf;
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #9b7aaf;
  cursor: pointer;
  border: none;
}
.slider-value {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #9b7aaf;
}

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */

.toast-title {
  font-weight: bold;
}

.toast-message {
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .toast {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .toast:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */

.toast-info {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */

.toast-error {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */

.toast-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */

.toast-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' width='576' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");
}

.toast-container.toast-top-center .toast,
.toast-container.toast-bottom-center .toast {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .toast,
.toast-container.toast-bottom-full-width .toast {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */

@media all and (max-width: 240px) {
  .toast-container .toast.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .toast.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .toast.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

