@import url(https://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic,900,900italic);

/*CSS RESET*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,f
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  display: block;
  margin-left: 2em;
  margin-bottom: 1em;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  display: list-item;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
}

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*END CSS RESET*/

html, body {
  color: #333;
  font-family: "Lato", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

@media screen {
  html, body {
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

body,
input,
textarea,
select,
button {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0 0 1em 0;
}

h1, .h1 { font-size: 2.5em; }
h2, .h2 { font-size: 2em; }
h3, .h3 { font-size: 1.5em; }
h4, .h4 { font-size: 1.125em; }
h5, .h5 { font-size: 1.125em; }
h6, .h6 { font-size: 1.125em; }

p { font-size: 1em; }

a {
  color: #00cc99;
  /*color: rgba(0, 204, 102, .8);*/

  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
  -ms-transition: all .1s ease;
  transition: all .1s ease;
}

a:hover {
  *color: #00cc99;
  /**color: rgba(0, 204, 102, 1);*/
  text-decoration: underline;
}

a:not([class]]):not([id]]) {
  opacity: 0.8;
}

a:not([class]]):not([id]]):hover {
  opacity: 1;
}

a.back:before {
  content: "\2190\a0";
}

/*::selection {
  background: #00cc99;
  color: #fff;
}

::-moz-selection {
  background: #00cc99;
  color: #fff;
}*/

label,
.field .label {
  color: #a2a2a2;
  text-transform: uppercase;
  font-size: 0.75em;
  display: block;
  margin: 0.5em 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
}

select {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAG0lEQVR42mNgwAfKy8v/48I4FeA0AacVDFQBAP9wJkE/KhUMAAAAAElFTkSuQmCC") right 15px center no-repeat;
  padding-right: 20px;
}

input[type="text"], input[type="submit"], input[type="password"], input[type="file"], textarea, select {
  margin-bottom: 1em;
}

input[type="text"],
input[type="password"],
input[type="submit"],
textarea,
select {
  /*for iOS*/
  -webkit-appearance: none;
  --webkit-appearance: none;
  --moz-appearance: none;
  appearance: none;
}

input[type="text"], input[type="password"], textarea, select {
  width: 100%;
  /*height: 30px;*/
  /*height: 3em;*/ /*changed 05/30/2014 as fix for firefox*/
  font-size: 0.875em;
  vertical-align: middle;
  line-height: 1.5em;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  padding: 0.625em;
}

input[type="text"]:hover, input[type="text"]:focus, textarea:hover, textarea:focus, select:hover {
  border-color: #ccc;
}

input[type="text"]:focus, input[type="text"].error:focus, textarea:focus, textarea.error:focus, select:focus, select.error:focus {
  border-color: #ccc !important;
}

input[type="text"].error, input[type="text"].error:hover, textarea.error, textarea.error:hover, label.error, select.error {
  /*outline: 1px auto #e74c3c;*/
  border-color: #e74c3c !important;
}

input[type="text"].error:focus, textarea.error:focus, select.error:focus {
  outline-color: #e74c3c;
}

input[readonly],
textarea[readonly],
input[disabled],
textarea[disabled],
select[disabled] {
  background-color: #f1f1f1;
}

input[type="file"] {
  border: 1px dashed #ccc;
  padding: 0.625em;
  width: 100%;
}

.button {
  border: 0px;
  background-color: #e1e1e1;
  color: #888;

  box-shadow: 0px -2px 0px rgba(0,0,0,0.1) inset;

  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  padding: 1em 1.5em;
  font-weight: bold;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  white-space: nowrap;

  display: inline-block;
  line-height: 1.5em;
  margin: 0 1em 1em 0;

  /* removed transition for consistent effects */

  /*-webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out; */
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}

.button:hover,
.button--hovered {
  background-image: -moz-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 100%); /* FF3.6+ */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.05)), color-stop(100%,rgba(0,0,0,0.05))); /* Chrome,Safari4+ */
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.05) 100%); /* Chrome10+,Safari5.1+ */
  background-image: -o-linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.05) 100%); /* Opera 11.10+ */
  background-image: -ms-linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.05) 100%); /* IE10+ */
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.05) 100%); /* W3C */

  text-decoration: none;
}

.button:active,
.button--active {
  background-image: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%); /* FF3.6+ */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.1)), color-stop(100%,rgba(0,0,0,0.1))); /* Chrome,Safari4+ */
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%); /* Chrome10+,Safari5.1+ */
  background-image: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%); /* Opera 11.10+ */
  background-image: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%); /* IE10+ */
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 100%); /* W3C */

  box-shadow: 0px 1px 0px rgba(0,0,0,0.1) inset;
}

.button[disabled],
.button--disabled {
  background-image: -moz-linear-gradient(top, rgba(204,204,204,0.5) 0%, rgba(204,204,204,0.5) 100%); /* FF3.6+ */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(204,204,204,0.5)), color-stop(100%,rgba(204,204,204,0.5))); /* Chrome,Safari4+ */
  background-image: -webkit-linear-gradient(top, rgba(204,204,204,0.5) 0%,rgba(204,204,204,0.5) 100%); /* Chrome10+,Safari5.1+ */
  background-image: -o-linear-gradient(top, rgba(204,204,204,0.5) 0%,rgba(204,204,204,0.5) 100%); /* Opera 11.10+ */
  background-image: -ms-linear-gradient(top, rgba(204,204,204,0.5) 0%,rgba(204,204,204,0.5) 100%); /* IE10+ */
  background-image: linear-gradient(to bottom, rgba(204,204,204,0.5) 0%,rgba(204,204,204,0.5) 100%); /* W3C */
  cursor: not-allowed;
  color: rgba(170,170,170,0.5);
  pointer-events: none; /* has issues in IE11 http://caniuse.com/#feat=pointer-events */
}

.primary.button,
.primary-button,
.accent-button {
  background-color: #00cc99;
  /*background-color: rgba(0, 204, 153, .8);*/
  color: #fff;
  /*box-shadow: 0px -1px rgba(0,0,0,0.19) inset;*/
}

.primary.button[disabled],
.primary.button.button--disabled,
.primary-button.button--disabled,
.primary-button--disabled,
.accent-button--disabled {
  color: rgba(255,255,255,0.75);
}

.u-button {
  background: #fff;
  box-shadow: 0px -2px 0px rgba(0,0,0,0.1) inset, 0px 0px 0px 1px rgba(0,0,0,0.1) inset;
  padding: 0.9375em 1.5em;
}

.button.text {
  width: auto;
  margin: 0;
  padding: 0;
  background: 0;
  box-shadow: none;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0;

  color: #888888;
  border-bottom: 1px dotted;
  border-radius: 0;
  text-decoration: none !important;
  outline: 0;
}

.button.text:hover, .button.text:focus {
  color: #00cc99;
  border-bottom: 1px solid;
}

.button i {
  margin-right: 0.5em;
}

.button--wide {
  width: 100%;
}

.button--small {
  font-size: 0.5em;
}

.button--big {
  font-size: 1em;
}

.button.right-icon i {
  margin-right: 0;
  margin-left: 0.5em;
}

form span.error {
  display: block;
  display: table;
  margin-top: -0.666667em;
  margin-bottom: 1.166667em;
  font-size: 0.75em;
  color: #e74c3c;
  text-align: left;
  line-height: 1.25em;
}

form span.error:before {
  content: "\f06a";
  font-family: "FontAwesome";
  padding-right: 0.25em;
  padding-right: 0.25rem;
  display: table-cell;
}

form span.success {
  display: block;
  margin-top: -0.666667em;
  margin-bottom: 1.166667em;
  font-size: 0.75em;
  color: #00cc99;
  text-align: left;
  line-height: 1.25em;
}

form span.success:before {
  content: "\f058";
  font-family: "FontAwesome";
  margin-right: 0.5em;
}

.has-icon:before {
  font-family: "FontAwesome";
  margin-right: 0.5em;
}

.is-error {
  font-size: 0.75rem;
  color: #e74c3c;
  text-align: left;
}

.is-error.has-icon:before {
  content: "\f06a";
}

.tooltip-error {
  font-family: Lato, Segoe UI, sans-serif;
  font-size: 16px;
  background: #333;
  color: #fff;
  border-radius: 3px;
  border: 0;
  box-shadow: 0 1px 2px -1px rgba(0,0,0,0.66);
}

.tooltip-error .arrow {
  height: 0px;
  width: 0px;
  position: absolute;
  left: -12px;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-right: 6px dotted #333;
}

.feedback {
  padding: 15px;
  margin: 0px 0px 1em;
}

.feedback.error {
  background-color: #fcc;
  color: #a66;
}

.feedback.warning {
  background-color: #ffc;
  color: #aa6;
}

.feedback.info {
  background-color: #f5f5f5;
  color: #333;
}

.feedback.success {
  background-color: #cfc;
  color: #6a6;
}

.feedback i {
  margin-right: 10px;
}

.feedback p:last-child {
  margin: 0;
}

.ui-widget {
  font-size: 1em;
}

.ui-widget-overlay {
  background-image: none;
  background-color: rgba(51,51,51,0.75);
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
}

.hidden {
  display: none;
}

[v-cloak] {
  display: none;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.bold {
  font-weight: bold;
}

.italicize {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strikethrough {
  text-decoration: line-through;
}

.nowrap {
  white-space: nowrap;
}

.input {
  position: relative;
}

.input-description {
  font-size: 0.75em;
  color: #a2a2a2;
  clear: both;
}

.input .hint {
  float: right;
  line-height: 1;
  margin: 0.375em 0;
  color: #a2a2a2;
}

.input label {
  float: left;
  display: block;
  margin: 0.5em 0;
}

.hint {
  transition: 0.2s color ease-in-out;
}

.hint:hover {
  color: #333;
}

.hint:before {
  font-family: "FontAwesome";
  /*content: "\f059";*/
  content: "\f29c";
}

.hint-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.5);
  background: #f1f1f1;
  color: #333;
  border: 0;
  font-size: 0.75em;
  border-radius: 0px;
}

.tippy-tooltip,
.tippy-tooltip [x-circle] {
  color: #333;
  border-radius: 3px;
  color: #fff;
  font-size: 0.75em;
}