/**
 * @author: Handsoncode
 */
/* [ global helpers ] */
/**
 * @author: Handsoncode
 */
/* [ import global variables] */
/**
 * @author: Handsoncode
 */
/* [ grid values ] */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/* [ brand colors ] */
/* [ occasional colors ] */
/* [active colors from colors] */
/* [ shades of grays] */
/* [ active darker colors ] */
/* [ active lighter colors ] */
/* [ functional color ] */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/* [ import global mixins] */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/* [ borders ] */
/**
 * @author: Handsoncode
 */
.loader {
  position: relative;
  margin: 0 auto;
  width: 30px;
}
.loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #104bcd;
  }
}
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/* [ marketing pages modules ] */
/**
 * @author: Handsoncode
 */
/* [ components ]*/
/**
 * @author: Handsoncode
 */
.btn {
  height: 42px;
  line-height: 41px;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  padding: 0 27px;
  border-radius: 4px;
  border: none;
}
.btn:hover, .btn:focus, .btn:active {
  text-decoration: none;
}
.btn.hover-moveup {
  -webkit-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.btn.hover-moveup:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn.hover-movedown {
  -webkit-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.btn.hover-movedown:hover {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}
.btn.size-small {
  padding: 6px 14px;
  font-size: 13px;
}
.btn.size-medium {
  padding: 7px 18px;
  font-size: 15px;
}
.btn.size-large {
  padding: 10px 24px;
  font-size: 18px;
}
.btn.shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}
.btn.blue {
  color: #FFF;
  background: #104bcd;
}
.btn.blue:hover, .btn.blue:focus, .btn.blue:active {
  background-color: rgb(13.0461538462, 61.1538461538, 167.1538461538);
}
.btn.dark-blue {
  color: #FFF;
  background: #3F7E9A;
}
.btn.dark-blue:hover, .btn.dark-blue:focus, .btn.dark-blue:active {
  background-color: rgb(51.1548387097, 102.3096774194, 125.0451612903);
}
.btn.red {
  color: #FFF;
  background: #E87677;
}
.btn.red:hover, .btn.red:focus, .btn.red:active {
  background-color: rgb(226.135, 83.065, 84.32);
}
.btn.green {
  color: #FFF;
  background: #43a047;
}
.btn.green:hover, .btn.green:focus, .btn.green:active {
  background-color: rgb(54.9577092511, 131.2422907489, 58.2387665198);
}
.btn.blue-text {
  color: #104bcd;
  background: transparent;
}
.btn.blue-text:hover, .btn.blue-text:focus, .btn.blue-text:active {
  color: rgb(13.0461538462, 61.1538461538, 167.1538461538);
}
.btn.red-text {
  color: #E87677;
  background: transparent;
}
.btn.red-text:hover, .btn.red-text:focus, .btn.red-text:active {
  color: rgb(226.135, 83.065, 84.32);
}
.btn.disabled {
  background: transparent;
  color: #CCC;
}
.btn.disabled:focus, .btn.disabled:active {
  background-color: transparent;
}
.btn.ghost-blue, .btn.ghost-red, .btn.ghost-gray {
  border: 1px solid currentColor;
  background: transparent;
}
.btn.ghost-blue {
  color: #104bcd;
}
.btn.ghost-blue.large {
  line-height: 45px;
}
.btn.ghost-blue:hover, .btn.ghost-blue:focus, .btn.ghost-blue:active {
  color: rgb(13.0461538462, 61.1538461538, 167.1538461538);
  border-color: currentColor;
}
.btn.ghost-red {
  color: #E87677;
}
.btn.ghost-red.large {
  line-height: 45px;
}
.btn.ghost-red:hover, .btn.ghost-red:focus, .btn.ghost-red:active {
  color: rgb(226.135, 83.065, 84.32);
  border-color: currentColor;
}
.btn.ghost-gray {
  color: #8D8D8D;
  border-color: #8D8D8D;
}
.btn.ghost-gray.large {
  line-height: 45px;
}
.btn.ghost-gray:hover, .btn.ghost-gray:focus, .btn.ghost-gray:active {
  color: #363636;
  border-color: #363636;
}
.btn.large, .btn.small, .btn.very-small {
  text-transform: uppercase;
}
.btn.large {
  height: 50px;
  line-height: 49px;
  vertical-align: middle;
  font-size: 15px;
  padding: 0 33px;
}
.btn.small {
  height: 38px;
  line-height: 37px;
  vertical-align: middle;
  font-size: 13px;
  padding: 0 28px;
}
.btn.very-small {
  height: 23px;
  line-height: 22px;
  vertical-align: middle;
  font-size: 12px;
  padding: 0 6px;
  line-height: 23px;
}

/**
 * @author: Handsoncode
 */
/* [ component variables ] */
.dropdown {
  /* [ arrow down ] */
}
.dropdown svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  display: inline-block;
}
.dropdown {
  /* [ dropdown list] */
}
.dropdown ul {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(0) scale(0.95, 0.95);
  -ms-transform: translateY(0) scale(0.95, 0.95);
  transform: translateY(0) scale(0.95, 0.95);
  max-height: 0;
  background: #FFF;
  opacity: 0;
  overflow: hidden;
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .dropdown ul {
    position: absolute;
    top: 45px;
    right: 15px;
    -webkit-transform: translateY(-5px) scale(0.95, 0.95);
    -ms-transform: translateY(-5px) scale(0.95, 0.95);
    transform: translateY(-5px) scale(0.95, 0.95);
    padding: 8px 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px 0 rgba(0, 8, 0, 0.3);
  }
}
.dropdown ul li {
  float: none;
  padding: 10px;
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .dropdown ul li {
    display: block;
    height: 25px;
    line-height: 24px;
    vertical-align: middle;
    padding: 0;
    margin: 3px 0;
  }
  .dropdown ul li:hover {
    background: #edeef0;
  }
}
.dropdown ul a,
.dropdown ul a:hover {
  color: inherit;
  padding: 0 25px 0 23px;
  border: none;
}
.dropdown.bottom ul {
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .dropdown.bottom ul::before {
    content: "";
    display: block;
    position: absolute;
    top: -7px;
    right: auto;
    bottom: auto;
    left: 37px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #EAEAEA;
    z-index: 101;
  }
  .dropdown.bottom ul::after {
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    right: auto;
    bottom: auto;
    left: 38px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 7px solid #FFF;
    z-index: 102;
  }
}
@media only screen and (min-width: 64.0625em) {
  .dropdown:focus ul, .dropdown:hover ul {
    -webkit-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
    max-height: 10000px;
    z-index: 100;
    overflow: visible;
    opacity: 1;
  }
}
.dropdown {
  /* [ mobile trigger: show / hide ] */
}
.dropdown input {
  position: fixed;
  top: -10000px;
  left: 0;
}
.dropdown input:checked + ul {
  -webkit-transform: translateY(0) scale(1, 1);
  -ms-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
  opacity: 1;
  max-height: 10000px;
  z-index: 100;
}

/**
 * @author: Handsoncode
 */
form ::-webkit-input-placeholder {
  font-size: 15px;
}
form :-moz-placeholder {
  font-size: 15px;
}
form ::-moz-placeholder {
  font-size: 15px;
}
form :-ms-input-placeholder {
  font-size: 15px;
}
form fieldset {
  margin: 2px 0;
}
form fieldset .inline-error {
  font-size: 0.813em;
  color: #fff;
  padding: 3px 6px;
  position: relative;
  top: -16px;
  background-color: #E87677;
}
form fieldset .inlined {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
form fieldset .inlined input[type=checkbox] {
  margin-right: 10px;
}
form fieldset .inlined a {
  display: inline;
}
form label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 7px;
}
form input[type=text],
form input[type=email],
form input[type=number],
form input[type=password],
form .selectbox,
form textarea {
  border: 1px solid #CFCFCF;
  font-size: 14px;
  width: 100%;
  padding: 11px 20px 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  background: #fff;
  -webkit-appearance: none;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=number]:focus,
form input[type=password]:focus,
form .selectbox:focus,
form textarea:focus {
  border-color: #104bcd;
}
form input[type=submit] {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
form textarea {
  resize: vertical;
}
form .selectbox {
  position: relative;
  padding: 0;
}
form .selectbox:hover {
  border-color: #8D8D8D;
}
form .selectbox select {
  padding: 11px 20px 12px;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
form .selectbox svg {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 11px;
  height: 11px;
  margin: -4px 0 0 0;
  fill: #474747;
  z-index: 10;
}

/**
 * @author: Handsoncode
 * @description: Centered headline
 */
.headline {
  position: relative;
  line-height: 1;
  padding-bottom: 21px;
}
.headline.centered {
  text-align: center;
  padding: 0;
}
.headline.centered span {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 6px;
  background: #FFF;
}
@media only screen and (min-width: 64.0625em) {
  .headline.centered span {
    padding: 0 46px;
  }
}

/**
 * @author: Handsoncode
 */
[aria-role=menubox] {
  height: 42px;
  line-height: 41px;
  vertical-align: middle;
  border: 1px solid #f7f7f7;
  position: relative;
  font-size: 15px;
  min-height: 42px;
  padding: 0 27px;
  background: #edeef0;
}
[aria-role=menubox] select {
  border: none;
  background: transparent;
}
[aria-role=menubox] svg {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 11px;
  height: 11px;
  margin: -4px 0 0 0;
  fill: #363636;
  z-index: 10;
}
[aria-role=menubox].large, [aria-role=menubox].small {
  text-transform: uppercase;
}
[aria-role=menubox].large {
  height: 50px;
  line-height: 49px;
  vertical-align: middle;
  font-size: 15px;
  padding: 0 33px;
}
[aria-role=menubox].small {
  height: 38px;
  line-height: 37px;
  vertical-align: middle;
  font-size: 13px;
  padding: 0 28px;
}

/**
 * @author: Handsoncode
 * @description: Notification module
 */
.notification, ng-message {
  font-size: 13px;
  padding: 15px;
  margin: 20px 0;
  color: #FFF;
  display: block;
}
.notification.error, ng-message.error {
  background: #E87677;
}
.notification.error a, ng-message.error a {
  color: #fff;
}
.notification.info, ng-message.info {
  background: #104bcd;
}
.notification.info a, ng-message.info a {
  color: #fff;
}
.notification.success, ng-message.success {
  background: #43a047;
}
.notification.success a, ng-message.success a {
  color: #fff;
}
.notification.warning, ng-message.warning {
  background: #FAD97F;
}
.notification.warning a, ng-message.warning a {
  color: #222;
}
.notification a, ng-message a {
  font-size: 13px;
  color: currentColor;
  text-decoration: underline;
}

ng-messages.error ng-message {
  background: #E87677;
}

/**
 * @author: Handsoncode
 */
.table-container {
  width: 100%;
  overflow-y: auto;
}
@media only screen and (min-width: 64.0625em) {
  .table-container {
    overflow: inherit;
  }
}
.table-container .highlight {
  padding: 30px 20px 40px;
  border-radius: 8px;
  border: 4px solid #104bcd;
}
.table-container .highlight.expired {
  border-color: #E87677;
}
.table-container table {
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  width: 100%;
}
.table-container table tbody {
  background-color: #fff;
}
.table-container table th {
  font-weight: 400;
}
.table-container table th,
.table-container table td {
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 13px;
}
.table-container table th span, .table-container table th p, .table-container table th a, .table-container table th div,
.table-container table td span,
.table-container table td p,
.table-container table td a,
.table-container table td div {
  font-size: 13px;
}
.table-container table th.text-wrap,
.table-container table td.text-wrap {
  white-space: normal;
}
.table-container table tr {
  border-bottom: 1px dashed #E3E3E3;
}
.table-container table a,
.table-container table a:hover,
.table-container table a:focus {
  color: #104bcd;
}

/**
 * @author: Handsoncode
 */
html, body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #363636;
}

p, span, a, ul li, ol li, label {
  font-size: 14px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  line-height: 1;
  font-weight: 400;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -0.3px;
}
h1.weight-light, h2.weight-light, h3.weight-light, h4.weight-light, h5.weight-light {
  font-weight: 300;
}
h1.weight-normal, h2.weight-normal, h3.weight-normal, h4.weight-normal, h5.weight-normal {
  font-weight: 400;
}
h1.weight-bold, h2.weight-bold, h3.weight-bold, h4.weight-bold, h5.weight-bold {
  font-weight: 600;
}
h1.text-black, h2.text-black, h3.text-black, h4.text-black, h5.text-black {
  color: #363636;
}
h1.text-blue, h2.text-blue, h3.text-blue, h4.text-blue, h5.text-blue {
  color: #104bcd;
}
h1.text-gray, h2.text-gray, h3.text-gray, h4.text-gray, h5.text-gray {
  color: #E3E3E3;
}
h1.text-green, h2.text-green, h3.text-green, h4.text-green, h5.text-green {
  color: #43a047;
}
h1.text-red, h2.text-red, h3.text-red, h4.text-red, h5.text-red {
  color: #E87677;
}
h1.text-white, h2.text-white, h3.text-white, h4.text-white, h5.text-white {
  color: #fff;
}
h1.size-small, h2.size-small, h3.size-small, h4.size-small, h5.size-small {
  font-size: 16px;
}
h1.size-medium, h2.size-medium, h3.size-medium, h4.size-medium, h5.size-medium {
  font-size: 24px;
}
h1.size-large, h2.size-large, h3.size-large, h4.size-large, h5.size-large {
  font-size: 30px;
}
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span {
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}
h1 > span a, h2 > span a, h3 > span a, h4 > span a, h5 > span a {
  font-size: inherit;
}
h1 > hr, h2 > hr, h3 > hr, h4 > hr, h5 > hr {
  width: 38px;
  padding: 0;
  margin: 0;
  position: relative;
  top: -16px;
  border: 2px solid #104bcd;
}
h1 > hr.centered, h2 > hr.centered, h3 > hr.centered, h4 > hr.centered, h5 > hr.centered {
  left: 50%;
  margin-left: -19px;
}

a, a:hover, a:active, a:visited {
  text-decoration: none;
  color: #104bcd;
}

a:hover {
  color: rgb(13.0461538462, 61.1538461538, 167.1538461538);
}

code {
  border: 1px solid #E3E3E3;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-size: 12px;
  word-break: break-all;
  display: block;
  line-height: 1.6;
  text-align: left;
  padding: 14px 18px;
  margin: 16px 0 27px;
  background: #fff;
}
code.inline {
  display: inline;
  padding: 0 2px;
}

/**
 * @author: Handsoncode
 */
.user .headline {
  margin-bottom: 0;
}
.user .user-menu {
  margin-bottom: 30px;
  border-bottom: 1px solid #E3E3E3;
  background-color: #fff;
}
.user .user-menu label {
  font-size: 17px;
  position: relative;
  display: block;
  padding: 10px;
}
.user .user-menu label svg {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: 18px;
  bottom: auto;
  left: auto;
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.user .user-menu input {
  display: none;
}
.user .user-menu input:checked + nav {
  display: block;
}
.user .user-menu {
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .user .user-menu input,
  .user .user-menu label {
    display: none;
  }
}
.user .user-menu nav {
  display: none;
}
.user .user-menu nav a {
  border-top: 1px solid #f7f7f7;
  font-size: 15px;
  float: none;
  width: 100%;
  display: inline-block;
  padding: 6px 10px;
}
.user .user-menu nav a.active {
  color: inherit;
  cursor: default;
  text-decoration: none;
}
.user .user-menu nav svg {
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
  margin-left: 4px;
  fill: currentColor;
}
.user .user-menu nav {
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .user .user-menu nav {
    display: block;
    padding: 15px 35px 15px 0;
  }
  .user .user-menu nav a {
    width: auto;
    padding: 0;
    margin: 0 0 0 35px;
    border: none;
  }
}

/*
  @author: Handsoncode
*/
meta.foundation-version {
  font-family: "/5.5.3/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0;
}

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  width: 40.0625em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.0625em)/";
  width: 40.0625em;
}

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  width: 64.0625em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.0625em)/";
  width: 90.0625em;
}

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  width: 90.0625em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.0625em)/";
  width: 120.0625em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

html, body {
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 100%;
}

body {
  background: #fbfbfb;
  color: #222222;
  cursor: auto;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  position: relative;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.row {
  margin: 0 auto;
  max-width: 80rem;
  width: 100%;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}

.row .row {
  /*margin: 0 -0.9375rem;*/
  max-width: none;
  width: auto;
}

.row .row:before, .row .row:after {
  content: " ";
  display: table;
}

.row .row:after {
  clear: both;
}

.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}

.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}

.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.columns + .column:last-child, .column + .columns:last-child,
.columns + .columns:last-child {
  float: right;
}

.column + .column.end,
.columns + .column.end, .column + .columns.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .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.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .small-1 {
    width: 8.33333%;
  }
  .small-2 {
    width: 16.66667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.33333%;
  }
  .small-5 {
    width: 41.66667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.33333%;
  }
  .small-8 {
    width: 66.66667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.33333%;
  }
  .small-11 {
    width: 91.66667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.33333% !important;
  }
  .small-offset-2 {
    margin-left: 16.66667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.33333% !important;
  }
  .small-offset-5 {
    margin-left: 41.66667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.33333% !important;
  }
  .small-offset-8 {
    margin-left: 66.66667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.33333% !important;
  }
  .small-offset-11 {
    margin-left: 91.66667% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width: 40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .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.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .medium-1 {
    width: 8.33333%;
  }
  .medium-2 {
    width: 16.66667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.33333%;
  }
  .medium-5 {
    width: 41.66667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.33333%;
  }
  .medium-8 {
    width: 66.66667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.33333%;
  }
  .medium-11 {
    width: 91.66667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.33333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.66667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.33333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.66667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.33333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.66667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.33333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.66667% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .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.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .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.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .large-1 {
    width: 8.33333%;
  }
  .large-2 {
    width: 16.66667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.33333%;
  }
  .large-5 {
    width: 41.66667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.33333%;
  }
  .large-8 {
    width: 66.66667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.33333%;
  }
  .large-11 {
    width: 91.66667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.33333% !important;
  }
  .large-offset-2 {
    margin-left: 16.66667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.33333% !important;
  }
  .large-offset-5 {
    margin-left: 41.66667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.33333% !important;
  }
  .large-offset-8 {
    margin-left: 66.66667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.33333% !important;
  }
  .large-offset-11 {
    margin-left: 91.66667% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .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.625rem;
}

[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}

[class*=block-grid-]:after {
  clear: both;
}

[class*=block-grid-] > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 0.625rem 1.25rem;
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.33333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.66667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.28571%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.11111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.09091%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.33333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.33333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.66667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.28571%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.11111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.09091%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.33333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.33333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.66667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.28571%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.11111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.09091%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.33333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
/**
 * @author: Handsoncode
 */
.handsontable {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.htDropdownMenu .handsontable {
  font-size: 1rem;
}
.htDropdownMenu .handsontable .htCheckboxRendererLabel,
.htDropdownMenu .handsontable .htUIRadio label {
  font-size: 12px;
}

.htUIMultipleSelectHot .handsontable {
  font-size: 0.8rem;
}

.handsontable .htDimmed {
  color: #4a4a4a;
  background-color: #fcfcfc;
}

.handsontable .remove-action {
  color: #c52222;
}

.handsontable td a,
.handsontable .print-action,
.handsontable .colHeader,
.handsontable .rowHeader {
  font-size: 12px;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset,
legend {
  border: 0;
  padding: 0;
  margin: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

li, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* added by Handsoncode */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* [ web partials ] */
/**
 * @author: Handsoncode
 */
.brands ul li {
  text-align: center;
}
.brands ul li img {
  max-width: 100%;
}

/**
 * @author: Handsoncode
 */
footer {
  margin-top: 40px;
  padding: 40px 0 20px;
}
footer h4, footer p, footer a, footer a:active, footer a:visited {
  font-size: 14px;
  color: #363636;
}
footer h4, footer a:hover {
  color: #8D8D8D;
}
footer h4 {
  margin-top: 40px;
}
@media only screen and (min-width: 64.0625em) {
  footer h4 {
    margin-top: 24px;
  }
}
footer .row > div:first-child p, footer .row > div:first-child a, footer .row > div:first-child a:hover, footer .row > div:first-child a:active, footer .row > div:first-child a:visited, footer .row > div:first-child span {
  font-size: 13px;
  color: #8D8D8D;
}
footer svg {
  width: 150px;
  height: 30px;
  position: inherit;
  margin-top: 20px;
  fill: #000;
}

/**
 * @author: Handsoncode
 */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 34px 0 0;
  z-index: 1;
}
header .logo {
  position: relative;
  top: -3px;
  left: 0;
}
@media only screen and (min-width: 64.0625em) {
  header .logo {
    position: relative;
    top: 10px;
    left: 0;
  }
}
header .logo svg.handsontable-logo {
  width: 148px;
  height: 22px;
  fill: #363636;
}
header {
  /* Begin: This allows to stretch the mobile menu to 100% of width of the viewport */
}
header > .row > .columns:last-child {
  position: static;
}
header {
  /* End */
}
header nav > a {
  position: absolute;
  top: 24px;
  right: 25px;
  display: block;
  z-index: 11;
}
@media only screen and (min-width: 64.0625em) {
  header nav > a {
    display: none;
  }
}
header nav > a svg {
  width: 28px;
  height: 28px;
  fill: #363636;
}
header nav ul {
  display: none;
}
@media only screen and (min-width: 64.0625em) {
  header nav ul {
    display: block;
  }
}
header nav ul li {
  padding: 0 14px;
  display: inline-block;
  font-size: 13px;
}
header nav ul li.mobile-only {
  display: none;
}
header nav ul li a, header nav ul li a:hover, header nav ul li a:active, header nav ul li a:visited {
  font-size: 13px;
  color: #363636;
}
header nav ul li a:hover {
  color: #8D8D8D;
}
header {
  /* Menu visible only on mobile devices */
}
@media only screen and (min-width: 64.0625em) {
  header nav.mobile-active {
    display: none;
  }
}
header nav.mobile-active > a svg {
  fill: #8D8D8D;
}
header nav.mobile-active ul {
  position: absolute;
  top: 12px;
  left: 2%;
  width: 96%;
  padding: 66px 0 8px;
  display: block;
  text-align: center;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.15), 0 3px 18px rgba(0, 0, 0, 0.15);
  background: #fff;
}
header nav.mobile-active ul li {
  width: 49%;
  padding: 10px 0;
}
header nav.mobile-active ul li.mobile-only {
  display: inline-block;
}
header nav.mobile-active ul li a, header nav.mobile-active ul li a:hover, header nav.mobile-active ul li a:active, header nav.mobile-active ul li a:visited {
  font-size: 18px;
  color: #104bcd;
}
header nav.mobile-active ul li a.btn, header nav.mobile-active ul li a:hover.btn, header nav.mobile-active ul li a:active.btn, header nav.mobile-active ul li a:visited.btn {
  width: 100%;
  color: #fff;
  font-size: 18px;
}
header nav.mobile-active ul li:last-child {
  width: 90%;
  padding-top: 40px;
}
header nav.mobile-active ul li.news {
  display: none;
}

/**
 * @author: Handsoncode
 */
header .logotype {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 16px 0 10px;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  header .logotype {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    position: static;
    padding: 0;
    width: auto;
    box-shadow: none;
  }
  header .logotype, header .logotype > * {
    float: left;
  }
}
header .logotype .brand-logo svg {
  width: 151px;
  height: 38px;
  fill: #5d5d5d;
  display: inline-block;
  z-index: 100;
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  header .logotype .brand-logo svg {
    width: 187px;
    height: 47px;
    float: left;
  }
}
header .logotype .github-star {
  display: none;
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  header .logotype .github-star {
    display: block;
    margin: 13px 0 0 30px;
  }
}

/*
  @author: Handsoncode
 */
[aria-hidden=true] {
  display: none;
}

.gap-top-xxsmall {
  padding-top: 20px;
}
.gap-top-xsmall {
  padding-top: 40px;
}
.gap-top-small {
  padding-top: 70px;
}
.gap {
  /* changed from 150 to 110 */
}
.gap-top-medium {
  padding-top: 110px;
}
.gap-top-large {
  padding-top: 200px;
}
.gap-bottom-xxsmall {
  padding-bottom: 20px;
}
.gap-bottom-xsmall {
  padding-bottom: 40px;
}
.gap-bottom-small {
  padding-bottom: 70px;
}
.gap-bottom-medium {
  padding-bottom: 150px;
}
.gap-bottom-large {
  padding-bottom: 200px;
}

/**
 * @author: Handsoncode
 */
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 5px;
  position: absolute;
  z-index: 10;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
}
.tooltip .tooltip-top {
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.signin h2 {
  line-height: 38px;
  padding-bottom: 14px;
  margin: 41px 0 16px;
}
.signin h2 small {
  padding-bottom: 4px;
  font-weight: normal;
}
.signin form {
  padding-top: 16px;
}
.signin fieldset a {
  display: block;
  margin-top: -4px;
}
.signin fieldset .btn {
  width: 100%;
}
.signin fieldset .password-strength {
  font-size: 0.813em;
  position: relative;
  top: -11px;
}
.signin fieldset .consent {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
.signin fieldset .consent input[type=checkbox] {
  margin-right: 10px;
}
.signin fieldset .consent a {
  display: inline;
}
.signin + footer {
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .signin + footer {
    margin-top: 256px;
  }
}

/* [ admin pages modules ] */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .admin-create-user .customized-tooltip .tooltip-text {
  width: 400px;
  text-align: left;
  padding: 10px;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .admin-licenses {
  margin-top: 29px;
}
.user .admin-licenses h3 {
  font-size: 20px;
  font-weight: 400;
}
.user .admin-licenses h5 {
  margin: 5px 0;
}
.user .admin-licenses p {
  line-height: 1.7;
}
.user .admin-licenses .htDimmed .htAutocompleteArrow {
  display: none;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .admin-manual {
  margin-top: 29px;
}
.user .admin-manual h3 {
  font-size: 20px;
  font-weight: 400;
}
.user .admin-manual h5 {
  margin: 5px 0;
}
.user .admin-manual p {
  line-height: 1.7;
}
.user .admin-manual .query-lang-sample::before {
  content: "INPUT: ";
}
.user .admin-manual table {
  font-size: 12px;
  font-family: Verdana, Helvetica, Arial;
  font-style: normal;
  font-weight: normal;
  line-height: 21px;
  white-space: nowrap;
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
}
.user .admin-manual table ul {
  padding-left: 30px;
}
.user .admin-manual table ul li {
  list-style: square;
  font-size: 1em;
}
.user .admin-manual table tr, .user .admin-manual table th, .user .admin-manual table td {
  padding: 2px 10px;
}
.user .admin-manual table th {
  background-color: #dfdfdf;
}
.user .admin-manual table tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.user .admin-manual table td.example {
  padding: 0;
}
.user .admin-manual table td.example code {
  margin: 0;
  border-bottom-style: dotted;
  border-top-width: 0;
  padding: 5px 14px;
}
.user .admin-manual table td.example code:first-child {
  margin: 1px 0 0 0;
  border-top-width: 1px;
}
.user .admin-manual table td.example code:last-child {
  margin-bottom: 1px;
  border-bottom-style: solid;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .admin-search {
  margin-top: 29px;
}
.user .admin-search h3 {
  font-size: 20px;
  font-weight: 400;
}
.user .admin-search h5 {
  margin: 5px 0;
}
.user .admin-search p {
  line-height: 1.7;
}
.user .admin-search td.internal-note {
  background-color: #e8e9a6;
}
.user .admin-search .search-form label {
  display: inline;
}
.user .admin-search .quick-search {
  overflow: auto;
}
.user .admin-search .quick-search ul {
  margin-left: 10px;
}
.user .admin-search .quick-search ul li {
  font-size: 1em;
}
.user .admin-search .search-options {
  font-size: 15px;
  font-weight: 400;
}
.user .admin-search .handsontable thead th {
  text-align: left;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .admin-switches {
  margin-top: 29px;
}
.user .admin-switches h3 {
  font-size: 20px;
  font-weight: 400;
}
.user .admin-switches h5 {
  margin: 5px 0;
}
.user .admin-switches p {
  line-height: 1.7;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .admin-users h3 {
  font-size: 20px;
  font-weight: 400;
}
.user .admin-users h3 span {
  font-weight: 400;
}
.user .admin-users h4 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 0;
}
.user .admin-users h4 a {
  font-size: 1em;
}
.user .admin-users h5 {
  margin: 5px 0;
}
.user .admin-users p {
  line-height: 1.7;
}
.user .admin-users .section {
  border: 1px solid #e3e3e3;
  padding: 0px 20px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  background-color: #fff;
}
.user .admin-users .action-buttons {
  margin-top: 6px;
}
.user .admin-users .create-user {
  position: absolute;
  right: 30px;
  top: 115px;
}
.user .admin-users .htDimmed .htAutocompleteArrow {
  display: none;
}
.user .admin-users .handsontable-container {
  margin-top: 10px;
}
.user .admin-users .user-blocked {
  font-size: 1em;
  color: #F00;
  font-weight: bold;
}
.user .admin-users .upload-file-wrapper {
  display: flex;
  flex-grow: 1;
}
.user .admin-users .drop-box {
  border: 1px solid transparent;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 25%, #f0f0f0 25%, #f0f0f0 50%, #ffffff 50%, #ffffff 75%, #f0f0f0 75%, #f0f0f0 100%);
  background-size: 7px 7px;
  text-align: center;
}
.user .admin-users .drop-box.dragover {
  background: linear-gradient(135deg, #ffffff 25%, #e8e9a6 25%, #e8e9a6 50%, #ffffff 50%, #ffffff 75%, #e8e9a6 75%, #e8e9a6 100%);
  background-size: 7px 7px;
}
.user .admin-users .drop-box.upload-error {
  background: linear-gradient(135deg, #ffffff 25%, #ffeded 25%, #ffeded 50%, #ffffff 50%, #ffffff 75%, #ffeded 75%, #ffeded 100%);
  background-size: 7px 7px;
}
.user .admin-users .drop-box.upload-successful {
  background: #ddf9d9;
}
.user .admin-users .drop-box.upload-required {
  border: 1px solid #ff4c42;
}
.user .admin-users .drop-box div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 1em;
}
.user .admin-users .drop-box-progress {
  display: flex;
  flex-grow: 1;
  width: 40%;
  transition: width 0.2s;
  background: linear-gradient(135deg, #ffffff 25%, #72ce75 25%, #72ce75 50%, #ffffff 50%, #ffffff 75%, #72ce75 75%, #72ce75 100%) top left fixed;
  background-size: 7px 7px;
}
.user .admin-users .drop-box-fullscreen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid red;
  z-index: 9999;
  background: #f8f8f8;
  border: 15px dashed #ddd;
  text-align: center;
}
.user .admin-users .handsontable th {
  text-align: left;
}
.user .admin-users .handsontable td[ng-linked] {
  padding: 0;
  white-space: initial;
  display: flex;
}
.user .admin-users .handsontable td.internal-note {
  background-color: #e8e9a6;
}
.user .admin-users .handsontable td.unused-cell {
  background-color: #f0f0f0;
}
.user .admin-users .handsontable td.expired {
  background-color: #ff9b9b;
}
.user .admin-users .handsontable td.order-color-0 {
  background-color: #ffcccc !important;
}
.user .admin-users .handsontable td.order-color-1 {
  background-color: #ffe5c5 !important;
}
.user .admin-users .handsontable td.order-color-2 {
  background-color: #feffd2 !important;
}
.user .admin-users .handsontable td.order-color-3 {
  background-color: #dcffd5 !important;
}
.user .admin-users .handsontable td.order-color-4 {
  background-color: #bffaff !important;
}
.user .admin-users .handsontable td.order-color-5 {
  background-color: #c2d9ff !important;
}
.user .admin-users .handsontable td.order-color-6 {
  background-color: #d6cfff !important;
}
.user .admin-users .handsontable td.order-color-7 {
  background-color: #ffdcff !important;
}
.user .admin-users .handsontable td.order-color-8 {
  background-color: #d4fae5 !important;
}
.user .admin-users .handsontable td.order-color-9 {
  background-color: #cbfafa !important;
}
.user .admin-users .handsontable td.order-color-10 {
  background-color: #d8ebfb !important;
}
.user .admin-users .handsontable td.order-color-11 {
  background-color: #e5ddfb !important;
}
.user .admin-users .handsontable td.order-color-12 {
  background-color: #f9c7df !important;
}
.user .admin-users .handsontable td.order-color-13 {
  background-color: #facfcb !important;
}
.user .admin-users .handsontable td.order-color-14 {
  background-color: #fbedd8 !important;
}
.user .admin-users .handsontable td.order-color-15 {
  background-color: #f1fce1 !important;
}
.user .admin-users .handsontable td.support-color-0 {
  background-color: #f6fcfe !important;
}
.user .admin-users .handsontable td.support-color-1 {
  background-color: #f6fcfe !important;
}
.user .admin-users .handsontable td.support-color-2 {
  background-color: #eef9fc !important;
}
.user .admin-users .handsontable td.support-color-3 {
  background-color: #e5f6fb !important;
}
.user .admin-users .handsontable td.support-color-4 {
  background-color: #dcf3f9 !important;
}
.user .admin-users .handsontable td.support-color-5 {
  background-color: #d3f0f8 !important;
}
.user .admin-users .handsontable td.support-color-6 {
  background-color: #cbedf6 !important;
}
.user .admin-users .handsontable td.support-color-7 {
  background-color: #c2ebf5 !important;
}
.user .admin-users .handsontable td.support-color-8 {
  background-color: #b9e8f3 !important;
}
.user .admin-users .handsontable td.support-color-9 {
  background-color: #b1e5f2 !important;
}
.user .admin-users .handsontable td.support-color-10 {
  background-color: #a8e2f0 !important;
}
.user .admin-users .handsontable td.support-color-11 {
  background-color: #9fdfef !important;
}
.user .admin-users .handsontable td.support-color-12 {
  background-color: #96dced !important;
}
.user .admin-users .handsontable td.support-color-13 {
  background-color: #8ed9ec !important;
}
.user .admin-users .handsontable td.support-color-14 {
  background-color: #85d6ea !important;
}
.user .admin-users .handsontable td.support-color-15 {
  background-color: #6ecee6 !important;
}

/* [ user pages modules ] */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/* [ local variable ] */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.user .invoices-description {
  font-size: 13px;
  text-align: right;
}
.user .invoices-description a {
  font-size: 13px;
}
.user .orders, .user .subscriptions {
  margin-top: 20px;
}
.user .orders .product-description, .user .subscriptions .product-description {
  margin-top: 5px;
  font-size: 11px;
  color: #777;
}
.user .orders ul, .user .subscriptions ul {
  width: 100px;
  height: 100px;
  display: block;
}
.user .orders .choose-product, .user .subscriptions .choose-product {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
  margin-bottom: 25px;
  /* [ styles only for desktop ] */
}
@media only screen and (min-width: 64.0625em) {
  .user .orders .choose-product, .user .subscriptions .choose-product {
    margin-top: -50px;
  }
}
.user .orders .choose-product .label, .user .subscriptions .choose-product .label {
  margin-right: 10px;
  font-weight: 500;
}
.user .orders .choose-product .product-dropdown, .user .subscriptions .choose-product .product-dropdown {
  width: 240px;
  padding: 0;
  border-radius: 4px;
}
.user .orders .choose-product .product-dropdown select, .user .subscriptions .choose-product .product-dropdown select {
  padding: 0 16px;
  position: relative;
  z-index: 20;
}
.user .orders table, .user .subscriptions table {
  margin-top: 5px;
  font-weight: 400;
}
.user .orders table th, .user .subscriptions table th {
  padding-top: 0;
  padding-bottom: 15px;
  font-weight: 500;
}
.user .orders table tr.two-rows-segment, .user .subscriptions table tr.two-rows-segment {
  border-bottom: none;
}
.user .orders table td, .user .subscriptions table td {
  padding-top: 30px;
  padding-bottom: 30px;
}
.user .orders table td.additional-bar, .user .subscriptions table td.additional-bar {
  padding-top: 0;
  padding-bottom: 0;
}
.user .orders table a, .user .subscriptions table a {
  color: #104bcd;
}
.user .orders table .two-rows-segment td, .user .subscriptions table .two-rows-segment td {
  padding-bottom: 20px;
}
.user .orders table .renewal-bar, .user .subscriptions table .renewal-bar {
  padding-top: 0;
  padding-bottom: 20px;
  font-weight: 500;
}
.user .orders table .renewal-bar p, .user .subscriptions table .renewal-bar p {
  margin: 0 auto;
  padding: 8px 0;
  font-size: 1em;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  background-color: #104bcd;
}
.user .orders table .renewal-bar p a, .user .subscriptions table .renewal-bar p a {
  color: inherit;
  text-decoration: underline;
}
.user .orders table .upcoming-support-bar, .user .subscriptions table .upcoming-support-bar {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
}
.user .orders table .upcoming-support-bar p, .user .subscriptions table .upcoming-support-bar p {
  font-size: 1em;
  font-weight: normal;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: right;
}
.user .subscriptions table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.row.order {
  margin-top: 29px;
  min-height: 350px;
}
.row.order h3 {
  margin: 50px 0 20px;
  font-size: 20px;
  font-weight: 400;
}
.row.order h3:first-child {
  margin-top: 0;
}
.row.order ul li {
  line-height: 2;
}
.row.order th {
  font-weight: 500;
}

.crossed {
  text-decoration: line-through;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.renewal-plans .plan-legacy .plan-compliance label, .renewal-plans .plan-legacy .plan-compliance label a {
  font-size: 13px;
  display: inline;
}
.renewal-plans .plan {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.02), 0 3px 17px rgba(0, 0, 0, 0.02);
  background: #fff;
}
@media only screen and (min-width: 64.0625em) {
  .renewal-plans .plan {
    margin-bottom: 0;
  }
}
.renewal-plans .plan:hover {
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.06), 0 3px 17px rgba(0, 0, 0, 0.06);
}
.renewal-plans .plan.basic-plan .plan-type {
  /* fallback/image non-cover color */
  background-color: #2067cd;
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(left, #2067cd 0%, #3399ff 100%);
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #2067cd), color-stop(100%, #3399ff));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(left, #2067cd 0%, #3399ff 100%);
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(left, #2067cd 0%, #3399ff 100%);
  /* IE10+ */
  background: -ms-linear-gradient(left, #2067cd 0%, #3399ff 100%);
  /* Standard */
  background: linear-gradient(to right, #2067cd 0%, #3399ff 100%);
  /* IE6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}
.renewal-plans .plan.extended-plan .plan-type {
  /* fallback/image non-cover color */
  background-color: #248a08;
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(left, #248a08 0%, #2dbf00 100%);
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #248a08), color-stop(100%, #2dbf00));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(left, #248a08 0%, #2dbf00 100%);
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(left, #248a08 0%, #2dbf00 100%);
  /* IE10+ */
  background: -ms-linear-gradient(left, #248a08 0%, #2dbf00 100%);
  /* Standard */
  background: linear-gradient(to right, #248a08 0%, #2dbf00 100%);
  /* IE6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}
.renewal-plans .plan.plan-disabled {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.4;
}
.renewal-plans .plan.plan-disabled:hover {
  box-shadow: none;
}
.renewal-plans .plan.plan-active {
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.06), 0 3px 17px rgba(0, 0, 0, 0.06);
}
.renewal-plans .plan.plan-active .plan-step-1, .renewal-plans .plan.plan-active .choose {
  display: none;
}
.renewal-plans .plan.plan-active .plan-step-2, .renewal-plans .plan.plan-active .checkout {
  display: block;
}
.renewal-plans .plan .plan-step-1, .renewal-plans .plan .plan-step-2 {
  padding: 10px 30px 0 20px;
  text-align: left;
}
.renewal-plans .plan .plan-step-1 {
  display: block;
}
.renewal-plans .plan .plan-step-1 ul {
  margin-top: 10px;
}
.renewal-plans .plan .plan-step-1 ul li {
  padding: 6px 0 6px 14px;
}
.renewal-plans .plan .plan-step-1 ul li:first-child {
  padding: 0 0 10px;
}
.renewal-plans .plan .plan-step-1 ul li:first-child span {
  color: #8D8D8D;
}
.renewal-plans .plan .plan-step-1 ul li svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  left: -5px;
  fill: #43a047;
}
.renewal-plans .plan .plan-step-2 {
  display: none;
}
.renewal-plans .plan .plan-step-2 .plan-dropdown {
  width: 140px;
  padding: 0;
  border-radius: 4px;
}
.renewal-plans .plan .plan-step-2 .plan-dropdown select {
  padding: 0 16px;
  position: relative;
  z-index: 20;
}
.renewal-plans .plan .plan-step-2 .plan-summary .plan-pricing {
  font-size: 14px;
}
.renewal-plans .plan .plan-step-2 .plan-compliance label, .renewal-plans .plan .plan-step-2 .plan-compliance label a {
  font-size: 13px;
  display: inline;
}
.renewal-plans .plan .plan-type {
  height: 60px;
}
.renewal-plans .plan .plan-type span {
  margin: 0 20px;
  float: left;
  color: #fff;
  line-height: 60px;
  font-size: 17px;
  font-weight: 600;
}
.renewal-plans .plan .plan-type span:last-child {
  float: right;
  font-weight: 400;
}
.renewal-plans .plan .btn {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  width: 180px;
  margin: 0 auto;
  display: block;
  font-weight: 500;
}
.renewal-plans blockquote {
  color: #777;
}

/**
 * @author: Handsoncode
 */
.renewal h3 {
  margin: 0;
  padding: 0 0 20px;
}
.renewal h3 p, .renewal h3 span, .renewal h3 a {
  font-size: 17px;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.contact .headline {
  margin: 66px 0 57px;
}
.contact h3 {
  font-size: 20px;
  line-height: 1;
  margin: 0 0 14px 0;
}
.contact .partner,
.contact .office {
  margin-top: 90px;
  text-align: center;
}
@media only screen and (min-width: 64.0625em) {
  .contact .partner,
  .contact .office {
    text-align: left;
    margin-top: 31px;
  }
}
.contact #form-sent,
.contact #form-error {
  display: none;
}
.contact .notification, .contact ng-message {
  margin: 0 0 20px;
}
.contact form {
  padding-bottom: 55px;
}
@media only screen and (min-width: 64.0625em) {
  .contact form {
    padding-bottom: 0;
  }
}
.contact form textarea {
  min-height: 175px;
  margin-bottom: 6px;
}
.contact form .consent {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
.contact form .consent input[type=checkbox] {
  margin-right: 10px;
}

/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
/**
 * @author: Handsoncode
 */
.notifications fieldset label input[type=checkbox] {
  margin: 6px 5px 0 0;
  vertical-align: top;
}

/**
 * @author: Handsoncode
 */
.settings h3 {
  font-size: 20px;
}
/*# sourceMappingURL=29008654.css.map */