.clickable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
/* Fade In */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Pulse */
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.pulse {
  -webkit-animation: pulse 1s 0 ease;
  -moz-animation: pulse 1s 0 ease;
  -ms-animation: pulse 1s 0 ease;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Fade Out */
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spin {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes wiggle {
  70% {
    -webkit-transform: scale(1.05, 1.05);
  }
  85% {
    -webkit-transform: scale(0.95, 0.95);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}
@-moz-keyframes wiggle {
  25% {
    -moz-transform: scale(1.05, 1.05);
  }
  75% {
    -moz-transform: scale(0.95, 0.95);
  }
  100% {
    -moz-transform: scale(1, 1);
  }
}
@keyframes wiggle {
  25% {
    transform: scale(1.05, 1.05);
  }
  75% {
    transform: scale(0.95, 0.95);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes shake {
  8% {
    -webkit-transform: translateX(8px);
  }
  20% {
    -webkit-transform: translateX(-8px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-4px);
  }
  80% {
    -webkit-transform: translateX(4px);
  }
  100% {
    -webkit-transform: translateX(0px);
  }
}
@-moz-keyframes shake {
  8% {
    -moz-transform: translateX(8px);
  }
  20% {
    -moz-transform: translateX(-8px);
  }
  40% {
    -moz-transform: translateX(6px);
  }
  60% {
    -moz-transform: translateX(-4px);
  }
  80% {
    -moz-transform: translateX(4px);
  }
  100% {
    -moz-transform: translateX(0px);
  }
}
@keyframes shake {
  8% {
    transform: translateX(8px);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0px);
  }
}
.shake {
  -webkit-animation: shake 0.6s 0 linear;
  -moz-animation: shake 0.6s 0 linear;
  -ms-animation: shake 0.6s 0 linear;
}
/* DROP IN ANIMATION */
@-webkit-keyframes drop {
  0% {
    -webkit-transform: rotate(15deg) translate(0px, -800px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
@-moz-keyframes drop {
  from {
    opacity: 0;
    -moz-transform: rotate(15deg) translate(0px, -400px);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
@keyframes drop {
  from {
    opacity: 0;
    transform: rotate(15deg) translate(0px, -400px);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
/* DROP OUT ANIMATION */
@-webkit-keyframes drop-out {
  from {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
  to {
    -webkit-transform: rotate(15deg) translate(0px, 800px);
    opacity: 0;
  }
}
@-moz-keyframes drop-out {
  from {
    opacity: 0;
    -moz-transform: rotate(15deg) translate(0px, -400px);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
@keyframes drop-out {
  from {
    opacity: 0;
    transform: rotate(15deg) translate(0px, -400px);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
/* Scale Up ANIMATION */
@-webkit-keyframes scaleup {
  0% {
    -webkit-transform: scale(0.7);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes drop {
  from {
    opacity: 0;
    -moz-transform: rotate(15deg) translate(0px, -400px);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
@keyframes drop {
  from {
    opacity: 0;
    transform: rotate(15deg) translate(0px, -400px);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg) translate(0px, 0px);
  }
}
meta.foundation-mq-small {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0em;
}
meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em;
}
meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em;
}
meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em;
}
meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em;
}
.row {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 62.5em;
  *zoom: 1;
}
.row * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  float: left;
}
.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}
.row .row {
  width: 100%;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
  *zoom: 1;
}
.row .row:before,
.row .row:after {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none;
  *zoom: 1;
}
.row .row.collapse:before,
.row .row.collapse:after {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}
.column,
.columns {
  position: relative;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left;
}
@media only screen {
  .column.small-centered,
  .columns.small-centered {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left;
  }
  .small-1 {
    position: relative;
    width: 8.33333%;
  }
  .small-2 {
    position: relative;
    width: 16.66667%;
  }
  .small-3 {
    position: relative;
    width: 25%;
  }
  .small-4 {
    position: relative;
    width: 33.33333%;
  }
  .small-5 {
    position: relative;
    width: 41.66667%;
  }
  .small-6 {
    position: relative;
    width: 50%;
  }
  .small-7 {
    position: relative;
    width: 58.33333%;
  }
  .small-8 {
    position: relative;
    width: 66.66667%;
  }
  .small-9 {
    position: relative;
    width: 75%;
  }
  .small-10 {
    position: relative;
    width: 83.33333%;
  }
  .small-11 {
    position: relative;
    width: 91.66667%;
  }
  .small-12 {
    position: relative;
    width: 100%;
  }
  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }
  [class*="column"] + [class*="column"].end {
    float: left;
  }
  .small-offset-0 {
    position: relative;
    margin-left: 0% !important;
  }
  .small-offset-1 {
    position: relative;
    margin-left: 8.33333% !important;
  }
  .small-offset-2 {
    position: relative;
    margin-left: 16.66667% !important;
  }
  .small-offset-3 {
    position: relative;
    margin-left: 25% !important;
  }
  .small-offset-4 {
    position: relative;
    margin-left: 33.33333% !important;
  }
  .small-offset-5 {
    position: relative;
    margin-left: 41.66667% !important;
  }
  .small-offset-6 {
    position: relative;
    margin-left: 50% !important;
  }
  .small-offset-7 {
    position: relative;
    margin-left: 58.33333% !important;
  }
  .small-offset-8 {
    position: relative;
    margin-left: 66.66667% !important;
  }
  .small-offset-9 {
    position: relative;
    margin-left: 75% !important;
  }
  .small-offset-10 {
    position: relative;
    margin-left: 83.33333% !important;
  }
  .column.small-reset-order,
  .columns.small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
}
@media only screen and (min-width: 40.063em) {
  .column.medium-centered,
  .columns.medium-centered {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left;
  }
  .medium-1 {
    position: relative;
    width: 8.33333%;
  }
  .medium-2 {
    position: relative;
    width: 16.66667%;
  }
  .medium-2-5 {
    position: relative;
    width: 20.83332%;
  }
  .medium-3 {
    position: relative;
    width: 25%;
  }
  .medium-4 {
    position: relative;
    width: 33.33333%;
  }
  .medium-5 {
    position: relative;
    width: 41.66667%;
  }
  .medium-6 {
    position: relative;
    width: 50%;
  }
  .medium-7 {
    position: relative;
    width: 58.33333%;
  }
  .medium-8 {
    position: relative;
    width: 66.66667%;
  }
  .medium-8-5 {
    position: relative;
    width: 70.83332%;
  }
  .medium-9 {
    position: relative;
    width: 75%;
  }
  .medium-10 {
    position: relative;
    width: 83.33333%;
  }
  .medium-11 {
    position: relative;
    width: 91.66667%;
  }
  .medium-12 {
    position: relative;
    width: 100%;
  }
  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }
  [class*="column"] + [class*="column"].end {
    float: left;
  }
  .medium-offset-0 {
    position: relative;
    margin-left: 0% !important;
  }
  .medium-offset-1 {
    position: relative;
    margin-left: 8.33333% !important;
  }
  .medium-offset-2 {
    position: relative;
    margin-left: 16.66667% !important;
  }
  .medium-offset-3 {
    position: relative;
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    position: relative;
    margin-left: 33.33333% !important;
  }
  .medium-offset-5 {
    position: relative;
    margin-left: 41.66667% !important;
  }
  .medium-offset-6 {
    position: relative;
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    position: relative;
    margin-left: 58.33333% !important;
  }
  .medium-offset-8 {
    position: relative;
    margin-left: 66.66667% !important;
  }
  .medium-offset-9 {
    position: relative;
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    position: relative;
    margin-left: 83.33333% !important;
  }
  .column.medium-reset-order,
  .columns.medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
}
@media only screen and (min-width: 64.063em) {
  .column.large-centered,
  .columns.large-centered {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left;
  }
  .large-1 {
    position: relative;
    width: 8.33333%;
  }
  .large-2 {
    position: relative;
    width: 16.66667%;
  }
  .large-3 {
    position: relative;
    width: 25%;
  }
  .large-4 {
    position: relative;
    width: 33.33333%;
  }
  .large-5 {
    position: relative;
    width: 41.66667%;
  }
  .large-6 {
    position: relative;
    width: 50%;
  }
  .large-7 {
    position: relative;
    width: 58.33333%;
  }
  .large-8 {
    position: relative;
    width: 66.66667%;
  }
  .large-9 {
    position: relative;
    width: 75%;
  }
  .large-10 {
    position: relative;
    width: 83.33333%;
  }
  .large-11 {
    position: relative;
    width: 91.66667%;
  }
  .large-12 {
    position: relative;
    width: 100%;
  }
  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }
  [class*="column"] + [class*="column"].end {
    float: left;
  }
  .large-offset-0 {
    position: relative;
    margin-left: 0% !important;
  }
  .large-offset-1 {
    position: relative;
    margin-left: 8.33333% !important;
  }
  .large-offset-2 {
    position: relative;
    margin-left: 16.66667% !important;
  }
  .large-offset-3 {
    position: relative;
    margin-left: 25% !important;
  }
  .large-offset-4 {
    position: relative;
    margin-left: 33.33333% !important;
  }
  .large-offset-5 {
    position: relative;
    margin-left: 41.66667% !important;
  }
  .large-offset-6 {
    position: relative;
    margin-left: 50% !important;
  }
  .large-offset-7 {
    position: relative;
    margin-left: 58.33333% !important;
  }
  .large-offset-8 {
    position: relative;
    margin-left: 66.66667% !important;
  }
  .large-offset-9 {
    position: relative;
    margin-left: 75% !important;
  }
  .large-offset-10 {
    position: relative;
    margin-left: 83.33333% !important;
  }
  .column.large-reset-order,
  .columns.large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
}
[class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 0 0 -0.625rem;
  *zoom: 1;
}
[class*="block-grid-"]:before,
[class*="block-grid-"]:after {
  content: " ";
  display: table;
}
[class*="block-grid-"]:after {
  clear: both;
}
[class*="block-grid-"] > li {
  display: inline;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem;
}
@media only screen {
  .small-block-grid-1 > li {
    width: 100%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-1 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    width: 50%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-2 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    width: 33.33333%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-3 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    width: 25%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-4 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    width: 20%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-5 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    width: 16.66667%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-6 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    width: 14.28571%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-7 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    width: 12.5%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-8 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    width: 11.11111%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-9 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    width: 10%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-10 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    width: 9.09091%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-11 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    width: 8.33333%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .small-block-grid-12 > li:nth-of-type(n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-block-grid-1 > li {
    width: 100%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-1 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    width: 50%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-2 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    width: 33.33333%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-3 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    width: 25%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-4 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    width: 20%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-5 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    width: 16.66667%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-6 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    width: 14.28571%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-7 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    width: 12.5%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-8 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    width: 11.11111%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-9 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    width: 10%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-10 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    width: 9.09091%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-11 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    width: 8.33333%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .medium-block-grid-12 > li:nth-of-type(n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-block-grid-1 > li {
    width: 100%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-1 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    width: 50%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-2 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    width: 33.33333%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-3 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    width: 25%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-4 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    width: 20%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-5 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    width: 16.66667%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-6 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    width: 14.28571%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-7 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    width: 12.5%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-8 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    width: 11.11111%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-9 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    width: 10%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-10 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    width: 9.09091%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-11 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    width: 8.33333%;
    padding: 0 0.625rem 1.25rem;
    list-style: none;
  }
  .large-block-grid-12 > li:nth-of-type(n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
/* Our overrides */
.row {
  max-width: none;
}
/*---------------------------------------------------
    Butter Lists
  ---------------------------------------------------*/
/*---------------------------------------------------
    Slim Global Styles
  ---------------------------------------------------*/
/*---------------------------------------------------
    Butter Variables
  ---------------------------------------------------*/
/*---------------------------------------------------
    Colors
    All the colors in the Butterbow
  ---------------------------------------------------*/
/* General Colors */
/* Badge colors */
/* State Colors */
/* Feature Colors
    Changes here should also be updated in lookup.html/#colors
 */
/* Text Colors */
/* Background Colors */
/* Border Colors */
/*---------------------------------------------------
    Z-Index Hierarchy
    Keep track of z-index hierarchy by adding it here as a variable
  ---------------------------------------------------*/
/*---------------------------------------------------
    Padding
    Use the PU. 1 PaddingUnit is the unit of measuring padding. Mutliple/divide it to get a consistent look.
  ---------------------------------------------------*/
/*---------------------------------------------------
    Responsive Media Query Helpers
  ---------------------------------------------------*/
/* Helper Classes */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-clip {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.underline {
  text-decoration: underline;
}
.centered {
  text-align: center;
  margin: 0 auto;
}
b,
strong,
.bold {
  font-weight: 600;
}
.clickable {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.link:not(.hover) {
  text-decoration: underline;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.link.hover:hover {
  text-decoration: underline;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lowercase {
  text-transform: lowercase;
}
/*---------------------------------------------------
    Layout
  ---------------------------------------------------*/
.inline {
  display: inline-block !important;
  /* THIS IS THE ONLY TIME YOU CAN USE IMPORTANT */
}
.block {
  display: block;
  /* THIS IS THE ONLY TIME YOU CAN USE IMPORTANT */
}
.control-group {
  margin-bottom: 0.5em;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
  list-type: none;
}
ul.inline li {
  display: inline-block;
}
/* Used by Lists and Controls */
/*
*---------------------------------------------------
    Pulls
    Pulls are used to pull a out into an arrow like a dropdown popup
  ---------------------------------------------------*/
/*
*---------------------------------------------------
    Pulls
    Pulls are used to pull a out into an arrow like a dropdown popup
  ---------------------------------------------------*/
/* Card Generic Mixins */
/* Global Responsive Styles */
@media (max-width: 640px) {
  .small-text-center {
    text-align: center;
  }
}
/*---------------------------------------------------
    Base List Items
  ---------------------------------------------------*/
/*---------------------------------------------------
    List Implementation
  ---------------------------------------------------*/
.list-plain {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: #f5f7f7;
  border: 1px solid #eeeeee;
  font-size: 16px;
  /* Disable Last Border */
  /* Modifiers */
  /* Spacing Modifiers */
  /* Inverted Lists */
  /* Layout */
  /* Selectable Lists */
}
.list-plain > li {
  position: relative;
  line-height: 80px;
  padding: 0 10px 0 20px;
  color: #4d5255;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
  background: transparent;
  /* List Headers */
  /* Visibility */
  /* Icons */
  /* List Item Layouts */
  padding: 0 10px 0 40px;
}
.list-plain > li.header {
  line-height: 40px;
}
.list-plain > li.header {
  padding: 0 10px 0 10px;
}
.list-plain > li:hover {
  color: #414548;
}
.list-plain > li:not(.disabled) {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.list-plain > li:not(.disabled):hover {
  background: #f5f7f7;
}
.list-plain > li:not(.disabled):active {
  background: #e7ecec;
}
.list-plain > li > span,
.list-plain > li > * > span {
  display: inline-block;
  font-size: 0.8em;
  color: #8c8c8c;
  margin-left: 5px;
}
.list-plain > li > span.list-indicator,
.list-plain > li > * > span.list-indicator {
  border: 1px solid #414548;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 16px;
  vertical-align: baseline;
}
.list-plain > li > span.list-indicator.green,
.list-plain > li > * > span.list-indicator.green {
  border-color: #75cc75;
  color: #75cc75;
}
.list-plain > li > span.list-indicator.blue,
.list-plain > li > * > span.list-indicator.blue {
  border-color: #57c0f8;
  color: #57c0f8;
}
.list-plain > li > span.list-indicator.grey,
.list-plain > li > * > span.list-indicator.grey {
  border-color: #8c8c8c;
  color: #8c8c8c;
}
.list-plain > li > span.list-indicator.red,
.list-plain > li > * > span.list-indicator.red {
  border-color: #e64943;
  color: #e64943;
}
.list-plain > li > span.list-indicator.orange,
.list-plain > li > * > span.list-indicator.orange {
  border-color: #ffa500;
  color: #ffa500;
}
.list-plain > li.search-box {
  font-weight: 400;
  font-family: "Verb", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Georgia", sans-serif;
  border-bottom: 1px solid #eeeeee;
}
.list-plain > li.search-box:before {
  opacity: 0.3;
}
.list-plain > li.header {
  border-bottom: 1px solid #eeeeee;
  color: #8c8c8c;
  font-size: 0.9em;
}
.list-plain > li.weak {
  color: #999999;
}
.list-plain > li.weak:hover {
  color: #8c8c8c;
}
.list-plain > li.hidden {
  display: none;
}
.list-plain > li i.right,
.list-plain > li a.right {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.list-plain > li i:first-child:not(.icon-only) {
  margin-right: 10px;
  display: inline-block;
}
.list-plain > li.detail {
  padding-top: 20px;
  padding-bottom: 20px;
  /* .detail.right needs to drop down on mobile devices */
}
.list-plain > li.detail span {
  display: block;
  margin-top: 0px;
  margin-left: 0;
}
.list-plain > li.detail:not(.right) {
  line-height: inherit;
}
@media (max-width: 480px) {
  .list-plain > li.detail.right {
    line-height: inherit;
  }
}
@media (min-width: 480px) {
  .list-plain > li.detail.right {
    padding-top: 0;
    padding-bottom: 0;
  }
  .list-plain > li.detail.right span {
    margin-right: 30px;
    text-align: right;
    position: absolute;
    right: 0;
    display: inline-block;
  }
}
.list-plain > li.header {
  padding: 0 10px 0 30px;
}
.list-plain > li.open .dropdown-placement,
.list-plain > li.open .ed-dropdown-placement {
  display: block;
}
.list-plain:not(.nested) > li:last-child {
  border-color: transparent;
}
.list-plain.full {
  overflow: scroll;
  overflow-x: hidden;
  border: none;
  width: 100%;
  height: 100%;
  margin: 0;
}
.list-plain.thin > li {
  line-height: 60px;
  padding: 0 10px 0 20px;
}
.list-plain.thin > li.header {
  line-height: 30px;
}
.list-plain.thin > li.header {
  padding: 0 10px 0 10px;
}
.list-plain.thin > li.header {
  padding-left: 20px;
}
.list-plain.thick > li {
  line-height: 70px;
  padding: 0 10px 0 30px;
}
.list-plain.thick > li.header {
  line-height: 35px;
}
.list-plain.thick > li.header {
  padding: 0 10px 0 20px;
}
.list-plain.inverted > li,
.list-plain.clear > li {
  background: rgba(0, 0, 0, 0);
}
.list-plain.inverted > li:hover,
.list-plain.clear > li:hover {
  background: #ffffff;
}
.list-plain.inverted > li:active,
.list-plain.clear > li:active {
  background: rgba(0, 0, 0, 0);
}
.list-plain.inverted.selectable > li:active,
.list-plain.clear.selectable > li:active {
  background: #ffffff;
}
.list-plain.inverted.selectable > li.selected,
.list-plain.clear.selectable > li.selected {
  background: #ffffff;
}
.list-plain.clear {
  background: rgba(0, 0, 0, 0);
}
.list-plain.rounded {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #CED0D3;
}
.list-plain.centered > li {
  text-align: center;
  padding: 0;
}
.list-plain.selectable {
  /* Selection Positions */
  /* Width Modifiers */
  /* Selection Style Colors */
}
.list-plain.selectable > li {
  -webkit-transition: padding 0.2s ease-out;
  -moz-transition: padding 0.2s ease-out;
  -ms-transition: padding 0.2s ease-out;
  -o-transition: padding 0.2s ease-out;
}
.list-plain.selectable > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  width: 0px;
  background: #414548;
}
.list-plain.selectable > li.selected {
  padding-left: 30px;
}
.list-plain.selectable > li.selected:after {
  width: 4px;
}
.list-plain.selectable.right > li:after {
  left: auto;
  right: 0;
}
.list-plain.selectable.thick > li.selected:after {
  width: 5px;
}
.list-plain.selectable.green > li:after {
  background: #75cc75;
}
.list-plain.selectable.red > li:after {
  background: #e64943;
}
.list-plain.selectable.orange > li:after {
  background: #ffa500;
}
.list-section-header {
  font-size: 15px;
  color: #808080;
  margin: 10px 0;
  text-align: center;
  display: block;
}
.list-section-header > * {
  color: inherit;
}
.list-section-header.tight {
  margin-bottom: 5px;
}
.list-section-header.loose {
  margin: 20px 0;
  margin-bottom: 10px;
}
.list-section-header.left {
  text-align: left;
}
.list-section-header.right {
  text-align: right;
}
.list-flat {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: #f5f7f7;
  border: 1px solid #eeeeee;
  font-size: 16px;
}
.list-flat > li {
  position: relative;
  line-height: 44px;
  padding: 0 10px 0 20px;
  color: inherit;
  text-decoration: none;
  display: block;
  text-align: left;
}
.list-flat > li.header {
  line-height: 22px;
}
.list-flat > li.header {
  padding: 0 10px 0 10px;
}
.list-flat > li .fixed {
  position: absolute;
  top: 10px;
}
.list-flat > li .fixed.right {
  right: 10px;
}
.list-flat > li .indicator {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 13px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #000000;
  color: inherit;
  display: inline-block;
}
.list-flat > li .indicator.fixed {
  top: 5px;
}
.list-flat > li.header {
  font-weight: 300;
  font-size: 13px;
}
.list-flat > li.header .fixed {
  top: 0;
}
.list-flat.round {
  border-radius: 3px;
}
/*---------------------------------------------------
    Tables
  ---------------------------------------------------*/
.table-plain {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #eeeeee;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  background: #f5f7f7;
  font-size: 16px;
  /* Generic for all rows and cells */
  /* Header styles */
  /* Row styles */
}
.table-plain thead tr {
  height: 40px;
}
.table-plain tbody tr {
  height: 60px;
}
.table-plain tr {
  border-bottom: 1px solid #eeeeee;
}
.table-plain tr th,
.table-plain tr td {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  padding: 0;
  padding-left: 20px;
}
.table-plain tr th:last-child,
.table-plain tr td:last-child {
  padding-right: 20px;
}
.table-plain thead {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
.table-plain thead tr {
  background: rgba(0, 0, 0, 0);
  color: #8c8c8c;
}
.table-plain thead tr th.sortable {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.table-plain thead tr th.sortable:hover {
  text-decoration: underline;
}
.table-plain tbody tr {
  background: #ffffff;
}
.table-scrollable-wrapper {
  display: block;
}
/* Popups */
.popup-plain {
  border-radius: 3px;
  background: white;
  border: 1px solid #cacac9;
  width: 350px;
  position: absolute;
  z-index: 1000;
}
.popup-plain.top {
  top: 0;
}
.popup-plain.top.right {
  left: 100%;
}
.popup-plain.top.left {
  right: 100%;
}
.popup-plain ul {
  overflow: scroll;
  max-height: 600px;
  border: none;
}
.popup-plain:not(.open) {
  display: none;
}
/*---------------------------------------------------
    Butter Controls
    Control styles, including buttons, dropdowns, searchboxs, etc.
  ---------------------------------------------------*/
/*---------------------------------------------------
    Buttons
  ---------------------------------------------------*/
/* Base Button Class */
/* Plain Button */
.button-plain {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  font-size: 16px;
  color: #464a4d;
  display: inline-block;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  background: #fcfcfc;
  border: 1px solid #d4d4d4;
  color: #333333;
  line-height: 45px;
  height: 45px;
  overflow: hidden;
  padding: 0 45px 0 45px;
  /* Sizes */
  /* Easily create another size button here */
  /* Colors */
  /* Easily create another colored button here */
  /* Loading Button */
}
.button-plain i:not(:last-child) {
  display: inline-block;
  margin-right: 10px;
}
.button-plain i:not(:last-child).icon-only {
  margin-right: 0;
}
.button-plain:hover {
  color: #414548;
}
.button-plain:hover {
  background: #ffffff;
}
.button-plain:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #f7f7f7;
}
.button-plain.block {
  display: block;
  width: 100%;
}
.button-plain.inline {
  padding-left: 10px;
  padding-right: 10px;
}
.button-plain.smaller {
  line-height: 32px;
  height: 32px;
  overflow: hidden;
  padding: 0 13px 0 13px;
  font-size: 14px;
  min-width: 0;
}
.button-plain.small {
  line-height: 36px;
  height: 36px;
  overflow: hidden;
  min-width: 0;
}
.button-plain.medium {
  line-height: 35px;
  height: 35px;
  overflow: hidden;
}
.button-plain.big {
  line-height: 50px;
  height: 50px;
  overflow: hidden;
}
.button-plain.large {
  line-height: 70px;
  height: 70px;
  overflow: hidden;
  min-width: 150px;
  font-size: 21px;
  min-width: 235px;
}
.button-plain.great {
  line-height: 65px;
  height: 65px;
  overflow: hidden;
}
.button-plain.square {
  min-width: 45px;
  line-height: 45px;
  height: 45px;
  padding: 0;
  font-size: 18px;
}
.button-plain.square i {
  margin-right: 0;
}
.button-plain.red {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  background: #e64943;
  border: 1px solid #ac1c17;
  color: #ffffff;
}
.button-plain.red:hover {
  background: #e85651;
}
.button-plain.red:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #e5403a;
}
.button-plain.green {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(59, 160, 59, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(59, 160, 59, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(59, 160, 59, 0.3);
  background: #75cc75;
  border: 1px solid #3ba03b;
  color: #ffffff;
}
.button-plain.green:hover {
  background: #80d080;
}
.button-plain.green:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #6ec96e;
}
.button-plain.orange {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(170, 109, 8, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(170, 109, 8, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(170, 109, 8, 0.3);
  background: #f5a623;
  border: 1px solid #aa6d08;
  color: #ffffff;
}
.button-plain.orange:hover {
  background: #f6ac32;
}
.button-plain.orange:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #f5a219;
}
.button-plain.blue {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  background: #57c0f8;
  border: 1px solid #0995e0;
  color: #ffffff;
}
.button-plain.blue:hover {
  background: #66c6f9;
}
.button-plain.blue:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #4dbcf8;
}
.button-plain.passive {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.17);
}
.button-plain.passive:hover {
  background: rgba(8, 8, 8, 0);
}
.button-plain.passive:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.button-plain.passive.on-grey {
  background: white;
  border-width: 1px;
  color: #666666;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.button-plain.passive.on-grey:hover {
  background: white;
  color: #4d4d4d;
}
.button-plain.passive:hover {
  background: rgba(0, 0, 0, 0.1);
}
.button-plain.passive.error {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #e64943;
  border: 2px solid #e64943;
  cursor: default;
}
.button-plain.passive.error:hover {
  background: rgba(8, 8, 8, 0);
}
.button-plain.passive.error:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.button-plain.passive.success {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #75cc75;
  border: 2px solid #75cc75;
  cursor: default;
  position: relative;
}
.button-plain.passive.success:hover {
  background: rgba(8, 8, 8, 0);
}
.button-plain.passive.success:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.button-plain.passive.red:hover {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  background: #e64943;
  border: 1px solid #ac1c17;
  color: #ffffff;
}
.button-plain.passive.red:hover:hover {
  background: #e85651;
}
.button-plain.passive.red:hover:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #e5403a;
}
.button-plain.passive.blue:hover {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  background: #57c0f8;
  border: 1px solid #0995e0;
  color: #ffffff;
}
.button-plain.passive.blue:hover:hover {
  background: #66c6f9;
}
.button-plain.passive.blue:hover:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #4dbcf8;
}
.button-plain.passive.disabled {
  opacity: 0.5;
  cursor: default;
}
.button-plain.passive.inverted {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(0, 0, 0, 0.4);
}
.button-plain.passive.inverted:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.button-plain.loading {
  position: relative;
}
.button-plain.loading > * {
  visibility: hidden;
}
.button-plain.loading:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.button-plain.loading:after {
  font-family: FontAwesome;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-shadow: none;
  content: "";
  display: block;
  text-align: center;
}
.button-plain.loading.success:after {
  content: "";
  -webkit-animation: none 300ms 0 ease;
  -moz-animation: none 300ms 0 ease;
  -ms-animation: none 300ms 0 ease;
}
.multi-choice {
  position: relative;
}
.multi-choice.success:after,
.multi-choice.error:after {
  font-family: FontAwesome;
  content: "";
  /* icon-tick */
  color: white;
  display: block;
  text-align: center;
  font-size: 11.33333333px;
  line-height: 17px;
  border-radius: 8.5px;
  width: 17px;
  height: 17px;
  position: absolute;
  top: -8.5px;
  right: -8.5px;
}
.multi-choice.success:after {
  background: #75cc75;
}
.multi-choice.error:after {
  content: "";
  /* icon-remove */
  background: #e64943;
}
/* containment for button alignment (left & right) */
.button-container {
  width: 100%;
  height: 45px;
}
/* Hover Button */
.button-hover {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  font-size: 16px;
  color: #464a4d;
  display: inline-block;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  color: #414548;
  padding: 0 10px;
}
.button-hover i:not(:last-child) {
  display: inline-block;
  margin-right: 10px;
}
.button-hover i:not(:last-child).icon-only {
  margin-right: 0;
}
.button-hover:hover {
  color: #414548;
}
.button-hover:hover {
  background: rgba(8, 8, 8, 0);
}
.button-hover:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.button-hover:hover {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  background: #fcfcfc;
  border: 1px solid #d4d4d4;
  color: #333333;
}
.button-hover:hover:hover {
  background: #ffffff;
}
.button-hover:hover:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #f7f7f7;
}
/*---------------------------------------------------
    Button options (list of buttons)
  ---------------------------------------------------*/
.button-options li {
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  font-size: 16px;
  color: #464a4d;
  display: inline-block;
  line-height: 65px;
  height: 65px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  background: rgba(0, 0, 0, 0);
  border: 1px solid #d4d4d4;
  color: rgba(0, 0, 0, 0);
  display: block;
  color: #444444;
  text-align: left;
  min-height: 65px;
  margin-top: 8px;
  font-size: 18px;
  padding: 0 15px 0 50px;
}
.button-options li i:not(:last-child) {
  display: inline-block;
  margin-right: 10px;
}
.button-options li i:not(:last-child).icon-only {
  margin-right: 0;
}
.button-options li:hover {
  color: #414548;
}
.button-options li:hover {
  background: rgba(8, 8, 8, 0);
}
.button-options li:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.button-options li p {
  margin: 0;
}
.button-options li i {
  font-size: 22px;
  color: #e6e6e6;
}
.button-options li:hover,
.button-options li.active {
  background: #51bffb;
  border-color: #0593e1;
  color: white;
}
.button-options li:hover i,
.button-options li.active i {
  color: white;
}
.button-options li:before {
  font-family: FontAwesome;
  content: "";
  color: #e6e6e6;
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 31%;
  margin-top: 0px;
  margin-left: 0px;
  left: 15px;
}
.button-options li:hover:before {
  font-family: FontAwesome;
  content: "";
  color: #ffffff;
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 31%;
  margin-top: 0px;
  margin-left: 0px;
  left: 15px;
}
.button-options li.active:before {
  font-family: FontAwesome;
  content: "";
  color: #ffffff;
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 31%;
  margin-top: 0px;
  margin-left: 0px;
  left: 15px;
}
.button-options li.active:after {
  font-family: FontAwesome;
  content: "";
  color: #ffffff;
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 10px;
  border-radius: 5px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 31%;
  margin-top: 7px;
  margin-left: 7px;
  left: 15px;
}
/*---------------------------------------------------
    Toggleable (on / off) switch
  ---------------------------------------------------*/
.button-switch {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  position: relative;
  vertical-align: baseline;
}
.button-switch li {
  position: relative;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  float: left;
  width: 50%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  color: white;
  margin-top: -1px;
  color: #d4d4d4;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2;
}
.button-switch li i {
  background: #e64943;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  font-size: 10.66666667px;
  line-height: 16px;
  border-radius: 8px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.button-switch.block {
  width: 100%;
}
.button-switch.small {
  line-height: 22px;
  height: 22px;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
}
.button-switch.medium {
  line-height: 45px;
  height: 45px;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 25px;
}
.button-switch .toggle {
  z-index: 1;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  color: white;
  margin-top: -1px;
  color: #d4d4d4;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  position: absolute;
  background: #75cc75;
  width: 50%;
  height: 45px;
  border: 1px solid #42b342;
  -webkit-transition: all 150ms cubic-bezier(0.015, 0.01, 0, 0.995);
  -moz-transition: all 150ms cubic-bezier(0.015, 0.01, 0, 0.995);
  -o-transition: all 150ms cubic-bezier(0.015, 0.01, 0, 0.995);
  transition: all 150ms cubic-bezier(0.015, 0.01, 0, 0.995);
  /* custom */
}
.button-switch .toggle.left {
  left: 0;
}
.button-switch .toggle.right {
  left: 50%;
}
.button-switch .active {
  color: white;
}
.button-switch .active i {
  color: #75cc75;
  background: white;
}
/*---------------------------------------------------
    Dropdowns
  ---------------------------------------------------*/
.dropdown-plain {
  display: inline-block;
  position: relative;
  line-height: 1em;
  vertical-align: middle;
}
.dropdown-plain.open .dropdown-placement {
  display: block;
}
.dropdown-plain.block {
  width: 100%;
}
.dropdown-plain.block .dropdown-button {
  width: 100%;
  overflow: hidden;
}
.dropdown-plain .dropdown-icon {
  display: inline-block;
  padding-right: 5px;
  float: left;
  line-height: 28px;
  width: 25px;
}
.dropdown-button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  color: #464a4d;
  background: #fcfcfc;
  color: #333333;
  line-height: 45px;
  height: 45px;
  padding: 0 45px 0 45px;
  /* Sizes */
  /* Easily create another size button here */
  /* Colors */
  /* Easily create another colored button here */
  /* Loading Button */
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  font-size: 14px;
  text-align: left;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(212, 212, 212, 0.3);
  background: #ffffff;
  border: 1px solid #d4d4d4;
  color: #414548;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  min-width: 0;
  padding: 0 35px 0 15px;
}
.dropdown-button i:not(:last-child) {
  display: inline-block;
  margin-right: 10px;
}
.dropdown-button i:not(:last-child).icon-only {
  margin-right: 0;
}
.dropdown-button:hover {
  color: #414548;
}
.dropdown-button:hover {
  background: #ffffff;
}
.dropdown-button:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #f7f7f7;
}
.dropdown-button.block {
  display: block;
  width: 100%;
}
.dropdown-button.inline {
  padding-left: 10px;
  padding-right: 10px;
}
.dropdown-button.smaller {
  line-height: 32px;
  height: 32px;
  overflow: hidden;
  padding: 0 13px 0 13px;
  font-size: 14px;
  min-width: 0;
}
.dropdown-button.small {
  line-height: 36px;
  height: 36px;
  overflow: hidden;
  min-width: 0;
}
.dropdown-button.medium {
  line-height: 35px;
  height: 35px;
  overflow: hidden;
}
.dropdown-button.big {
  line-height: 50px;
  height: 50px;
  overflow: hidden;
}
.dropdown-button.large {
  line-height: 70px;
  height: 70px;
  overflow: hidden;
  min-width: 150px;
  font-size: 21px;
  min-width: 235px;
}
.dropdown-button.great {
  line-height: 65px;
  height: 65px;
  overflow: hidden;
}
.dropdown-button.square {
  min-width: 45px;
  line-height: 45px;
  height: 45px;
  padding: 0;
  font-size: 18px;
}
.dropdown-button.square i {
  margin-right: 0;
}
.dropdown-button.red {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  background: #e64943;
  border: 1px solid #ac1c17;
  color: #ffffff;
}
.dropdown-button.red:hover {
  background: #e85651;
}
.dropdown-button.red:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #e5403a;
}
.dropdown-button.green {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(59, 160, 59, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(59, 160, 59, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(59, 160, 59, 0.3);
  background: #75cc75;
  border: 1px solid #3ba03b;
  color: #ffffff;
}
.dropdown-button.green:hover {
  background: #80d080;
}
.dropdown-button.green:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #6ec96e;
}
.dropdown-button.orange {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(170, 109, 8, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(170, 109, 8, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(170, 109, 8, 0.3);
  background: #f5a623;
  border: 1px solid #aa6d08;
  color: #ffffff;
}
.dropdown-button.orange:hover {
  background: #f6ac32;
}
.dropdown-button.orange:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #f5a219;
}
.dropdown-button.blue {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  background: #57c0f8;
  border: 1px solid #0995e0;
  color: #ffffff;
}
.dropdown-button.blue:hover {
  background: #66c6f9;
}
.dropdown-button.blue:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #4dbcf8;
}
.dropdown-button.passive {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.17);
}
.dropdown-button.passive:hover {
  background: rgba(8, 8, 8, 0);
}
.dropdown-button.passive:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.dropdown-button.passive.on-grey {
  background: white;
  border-width: 1px;
  color: #666666;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.dropdown-button.passive.on-grey:hover {
  background: white;
  color: #4d4d4d;
}
.dropdown-button.passive:hover {
  background: rgba(0, 0, 0, 0.1);
}
.dropdown-button.passive.error {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #e64943;
  border: 2px solid #e64943;
  cursor: default;
}
.dropdown-button.passive.error:hover {
  background: rgba(8, 8, 8, 0);
}
.dropdown-button.passive.error:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.dropdown-button.passive.success {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #75cc75;
  border: 2px solid #75cc75;
  cursor: default;
  position: relative;
}
.dropdown-button.passive.success:hover {
  background: rgba(8, 8, 8, 0);
}
.dropdown-button.passive.success:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.dropdown-button.passive.red:hover {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(172, 28, 23, 0.3);
  background: #e64943;
  border: 1px solid #ac1c17;
  color: #ffffff;
}
.dropdown-button.passive.red:hover:hover {
  background: #e85651;
}
.dropdown-button.passive.red:hover:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #e5403a;
}
.dropdown-button.passive.blue:hover {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  -moz-box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  box-shadow: 0px 1px 1px 0px rgba(9, 149, 224, 0.3);
  background: #57c0f8;
  border: 1px solid #0995e0;
  color: #ffffff;
}
.dropdown-button.passive.blue:hover:hover {
  background: #66c6f9;
}
.dropdown-button.passive.blue:hover:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #4dbcf8;
}
.dropdown-button.passive.disabled {
  opacity: 0.5;
  cursor: default;
}
.dropdown-button.passive.inverted {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(0, 0, 0, 0.4);
}
.dropdown-button.passive.inverted:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.dropdown-button.loading {
  position: relative;
}
.dropdown-button.loading > * {
  visibility: hidden;
}
.dropdown-button.loading:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.dropdown-button.loading:after {
  font-family: FontAwesome;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-shadow: none;
  content: "";
  display: block;
  text-align: center;
}
.dropdown-button.loading.success:after {
  content: "";
  -webkit-animation: none 300ms 0 ease;
  -moz-animation: none 300ms 0 ease;
  -ms-animation: none 300ms 0 ease;
}
.dropdown-button:hover {
  background: #ffffff;
}
.dropdown-button:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #fafafa;
}
.dropdown-button.on-black {
  color: #fff;
  border-color: #fff;
}
.dropdown-button.on-black:after {
  color: #fff;
}
.dropdown-button.on-black li {
  color: #a1a1a1;
}
.dropdown-button.on-black li:hover {
  color: #fff;
}
.dropdown-button.hover:not(:hover) {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 1px solid transparent;
  color: #414548;
}
.dropdown-button.hover:not(:hover):hover {
  background: rgba(8, 8, 8, 0);
}
.dropdown-button.hover:not(:hover):active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.dropdown-button:after {
  top: 50%;
}
.dropdown-button .dropdown-text {
  height: 32px;
  overflow: hidden;
  position: absolute;
  display: inline-block;
}
.dropdown-button:after {
  font-family: FontAwesome;
  content: "";
  text-rendering: optimizeLegibility;
  position: absolute;
  font-size: 11px;
  right: 15px;
  top: 50%;
  color: #979797;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.dropdown-button.no-caret {
  padding-right: 15px;
}
.dropdown-button.no-caret:after {
  content: "";
}
.dropdown-placement {
  display: none;
  position: absolute;
  width: 1px;
  height: 1px;
  /* Defaults to Bottom Right Placement */
  bottom: 0;
  right: 0;
  /* Left Aligned Popup */
}
.dropdown-placement .dropdown-list,
.dropdown-placement .dropdown-menu {
  position: absolute;
  right: 0;
  top: 0;
}
.dropdown-placement.left {
  right: auto;
  left: 0;
}
.dropdown-placement.left .dropdown-list,
.dropdown-placement.left .dropdown-menu {
  left: 0;
  right: auto;
  color: #9c9c9c;
  /* Pull Arrow */
}
.dropdown-placement.left .dropdown-list:after,
.dropdown-placement.left .dropdown-menu:after {
  top: 0;
  left: 20px;
  right: auto;
}
.dropdown-list,
.dropdown-menu {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.13);
  margin: 0;
  padding: 0;
  display: inline-block;
  z-index: 1100;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  list-style: none;
  min-width: 300px;
  border: 1px solid #e1e1e1;
  background: white;
  max-height: 280px;
  overflow: scroll;
  font-size: 15px;
}
.dropdown-list.uncapped,
.dropdown-menu.uncapped {
  max-height: none;
}
.dropdown-list li,
.dropdown-menu li {
  position: relative;
  line-height: 60px;
  padding: 0 10px 0 20px;
  color: #4d5255;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
  background: #ffffff;
  /* List Headers */
  /* Visibility */
  /* Icons */
  /* List Item Layouts */
}
.dropdown-list li.header,
.dropdown-menu li.header {
  line-height: 30px;
}
.dropdown-list li.header,
.dropdown-menu li.header {
  padding: 0 10px 0 10px;
}
.dropdown-list li:hover,
.dropdown-menu li:hover {
  color: #414548;
}
.dropdown-list li:not(.disabled),
.dropdown-menu li:not(.disabled) {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dropdown-list li:not(.disabled):hover,
.dropdown-menu li:not(.disabled):hover {
  background: #f2f2f2;
}
.dropdown-list li:not(.disabled):active,
.dropdown-menu li:not(.disabled):active {
  background: #e5e5e5;
}
.dropdown-list li > span,
.dropdown-menu li > span,
.dropdown-list li > * > span,
.dropdown-menu li > * > span {
  display: inline-block;
  font-size: 0.8em;
  color: #8c8c8c;
  margin-left: 5px;
}
.dropdown-list li > span.list-indicator,
.dropdown-menu li > span.list-indicator,
.dropdown-list li > * > span.list-indicator,
.dropdown-menu li > * > span.list-indicator {
  border: 1px solid #414548;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 16px;
  vertical-align: baseline;
}
.dropdown-list li > span.list-indicator.green,
.dropdown-menu li > span.list-indicator.green,
.dropdown-list li > * > span.list-indicator.green,
.dropdown-menu li > * > span.list-indicator.green {
  border-color: #75cc75;
  color: #75cc75;
}
.dropdown-list li > span.list-indicator.blue,
.dropdown-menu li > span.list-indicator.blue,
.dropdown-list li > * > span.list-indicator.blue,
.dropdown-menu li > * > span.list-indicator.blue {
  border-color: #57c0f8;
  color: #57c0f8;
}
.dropdown-list li > span.list-indicator.grey,
.dropdown-menu li > span.list-indicator.grey,
.dropdown-list li > * > span.list-indicator.grey,
.dropdown-menu li > * > span.list-indicator.grey {
  border-color: #8c8c8c;
  color: #8c8c8c;
}
.dropdown-list li > span.list-indicator.red,
.dropdown-menu li > span.list-indicator.red,
.dropdown-list li > * > span.list-indicator.red,
.dropdown-menu li > * > span.list-indicator.red {
  border-color: #e64943;
  color: #e64943;
}
.dropdown-list li > span.list-indicator.orange,
.dropdown-menu li > span.list-indicator.orange,
.dropdown-list li > * > span.list-indicator.orange,
.dropdown-menu li > * > span.list-indicator.orange {
  border-color: #ffa500;
  color: #ffa500;
}
.dropdown-list li.search-box,
.dropdown-menu li.search-box {
  font-weight: 400;
  font-family: "Verb", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Georgia", sans-serif;
  border-bottom: 1px solid #eeeeee;
}
.dropdown-list li.search-box:before,
.dropdown-menu li.search-box:before {
  opacity: 0.3;
}
.dropdown-list li.header,
.dropdown-menu li.header {
  border-bottom: 1px solid #e1e1e1;
  color: #8c8c8c;
  font-size: 0.9em;
}
.dropdown-list li.weak,
.dropdown-menu li.weak {
  color: #999999;
}
.dropdown-list li.weak:hover,
.dropdown-menu li.weak:hover {
  color: #8c8c8c;
}
.dropdown-list li.hidden,
.dropdown-menu li.hidden {
  display: none;
}
.dropdown-list li i.right,
.dropdown-menu li i.right,
.dropdown-list li a.right,
.dropdown-menu li a.right {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.dropdown-list li i:first-child:not(.icon-only),
.dropdown-menu li i:first-child:not(.icon-only) {
  margin-right: 10px;
  display: inline-block;
}
.dropdown-list li.detail,
.dropdown-menu li.detail {
  padding-top: 20px;
  padding-bottom: 20px;
  /* .detail.right needs to drop down on mobile devices */
}
.dropdown-list li.detail span,
.dropdown-menu li.detail span {
  display: block;
  margin-top: 0px;
  margin-left: 0;
}
.dropdown-list li.detail:not(.right),
.dropdown-menu li.detail:not(.right) {
  line-height: inherit;
}
@media (max-width: 480px) {
  .dropdown-list li.detail.right,
  .dropdown-menu li.detail.right {
    line-height: inherit;
  }
}
@media (min-width: 480px) {
  .dropdown-list li.detail.right,
  .dropdown-menu li.detail.right {
    padding-top: 0;
    padding-bottom: 0;
  }
  .dropdown-list li.detail.right span,
  .dropdown-menu li.detail.right span {
    margin-right: 30px;
    text-align: right;
    position: absolute;
    right: 0;
    display: inline-block;
  }
}
.dropdown-list li:last-child,
.dropdown-menu li:last-child {
  border-bottom-color: transparent;
}
.dropdown-toggle + .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
}
/* Region General*/
.light {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 300;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  text-rendering: optimizeLegibility;
}
.icon-font {
  font-family: FontAwesome;
}
body,
html {
  font-weight: 400;
  font-family: "Verb", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Georgia", sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  margin: 0;
  position: relative;
}
[class^="i-"]::before,
[class*=" i-"]::before {
  line-height: inherit;
}
.bold {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
html body {
  padding: 0px;
}
p,
h1,
h2,
h3,
a {
  line-height: 1.3em;
  color: inherit;
  font-weight: normal;
}
.clickable {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a:hover,
button:hover {
  opacity: 0.8;
}
div.container {
  margin: 0px;
}
.show-on-load {
  opacity: 0;
}
weak,
.weak {
  opacity: 0.8;
  font-size: 0.8em;
}
/* End Region */
.login-actions {
  position: fixed;
  top: 30px;
  right: 30px;
  float: right;
}
.login-actions .submit {
  padding-left: 30px;
  padding-right: 30px;
}
.login-actions > * {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 300;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  text-rendering: optimizeLegibility;
  margin-left: 15px;
}
/* Inputs */
input,
textarea {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.input-text,
.input-text-area {
  height: 40px;
  border: 1px solid #ffffff;
  /*varwhite*/
  border-radius: 2px;
  font-size: 16px;
  line-height: 1.3em;
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}
.input-text.small,
.input-text-area.small {
  width: 200px;
}
.input-text label,
.input-text-area label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  background: #ffffff;
  /*varwhite*/
  height: 100%;
  margin: 0px;
  padding: 0;
  position: absolute;
  left: 0;
  color: black;
  /*varblack*/
  line-height: 40px;
  width: 80px;
  text-align: center;
}
.input-text label i,
.input-text-area label i {
  font-size: 0.9em;
}
.input-text .tooltip,
.input-text-area .tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
  font-size: 0.8em;
}
.input-text .message-error,
.input-text-area .message-error {
  display: none;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
}
.input-text.error .message-error,
.input-text-area.error .message-error {
  display: block;
}
.input-text-area {
  height: 80px;
}
.input-text input,
.input-text-area textarea {
  display: block;
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  height: 100%;
  width: 100%;
  padding: 0 10px;
}
.input-text-area textarea {
  resize: none;
  padding: 10px;
}
.input-text .input-text-container {
  padding-left: 80px;
  height: 100%;
}
.input-text label + input {
  padding-left: 90px;
}
.input-text label.large {
  width: 100px;
}
.input-text label.large + input {
  padding-left: 110px;
}
.input-text label.mega {
  width: 200px;
}
.input-text label.mega + input {
  padding-left: 210px;
}
.input-text.input-text-dollar input {
  padding-left: 10px;
  text-align: right;
}
.input-text.input-text-dollar input:after {
  content: "$";
  font-color: inherit;
  font-size: inherit;
  line-height: 42px;
  position: absolute;
  margin-left: -3px;
  top: 0;
}
.hidden {
  display: none;
}
/*End Inputs*/
.countdown-cover > * {
  visibility: hidden;
}
.countdown-cover:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.countdown-cover:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: attr(data-countdown);
  display: block;
  text-align: center;
}
.countdown-cover:after {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
.countdown-cover:hover:after {
  content: "" !important;
  font-family: FontAwesome;
}
/*Buttons*/
.submit {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: inline-block;
  color: white;
  cursor: pointer;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #ffffff;
  /* Loading Button */
}
.submit.borderless {
  border: none;
  padding: 0;
}
.submit.loading > * {
  visibility: hidden;
}
.submit.loading:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.submit.loading:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: "";
  display: block;
  text-align: center;
}
.submit.loading:after {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.submit.countdown > * {
  visibility: hidden;
}
.submit.countdown:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.submit.countdown:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: attr(data-countdown);
  display: block;
  text-align: center;
}
.submit.countdown:after {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
.submit.countdown:hover:after {
  content: "" !important;
  font-family: FontAwesome;
}
.submit.blue {
  background-color: #57c0f8;
}
.input-checkbox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: inline-block;
  color: white;
  cursor: pointer;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #ffffff;
  /* Loading Button */
  padding: 0 15px;
}
.input-checkbox.borderless {
  border: none;
  padding: 0;
}
.input-checkbox.loading > * {
  visibility: hidden;
}
.input-checkbox.loading:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.input-checkbox.loading:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: "";
  display: block;
  text-align: center;
}
.input-checkbox.loading:after {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.input-checkbox.countdown > * {
  visibility: hidden;
}
.input-checkbox.countdown:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.input-checkbox.countdown:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: attr(data-countdown);
  display: block;
  text-align: center;
}
.input-checkbox.countdown:after {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
.input-checkbox.countdown:hover:after {
  content: "" !important;
  font-family: FontAwesome;
}
.input-checkbox.blue {
  background-color: #57c0f8;
}
.input-checkbox.inline {
  display: inline-block;
  width: auto;
  height: 34px;
  line-height: 34px;
  min-width: 34px;
  text-align: center;
  padding: 0 5px;
  font-size: 14px;
}
.input-checkbox input {
  color: inherit;
  cursor: pointer;
  visibility: hidden;
}
.input-checkbox input + options {
  cursor: pointer;
  color: inherit;
  visibility: visible;
  font-size: 16px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.input-checkbox input + options i span.tooltip {
  font-weight: 400;
  font-family: "Verb", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Georgia", sans-serif;
  position: absolute;
  bottom: -25px;
  left: 0;
  font-size: 14px;
  width: 220px;
  visibility: hidden;
  text-align: left;
}
.input-checkbox input:hover:checked + options > *.checked span.tooltip {
  visibility: visible;
  opacity: 1;
}
.input-checkbox input:hover:not(:checked) + options > *:not(.checked) span.tooltip {
  visibility: visible;
  opacity: 1;
}
.input-checkbox input:not(:checked) + options {
  background-color: transparent;
}
.input-checkbox input:not(:checked) + options > *.checked {
  display: none;
}
.input-checkbox input:checked + options {
  background-color: inherit;
}
.input-checkbox input:checked + options > *:not(.checked) {
  display: none;
}
label.checkbox {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: -6px;
  vertical-align: baseline;
}
label.checkbox input[type=checkbox] {
  width: 22px;
  height: 22px;
  line-height: 22px;
  visibility: hidden;
  position: relative;
  margin-right: 10px;
  border-color: inherit;
  color: inherit;
  vertical-align: baseline;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
label.checkbox input[type=checkbox]:after {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  font-family: FontAwesome;
  visibility: visible;
  border-radius: 3px;
  border: 1px solid;
  border-color: inherit;
  text-align: center;
  color: inherit;
}
label.checkbox input[type=checkbox]:checked:after {
  content: "";
}
/* Video Wrapper */
.videoWrapper {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Input Image */
.input-image {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  color: white;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #ffffff;
  /* Loading Button */
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('');
  position: relative;
  overflow: hidden;
}
.input-image.borderless {
  border: none;
  padding: 0;
}
.input-image.loading > * {
  visibility: hidden;
}
.input-image.loading:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.input-image.loading:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: "";
  display: block;
  text-align: center;
}
.input-image.loading:after {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.input-image.countdown > * {
  visibility: hidden;
}
.input-image.countdown:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
.input-image.countdown:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: attr(data-countdown);
  display: block;
  text-align: center;
}
.input-image.countdown:after {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
.input-image.countdown:hover:after {
  content: "" !important;
  font-family: FontAwesome;
}
.input-image.blue {
  background-color: #57c0f8;
}
.input-image input {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 100;
}
.input-image:not(.preview):after {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: FontAwesome;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 20px;
  width: 20px;
  margin-top: -10px;
  margin-left: -10px;
  display: inline-block;
  content: "";
  text-align: center;
  font-size: 20px;
}
.input-image:not(.preview):hover:after {
  content: "";
}
form .submit {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: inline-block;
  color: white;
  cursor: pointer;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #ffffff;
  /* Loading Button */
}
form .submit.borderless {
  border: none;
  padding: 0;
}
form .submit.loading > * {
  visibility: hidden;
}
form .submit.loading:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
form .submit.loading:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: "";
  display: block;
  text-align: center;
}
form .submit.loading:after {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
form .submit.countdown > * {
  visibility: hidden;
}
form .submit.countdown:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  border-radius: inherit;
  background: inherit;
}
form .submit.countdown:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 15px;
  width: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
  display: inline-block;
  text-shadow: none;
  content: attr(data-countdown);
  display: block;
  text-align: center;
}
form .submit.countdown:after {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
form .submit.countdown:hover:after {
  content: "" !important;
  font-family: FontAwesome;
}
form .submit.blue {
  background-color: #57c0f8;
}
form .submit:hover {
  opacity: 0.8;
}
form .submit:active {
  opacity: 1.0;
}
form .formly-error {
  -webkit-animation: shake 0.6s 0 linear;
  -moz-animation: shake 0.6s 0 linear;
  -ms-animation: shake 0.6s 0 linear;
}
form.error {
  -webkit-animation: shake 0.6s 0 linear;
  -moz-animation: shake 0.6s 0 linear;
  -ms-animation: shake 0.6s 0 linear;
}
form.saving:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
}
/*End Buttons*/
.subtle-link {
  border: none;
  text-decoration: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.subtle-link:hover {
  border: none;
}
/* Notification Panel */
.notification-panel {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 0;
  line-height: 24px;
  font-size: 16px;
  background: inherit;
  color: white;
  text-align: center;
  z-index: 1000;
  -webkit-transform: translate(0, -40px);
  -moz-transform: translate(0, -40px);
  -ms-transform: translate(0, -40px);
  -o-transform: translate(0, -40px);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
}
.notification-panel.show {
  -webkit-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  -o-transform: translate(0, 0px);
}
.notification-panel.red {
  background: #FF5F5F;
}
/* Simple Navigation */
.simple-nav {
  position: absolute;
  top: 25px;
  left: 25px;
}
.simple-nav a {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
/* ColorPicker */
/* Color Selection */
.color-options ul li {
  float: left;
  margin-right: 10px;
}
.color-options ul li .color-option {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #000000;
  cursor: pointer;
}
#pdf-preview .pdf-magic {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/img/job-apps-magic.svg');
  background-position: center;
  background-size: contain;
  height: 190px;
  padding: 10px 20px;
  margin: 20px 80px;
}
@media (max-width: 600px) {
  #pdf-preview .pdf-magic {
    margin: 20px 20px;
  }
}
/* COLORS */
/* Blue */
html.blue {
  background-color: #f5f6f8;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.blue.dark {
  background-color: #4a4d5a;
}
html.blue body {
  background-color: inherit;
}
html.blue .large-image,
html.blue .notification-panel {
  background-color: #4a4d5a;
}
html.blue .highlights-page div.sections {
  background: #f5f6f8;
}
html.blue .highlights-page .point .point-body {
  border-bottom-color: rgba(74, 77, 90, 0.1);
}
html.blue .details-background {
  background: #f5f6f8;
}
html.blue #email-preview:before {
  background: #4a4d5a;
}
.submit.new html.blue:after {
  background: #f5f6f8;
  color: #4a4d5a;
}
html.blue .video-preview {
  color: #4a4d5a;
  background-color: transparent;
}
html.blue.touch .video-preview,
html.blue .video-preview:hover {
  background-color: #4a4d5a;
  color: #f5f6f8;
}
html.blue .nav-bar,
html.blue .nav-bar .dropdown-button {
  color: #4a4d5a !important;
}
html.blue .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #4a4d5a;
}
html.blue .section-header h3,
html.blue .details .last-name {
  color: #656873;
}
html.blue .navigation ul li > a {
  border-color: #4a4d5a;
}
html.blue .navigation ul li > a span {
  background: #4a4d5a;
  color: #f5f6f8;
}
html.blue .navigation ul li > a:hover {
  background: #4a4d5a;
  color: #f5f6f8;
}
html.blue .loading-animation .circle {
  background: #4a4d5a;
}
html.blue .share-buttons {
  display: inline-block;
}
html.blue .share-buttons > a {
  border: 3px solid #4a4d5a;
  color: #4a4d5a;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.blue .share-buttons > a:hover {
  color: #f5f6f8;
  background: #4a4d5a;
}
html.blue .stages.life > li {
  color: #4a4d5a;
}
html.blue .stages.life > li:before {
  color: #a0a2a9;
  border: 1px solid #a0a2a9;
}
html.blue .section-white {
  background-color: #f5f6f8;
}
html.blue .section-white .line {
  background: #4a4d5a;
}
html.blue .section-white .circle > div {
  background-color: #4a4d5a;
}
html.blue .section-white .point-reference .circle .circle-inner {
  border-color: #4a4d5a;
}
html.blue .section-white .point-reference .reference-links a {
  border-color: #4a4d5a;
  color: #4a4d5a;
}
html.blue .section-white a:after {
  background-color: #4a4d5a;
}
html.blue .section-white .progress-bar {
  background-color: #b1b2b9;
}
html.blue .section-white .progress-bar .bar {
  background-color: #4a4d5a;
}
html.blue .section-white .popup-plain {
  border-color: #4a4d5a;
}
html.blue .section-white .list-flat {
  background: #f5f6f8;
  border-color: #4a4d5a;
}
html.blue .section-white .list-flat li {
  border-bottom-color: #4a4d5a;
}
html.blue .section-white .list-flat li .indicator {
  border-color: #4a4d5a;
}
html.blue .section-white .point .action-items a:hover,
html.blue .section-white .point .action-items a.selected {
  background: #4a4d5a;
  color: #f5f6f8;
}
html.blue .section-white .point .point-picture .picture-point-image {
  border-color: #4a4d5a;
  background-color: rgba(74, 77, 90, 0.9);
  box-sizing: border-box;
}
html.blue .section-white .point .point-picture .picture-point-image.input-image {
  color: #f5f6f8;
}
html.blue .section-white .point-limit {
  border-color: #4a4d5a;
}
html.blue .section-white label.checkbox {
  border-color: #f5f6f8;
  color: #f5f6f8;
}
html.blue .section-white .submit,
html.blue .section-white .input-checkbox,
html.blue .section-white .input-image {
  border-color: #5c5f6b;
  color: #4a4d5a;
}
html.blue .section-white .submit:hover,
html.blue .section-white .input-checkbox:hover,
html.blue .section-white .input-image:hover {
  border-color: #4a4d5a;
}
html.blue .section-white .submit:active,
html.blue .section-white .input-checkbox:active,
html.blue .section-white .input-image:active {
  color: #5c5f6b;
}
html.blue .section-white .input-checkbox input:checked + options {
  color: #f5f6f8;
  background-color: #4a4d5a;
}
html.blue .section-white .input-checkbox input:checked + options span.tooltip {
  color: #4a4d5a;
}
html.blue .section-white .stages-applications.stages:after {
  background: #4a4d5a;
}
html.blue .section-white .stages-applications.stages > li {
  color: #4a4d5a;
}
html.blue .section-white .stages-applications.stages > li:before {
  color: #f5f6f8;
  background: #4a4d5a;
}
html.blue .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #4a4d5a;
  background: #f5f6f8;
  border-color: #4a4d5a;
}
html.blue .section-white .chart {
  background: #f5f6f8;
  color: #4a4d5a;
  border-color: #4a4d5a;
}
html.blue .section-white .input-checkbox,
html.blue .section-white .input-text,
html.blue .section-white .input-text-area {
  color: #4a4d5a;
  border-color: #4a4d5a;
}
html.blue .section-white .input-checkbox label,
html.blue .section-white .input-text label,
html.blue .section-white .input-text-area label {
  background: #4a4d5a;
  color: #f5f6f8;
}
html.blue .section-white .input-checkbox.hover:not(:hover),
html.blue .section-white .input-text.hover:not(:hover),
html.blue .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(74, 77, 90, 0.1);
}
html.blue .section-white .point-placeholder .drop-zone {
  border-color: #4a4d5a;
}
html.blue .section-white,
html.blue .section-white .section-header h2 {
  color: #4a4d5a;
}
html.blue .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(74, 77, 90, 0.7);
}
html.blue .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(74, 77, 90, 0.7);
}
html.blue .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(74, 77, 90, 0.7);
}
html.blue .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(74, 77, 90, 0.7);
}
html.blue .section-white .circle,
html.blue .section-white .social-icon.symbol,
html.blue .section-white .line {
  color: #f5f6f8;
}
html.blue .section-white .point:not(.point-reference) .point-body {
  color: #5c5f6b;
}
html.blue .section-black {
  background-color: #4a4d5a;
}
html.blue .section-black .line {
  background: #f5f6f8;
}
html.blue .section-black .circle > div {
  background-color: #f5f6f8;
}
html.blue .section-black .point-reference .circle .circle-inner {
  border-color: #f5f6f8;
}
html.blue .section-black .point-reference .reference-links a {
  border-color: #f5f6f8;
  color: #f5f6f8;
}
html.blue .section-black a:after {
  background-color: #f5f6f8;
}
html.blue .section-black .progress-bar {
  background-color: #8e9199;
}
html.blue .section-black .progress-bar .bar {
  background-color: #f5f6f8;
}
html.blue .section-black .popup-plain {
  border-color: #f5f6f8;
}
html.blue .section-black .list-flat {
  background: #4a4d5a;
  border-color: #f5f6f8;
}
html.blue .section-black .list-flat li {
  border-bottom-color: #f5f6f8;
}
html.blue .section-black .list-flat li .indicator {
  border-color: #f5f6f8;
}
html.blue .section-black .point .action-items a:hover,
html.blue .section-black .point .action-items a.selected {
  background: #f5f6f8;
  color: #4a4d5a;
}
html.blue .section-black .point .point-picture .picture-point-image {
  border-color: #f5f6f8;
  background-color: rgba(245, 246, 248, 0.9);
  box-sizing: border-box;
}
html.blue .section-black .point .point-picture .picture-point-image.input-image {
  color: #4a4d5a;
}
html.blue .section-black .point-limit {
  border-color: #f5f6f8;
}
html.blue .section-black label.checkbox {
  border-color: #4a4d5a;
  color: #4a4d5a;
}
html.blue .section-black .submit,
html.blue .section-black .input-checkbox,
html.blue .section-black .input-image {
  border-color: #dddddf;
  color: #f5f6f8;
}
html.blue .section-black .submit:hover,
html.blue .section-black .input-checkbox:hover,
html.blue .section-black .input-image:hover {
  border-color: #f5f6f8;
}
html.blue .section-black .submit:active,
html.blue .section-black .input-checkbox:active,
html.blue .section-black .input-image:active {
  color: #dddddf;
}
html.blue .section-black .input-checkbox input:checked + options {
  color: #4a4d5a;
  background-color: #f5f6f8;
}
html.blue .section-black .input-checkbox input:checked + options span.tooltip {
  color: #f5f6f8;
}
html.blue .section-black .stages-applications.stages:after {
  background: #f5f6f8;
}
html.blue .section-black .stages-applications.stages > li {
  color: #f5f6f8;
}
html.blue .section-black .stages-applications.stages > li:before {
  color: #4a4d5a;
  background: #f5f6f8;
}
html.blue .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #f5f6f8;
  background: #4a4d5a;
  border-color: #f5f6f8;
}
html.blue .section-black .chart {
  background: #4a4d5a;
  color: #f5f6f8;
  border-color: #f5f6f8;
}
html.blue .section-black .input-checkbox,
html.blue .section-black .input-text,
html.blue .section-black .input-text-area {
  color: #f5f6f8;
  border-color: #f5f6f8;
}
html.blue .section-black .input-checkbox label,
html.blue .section-black .input-text label,
html.blue .section-black .input-text-area label {
  background: #f5f6f8;
  color: #4a4d5a;
}
html.blue .section-black .input-checkbox.hover:not(:hover),
html.blue .section-black .input-text.hover:not(:hover),
html.blue .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(245, 246, 248, 0.1);
}
html.blue .section-black .point-placeholder .drop-zone {
  border-color: #f5f6f8;
}
html.blue .section-black,
html.blue .section-black .section-header h2 {
  color: #f5f6f8;
}
html.blue .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(245, 246, 248, 0.7);
}
html.blue .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(245, 246, 248, 0.7);
}
html.blue .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(245, 246, 248, 0.7);
}
html.blue .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(245, 246, 248, 0.7);
}
html.blue .section-black .circle,
html.blue .section-black .social-icon.symbol,
html.blue .section-black .line {
  color: #4a4d5a;
}
html.blue .section-black .point:not(.point-reference) .point-body {
  color: #dddddf;
}
html.blue.modal-page {
  background: #4a4d5a;
}
html.blue.modal-page body {
  background: #4a4d5a;
}
html.blue .modal-container .shield {
  background: fade-out(#4a4d5a, 50%);
}
html.blue .modal {
  border-color: #565968;
  color: #4a4d5a;
}
html.blue .modal .input-checkbox,
html.blue .modal .input-text,
html.blue .modal .input-text-area {
  color: #4a4d5a;
  border-color: #4a4d5a;
}
html.blue .modal .input-checkbox label,
html.blue .modal .input-text label,
html.blue .modal .input-text-area label {
  background: #4a4d5a;
  color: #f5f6f8;
}
html.blue .modal .input-checkbox.hover:not(:hover),
html.blue .modal .input-text.hover:not(:hover),
html.blue .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(74, 77, 90, 0.1);
}
html.blue .modal .plan-actions {
  border-color: #565968;
}
html.blue .modal .submit {
  border-color: #565968;
  background: #565968;
  color: #f5f6f8;
}
html.blue .modal-explain-payment .payments .payment {
  border-color: #616576;
}
html.blue .modal-explain-payment .payments .payment label {
  background: #616576;
  color: #f5f6f8;
}
html.blue .modal-explain-payment .payments .payment .icons {
  border-top-color: #616576;
}
html.blue .coffee-svg {
  fill: #4a4d5a;
}
.color-options .color-option.blue {
  background: #4a4d5a;
}
/* Black & DEFAULT */
html.black,
html {
  background-color: #fafafa;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.black.dark,
html.dark {
  background-color: #484848;
}
html.black body,
html body {
  background-color: inherit;
}
html.black .large-image,
html .large-image,
html.black .notification-panel,
html .notification-panel {
  background-color: #484848;
}
html.black .highlights-page div.sections,
html .highlights-page div.sections {
  background: #fafafa;
}
html.black .highlights-page .point .point-body,
html .highlights-page .point .point-body {
  border-bottom-color: rgba(72, 72, 72, 0.1);
}
html.black .details-background,
html .details-background {
  background: #fafafa;
}
html.black #email-preview:before,
html #email-preview:before {
  background: #484848;
}
.submit.new html.black:after,
.submit.new html:after {
  background: #fafafa;
  color: #484848;
}
html.black .video-preview,
html .video-preview {
  color: #484848;
  background-color: transparent;
}
html.black.touch .video-preview,
html.touch .video-preview,
html.black .video-preview:hover,
html .video-preview:hover {
  background-color: #484848;
  color: #fafafa;
}
html.black .nav-bar,
html .nav-bar,
html.black .nav-bar .dropdown-button,
html .nav-bar .dropdown-button {
  color: #484848 !important;
}
html.black .nav-bar .sumry-logo svg .sumry-logo-inner,
html .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #484848;
}
html.black .section-header h3,
html .section-header h3,
html.black .details .last-name,
html .details .last-name {
  color: #636363;
}
html.black .navigation ul li > a,
html .navigation ul li > a {
  border-color: #484848;
}
html.black .navigation ul li > a span,
html .navigation ul li > a span {
  background: #484848;
  color: #fafafa;
}
html.black .navigation ul li > a:hover,
html .navigation ul li > a:hover {
  background: #484848;
  color: #fafafa;
}
html.black .loading-animation .circle,
html .loading-animation .circle {
  background: #484848;
}
html.black .share-buttons,
html .share-buttons {
  display: inline-block;
}
html.black .share-buttons > a,
html .share-buttons > a {
  border: 3px solid #484848;
  color: #484848;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.black .share-buttons > a:hover,
html .share-buttons > a:hover {
  color: #fafafa;
  background: #484848;
}
html.black .stages.life > li,
html .stages.life > li {
  color: #484848;
}
html.black .stages.life > li:before,
html .stages.life > li:before {
  color: #a1a1a1;
  border: 1px solid #a1a1a1;
}
html.black .section-white,
html .section-white {
  background-color: #fafafa;
}
html.black .section-white .line,
html .section-white .line {
  background: #484848;
}
html.black .section-white .circle > div,
html .section-white .circle > div {
  background-color: #484848;
}
html.black .section-white .point-reference .circle .circle-inner,
html .section-white .point-reference .circle .circle-inner {
  border-color: #484848;
}
html.black .section-white .point-reference .reference-links a,
html .section-white .point-reference .reference-links a {
  border-color: #484848;
  color: #484848;
}
html.black .section-white a:after,
html .section-white a:after {
  background-color: #484848;
}
html.black .section-white .progress-bar,
html .section-white .progress-bar {
  background-color: #b3b3b3;
}
html.black .section-white .progress-bar .bar,
html .section-white .progress-bar .bar {
  background-color: #484848;
}
html.black .section-white .popup-plain,
html .section-white .popup-plain {
  border-color: #484848;
}
html.black .section-white .list-flat,
html .section-white .list-flat {
  background: #fafafa;
  border-color: #484848;
}
html.black .section-white .list-flat li,
html .section-white .list-flat li {
  border-bottom-color: #484848;
}
html.black .section-white .list-flat li .indicator,
html .section-white .list-flat li .indicator {
  border-color: #484848;
}
html.black .section-white .point .action-items a:hover,
html .section-white .point .action-items a:hover,
html.black .section-white .point .action-items a.selected,
html .section-white .point .action-items a.selected {
  background: #484848;
  color: #fafafa;
}
html.black .section-white .point .point-picture .picture-point-image,
html .section-white .point .point-picture .picture-point-image {
  border-color: #484848;
  background-color: rgba(72, 72, 72, 0.9);
  box-sizing: border-box;
}
html.black .section-white .point .point-picture .picture-point-image.input-image,
html .section-white .point .point-picture .picture-point-image.input-image {
  color: #fafafa;
}
html.black .section-white .point-limit,
html .section-white .point-limit {
  border-color: #484848;
}
html.black .section-white label.checkbox,
html .section-white label.checkbox {
  border-color: #fafafa;
  color: #fafafa;
}
html.black .section-white .submit,
html .section-white .submit,
html.black .section-white .input-checkbox,
html .section-white .input-checkbox,
html.black .section-white .input-image,
html .section-white .input-image {
  border-color: #5a5a5a;
  color: #484848;
}
html.black .section-white .submit:hover,
html .section-white .submit:hover,
html.black .section-white .input-checkbox:hover,
html .section-white .input-checkbox:hover,
html.black .section-white .input-image:hover,
html .section-white .input-image:hover {
  border-color: #484848;
}
html.black .section-white .submit:active,
html .section-white .submit:active,
html.black .section-white .input-checkbox:active,
html .section-white .input-checkbox:active,
html.black .section-white .input-image:active,
html .section-white .input-image:active {
  color: #5a5a5a;
}
html.black .section-white .input-checkbox input:checked + options,
html .section-white .input-checkbox input:checked + options {
  color: #fafafa;
  background-color: #484848;
}
html.black .section-white .input-checkbox input:checked + options span.tooltip,
html .section-white .input-checkbox input:checked + options span.tooltip {
  color: #484848;
}
html.black .section-white .stages-applications.stages:after,
html .section-white .stages-applications.stages:after {
  background: #484848;
}
html.black .section-white .stages-applications.stages > li,
html .section-white .stages-applications.stages > li {
  color: #484848;
}
html.black .section-white .stages-applications.stages > li:before,
html .section-white .stages-applications.stages > li:before {
  color: #fafafa;
  background: #484848;
}
html.black .section-white .stages-applications.stages > li:not(.complete):not(:active):before,
html .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #484848;
  background: #fafafa;
  border-color: #484848;
}
html.black .section-white .chart,
html .section-white .chart {
  background: #fafafa;
  color: #484848;
  border-color: #484848;
}
html.black .section-white .input-checkbox,
html .section-white .input-checkbox,
html.black .section-white .input-text,
html .section-white .input-text,
html.black .section-white .input-text-area,
html .section-white .input-text-area {
  color: #484848;
  border-color: #484848;
}
html.black .section-white .input-checkbox label,
html .section-white .input-checkbox label,
html.black .section-white .input-text label,
html .section-white .input-text label,
html.black .section-white .input-text-area label,
html .section-white .input-text-area label {
  background: #484848;
  color: #fafafa;
}
html.black .section-white .input-checkbox.hover:not(:hover),
html .section-white .input-checkbox.hover:not(:hover),
html.black .section-white .input-text.hover:not(:hover),
html .section-white .input-text.hover:not(:hover),
html.black .section-white .input-text-area.hover:not(:hover),
html .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(72, 72, 72, 0.1);
}
html.black .section-white .point-placeholder .drop-zone,
html .section-white .point-placeholder .drop-zone {
  border-color: #484848;
}
html.black .section-white,
html .section-white,
html.black .section-white .section-header h2,
html .section-white .section-header h2 {
  color: #484848;
}
html.black .section-white ::-webkit-input-placeholder,
html .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(72, 72, 72, 0.7);
}
html.black .section-white :-moz-placeholder,
html .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(72, 72, 72, 0.7);
}
html.black .section-white ::-moz-placeholder,
html .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(72, 72, 72, 0.7);
}
html.black .section-white :-ms-input-placeholder,
html .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(72, 72, 72, 0.7);
}
html.black .section-white .circle,
html .section-white .circle,
html.black .section-white .social-icon.symbol,
html .section-white .social-icon.symbol,
html.black .section-white .line,
html .section-white .line {
  color: #fafafa;
}
html.black .section-white .point:not(.point-reference) .point-body,
html .section-white .point:not(.point-reference) .point-body {
  color: #5a5a5a;
}
html.black .section-black,
html .section-black {
  background-color: #484848;
}
html.black .section-black .line,
html .section-black .line {
  background: #fafafa;
}
html.black .section-black .circle > div,
html .section-black .circle > div {
  background-color: #fafafa;
}
html.black .section-black .point-reference .circle .circle-inner,
html .section-black .point-reference .circle .circle-inner {
  border-color: #fafafa;
}
html.black .section-black .point-reference .reference-links a,
html .section-black .point-reference .reference-links a {
  border-color: #fafafa;
  color: #fafafa;
}
html.black .section-black a:after,
html .section-black a:after {
  background-color: #fafafa;
}
html.black .section-black .progress-bar,
html .section-black .progress-bar {
  background-color: #8f8f8f;
}
html.black .section-black .progress-bar .bar,
html .section-black .progress-bar .bar {
  background-color: #fafafa;
}
html.black .section-black .popup-plain,
html .section-black .popup-plain {
  border-color: #fafafa;
}
html.black .section-black .list-flat,
html .section-black .list-flat {
  background: #484848;
  border-color: #fafafa;
}
html.black .section-black .list-flat li,
html .section-black .list-flat li {
  border-bottom-color: #fafafa;
}
html.black .section-black .list-flat li .indicator,
html .section-black .list-flat li .indicator {
  border-color: #fafafa;
}
html.black .section-black .point .action-items a:hover,
html .section-black .point .action-items a:hover,
html.black .section-black .point .action-items a.selected,
html .section-black .point .action-items a.selected {
  background: #fafafa;
  color: #484848;
}
html.black .section-black .point .point-picture .picture-point-image,
html .section-black .point .point-picture .picture-point-image {
  border-color: #fafafa;
  background-color: rgba(250, 250, 250, 0.9);
  box-sizing: border-box;
}
html.black .section-black .point .point-picture .picture-point-image.input-image,
html .section-black .point .point-picture .picture-point-image.input-image {
  color: #484848;
}
html.black .section-black .point-limit,
html .section-black .point-limit {
  border-color: #fafafa;
}
html.black .section-black label.checkbox,
html .section-black label.checkbox {
  border-color: #484848;
  color: #484848;
}
html.black .section-black .submit,
html .section-black .submit,
html.black .section-black .input-checkbox,
html .section-black .input-checkbox,
html.black .section-black .input-image,
html .section-black .input-image {
  border-color: #e1e1e1;
  color: #fafafa;
}
html.black .section-black .submit:hover,
html .section-black .submit:hover,
html.black .section-black .input-checkbox:hover,
html .section-black .input-checkbox:hover,
html.black .section-black .input-image:hover,
html .section-black .input-image:hover {
  border-color: #fafafa;
}
html.black .section-black .submit:active,
html .section-black .submit:active,
html.black .section-black .input-checkbox:active,
html .section-black .input-checkbox:active,
html.black .section-black .input-image:active,
html .section-black .input-image:active {
  color: #e1e1e1;
}
html.black .section-black .input-checkbox input:checked + options,
html .section-black .input-checkbox input:checked + options {
  color: #484848;
  background-color: #fafafa;
}
html.black .section-black .input-checkbox input:checked + options span.tooltip,
html .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fafafa;
}
html.black .section-black .stages-applications.stages:after,
html .section-black .stages-applications.stages:after {
  background: #fafafa;
}
html.black .section-black .stages-applications.stages > li,
html .section-black .stages-applications.stages > li {
  color: #fafafa;
}
html.black .section-black .stages-applications.stages > li:before,
html .section-black .stages-applications.stages > li:before {
  color: #484848;
  background: #fafafa;
}
html.black .section-black .stages-applications.stages > li:not(.complete):not(:active):before,
html .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fafafa;
  background: #484848;
  border-color: #fafafa;
}
html.black .section-black .chart,
html .section-black .chart {
  background: #484848;
  color: #fafafa;
  border-color: #fafafa;
}
html.black .section-black .input-checkbox,
html .section-black .input-checkbox,
html.black .section-black .input-text,
html .section-black .input-text,
html.black .section-black .input-text-area,
html .section-black .input-text-area {
  color: #fafafa;
  border-color: #fafafa;
}
html.black .section-black .input-checkbox label,
html .section-black .input-checkbox label,
html.black .section-black .input-text label,
html .section-black .input-text label,
html.black .section-black .input-text-area label,
html .section-black .input-text-area label {
  background: #fafafa;
  color: #484848;
}
html.black .section-black .input-checkbox.hover:not(:hover),
html .section-black .input-checkbox.hover:not(:hover),
html.black .section-black .input-text.hover:not(:hover),
html .section-black .input-text.hover:not(:hover),
html.black .section-black .input-text-area.hover:not(:hover),
html .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(250, 250, 250, 0.1);
}
html.black .section-black .point-placeholder .drop-zone,
html .section-black .point-placeholder .drop-zone {
  border-color: #fafafa;
}
html.black .section-black,
html .section-black,
html.black .section-black .section-header h2,
html .section-black .section-header h2 {
  color: #fafafa;
}
html.black .section-black ::-webkit-input-placeholder,
html .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(250, 250, 250, 0.7);
}
html.black .section-black :-moz-placeholder,
html .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(250, 250, 250, 0.7);
}
html.black .section-black ::-moz-placeholder,
html .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(250, 250, 250, 0.7);
}
html.black .section-black :-ms-input-placeholder,
html .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(250, 250, 250, 0.7);
}
html.black .section-black .circle,
html .section-black .circle,
html.black .section-black .social-icon.symbol,
html .section-black .social-icon.symbol,
html.black .section-black .line,
html .section-black .line {
  color: #484848;
}
html.black .section-black .point:not(.point-reference) .point-body,
html .section-black .point:not(.point-reference) .point-body {
  color: #e1e1e1;
}
html.black.modal-page,
html.modal-page {
  background: #484848;
}
html.black.modal-page body,
html.modal-page body {
  background: #484848;
}
html.black .modal-container .shield,
html .modal-container .shield {
  background: fade-out(#484848, 50%);
}
html.black .modal,
html .modal {
  border-color: #555555;
  color: #484848;
}
html.black .modal .input-checkbox,
html .modal .input-checkbox,
html.black .modal .input-text,
html .modal .input-text,
html.black .modal .input-text-area,
html .modal .input-text-area {
  color: #484848;
  border-color: #484848;
}
html.black .modal .input-checkbox label,
html .modal .input-checkbox label,
html.black .modal .input-text label,
html .modal .input-text label,
html.black .modal .input-text-area label,
html .modal .input-text-area label {
  background: #484848;
  color: #fafafa;
}
html.black .modal .input-checkbox.hover:not(:hover),
html .modal .input-checkbox.hover:not(:hover),
html.black .modal .input-text.hover:not(:hover),
html .modal .input-text.hover:not(:hover),
html.black .modal .input-text-area.hover:not(:hover),
html .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(72, 72, 72, 0.1);
}
html.black .modal .plan-actions,
html .modal .plan-actions {
  border-color: #555555;
}
html.black .modal .submit,
html .modal .submit {
  border-color: #555555;
  background: #555555;
  color: #fafafa;
}
html.black .modal-explain-payment .payments .payment,
html .modal-explain-payment .payments .payment {
  border-color: #626262;
}
html.black .modal-explain-payment .payments .payment label,
html .modal-explain-payment .payments .payment label {
  background: #626262;
  color: #fafafa;
}
html.black .modal-explain-payment .payments .payment .icons,
html .modal-explain-payment .payments .payment .icons {
  border-top-color: #626262;
}
html.black .coffee-svg,
html .coffee-svg {
  fill: #484848;
}
.color-option.black {
  background: #484848;
}
/* brown */
html.brown {
  background-color: #fff5eb;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.brown.dark {
  background-color: #43392f;
}
html.brown body {
  background-color: inherit;
}
html.brown .large-image,
html.brown .notification-panel {
  background-color: #43392f;
}
html.brown .highlights-page div.sections {
  background: #fff5eb;
}
html.brown .highlights-page .point .point-body {
  border-bottom-color: rgba(67, 57, 47, 0.1);
}
html.brown .details-background {
  background: #fff5eb;
}
html.brown #email-preview:before {
  background: #43392f;
}
.submit.new html.brown:after {
  background: #fff5eb;
  color: #43392f;
}
html.brown .video-preview {
  color: #43392f;
  background-color: transparent;
}
html.brown.touch .video-preview,
html.brown .video-preview:hover {
  background-color: #43392f;
  color: #fff5eb;
}
html.brown .nav-bar,
html.brown .nav-bar .dropdown-button {
  color: #43392f !important;
}
html.brown .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #43392f;
}
html.brown .section-header h3,
html.brown .details .last-name {
  color: #5f574e;
}
html.brown .navigation ul li > a {
  border-color: #43392f;
}
html.brown .navigation ul li > a span {
  background: #43392f;
  color: #fff5eb;
}
html.brown .navigation ul li > a:hover {
  background: #43392f;
  color: #fff5eb;
}
html.brown .loading-animation .circle {
  background: #43392f;
}
html.brown .share-buttons {
  display: inline-block;
}
html.brown .share-buttons > a {
  border: 3px solid #43392f;
  color: #43392f;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.brown .share-buttons > a:hover {
  color: #fff5eb;
  background: #43392f;
}
html.brown .stages.life > li {
  color: #43392f;
}
html.brown .stages.life > li:before {
  color: #a1978d;
  border: 1px solid #a1978d;
}
html.brown .section-white {
  background-color: #fff5eb;
}
html.brown .section-white .line {
  background: #43392f;
}
html.brown .section-white .circle > div {
  background-color: #43392f;
}
html.brown .section-white .point-reference .circle .circle-inner {
  border-color: #43392f;
}
html.brown .section-white .point-reference .reference-links a {
  border-color: #43392f;
  color: #43392f;
}
html.brown .section-white a:after {
  background-color: #43392f;
}
html.brown .section-white .progress-bar {
  background-color: #b4aaa0;
}
html.brown .section-white .progress-bar .bar {
  background-color: #43392f;
}
html.brown .section-white .popup-plain {
  border-color: #43392f;
}
html.brown .section-white .list-flat {
  background: #fff5eb;
  border-color: #43392f;
}
html.brown .section-white .list-flat li {
  border-bottom-color: #43392f;
}
html.brown .section-white .list-flat li .indicator {
  border-color: #43392f;
}
html.brown .section-white .point .action-items a:hover,
html.brown .section-white .point .action-items a.selected {
  background: #43392f;
  color: #fff5eb;
}
html.brown .section-white .point .point-picture .picture-point-image {
  border-color: #43392f;
  background-color: rgba(67, 57, 47, 0.9);
  box-sizing: border-box;
}
html.brown .section-white .point .point-picture .picture-point-image.input-image {
  color: #fff5eb;
}
html.brown .section-white .point-limit {
  border-color: #43392f;
}
html.brown .section-white label.checkbox {
  border-color: #fff5eb;
  color: #fff5eb;
}
html.brown .section-white .submit,
html.brown .section-white .input-checkbox,
html.brown .section-white .input-image {
  border-color: #564d44;
  color: #43392f;
}
html.brown .section-white .submit:hover,
html.brown .section-white .input-checkbox:hover,
html.brown .section-white .input-image:hover {
  border-color: #43392f;
}
html.brown .section-white .submit:active,
html.brown .section-white .input-checkbox:active,
html.brown .section-white .input-image:active {
  color: #564d44;
}
html.brown .section-white .input-checkbox input:checked + options {
  color: #fff5eb;
  background-color: #43392f;
}
html.brown .section-white .input-checkbox input:checked + options span.tooltip {
  color: #43392f;
}
html.brown .section-white .stages-applications.stages:after {
  background: #43392f;
}
html.brown .section-white .stages-applications.stages > li {
  color: #43392f;
}
html.brown .section-white .stages-applications.stages > li:before {
  color: #fff5eb;
  background: #43392f;
}
html.brown .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #43392f;
  background: #fff5eb;
  border-color: #43392f;
}
html.brown .section-white .chart {
  background: #fff5eb;
  color: #43392f;
  border-color: #43392f;
}
html.brown .section-white .input-checkbox,
html.brown .section-white .input-text,
html.brown .section-white .input-text-area {
  color: #43392f;
  border-color: #43392f;
}
html.brown .section-white .input-checkbox label,
html.brown .section-white .input-text label,
html.brown .section-white .input-text-area label {
  background: #43392f;
  color: #fff5eb;
}
html.brown .section-white .input-checkbox.hover:not(:hover),
html.brown .section-white .input-text.hover:not(:hover),
html.brown .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(67, 57, 47, 0.1);
}
html.brown .section-white .point-placeholder .drop-zone {
  border-color: #43392f;
}
html.brown .section-white,
html.brown .section-white .section-header h2 {
  color: #43392f;
}
html.brown .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(67, 57, 47, 0.7);
}
html.brown .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(67, 57, 47, 0.7);
}
html.brown .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(67, 57, 47, 0.7);
}
html.brown .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(67, 57, 47, 0.7);
}
html.brown .section-white .circle,
html.brown .section-white .social-icon.symbol,
html.brown .section-white .line {
  color: #fff5eb;
}
html.brown .section-white .point:not(.point-reference) .point-body {
  color: #564d44;
}
html.brown .section-black {
  background-color: #43392f;
}
html.brown .section-black .line {
  background: #fff5eb;
}
html.brown .section-black .circle > div {
  background-color: #fff5eb;
}
html.brown .section-black .point-reference .circle .circle-inner {
  border-color: #fff5eb;
}
html.brown .section-black .point-reference .reference-links a {
  border-color: #fff5eb;
  color: #fff5eb;
}
html.brown .section-black a:after {
  background-color: #fff5eb;
}
html.brown .section-black .progress-bar {
  background-color: #8e847a;
}
html.brown .section-black .progress-bar .bar {
  background-color: #fff5eb;
}
html.brown .section-black .popup-plain {
  border-color: #fff5eb;
}
html.brown .section-black .list-flat {
  background: #43392f;
  border-color: #fff5eb;
}
html.brown .section-black .list-flat li {
  border-bottom-color: #fff5eb;
}
html.brown .section-black .list-flat li .indicator {
  border-color: #fff5eb;
}
html.brown .section-black .point .action-items a:hover,
html.brown .section-black .point .action-items a.selected {
  background: #fff5eb;
  color: #43392f;
}
html.brown .section-black .point .point-picture .picture-point-image {
  border-color: #fff5eb;
  background-color: rgba(255, 245, 235, 0.9);
  box-sizing: border-box;
}
html.brown .section-black .point .point-picture .picture-point-image.input-image {
  color: #43392f;
}
html.brown .section-black .point-limit {
  border-color: #fff5eb;
}
html.brown .section-black label.checkbox {
  border-color: #43392f;
  color: #43392f;
}
html.brown .section-black .submit,
html.brown .section-black .input-checkbox,
html.brown .section-black .input-image {
  border-color: #e6ddd4;
  color: #fff5eb;
}
html.brown .section-black .submit:hover,
html.brown .section-black .input-checkbox:hover,
html.brown .section-black .input-image:hover {
  border-color: #fff5eb;
}
html.brown .section-black .submit:active,
html.brown .section-black .input-checkbox:active,
html.brown .section-black .input-image:active {
  color: #e6ddd4;
}
html.brown .section-black .input-checkbox input:checked + options {
  color: #43392f;
  background-color: #fff5eb;
}
html.brown .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fff5eb;
}
html.brown .section-black .stages-applications.stages:after {
  background: #fff5eb;
}
html.brown .section-black .stages-applications.stages > li {
  color: #fff5eb;
}
html.brown .section-black .stages-applications.stages > li:before {
  color: #43392f;
  background: #fff5eb;
}
html.brown .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fff5eb;
  background: #43392f;
  border-color: #fff5eb;
}
html.brown .section-black .chart {
  background: #43392f;
  color: #fff5eb;
  border-color: #fff5eb;
}
html.brown .section-black .input-checkbox,
html.brown .section-black .input-text,
html.brown .section-black .input-text-area {
  color: #fff5eb;
  border-color: #fff5eb;
}
html.brown .section-black .input-checkbox label,
html.brown .section-black .input-text label,
html.brown .section-black .input-text-area label {
  background: #fff5eb;
  color: #43392f;
}
html.brown .section-black .input-checkbox.hover:not(:hover),
html.brown .section-black .input-text.hover:not(:hover),
html.brown .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(255, 245, 235, 0.1);
}
html.brown .section-black .point-placeholder .drop-zone {
  border-color: #fff5eb;
}
html.brown .section-black,
html.brown .section-black .section-header h2 {
  color: #fff5eb;
}
html.brown .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 245, 235, 0.7);
}
html.brown .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 245, 235, 0.7);
}
html.brown .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 245, 235, 0.7);
}
html.brown .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 245, 235, 0.7);
}
html.brown .section-black .circle,
html.brown .section-black .social-icon.symbol,
html.brown .section-black .line {
  color: #43392f;
}
html.brown .section-black .point:not(.point-reference) .point-body {
  color: #e6ddd4;
}
html.brown.modal-page {
  background: #43392f;
}
html.brown.modal-page body {
  background: #43392f;
}
html.brown .modal-container .shield {
  background: fade-out(#43392f, 50%);
}
html.brown .modal {
  border-color: #52463a;
  color: #43392f;
}
html.brown .modal .input-checkbox,
html.brown .modal .input-text,
html.brown .modal .input-text-area {
  color: #43392f;
  border-color: #43392f;
}
html.brown .modal .input-checkbox label,
html.brown .modal .input-text label,
html.brown .modal .input-text-area label {
  background: #43392f;
  color: #fff5eb;
}
html.brown .modal .input-checkbox.hover:not(:hover),
html.brown .modal .input-text.hover:not(:hover),
html.brown .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(67, 57, 47, 0.1);
}
html.brown .modal .plan-actions {
  border-color: #52463a;
}
html.brown .modal .submit {
  border-color: #52463a;
  background: #52463a;
  color: #fff5eb;
}
html.brown .modal-explain-payment .payments .payment {
  border-color: #615344;
}
html.brown .modal-explain-payment .payments .payment label {
  background: #615344;
  color: #fff5eb;
}
html.brown .modal-explain-payment .payments .payment .icons {
  border-top-color: #615344;
}
html.brown .coffee-svg {
  fill: #43392f;
}
.color-options .color-option.brown {
  background: #43392F;
}
/* Green */
html.green {
  background-color: #fafffe;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.green.dark {
  background-color: #1abc9c;
}
html.green body {
  background-color: inherit;
}
html.green .large-image,
html.green .notification-panel {
  background-color: #1abc9c;
}
html.green .highlights-page div.sections {
  background: #fafffe;
}
html.green .highlights-page .point .point-body {
  border-bottom-color: rgba(26, 188, 156, 0.1);
}
html.green .details-background {
  background: #fafffe;
}
html.green #email-preview:before {
  background: #1abc9c;
}
.submit.new html.green:after {
  background: #fafffe;
  color: #1abc9c;
}
html.green .video-preview {
  color: #1abc9c;
  background-color: transparent;
}
html.green.touch .video-preview,
html.green .video-preview:hover {
  background-color: #1abc9c;
  color: #fafffe;
}
html.green .nav-bar,
html.green .nav-bar .dropdown-button {
  color: #1abc9c !important;
}
html.green .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #1abc9c;
}
html.green .section-header h3,
html.green .details .last-name {
  color: #3cc6ab;
}
html.green .navigation ul li > a {
  border-color: #1abc9c;
}
html.green .navigation ul li > a span {
  background: #1abc9c;
  color: #fafffe;
}
html.green .navigation ul li > a:hover {
  background: #1abc9c;
  color: #fafffe;
}
html.green .loading-animation .circle {
  background: #1abc9c;
}
html.green .share-buttons {
  display: inline-block;
}
html.green .share-buttons > a {
  border: 3px solid #1abc9c;
  color: #1abc9c;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.green .share-buttons > a:hover {
  color: #fafffe;
  background: #1abc9c;
}
html.green .stages.life > li {
  color: #1abc9c;
}
html.green .stages.life > li:before {
  color: #8adecd;
  border: 1px solid #8adecd;
}
html.green .section-white {
  background-color: #fafffe;
}
html.green .section-white .line {
  background: #1abc9c;
}
html.green .section-white .circle > div {
  background-color: #1abc9c;
}
html.green .section-white .point-reference .circle .circle-inner {
  border-color: #1abc9c;
}
html.green .section-white .point-reference .reference-links a {
  border-color: #1abc9c;
  color: #1abc9c;
}
html.green .section-white a:after {
  background-color: #1abc9c;
}
html.green .section-white .progress-bar {
  background-color: #a0e4d7;
}
html.green .section-white .progress-bar .bar {
  background-color: #1abc9c;
}
html.green .section-white .popup-plain {
  border-color: #1abc9c;
}
html.green .section-white .list-flat {
  background: #fafffe;
  border-color: #1abc9c;
}
html.green .section-white .list-flat li {
  border-bottom-color: #1abc9c;
}
html.green .section-white .list-flat li .indicator {
  border-color: #1abc9c;
}
html.green .section-white .point .action-items a:hover,
html.green .section-white .point .action-items a.selected {
  background: #1abc9c;
  color: #fafffe;
}
html.green .section-white .point .point-picture .picture-point-image {
  border-color: #1abc9c;
  background-color: rgba(26, 188, 156, 0.9);
  box-sizing: border-box;
}
html.green .section-white .point .point-picture .picture-point-image.input-image {
  color: #fafffe;
}
html.green .section-white .point-limit {
  border-color: #1abc9c;
}
html.green .section-white label.checkbox {
  border-color: #fafffe;
  color: #fafffe;
}
html.green .section-white .submit,
html.green .section-white .input-checkbox,
html.green .section-white .input-image {
  border-color: #31c3a6;
  color: #1abc9c;
}
html.green .section-white .submit:hover,
html.green .section-white .input-checkbox:hover,
html.green .section-white .input-image:hover {
  border-color: #1abc9c;
}
html.green .section-white .submit:active,
html.green .section-white .input-checkbox:active,
html.green .section-white .input-image:active {
  color: #31c3a6;
}
html.green .section-white .input-checkbox input:checked + options {
  color: #fafffe;
  background-color: #1abc9c;
}
html.green .section-white .input-checkbox input:checked + options span.tooltip {
  color: #1abc9c;
}
html.green .section-white .stages-applications.stages:after {
  background: #1abc9c;
}
html.green .section-white .stages-applications.stages > li {
  color: #1abc9c;
}
html.green .section-white .stages-applications.stages > li:before {
  color: #fafffe;
  background: #1abc9c;
}
html.green .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #1abc9c;
  background: #fafffe;
  border-color: #1abc9c;
}
html.green .section-white .chart {
  background: #fafffe;
  color: #1abc9c;
  border-color: #1abc9c;
}
html.green .section-white .input-checkbox,
html.green .section-white .input-text,
html.green .section-white .input-text-area {
  color: #1abc9c;
  border-color: #1abc9c;
}
html.green .section-white .input-checkbox label,
html.green .section-white .input-text label,
html.green .section-white .input-text-area label {
  background: #1abc9c;
  color: #fafffe;
}
html.green .section-white .input-checkbox.hover:not(:hover),
html.green .section-white .input-text.hover:not(:hover),
html.green .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(26, 188, 156, 0.1);
}
html.green .section-white .point-placeholder .drop-zone {
  border-color: #1abc9c;
}
html.green .section-white,
html.green .section-white .section-header h2 {
  color: #1abc9c;
}
html.green .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(26, 188, 156, 0.7);
}
html.green .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(26, 188, 156, 0.7);
}
html.green .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(26, 188, 156, 0.7);
}
html.green .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(26, 188, 156, 0.7);
}
html.green .section-white .circle,
html.green .section-white .social-icon.symbol,
html.green .section-white .line {
  color: #fafffe;
}
html.green .section-white .point:not(.point-reference) .point-body {
  color: #31c3a6;
}
html.green .section-black {
  background-color: #1abc9c;
}
html.green .section-black .line {
  background: #fafffe;
}
html.green .section-black .circle > div {
  background-color: #fafffe;
}
html.green .section-black .point-reference .circle .circle-inner {
  border-color: #fafffe;
}
html.green .section-black .point-reference .reference-links a {
  border-color: #fafffe;
  color: #fafffe;
}
html.green .section-black a:after {
  background-color: #fafffe;
}
html.green .section-black .progress-bar {
  background-color: #74d7c3;
}
html.green .section-black .progress-bar .bar {
  background-color: #fafffe;
}
html.green .section-black .popup-plain {
  border-color: #fafffe;
}
html.green .section-black .list-flat {
  background: #1abc9c;
  border-color: #fafffe;
}
html.green .section-black .list-flat li {
  border-bottom-color: #fafffe;
}
html.green .section-black .list-flat li .indicator {
  border-color: #fafffe;
}
html.green .section-black .point .action-items a:hover,
html.green .section-black .point .action-items a.selected {
  background: #fafffe;
  color: #1abc9c;
}
html.green .section-black .point .point-picture .picture-point-image {
  border-color: #fafffe;
  background-color: rgba(250, 255, 254, 0.9);
  box-sizing: border-box;
}
html.green .section-black .point .point-picture .picture-point-image.input-image {
  color: #1abc9c;
}
html.green .section-black .point-limit {
  border-color: #fafffe;
}
html.green .section-black label.checkbox {
  border-color: #1abc9c;
  color: #1abc9c;
}
html.green .section-black .submit,
html.green .section-black .input-checkbox,
html.green .section-black .input-image {
  border-color: #e1e6e5;
  color: #fafffe;
}
html.green .section-black .submit:hover,
html.green .section-black .input-checkbox:hover,
html.green .section-black .input-image:hover {
  border-color: #fafffe;
}
html.green .section-black .submit:active,
html.green .section-black .input-checkbox:active,
html.green .section-black .input-image:active {
  color: #e1e6e5;
}
html.green .section-black .input-checkbox input:checked + options {
  color: #1abc9c;
  background-color: #fafffe;
}
html.green .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fafffe;
}
html.green .section-black .stages-applications.stages:after {
  background: #fafffe;
}
html.green .section-black .stages-applications.stages > li {
  color: #fafffe;
}
html.green .section-black .stages-applications.stages > li:before {
  color: #1abc9c;
  background: #fafffe;
}
html.green .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fafffe;
  background: #1abc9c;
  border-color: #fafffe;
}
html.green .section-black .chart {
  background: #1abc9c;
  color: #fafffe;
  border-color: #fafffe;
}
html.green .section-black .input-checkbox,
html.green .section-black .input-text,
html.green .section-black .input-text-area {
  color: #fafffe;
  border-color: #fafffe;
}
html.green .section-black .input-checkbox label,
html.green .section-black .input-text label,
html.green .section-black .input-text-area label {
  background: #fafffe;
  color: #1abc9c;
}
html.green .section-black .input-checkbox.hover:not(:hover),
html.green .section-black .input-text.hover:not(:hover),
html.green .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(250, 255, 254, 0.1);
}
html.green .section-black .point-placeholder .drop-zone {
  border-color: #fafffe;
}
html.green .section-black,
html.green .section-black .section-header h2 {
  color: #fafffe;
}
html.green .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(250, 255, 254, 0.7);
}
html.green .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(250, 255, 254, 0.7);
}
html.green .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(250, 255, 254, 0.7);
}
html.green .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(250, 255, 254, 0.7);
}
html.green .section-black .circle,
html.green .section-black .social-icon.symbol,
html.green .section-black .line {
  color: #1abc9c;
}
html.green .section-black .point:not(.point-reference) .point-body {
  color: #e1e6e5;
}
html.green.modal-page {
  background: #1abc9c;
}
html.green.modal-page body {
  background: #1abc9c;
}
html.green .modal-container .shield {
  background: fade-out(#1abc9c, 50%);
}
html.green .modal {
  border-color: #1dd2af;
  color: #1abc9c;
}
html.green .modal .input-checkbox,
html.green .modal .input-text,
html.green .modal .input-text-area {
  color: #1abc9c;
  border-color: #1abc9c;
}
html.green .modal .input-checkbox label,
html.green .modal .input-text label,
html.green .modal .input-text-area label {
  background: #1abc9c;
  color: #fafffe;
}
html.green .modal .input-checkbox.hover:not(:hover),
html.green .modal .input-text.hover:not(:hover),
html.green .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(26, 188, 156, 0.1);
}
html.green .modal .plan-actions {
  border-color: #1dd2af;
}
html.green .modal .submit {
  border-color: #1dd2af;
  background: #1dd2af;
  color: #fafffe;
}
html.green .modal-explain-payment .payments .payment {
  border-color: #28e1bd;
}
html.green .modal-explain-payment .payments .payment label {
  background: #28e1bd;
  color: #fafffe;
}
html.green .modal-explain-payment .payments .payment .icons {
  border-top-color: #28e1bd;
}
html.green .coffee-svg {
  fill: #1abc9c;
}
.color-options .color-option.green {
  background: #1abc9c;
}
/* Orange */
html.orange {
  background-color: #fff7f5;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.orange.dark {
  background-color: #eb836e;
}
html.orange body {
  background-color: inherit;
}
html.orange .large-image,
html.orange .notification-panel {
  background-color: #eb836e;
}
html.orange .highlights-page div.sections {
  background: #fff7f5;
}
html.orange .highlights-page .point .point-body {
  border-bottom-color: rgba(235, 131, 110, 0.1);
}
html.orange .details-background {
  background: #fff7f5;
}
html.orange #email-preview:before {
  background: #eb836e;
}
.submit.new html.orange:after {
  background: #fff7f5;
  color: #eb836e;
}
html.orange .video-preview {
  color: #eb836e;
  background-color: transparent;
}
html.orange.touch .video-preview,
html.orange .video-preview:hover {
  background-color: #eb836e;
  color: #fff7f5;
}
html.orange .nav-bar,
html.orange .nav-bar .dropdown-button {
  color: #eb836e !important;
}
html.orange .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #eb836e;
}
html.orange .section-header h3,
html.orange .details .last-name {
  color: #ee9684;
}
html.orange .navigation ul li > a {
  border-color: #eb836e;
}
html.orange .navigation ul li > a span {
  background: #eb836e;
  color: #fff7f5;
}
html.orange .navigation ul li > a:hover {
  background: #eb836e;
  color: #fff7f5;
}
html.orange .loading-animation .circle {
  background: #eb836e;
}
html.orange .share-buttons {
  display: inline-block;
}
html.orange .share-buttons > a {
  border: 3px solid #eb836e;
  color: #eb836e;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.orange .share-buttons > a:hover {
  color: #fff7f5;
  background: #eb836e;
}
html.orange .stages.life > li {
  color: #eb836e;
}
html.orange .stages.life > li:before {
  color: #f5bdb1;
  border: 1px solid #f5bdb1;
}
html.orange .section-white {
  background-color: #fff7f5;
}
html.orange .section-white .line {
  background: #eb836e;
}
html.orange .section-white .circle > div {
  background-color: #eb836e;
}
html.orange .section-white .point-reference .circle .circle-inner {
  border-color: #eb836e;
}
html.orange .section-white .point-reference .reference-links a {
  border-color: #eb836e;
  color: #eb836e;
}
html.orange .section-white a:after {
  background-color: #eb836e;
}
html.orange .section-white .progress-bar {
  background-color: #f7c8bf;
}
html.orange .section-white .progress-bar .bar {
  background-color: #eb836e;
}
html.orange .section-white .popup-plain {
  border-color: #eb836e;
}
html.orange .section-white .list-flat {
  background: #fff7f5;
  border-color: #eb836e;
}
html.orange .section-white .list-flat li {
  border-bottom-color: #eb836e;
}
html.orange .section-white .list-flat li .indicator {
  border-color: #eb836e;
}
html.orange .section-white .point .action-items a:hover,
html.orange .section-white .point .action-items a.selected {
  background: #eb836e;
  color: #fff7f5;
}
html.orange .section-white .point .point-picture .picture-point-image {
  border-color: #eb836e;
  background-color: rgba(235, 131, 110, 0.9);
  box-sizing: border-box;
}
html.orange .section-white .point .point-picture .picture-point-image.input-image {
  color: #fff7f5;
}
html.orange .section-white .point-limit {
  border-color: #eb836e;
}
html.orange .section-white label.checkbox {
  border-color: #fff7f5;
  color: #fff7f5;
}
html.orange .section-white .submit,
html.orange .section-white .input-checkbox,
html.orange .section-white .input-image {
  border-color: #ed8f7d;
  color: #eb836e;
}
html.orange .section-white .submit:hover,
html.orange .section-white .input-checkbox:hover,
html.orange .section-white .input-image:hover {
  border-color: #eb836e;
}
html.orange .section-white .submit:active,
html.orange .section-white .input-checkbox:active,
html.orange .section-white .input-image:active {
  color: #ed8f7d;
}
html.orange .section-white .input-checkbox input:checked + options {
  color: #fff7f5;
  background-color: #eb836e;
}
html.orange .section-white .input-checkbox input:checked + options span.tooltip {
  color: #eb836e;
}
html.orange .section-white .stages-applications.stages:after {
  background: #eb836e;
}
html.orange .section-white .stages-applications.stages > li {
  color: #eb836e;
}
html.orange .section-white .stages-applications.stages > li:before {
  color: #fff7f5;
  background: #eb836e;
}
html.orange .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #eb836e;
  background: #fff7f5;
  border-color: #eb836e;
}
html.orange .section-white .chart {
  background: #fff7f5;
  color: #eb836e;
  border-color: #eb836e;
}
html.orange .section-white .input-checkbox,
html.orange .section-white .input-text,
html.orange .section-white .input-text-area {
  color: #eb836e;
  border-color: #eb836e;
}
html.orange .section-white .input-checkbox label,
html.orange .section-white .input-text label,
html.orange .section-white .input-text-area label {
  background: #eb836e;
  color: #fff7f5;
}
html.orange .section-white .input-checkbox.hover:not(:hover),
html.orange .section-white .input-text.hover:not(:hover),
html.orange .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(235, 131, 110, 0.1);
}
html.orange .section-white .point-placeholder .drop-zone {
  border-color: #eb836e;
}
html.orange .section-white,
html.orange .section-white .section-header h2 {
  color: #eb836e;
}
html.orange .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(235, 131, 110, 0.7);
}
html.orange .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(235, 131, 110, 0.7);
}
html.orange .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(235, 131, 110, 0.7);
}
html.orange .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(235, 131, 110, 0.7);
}
html.orange .section-white .circle,
html.orange .section-white .social-icon.symbol,
html.orange .section-white .line {
  color: #fff7f5;
}
html.orange .section-white .point:not(.point-reference) .point-body {
  color: #ed8f7d;
}
html.orange .section-black {
  background-color: #eb836e;
}
html.orange .section-black .line {
  background: #fff7f5;
}
html.orange .section-black .circle > div {
  background-color: #fff7f5;
}
html.orange .section-black .point-reference .circle .circle-inner {
  border-color: #fff7f5;
}
html.orange .section-black .point-reference .reference-links a {
  border-color: #fff7f5;
  color: #fff7f5;
}
html.orange .section-black a:after {
  background-color: #fff7f5;
}
html.orange .section-black .progress-bar {
  background-color: #f3b1a4;
}
html.orange .section-black .progress-bar .bar {
  background-color: #fff7f5;
}
html.orange .section-black .popup-plain {
  border-color: #fff7f5;
}
html.orange .section-black .list-flat {
  background: #eb836e;
  border-color: #fff7f5;
}
html.orange .section-black .list-flat li {
  border-bottom-color: #fff7f5;
}
html.orange .section-black .list-flat li .indicator {
  border-color: #fff7f5;
}
html.orange .section-black .point .action-items a:hover,
html.orange .section-black .point .action-items a.selected {
  background: #fff7f5;
  color: #eb836e;
}
html.orange .section-black .point .point-picture .picture-point-image {
  border-color: #fff7f5;
  background-color: rgba(255, 247, 245, 0.9);
  box-sizing: border-box;
}
html.orange .section-black .point .point-picture .picture-point-image.input-image {
  color: #eb836e;
}
html.orange .section-black .point-limit {
  border-color: #fff7f5;
}
html.orange .section-black label.checkbox {
  border-color: #eb836e;
  color: #eb836e;
}
html.orange .section-black .submit,
html.orange .section-black .input-checkbox,
html.orange .section-black .input-image {
  border-color: #e6dedc;
  color: #fff7f5;
}
html.orange .section-black .submit:hover,
html.orange .section-black .input-checkbox:hover,
html.orange .section-black .input-image:hover {
  border-color: #fff7f5;
}
html.orange .section-black .submit:active,
html.orange .section-black .input-checkbox:active,
html.orange .section-black .input-image:active {
  color: #e6dedc;
}
html.orange .section-black .input-checkbox input:checked + options {
  color: #eb836e;
  background-color: #fff7f5;
}
html.orange .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fff7f5;
}
html.orange .section-black .stages-applications.stages:after {
  background: #fff7f5;
}
html.orange .section-black .stages-applications.stages > li {
  color: #fff7f5;
}
html.orange .section-black .stages-applications.stages > li:before {
  color: #eb836e;
  background: #fff7f5;
}
html.orange .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fff7f5;
  background: #eb836e;
  border-color: #fff7f5;
}
html.orange .section-black .chart {
  background: #eb836e;
  color: #fff7f5;
  border-color: #fff7f5;
}
html.orange .section-black .input-checkbox,
html.orange .section-black .input-text,
html.orange .section-black .input-text-area {
  color: #fff7f5;
  border-color: #fff7f5;
}
html.orange .section-black .input-checkbox label,
html.orange .section-black .input-text label,
html.orange .section-black .input-text-area label {
  background: #fff7f5;
  color: #eb836e;
}
html.orange .section-black .input-checkbox.hover:not(:hover),
html.orange .section-black .input-text.hover:not(:hover),
html.orange .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(255, 247, 245, 0.1);
}
html.orange .section-black .point-placeholder .drop-zone {
  border-color: #fff7f5;
}
html.orange .section-black,
html.orange .section-black .section-header h2 {
  color: #fff7f5;
}
html.orange .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 247, 245, 0.7);
}
html.orange .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 247, 245, 0.7);
}
html.orange .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 247, 245, 0.7);
}
html.orange .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 247, 245, 0.7);
}
html.orange .section-black .circle,
html.orange .section-black .social-icon.symbol,
html.orange .section-black .line {
  color: #eb836e;
}
html.orange .section-black .point:not(.point-reference) .point-body {
  color: #e6dedc;
}
html.orange.modal-page {
  background: #eb836e;
}
html.orange.modal-page body {
  background: #eb836e;
}
html.orange .modal-container .shield {
  background: fade-out(#eb836e, 50%);
}
html.orange .modal {
  border-color: #ee9684;
  color: #eb836e;
}
html.orange .modal .input-checkbox,
html.orange .modal .input-text,
html.orange .modal .input-text-area {
  color: #eb836e;
  border-color: #eb836e;
}
html.orange .modal .input-checkbox label,
html.orange .modal .input-text label,
html.orange .modal .input-text-area label {
  background: #eb836e;
  color: #fff7f5;
}
html.orange .modal .input-checkbox.hover:not(:hover),
html.orange .modal .input-text.hover:not(:hover),
html.orange .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(235, 131, 110, 0.1);
}
html.orange .modal .plan-actions {
  border-color: #ee9684;
}
html.orange .modal .submit {
  border-color: #ee9684;
  background: #ee9684;
  color: #fff7f5;
}
html.orange .modal-explain-payment .payments .payment {
  border-color: #f1a99b;
}
html.orange .modal-explain-payment .payments .payment label {
  background: #f1a99b;
  color: #fff7f5;
}
html.orange .modal-explain-payment .payments .payment .icons {
  border-top-color: #f1a99b;
}
html.orange .coffee-svg {
  fill: #eb836e;
}
.color-options .color-option.orange {
  background: #eb836e;
}
/* Red */
html.red {
  background-color: #fff5f5;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.red.dark {
  background-color: #e85a59;
}
html.red body {
  background-color: inherit;
}
html.red .large-image,
html.red .notification-panel {
  background-color: #e85a59;
}
html.red .highlights-page div.sections {
  background: #fff5f5;
}
html.red .highlights-page .point .point-body {
  border-bottom-color: rgba(232, 90, 89, 0.1);
}
html.red .details-background {
  background: #fff5f5;
}
html.red #email-preview:before {
  background: #e85a59;
}
.submit.new html.red:after {
  background: #fff5f5;
  color: #e85a59;
}
html.red .video-preview {
  color: #e85a59;
  background-color: transparent;
}
html.red.touch .video-preview,
html.red .video-preview:hover {
  background-color: #e85a59;
  color: #fff5f5;
}
html.red .nav-bar,
html.red .nav-bar .dropdown-button {
  color: #e85a59 !important;
}
html.red .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #e85a59;
}
html.red .section-header h3,
html.red .details .last-name {
  color: #eb7372;
}
html.red .navigation ul li > a {
  border-color: #e85a59;
}
html.red .navigation ul li > a span {
  background: #e85a59;
  color: #fff5f5;
}
html.red .navigation ul li > a:hover {
  background: #e85a59;
  color: #fff5f5;
}
html.red .loading-animation .circle {
  background: #e85a59;
}
html.red .share-buttons {
  display: inline-block;
}
html.red .share-buttons > a {
  border: 3px solid #e85a59;
  color: #e85a59;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.red .share-buttons > a:hover {
  color: #fff5f5;
  background: #e85a59;
}
html.red .stages.life > li {
  color: #e85a59;
}
html.red .stages.life > li:before {
  color: #f4a7a7;
  border: 1px solid #f4a7a7;
}
html.red .section-white {
  background-color: #fff5f5;
}
html.red .section-white .line {
  background: #e85a59;
}
html.red .section-white .circle > div {
  background-color: #e85a59;
}
html.red .section-white .point-reference .circle .circle-inner {
  border-color: #e85a59;
}
html.red .section-white .point-reference .reference-links a {
  border-color: #e85a59;
  color: #e85a59;
}
html.red .section-white a:after {
  background-color: #e85a59;
}
html.red .section-white .progress-bar {
  background-color: #f6b7b6;
}
html.red .section-white .progress-bar .bar {
  background-color: #e85a59;
}
html.red .section-white .popup-plain {
  border-color: #e85a59;
}
html.red .section-white .list-flat {
  background: #fff5f5;
  border-color: #e85a59;
}
html.red .section-white .list-flat li {
  border-bottom-color: #e85a59;
}
html.red .section-white .list-flat li .indicator {
  border-color: #e85a59;
}
html.red .section-white .point .action-items a:hover,
html.red .section-white .point .action-items a.selected {
  background: #e85a59;
  color: #fff5f5;
}
html.red .section-white .point .point-picture .picture-point-image {
  border-color: #e85a59;
  background-color: rgba(232, 90, 89, 0.9);
  box-sizing: border-box;
}
html.red .section-white .point .point-picture .picture-point-image.input-image {
  color: #fff5f5;
}
html.red .section-white .point-limit {
  border-color: #e85a59;
}
html.red .section-white label.checkbox {
  border-color: #fff5f5;
  color: #fff5f5;
}
html.red .section-white .submit,
html.red .section-white .input-checkbox,
html.red .section-white .input-image {
  border-color: #ea6b6a;
  color: #e85a59;
}
html.red .section-white .submit:hover,
html.red .section-white .input-checkbox:hover,
html.red .section-white .input-image:hover {
  border-color: #e85a59;
}
html.red .section-white .submit:active,
html.red .section-white .input-checkbox:active,
html.red .section-white .input-image:active {
  color: #ea6b6a;
}
html.red .section-white .input-checkbox input:checked + options {
  color: #fff5f5;
  background-color: #e85a59;
}
html.red .section-white .input-checkbox input:checked + options span.tooltip {
  color: #e85a59;
}
html.red .section-white .stages-applications.stages:after {
  background: #e85a59;
}
html.red .section-white .stages-applications.stages > li {
  color: #e85a59;
}
html.red .section-white .stages-applications.stages > li:before {
  color: #fff5f5;
  background: #e85a59;
}
html.red .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #e85a59;
  background: #fff5f5;
  border-color: #e85a59;
}
html.red .section-white .chart {
  background: #fff5f5;
  color: #e85a59;
  border-color: #e85a59;
}
html.red .section-white .input-checkbox,
html.red .section-white .input-text,
html.red .section-white .input-text-area {
  color: #e85a59;
  border-color: #e85a59;
}
html.red .section-white .input-checkbox label,
html.red .section-white .input-text label,
html.red .section-white .input-text-area label {
  background: #e85a59;
  color: #fff5f5;
}
html.red .section-white .input-checkbox.hover:not(:hover),
html.red .section-white .input-text.hover:not(:hover),
html.red .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(232, 90, 89, 0.1);
}
html.red .section-white .point-placeholder .drop-zone {
  border-color: #e85a59;
}
html.red .section-white,
html.red .section-white .section-header h2 {
  color: #e85a59;
}
html.red .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(232, 90, 89, 0.7);
}
html.red .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(232, 90, 89, 0.7);
}
html.red .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(232, 90, 89, 0.7);
}
html.red .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(232, 90, 89, 0.7);
}
html.red .section-white .circle,
html.red .section-white .social-icon.symbol,
html.red .section-white .line {
  color: #fff5f5;
}
html.red .section-white .point:not(.point-reference) .point-body {
  color: #ea6b6a;
}
html.red .section-black {
  background-color: #e85a59;
}
html.red .section-black .line {
  background: #fff5f5;
}
html.red .section-black .circle > div {
  background-color: #fff5f5;
}
html.red .section-black .point-reference .circle .circle-inner {
  border-color: #fff5f5;
}
html.red .section-black .point-reference .reference-links a {
  border-color: #fff5f5;
  color: #fff5f5;
}
html.red .section-black a:after {
  background-color: #fff5f5;
}
html.red .section-black .progress-bar {
  background-color: #f19897;
}
html.red .section-black .progress-bar .bar {
  background-color: #fff5f5;
}
html.red .section-black .popup-plain {
  border-color: #fff5f5;
}
html.red .section-black .list-flat {
  background: #e85a59;
  border-color: #fff5f5;
}
html.red .section-black .list-flat li {
  border-bottom-color: #fff5f5;
}
html.red .section-black .list-flat li .indicator {
  border-color: #fff5f5;
}
html.red .section-black .point .action-items a:hover,
html.red .section-black .point .action-items a.selected {
  background: #fff5f5;
  color: #e85a59;
}
html.red .section-black .point .point-picture .picture-point-image {
  border-color: #fff5f5;
  background-color: rgba(255, 245, 245, 0.9);
  box-sizing: border-box;
}
html.red .section-black .point .point-picture .picture-point-image.input-image {
  color: #e85a59;
}
html.red .section-black .point-limit {
  border-color: #fff5f5;
}
html.red .section-black label.checkbox {
  border-color: #e85a59;
  color: #e85a59;
}
html.red .section-black .submit,
html.red .section-black .input-checkbox,
html.red .section-black .input-image {
  border-color: #e6dcdc;
  color: #fff5f5;
}
html.red .section-black .submit:hover,
html.red .section-black .input-checkbox:hover,
html.red .section-black .input-image:hover {
  border-color: #fff5f5;
}
html.red .section-black .submit:active,
html.red .section-black .input-checkbox:active,
html.red .section-black .input-image:active {
  color: #e6dcdc;
}
html.red .section-black .input-checkbox input:checked + options {
  color: #e85a59;
  background-color: #fff5f5;
}
html.red .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fff5f5;
}
html.red .section-black .stages-applications.stages:after {
  background: #fff5f5;
}
html.red .section-black .stages-applications.stages > li {
  color: #fff5f5;
}
html.red .section-black .stages-applications.stages > li:before {
  color: #e85a59;
  background: #fff5f5;
}
html.red .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fff5f5;
  background: #e85a59;
  border-color: #fff5f5;
}
html.red .section-black .chart {
  background: #e85a59;
  color: #fff5f5;
  border-color: #fff5f5;
}
html.red .section-black .input-checkbox,
html.red .section-black .input-text,
html.red .section-black .input-text-area {
  color: #fff5f5;
  border-color: #fff5f5;
}
html.red .section-black .input-checkbox label,
html.red .section-black .input-text label,
html.red .section-black .input-text-area label {
  background: #fff5f5;
  color: #e85a59;
}
html.red .section-black .input-checkbox.hover:not(:hover),
html.red .section-black .input-text.hover:not(:hover),
html.red .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(255, 245, 245, 0.1);
}
html.red .section-black .point-placeholder .drop-zone {
  border-color: #fff5f5;
}
html.red .section-black,
html.red .section-black .section-header h2 {
  color: #fff5f5;
}
html.red .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 245, 245, 0.7);
}
html.red .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 245, 245, 0.7);
}
html.red .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 245, 245, 0.7);
}
html.red .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 245, 245, 0.7);
}
html.red .section-black .circle,
html.red .section-black .social-icon.symbol,
html.red .section-black .line {
  color: #e85a59;
}
html.red .section-black .point:not(.point-reference) .point-body {
  color: #e6dcdc;
}
html.red.modal-page {
  background: #e85a59;
}
html.red.modal-page body {
  background: #e85a59;
}
html.red .modal-container .shield {
  background: fade-out(#e85a59, 50%);
}
html.red .modal {
  border-color: #eb706f;
  color: #e85a59;
}
html.red .modal .input-checkbox,
html.red .modal .input-text,
html.red .modal .input-text-area {
  color: #e85a59;
  border-color: #e85a59;
}
html.red .modal .input-checkbox label,
html.red .modal .input-text label,
html.red .modal .input-text-area label {
  background: #e85a59;
  color: #fff5f5;
}
html.red .modal .input-checkbox.hover:not(:hover),
html.red .modal .input-text.hover:not(:hover),
html.red .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(232, 90, 89, 0.1);
}
html.red .modal .plan-actions {
  border-color: #eb706f;
}
html.red .modal .submit {
  border-color: #eb706f;
  background: #eb706f;
  color: #fff5f5;
}
html.red .modal-explain-payment .payments .payment {
  border-color: #ee8786;
}
html.red .modal-explain-payment .payments .payment label {
  background: #ee8786;
  color: #fff5f5;
}
html.red .modal-explain-payment .payments .payment .icons {
  border-top-color: #ee8786;
}
html.red .coffee-svg {
  fill: #e85a59;
}
.color-options .color-option.red {
  background: #e85a59;
}
/* Light Blue */
html.light-blue {
  background-color: #fafdff;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.light-blue.dark {
  background-color: #44a0c8;
}
html.light-blue body {
  background-color: inherit;
}
html.light-blue .large-image,
html.light-blue .notification-panel {
  background-color: #44a0c8;
}
html.light-blue .highlights-page div.sections {
  background: #fafdff;
}
html.light-blue .highlights-page .point .point-body {
  border-bottom-color: rgba(68, 160, 200, 0.1);
}
html.light-blue .details-background {
  background: #fafdff;
}
html.light-blue #email-preview:before {
  background: #44a0c8;
}
.submit.new html.light-blue:after {
  background: #fafdff;
  color: #44a0c8;
}
html.light-blue .video-preview {
  color: #44a0c8;
  background-color: transparent;
}
html.light-blue.touch .video-preview,
html.light-blue .video-preview:hover {
  background-color: #44a0c8;
  color: #fafdff;
}
html.light-blue .nav-bar,
html.light-blue .nav-bar .dropdown-button {
  color: #44a0c8 !important;
}
html.light-blue .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #44a0c8;
}
html.light-blue .section-header h3,
html.light-blue .details .last-name {
  color: #60aed0;
}
html.light-blue .navigation ul li > a {
  border-color: #44a0c8;
}
html.light-blue .navigation ul li > a span {
  background: #44a0c8;
  color: #fafdff;
}
html.light-blue .navigation ul li > a:hover {
  background: #44a0c8;
  color: #fafdff;
}
html.light-blue .loading-animation .circle {
  background: #44a0c8;
}
html.light-blue .share-buttons {
  display: inline-block;
}
html.light-blue .share-buttons > a {
  border: 3px solid #44a0c8;
  color: #44a0c8;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.light-blue .share-buttons > a:hover {
  color: #fafdff;
  background: #44a0c8;
}
html.light-blue .stages.life > li {
  color: #44a0c8;
}
html.light-blue .stages.life > li:before {
  color: #9fcfe4;
  border: 1px solid #9fcfe4;
}
html.light-blue .section-white {
  background-color: #fafdff;
}
html.light-blue .section-white .line {
  background: #44a0c8;
}
html.light-blue .section-white .circle > div {
  background-color: #44a0c8;
}
html.light-blue .section-white .point-reference .circle .circle-inner {
  border-color: #44a0c8;
}
html.light-blue .section-white .point-reference .reference-links a {
  border-color: #44a0c8;
  color: #44a0c8;
}
html.light-blue .section-white a:after {
  background-color: #44a0c8;
}
html.light-blue .section-white .progress-bar {
  background-color: #b1d8e9;
}
html.light-blue .section-white .progress-bar .bar {
  background-color: #44a0c8;
}
html.light-blue .section-white .popup-plain {
  border-color: #44a0c8;
}
html.light-blue .section-white .list-flat {
  background: #fafdff;
  border-color: #44a0c8;
}
html.light-blue .section-white .list-flat li {
  border-bottom-color: #44a0c8;
}
html.light-blue .section-white .list-flat li .indicator {
  border-color: #44a0c8;
}
html.light-blue .section-white .point .action-items a:hover,
html.light-blue .section-white .point .action-items a.selected {
  background: #44a0c8;
  color: #fafdff;
}
html.light-blue .section-white .point .point-picture .picture-point-image {
  border-color: #44a0c8;
  background-color: rgba(68, 160, 200, 0.9);
  box-sizing: border-box;
}
html.light-blue .section-white .point .point-picture .picture-point-image.input-image {
  color: #fafdff;
}
html.light-blue .section-white .point-limit {
  border-color: #44a0c8;
}
html.light-blue .section-white label.checkbox {
  border-color: #fafdff;
  color: #fafdff;
}
html.light-blue .section-white .submit,
html.light-blue .section-white .input-checkbox,
html.light-blue .section-white .input-image {
  border-color: #57aace;
  color: #44a0c8;
}
html.light-blue .section-white .submit:hover,
html.light-blue .section-white .input-checkbox:hover,
html.light-blue .section-white .input-image:hover {
  border-color: #44a0c8;
}
html.light-blue .section-white .submit:active,
html.light-blue .section-white .input-checkbox:active,
html.light-blue .section-white .input-image:active {
  color: #57aace;
}
html.light-blue .section-white .input-checkbox input:checked + options {
  color: #fafdff;
  background-color: #44a0c8;
}
html.light-blue .section-white .input-checkbox input:checked + options span.tooltip {
  color: #44a0c8;
}
html.light-blue .section-white .stages-applications.stages:after {
  background: #44a0c8;
}
html.light-blue .section-white .stages-applications.stages > li {
  color: #44a0c8;
}
html.light-blue .section-white .stages-applications.stages > li:before {
  color: #fafdff;
  background: #44a0c8;
}
html.light-blue .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #44a0c8;
  background: #fafdff;
  border-color: #44a0c8;
}
html.light-blue .section-white .chart {
  background: #fafdff;
  color: #44a0c8;
  border-color: #44a0c8;
}
html.light-blue .section-white .input-checkbox,
html.light-blue .section-white .input-text,
html.light-blue .section-white .input-text-area {
  color: #44a0c8;
  border-color: #44a0c8;
}
html.light-blue .section-white .input-checkbox label,
html.light-blue .section-white .input-text label,
html.light-blue .section-white .input-text-area label {
  background: #44a0c8;
  color: #fafdff;
}
html.light-blue .section-white .input-checkbox.hover:not(:hover),
html.light-blue .section-white .input-text.hover:not(:hover),
html.light-blue .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(68, 160, 200, 0.1);
}
html.light-blue .section-white .point-placeholder .drop-zone {
  border-color: #44a0c8;
}
html.light-blue .section-white,
html.light-blue .section-white .section-header h2 {
  color: #44a0c8;
}
html.light-blue .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(68, 160, 200, 0.7);
}
html.light-blue .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(68, 160, 200, 0.7);
}
html.light-blue .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(68, 160, 200, 0.7);
}
html.light-blue .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(68, 160, 200, 0.7);
}
html.light-blue .section-white .circle,
html.light-blue .section-white .social-icon.symbol,
html.light-blue .section-white .line {
  color: #fafdff;
}
html.light-blue .section-white .point:not(.point-reference) .point-body {
  color: #57aace;
}
html.light-blue .section-black {
  background-color: #44a0c8;
}
html.light-blue .section-black .line {
  background: #fafdff;
}
html.light-blue .section-black .circle > div {
  background-color: #fafdff;
}
html.light-blue .section-black .point-reference .circle .circle-inner {
  border-color: #fafdff;
}
html.light-blue .section-black .point-reference .reference-links a {
  border-color: #fafdff;
  color: #fafdff;
}
html.light-blue .section-black a:after {
  background-color: #fafdff;
}
html.light-blue .section-black .progress-bar {
  background-color: #8dc5de;
}
html.light-blue .section-black .progress-bar .bar {
  background-color: #fafdff;
}
html.light-blue .section-black .popup-plain {
  border-color: #fafdff;
}
html.light-blue .section-black .list-flat {
  background: #44a0c8;
  border-color: #fafdff;
}
html.light-blue .section-black .list-flat li {
  border-bottom-color: #fafdff;
}
html.light-blue .section-black .list-flat li .indicator {
  border-color: #fafdff;
}
html.light-blue .section-black .point .action-items a:hover,
html.light-blue .section-black .point .action-items a.selected {
  background: #fafdff;
  color: #44a0c8;
}
html.light-blue .section-black .point .point-picture .picture-point-image {
  border-color: #fafdff;
  background-color: rgba(250, 253, 255, 0.9);
  box-sizing: border-box;
}
html.light-blue .section-black .point .point-picture .picture-point-image.input-image {
  color: #44a0c8;
}
html.light-blue .section-black .point-limit {
  border-color: #fafdff;
}
html.light-blue .section-black label.checkbox {
  border-color: #44a0c8;
  color: #44a0c8;
}
html.light-blue .section-black .submit,
html.light-blue .section-black .input-checkbox,
html.light-blue .section-black .input-image {
  border-color: #e1e4e6;
  color: #fafdff;
}
html.light-blue .section-black .submit:hover,
html.light-blue .section-black .input-checkbox:hover,
html.light-blue .section-black .input-image:hover {
  border-color: #fafdff;
}
html.light-blue .section-black .submit:active,
html.light-blue .section-black .input-checkbox:active,
html.light-blue .section-black .input-image:active {
  color: #e1e4e6;
}
html.light-blue .section-black .input-checkbox input:checked + options {
  color: #44a0c8;
  background-color: #fafdff;
}
html.light-blue .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fafdff;
}
html.light-blue .section-black .stages-applications.stages:after {
  background: #fafdff;
}
html.light-blue .section-black .stages-applications.stages > li {
  color: #fafdff;
}
html.light-blue .section-black .stages-applications.stages > li:before {
  color: #44a0c8;
  background: #fafdff;
}
html.light-blue .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fafdff;
  background: #44a0c8;
  border-color: #fafdff;
}
html.light-blue .section-black .chart {
  background: #44a0c8;
  color: #fafdff;
  border-color: #fafdff;
}
html.light-blue .section-black .input-checkbox,
html.light-blue .section-black .input-text,
html.light-blue .section-black .input-text-area {
  color: #fafdff;
  border-color: #fafdff;
}
html.light-blue .section-black .input-checkbox label,
html.light-blue .section-black .input-text label,
html.light-blue .section-black .input-text-area label {
  background: #fafdff;
  color: #44a0c8;
}
html.light-blue .section-black .input-checkbox.hover:not(:hover),
html.light-blue .section-black .input-text.hover:not(:hover),
html.light-blue .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(250, 253, 255, 0.1);
}
html.light-blue .section-black .point-placeholder .drop-zone {
  border-color: #fafdff;
}
html.light-blue .section-black,
html.light-blue .section-black .section-header h2 {
  color: #fafdff;
}
html.light-blue .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(250, 253, 255, 0.7);
}
html.light-blue .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(250, 253, 255, 0.7);
}
html.light-blue .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(250, 253, 255, 0.7);
}
html.light-blue .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(250, 253, 255, 0.7);
}
html.light-blue .section-black .circle,
html.light-blue .section-black .social-icon.symbol,
html.light-blue .section-black .line {
  color: #44a0c8;
}
html.light-blue .section-black .point:not(.point-reference) .point-body {
  color: #e1e4e6;
}
html.light-blue.modal-page {
  background: #44a0c8;
}
html.light-blue.modal-page body {
  background: #44a0c8;
}
html.light-blue .modal-container .shield {
  background: fade-out(#44a0c8, 50%);
}
html.light-blue .modal {
  border-color: #58aace;
  color: #44a0c8;
}
html.light-blue .modal .input-checkbox,
html.light-blue .modal .input-text,
html.light-blue .modal .input-text-area {
  color: #44a0c8;
  border-color: #44a0c8;
}
html.light-blue .modal .input-checkbox label,
html.light-blue .modal .input-text label,
html.light-blue .modal .input-text-area label {
  background: #44a0c8;
  color: #fafdff;
}
html.light-blue .modal .input-checkbox.hover:not(:hover),
html.light-blue .modal .input-text.hover:not(:hover),
html.light-blue .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(68, 160, 200, 0.1);
}
html.light-blue .modal .plan-actions {
  border-color: #58aace;
}
html.light-blue .modal .submit {
  border-color: #58aace;
  background: #58aace;
  color: #fafdff;
}
html.light-blue .modal-explain-payment .payments .payment {
  border-color: #6bb4d4;
}
html.light-blue .modal-explain-payment .payments .payment label {
  background: #6bb4d4;
  color: #fafdff;
}
html.light-blue .modal-explain-payment .payments .payment .icons {
  border-top-color: #6bb4d4;
}
html.light-blue .coffee-svg {
  fill: #44a0c8;
}
.color-options .color-option.light-blue {
  background: #44a0c8;
}
/* Light Blue */
html.acmilan {
  background-color: #fffafa;
  /* Share Buttons */
  /* Region Modal Colouring  */
  /* End Region */
}
html.acmilan.dark {
  background-color: #d1393f;
}
html.acmilan body {
  background-color: inherit;
}
html.acmilan .large-image,
html.acmilan .notification-panel {
  background-color: #d1393f;
}
html.acmilan .highlights-page div.sections {
  background: #fffafa;
}
html.acmilan .highlights-page .point .point-body {
  border-bottom-color: rgba(209, 57, 63, 0.1);
}
html.acmilan .details-background {
  background: #fffafa;
}
html.acmilan #email-preview:before {
  background: #d1393f;
}
.submit.new html.acmilan:after {
  background: #fffafa;
  color: #d1393f;
}
html.acmilan .video-preview {
  color: #d1393f;
  background-color: transparent;
}
html.acmilan.touch .video-preview,
html.acmilan .video-preview:hover {
  background-color: #d1393f;
  color: #fffafa;
}
html.acmilan .nav-bar,
html.acmilan .nav-bar .dropdown-button {
  color: #d1393f !important;
}
html.acmilan .nav-bar .sumry-logo svg .sumry-logo-inner {
  fill: #d1393f;
}
html.acmilan .section-header h3,
html.acmilan .details .last-name {
  color: #d8575c;
}
html.acmilan .navigation ul li > a {
  border-color: #d1393f;
}
html.acmilan .navigation ul li > a span {
  background: #d1393f;
  color: #fffafa;
}
html.acmilan .navigation ul li > a:hover {
  background: #d1393f;
  color: #fffafa;
}
html.acmilan .loading-animation .circle {
  background: #d1393f;
}
html.acmilan .share-buttons {
  display: inline-block;
}
html.acmilan .share-buttons > a {
  border: 3px solid #d1393f;
  color: #d1393f;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
}
html.acmilan .share-buttons > a:hover {
  color: #fffafa;
  background: #d1393f;
}
html.acmilan .stages.life > li {
  color: #d1393f;
}
html.acmilan .stages.life > li:before {
  color: #e8999d;
  border: 1px solid #e8999d;
}
html.acmilan .section-white {
  background-color: #fffafa;
}
html.acmilan .section-white .line {
  background: #d1393f;
}
html.acmilan .section-white .circle > div {
  background-color: #d1393f;
}
html.acmilan .section-white .point-reference .circle .circle-inner {
  border-color: #d1393f;
}
html.acmilan .section-white .point-reference .reference-links a {
  border-color: #d1393f;
  color: #d1393f;
}
html.acmilan .section-white a:after {
  background-color: #d1393f;
}
html.acmilan .section-white .progress-bar {
  background-color: #edadaf;
}
html.acmilan .section-white .progress-bar .bar {
  background-color: #d1393f;
}
html.acmilan .section-white .popup-plain {
  border-color: #d1393f;
}
html.acmilan .section-white .list-flat {
  background: #fffafa;
  border-color: #d1393f;
}
html.acmilan .section-white .list-flat li {
  border-bottom-color: #d1393f;
}
html.acmilan .section-white .list-flat li .indicator {
  border-color: #d1393f;
}
html.acmilan .section-white .point .action-items a:hover,
html.acmilan .section-white .point .action-items a.selected {
  background: #d1393f;
  color: #fffafa;
}
html.acmilan .section-white .point .point-picture .picture-point-image {
  border-color: #d1393f;
  background-color: rgba(209, 57, 63, 0.9);
  box-sizing: border-box;
}
html.acmilan .section-white .point .point-picture .picture-point-image.input-image {
  color: #fffafa;
}
html.acmilan .section-white .point-limit {
  border-color: #d1393f;
}
html.acmilan .section-white label.checkbox {
  border-color: #fffafa;
  color: #fffafa;
}
html.acmilan .section-white .submit,
html.acmilan .section-white .input-checkbox,
html.acmilan .section-white .input-image {
  border-color: #d64d52;
  color: #d1393f;
}
html.acmilan .section-white .submit:hover,
html.acmilan .section-white .input-checkbox:hover,
html.acmilan .section-white .input-image:hover {
  border-color: #d1393f;
}
html.acmilan .section-white .submit:active,
html.acmilan .section-white .input-checkbox:active,
html.acmilan .section-white .input-image:active {
  color: #d64d52;
}
html.acmilan .section-white .input-checkbox input:checked + options {
  color: #fffafa;
  background-color: #d1393f;
}
html.acmilan .section-white .input-checkbox input:checked + options span.tooltip {
  color: #d1393f;
}
html.acmilan .section-white .stages-applications.stages:after {
  background: #d1393f;
}
html.acmilan .section-white .stages-applications.stages > li {
  color: #d1393f;
}
html.acmilan .section-white .stages-applications.stages > li:before {
  color: #fffafa;
  background: #d1393f;
}
html.acmilan .section-white .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #d1393f;
  background: #fffafa;
  border-color: #d1393f;
}
html.acmilan .section-white .chart {
  background: #fffafa;
  color: #d1393f;
  border-color: #d1393f;
}
html.acmilan .section-white .input-checkbox,
html.acmilan .section-white .input-text,
html.acmilan .section-white .input-text-area {
  color: #d1393f;
  border-color: #d1393f;
}
html.acmilan .section-white .input-checkbox label,
html.acmilan .section-white .input-text label,
html.acmilan .section-white .input-text-area label {
  background: #d1393f;
  color: #fffafa;
}
html.acmilan .section-white .input-checkbox.hover:not(:hover),
html.acmilan .section-white .input-text.hover:not(:hover),
html.acmilan .section-white .input-text-area.hover:not(:hover) {
  border-color: rgba(209, 57, 63, 0.1);
}
html.acmilan .section-white .point-placeholder .drop-zone {
  border-color: #d1393f;
}
html.acmilan .section-white,
html.acmilan .section-white .section-header h2 {
  color: #d1393f;
}
html.acmilan .section-white ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(209, 57, 63, 0.7);
}
html.acmilan .section-white :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(209, 57, 63, 0.7);
}
html.acmilan .section-white ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(209, 57, 63, 0.7);
}
html.acmilan .section-white :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(209, 57, 63, 0.7);
}
html.acmilan .section-white .circle,
html.acmilan .section-white .social-icon.symbol,
html.acmilan .section-white .line {
  color: #fffafa;
}
html.acmilan .section-white .point:not(.point-reference) .point-body {
  color: #d64d52;
}
html.acmilan .section-black {
  background-color: #d1393f;
}
html.acmilan .section-black .line {
  background: #fffafa;
}
html.acmilan .section-black .circle > div {
  background-color: #fffafa;
}
html.acmilan .section-black .point-reference .circle .circle-inner {
  border-color: #fffafa;
}
html.acmilan .section-black .point-reference .reference-links a {
  border-color: #fffafa;
  color: #fffafa;
}
html.acmilan .section-black a:after {
  background-color: #fffafa;
}
html.acmilan .section-black .progress-bar {
  background-color: #e3868a;
}
html.acmilan .section-black .progress-bar .bar {
  background-color: #fffafa;
}
html.acmilan .section-black .popup-plain {
  border-color: #fffafa;
}
html.acmilan .section-black .list-flat {
  background: #d1393f;
  border-color: #fffafa;
}
html.acmilan .section-black .list-flat li {
  border-bottom-color: #fffafa;
}
html.acmilan .section-black .list-flat li .indicator {
  border-color: #fffafa;
}
html.acmilan .section-black .point .action-items a:hover,
html.acmilan .section-black .point .action-items a.selected {
  background: #fffafa;
  color: #d1393f;
}
html.acmilan .section-black .point .point-picture .picture-point-image {
  border-color: #fffafa;
  background-color: rgba(255, 250, 250, 0.9);
  box-sizing: border-box;
}
html.acmilan .section-black .point .point-picture .picture-point-image.input-image {
  color: #d1393f;
}
html.acmilan .section-black .point-limit {
  border-color: #fffafa;
}
html.acmilan .section-black label.checkbox {
  border-color: #d1393f;
  color: #d1393f;
}
html.acmilan .section-black .submit,
html.acmilan .section-black .input-checkbox,
html.acmilan .section-black .input-image {
  border-color: #e6e1e1;
  color: #fffafa;
}
html.acmilan .section-black .submit:hover,
html.acmilan .section-black .input-checkbox:hover,
html.acmilan .section-black .input-image:hover {
  border-color: #fffafa;
}
html.acmilan .section-black .submit:active,
html.acmilan .section-black .input-checkbox:active,
html.acmilan .section-black .input-image:active {
  color: #e6e1e1;
}
html.acmilan .section-black .input-checkbox input:checked + options {
  color: #d1393f;
  background-color: #fffafa;
}
html.acmilan .section-black .input-checkbox input:checked + options span.tooltip {
  color: #fffafa;
}
html.acmilan .section-black .stages-applications.stages:after {
  background: #fffafa;
}
html.acmilan .section-black .stages-applications.stages > li {
  color: #fffafa;
}
html.acmilan .section-black .stages-applications.stages > li:before {
  color: #d1393f;
  background: #fffafa;
}
html.acmilan .section-black .stages-applications.stages > li:not(.complete):not(:active):before {
  color: #fffafa;
  background: #d1393f;
  border-color: #fffafa;
}
html.acmilan .section-black .chart {
  background: #d1393f;
  color: #fffafa;
  border-color: #fffafa;
}
html.acmilan .section-black .input-checkbox,
html.acmilan .section-black .input-text,
html.acmilan .section-black .input-text-area {
  color: #fffafa;
  border-color: #fffafa;
}
html.acmilan .section-black .input-checkbox label,
html.acmilan .section-black .input-text label,
html.acmilan .section-black .input-text-area label {
  background: #fffafa;
  color: #d1393f;
}
html.acmilan .section-black .input-checkbox.hover:not(:hover),
html.acmilan .section-black .input-text.hover:not(:hover),
html.acmilan .section-black .input-text-area.hover:not(:hover) {
  border-color: rgba(255, 250, 250, 0.1);
}
html.acmilan .section-black .point-placeholder .drop-zone {
  border-color: #fffafa;
}
html.acmilan .section-black,
html.acmilan .section-black .section-header h2 {
  color: #fffafa;
}
html.acmilan .section-black ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 250, 250, 0.7);
}
html.acmilan .section-black :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 250, 250, 0.7);
}
html.acmilan .section-black ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 250, 250, 0.7);
}
html.acmilan .section-black :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 250, 250, 0.7);
}
html.acmilan .section-black .circle,
html.acmilan .section-black .social-icon.symbol,
html.acmilan .section-black .line {
  color: #d1393f;
}
html.acmilan .section-black .point:not(.point-reference) .point-body {
  color: #e6e1e1;
}
html.acmilan.modal-page {
  background: #d1393f;
}
html.acmilan.modal-page body {
  background: #d1393f;
}
html.acmilan .modal-container .shield {
  background: fade-out(#d1393f, 50%);
}
html.acmilan .modal {
  border-color: #d64e53;
  color: #d1393f;
}
html.acmilan .modal .input-checkbox,
html.acmilan .modal .input-text,
html.acmilan .modal .input-text-area {
  color: #d1393f;
  border-color: #d1393f;
}
html.acmilan .modal .input-checkbox label,
html.acmilan .modal .input-text label,
html.acmilan .modal .input-text-area label {
  background: #d1393f;
  color: #fffafa;
}
html.acmilan .modal .input-checkbox.hover:not(:hover),
html.acmilan .modal .input-text.hover:not(:hover),
html.acmilan .modal .input-text-area.hover:not(:hover) {
  border-color: rgba(209, 57, 63, 0.1);
}
html.acmilan .modal .plan-actions {
  border-color: #d64e53;
}
html.acmilan .modal .submit {
  border-color: #d64e53;
  background: #d64e53;
  color: #fffafa;
}
html.acmilan .modal-explain-payment .payments .payment {
  border-color: #db6267;
}
html.acmilan .modal-explain-payment .payments .payment label {
  background: #db6267;
  color: #fffafa;
}
html.acmilan .modal-explain-payment .payments .payment .icons {
  border-top-color: #db6267;
}
html.acmilan .coffee-svg {
  fill: #d1393f;
}
.color-options .color-option.acmilan {
  background: #d1393f;
}
/* END COLORS */
.section-header h1,
.section-header h2,
.section-header h3 {
  font-family: "Verb", "HelveticaNeue-Light ", " Helvetica Neue Light ", " Helvetica Neue ", Helvetica, Arial, " Lucida Grande ", sans-serif;
  font-weight: 600;
}
/* END FONTS */
body ul li {
  list-style: none;
}
body > div {
  padding-top: 1px;
}
body > .container {
  padding: 0;
}
.section {
  z-index: 10;
  width: 100%;
  padding: 40px 0px;
  position: relative;
  -webkit-transition: 'max-height 0.4s ease, opacity 0.4s ease';
  -moz-transition: 'max-height 0.4s ease, opacity 0.4s ease';
  -ms-transition: 'max-height 0.4s ease, opacity 0.4s ease';
  -o-transition: 'max-height 0.4s ease, opacity 0.4s ease';
  margin-top: 0px;
}
.square {
  width: 31px;
  height: 31px;
  margin: -15px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  position: absolute;
  bottom: 0px;
  left: 50%;
}
.square-top {
  bottom: auto;
  top: 0px;
  background: inherit;
}
/* Region Header */
.sumry-link {
  z-index: 2;
  color: white;
  position: relative;
  text-align: center;
  margin-top: 100px;
}
/* Header Animations */
@-webkit-keyframes header-animate-slide {
  0% {
    -webkit-transform: translate(0, -140%);
    -moz-transform: translate(0, -140%);
    -ms-transform: translate(0, -140%);
    -o-transform: translate(0, -140%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
@-moz-keyframes header-animate-slide {
  0% {
    -webkit-transform: translate(0, -140%);
    -moz-transform: translate(0, -140%);
    -ms-transform: translate(0, -140%);
    -o-transform: translate(0, -140%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
@-o-keyframes header-animate-slide {
  0% {
    -webkit-transform: translate(0, -140%);
    -moz-transform: translate(0, -140%);
    -ms-transform: translate(0, -140%);
    -o-transform: translate(0, -140%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
@keyframes header-animate-slide {
  0% {
    -webkit-transform: translate(0, -140%);
    -moz-transform: translate(0, -140%);
    -ms-transform: translate(0, -140%);
    -o-transform: translate(0, -140%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
/* End Header Animations */
div.section.section-header {
  padding-top: 100px;
  padding-bottom: 30px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
div.section.section-header:after {
  content: "";
  background: inherit;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.section-top {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-bottom: 88px;
  min-height: 150px;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.section-top + .section-header {
  margin-top: 150px;
}
.section-top.image {
  min-height: 300px;
}
.section-top.image + .section-header {
  margin-top: 300px;
}
.section-top h2 {
  margin-top: 20px;
  font-weight: normal;
  font-size: 18px;
}
@media (max-width: 600px) {
  .section-top {
    min-height: 60px;
  }
}
@media (max-width: 480px) {
  .section-top {
    min-height: 20px;
  }
}
body[data-skip-animation=true] div.section.section-header,
body[data-skip-animation=true] .details,
body[data-skip-animation=true] .details .details-content,
body[data-skip-animation=true] .point.swing-in,
body[data-skip-animation=true] .section {
  -webkit-transition: all 0.01s linear !important;
  -moz-transition: all 0.01s linear !important;
  -ms-transition: all 0.01s linear !important;
  -o-transition: all 0.01s linear !important;
}
div.section.section-header.open {
  -webkit-animation: header-animate-slide 1.6s 0 cubic-bezier(0.5, 0.24, 0.49, 0.94);
  -moz-animation: header-animate-slide 1.6s 0 cubic-bezier(0.5, 0.24, 0.49, 0.94);
  -ms-animation: header-animate-slide 1.6s 0 cubic-bezier(0.5, 0.24, 0.49, 0.94);
}
.section-header .profile > *:not(.submit) {
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-rendering: optimizeLegibility;
  line-height: 1.4em;
  margin: 0;
  margin-top: 12px;
}
.section-header .profile h1 {
  font-size: 35px;
  padding-top: 20px;
  padding-bottom: 0px;
}
.section-header .profile h2,
.section-header .profile h3 {
  font-size: 20px;
}
.section-header .profile h3 {
  font-size: 18px;
}
.section-header .profile a {
  text-decoration: none;
}
.section-header .profile h1 {
  display: inline-block;
}
.section-header .profile .link {
  font-size: 14px;
  font-family: inherit;
  margin-top: -6px;
}
.section-header .profile .link a {
  text-decoration: none;
}
.section-header .image {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 200px;
  height: 200px;
  position: absolute;
  top: -100px;
  left: 50%;
  margin-left: -100px;
  z-index: 100;
  border: #ffffff;
  background: white;
  border-width: 2px;
  border-style: solid;
  border-radius: 100px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*-moz-box-shadow:    0px 1px 3px 0px rgba(0,0,0,0.21);*/
  /*-webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.21);*/
  /*box-shadow:         0px 1px 3px 0px rgba(0,0,0,0.21);*/
}
.section-header .details {
  max-width: 600px;
  margin: 30px auto;
  margin-top: 40px;
  padding-bottom: 20px;
  background: inherit;
  text-align: center;
  background: none;
  position: relative;
  z-index: 20;
}
.section-header .details .details-content {
  opacity: 0;
  position: relative;
  -webkit-transition: opacity 1s ease 1s;
  -moz-transition: opacity 1s ease 1s;
  -ms-transition: opacity 1s ease 1s;
  -o-transition: opacity 1s ease 1s;
}
.section-header .details .details-background {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 50%;
  -webkit-transition: 'top 1s ease, bottom 1s ease';
  -moz-transition: 'top 1s ease, bottom 1s ease';
  -ms-transition: 'top 1s ease, bottom 1s ease';
  -o-transition: 'top 1s ease, bottom 1s ease';
}
.section-header.open .details .details-background {
  top: 0;
  bottom: 0;
}
.section-header.open .details .details-content {
  opacity: 1;
}
.section-header .details .detail-nav {
  text-align: center;
}
.section-header .details .detail-nav ul {
  list-style-type: none;
  padding: 20px 0px;
  padding-bottom: 10px;
  display: inline-block;
}
.section-header .details .detail-nav ul {
  text-align: center;
}
.section-header .details .detail-nav li {
  display: inline-block;
}
.section-header .details .detail-nav li a {
  padding: 5px;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  text-transform: uppercase;
  display: inline-block;
}
.large-image {
  right: -40px;
  top: -2px;
  left: 0;
  height: 400px;
  position: fixed;
  overflow: hidden;
  z-index: 1;
  padding: 0;
  margin: 0;
}
/* End Region */
/*Line Region*/
div.line {
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 50%;
  /*margin-left: -1px;*/
  width: 1px;
}
.section:not(.section-header):not(.section-top) {
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
}
.section:not(.section-header):not(.section-top).section-closed {
  opacity: 0;
}
.section:not(.section-header):not(.section-top).section-closed:first-child {
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  -o-transform: translate(0, 30px);
}
.section:not(.section-header):not(.section-top):not(.section-closed) {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  -o-transform: translate(0, 0px);
}
.section:not(.section-header):not(.section-top):last-of-type div.line:after {
  content: "END";
  position: absolute;
  bottom: 0px;
  margin-left: -31px;
  width: 61px;
  line-height: 60px;
  text-align: center;
  display: block;
  color: inherit;
}
.section:not(.section-header):not(.section-top):last-of-type div.line:before {
  content: "";
  position: absolute;
  bottom: 0;
  margin-left: -31px;
  width: 61px;
  height: 61px;
  display: block;
  border-radius: 31px;
  background: inherit;
  color: inherit;
}
.section-header .line {
  bottom: auto;
  top: 0px;
}
.section .section-title {
  text-align: right;
  padding-right: 20px;
  margin-top: -30px;
  padding-bottom: 30px;
  text-transform: uppercase;
}
.section:last-of-type .line {
  bottom: 100px;
}
.section:last-of-type {
  padding-bottom: 200px;
}
/* End Region */
/* Points */
.section .point {
  position: relative;
  width: 50%;
  margin-top: -10px;
  min-height: 60px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.section .point form {
  display: initial;
}
.point-right {
  margin-left: 50%;
}
.point-center {
  margin-left: auto;
  margin-right: auto;
}
.point h2 {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  margin-top: 0px;
  padding-top: 0px;
  font-size: 18px;
  margin-bottom: 0;
}
.point h2 span.weak {
  display: none;
}
.point .point-body {
  font-size: 16px;
  line-height: 1.3em;
  margin-top: 10px;
  min-height: 16px;
  margin-bottom: 0;
}
.point .point-body .image-instructions {
  border: 1px dashed inherit;
}
.point .point-picture {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90%;
  height: 300px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 50px;
  max-width: 400px;
}
.point .point-picture .picture-point-image {
  height: 100%;
  margin: 0 auto;
  width: auto;
  background-position: center;
  background-size: contain;
  border: 8px solid white;
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
}
.point .point-picture .picture-point-image.input-image {
  color: black;
  min-width: 200px;
}
.point.show-picture {
  min-height: 300px;
  margin-top: 10px;
  margin-bottom: 40px;
}
.point:not(.show-picture) .point-picture {
  display: none;
}
.point.point-left .point-picture {
  left: 100%;
  text-align: left;
}
.point.point-right .point-picture {
  right: 100%;
  text-align: right;
}
@media (max-width: 600px) {
  .point .point-picture {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    display: block;
    min-height: 200px;
    left: 0px !important;
    right: 0px !important;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 400px) {
  .point .point-picture {
    left: -20px !important;
  }
}
.point .point-container {
  max-width: 400px;
  padding-top: 2px;
  position: relative;
}
.point-large .point-container {
  padding-top: 22px;
}
.point-right .point-container {
  padding-left: 50px;
  padding-right: 20px;
}
.point-left .point-container {
  margin-left: auto;
  margin-right: 0px;
  text-align: right;
  padding-right: 50px;
  padding-left: 20px;
}
.point-center .point-container {
  padding-left: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.point .point-content-container {
  position: relative;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.point .point-content-container > *:first-child {
  margin-top: 0px;
  padding-top: 0px;
  font-size: 18px;
}
.point.point-reference {
  margin-top: 0px;
  margin-bottom: 0px;
}
.point.point-reference .circle .circle-inner {
  overflow: none;
  border: 2px solid white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.point.point-reference .circle .circle-inner i {
  line-height: 48px;
}
.point.point-reference .point-content-container .point-body,
.point.point-reference .point-content-container h2 {
  font-style: italic;
}
.point.point-reference .point-content-container > span {
  display: block;
  margin-top: 2px;
  font-size: 0.9em;
  font-style: italic;
}
.point.point-reference .point-content-container .reference-links a {
  opacity: 0.6;
  display: inline-block;
  border: 2px solid white;
  color: white;
  font-size: 14px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 28px;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}
.point.point-reference .point-content-container .reference-links a i {
  line-height: inherit;
}
.point.point-reference .point-content-container .reference-links a span {
  display: none;
}
.point.point-reference .point-content-container .reference-links a.open {
  width: auto;
  padding: 0 10px;
}
.point.point-reference .point-content-container .reference-links a.open span {
  display: inline-block;
}
.point.point-reference .point-content-container .reference-links a:hover {
  opacity: 0.8;
}
.point.point-reference .point-content-container .reference-links a:not(:first-child) {
  margin-left: 5px;
}
/* Region Circle */
.circle > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin-left: -50%;
  margin-right: -50%;
  position: absolute;
  top: 0;
  left: 0;
}
.point-left .circle > div {
  left: auto;
  right: 0;
}
.point .circle,
.section-header .circle {
  position: absolute;
  top: 0px;
  height: 20px;
  width: 20px;
}
.point.point-icon .circle,
.point.point-reference:not(.point-edit):not(.confirmed) .circle {
  height: 31px;
  width: 31px;
  line-height: 31px;
}
.point.point-icon .circle i,
.point.point-reference:not(.point-edit):not(.confirmed) .circle i {
  display: inline-block;
  line-height: inherit;
}
.point.point-icon .circle i:not(.icon-refresh),
.point.point-reference:not(.point-edit):not(.confirmed) .circle i:not(.icon-refresh) {
  margin-top: -2px;
}
.point.point-icon .point-container,
.point.point-reference:not(.point-edit):not(.confirmed) .point-container {
  padding-top: 5px;
}
.point-large .circle {
  width: 60px;
  height: 60px;
}
.circle {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.point-left .circle {
  right: 0px;
}
.point-center .circle {
  top: 0px;
  left: auto;
  right: auto;
}
.point-right .circle {
  left: 0px;
}
.circle div p {
  margin-top: 35%;
  /*display: none;*/
}
.point-large .circle div p {
  display: block;
}
/* Point Animations  */
.point {
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
}
.point .circle > div {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.point .point-body {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.point:not(.point-percent):hover .circle > div {
  -webkit-animation: wiggle 0.25s 0 linear;
  -moz-animation: wiggle 0.25s 0 linear;
  -ms-animation: wiggle 0.25s 0 linear;
}
.point.swing-out {
  opacity: 0;
}
.point.swing-out .point-body {
  opacity: 0;
  -webkit-transform: translate(0, -5px);
  -moz-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  -o-transform: translate(0, -5px);
}
.point.swing-in {
  opacity: 1;
}
.point.swing-in .point-body {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}
.point:not(.swing-in).swing-out .circle > div {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}
.point.swing-in .circle > div {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
/* End Region */
/* Media Queries */
@media (max-width: 600px) {
  .point.point-left:not(.swing-in).swing-out {
    -webkit-transform: translate(-10px, 0);
    -moz-transform: translate(-10px, 0);
    -ms-transform: translate(-10px, 0);
    -o-transform: translate(-10px, 0);
  }
  div.line,
  .section-header .circle,
  .square {
    left: 40px;
  }
  .section-header div.line {
    display: none;
  }
  .section .point {
    margin-left: 40px;
  }
  .section .point .point-container {
    padding-left: 40px;
  }
  .section-header .details {
    max-width: 400px;
  }
  .section .point {
    width: 85%;
    margin-top: 0px;
  }
  .point-left .point-container {
    margin-left: 0px;
    margin-right: auto;
    text-align: left;
    padding-right: 0px;
  }
  .point .point-container {
    padding-right: 5px;
  }
  .point-left .circle > div {
    left: 0;
    right: auto;
  }
  .point-left .circle {
    right: auto;
    left: 0px;
  }
  .details .detail-nav li a {
    text-align: center;
    display: block;
    float: none;
  }
  .details .detail-nav li {
    text-align: center;
    float: none;
  }
}
@media (max-width: 600px) and (min-width: 480px) {
  div.line,
  .section-header .circle,
  .square {
    left: 80px;
  }
  .section-header div.line {
    display: none;
  }
  .section .point {
    margin-left: 80px;
  }
  .section .point .point-container {
    padding-left: 40px;
  }
}
/*End Region*/
/* Region Pie Charts */
.chart {
  width: 100%;
  height: 100%;
  margin: 0px;
}
/* End Region */
/*End Region */
#point-loading-template {
  display: none;
}
.point-loading {
  height: 60px;
}
.point-loading + .point.hidden {
  margin-top: -60px;
}
/* REGION Loading Balls Animation */
.loading-animation {
  height: 20px;
  width: 20px;
  position: relative;
  margin: 100px auto;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate 1s 0 linear;
  -moz-animation: rotate 1s 0 linear;
  -ms-animation: rotate 1s 0 linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.loading-animation .circle {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
}
.loading-animation .circle:first-of-type {
  top: 0;
  left: 0;
}
.loading-animation .circle:last-of-type {
  bottom: 0;
  right: 0;
}
/* END REGION Loading Balls Animation */
