/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/business/assets/ajax-loader.c5cd7f5300576ab4c88202b42f6ded62.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/business/assets/slick.ced611daf7709cc778da928fec876475.eot);
    src: url(/business/assets/slick.ced611daf7709cc778da928fec876475.eot?#iefix) format('embedded-opentype'), url(/business/assets/slick.b7c9e1e479de3b53f1e4e30ebac2403a.woff) format('woff'), url(/business/assets/slick.d41f55a78e6f49a5512878df1737e58a.ttf) format('truetype'), url(/business/assets/slick.f97e3bbf73254b0112091d0192f17aec.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

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

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
@charset "UTF-8";
:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
  --dt-row-stripe: 0, 0, 0;
  --dt-row-hover: 0, 0, 0;
  --dt-column-ordering: 0, 0, 0;
  --dt-html-background: white;
}
:root.dark {
  --dt-html-background: rgb(33, 37, 41);
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable td.dt-control:before {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  content: "\25B6";
}
table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "\25BC";
}

html.dark table.dataTable td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable td.dt-control:before {
  color: rgba(255, 255, 255, 0.5);
}
html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
  color: rgba(255, 255, 255, 0.5);
}

table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.125;
  right: 10px;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 50%;
  content: "\25B2";
  content: "\25B2"/"";
}
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 50%;
  content: "\25BC";
  content: "\25BC"/"";
}
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
  display: none;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 2px;
  z-index: 10;
}
div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(13, 110, 253);
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable > thead > tr > th:active,
table.dataTable > thead > tr > td:active {
  outline: none;
}
table.dataTable > tfoot > tr > th,
table.dataTable > tfoot > tr > td {
  padding: 10px 10px 6px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable tbody tr {
  background-color: transparent;
}
table.dataTable tbody tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: rgb(255, 255, 255);
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable tbody tr.selected a {
  color: rgb(9, 10, 11);
  color: rgb(var(--dt-row-selected-link));
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border > tbody > tr > th,
table.dataTable.row-border > tbody > tr > td, table.dataTable.display > tbody > tr > th,
table.dataTable.display > tbody > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.row-border > tbody > tr:first-child > th,
table.dataTable.row-border > tbody > tr:first-child > td, table.dataTable.display > tbody > tr:first-child > th,
table.dataTable.display > tbody > tr:first-child > td {
  border-top: none;
}
table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}
table.dataTable.cell-border > tbody > tr > th,
table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border > tbody > tr > th:first-child,
table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border > tbody > tr:first-child > th,
table.dataTable.cell-border > tbody > tr:first-child > td {
  border-top: none;
}
table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}
table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
}
table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}
table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
}
table.dataTable.order-column > tbody tr > .sorting_1,
table.dataTable.order-column > tbody tr > .sorting_2,
table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
table.dataTable.display > tbody tr > .sorting_2,
table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}
table.dataTable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
table.dataTable.display > tbody tr.selected > .sorting_2,
table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}
table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
}
table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
}
table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}
table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.011);
}
table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.003);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
}
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
}
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
}
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
}
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
}
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
}
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
}
table.dataTable.no-footer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable.compact thead th,
table.dataTable.compact thead td,
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td,
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}

table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_length select {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  padding: 4px;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  margin-left: 3px;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.05);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* FF3.6+ */
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* IE10+ */
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Opera 11.10+ */
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #111;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111 100%); /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111 100%); /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111 100%); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111 100%); /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #0c0c0c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* FF3.6+ */
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* IE10+ */
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: inherit;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
html.dark {
  --dt-row-hover: 255, 255, 255;
  --dt-row-stripe: 255, 255, 255;
  --dt-column-ordering: 255, 255, 255;
}
html.dark table.dataTable > thead > tr > th,
html.dark table.dataTable > thead > tr > td {
  border-bottom: 1px solid rgb(89, 91, 94);
}
html.dark table.dataTable > thead > tr > th:active,
html.dark table.dataTable > thead > tr > td:active {
  outline: none;
}
html.dark table.dataTable > tfoot > tr > th,
html.dark table.dataTable > tfoot > tr > td {
  border-top: 1px solid rgb(89, 91, 94);
}
html.dark table.dataTable.row-border > tbody > tr > th,
html.dark table.dataTable.row-border > tbody > tr > td, html.dark table.dataTable.display > tbody > tr > th,
html.dark table.dataTable.display > tbody > tr > td {
  border-top: 1px solid rgb(64, 67, 70);
}
html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}
html.dark table.dataTable.cell-border > tbody > tr > th,
html.dark table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid rgb(64, 67, 70);
  border-right: 1px solid rgb(64, 67, 70);
}
html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid rgb(64, 67, 70);
}
html.dark .dataTables_wrapper .dataTables_filter input,
html.dark .dataTables_wrapper .dataTables_length select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--dt-html-background);
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 1px solid rgb(89, 91, 94);
  background: rgba(255, 255, 255, 0.15);
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: #666 !important;
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 1px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:active {
  background: #3a3a3a;
}
.newblock {
    /*  width:100%; 
    height:100%; 
    background-image:url(../img/conference.jpg); 
    background-repeat:no-repeat; 
    background-size:cover; height:200px; 
    position:relative;*/
}

/*.newblock:before{
    content:'';
    border-color: white transparent transparent #f4f6fa;
    border-style: solid;
    border-width:20px 250px 20px 250px ;
    height: 0px;
    width: 0px;
    position:absolute;
    top:-1px;
    left:0;
}*/
/*.newblock:after{
    content: '';
    border-color:  transparent transparent white #44bd93;
    border-style: solid;
    border-width:20px 250px 20px 250px ;
    height: 0px;
    width: 0px;
    position:absolute;
    bottom:-1px;
    left:0;
}*/
/*.newblock .row{ height:inherit; }*/
.tabs-panel {
    display: block;
    height: 0;
    overflow: hidden;
}

.tabs-panel.is-active {
    height: auto;
}

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    width:
        /*whatever width you want*/
    ;
}

.slider {
    height: 540px !important;
}

@media only screen {}

@media only screen and (max-width: 39.9375em) {
    .newblock .block-title {
        display: none;
    }
}

@media only screen and (min-width: 40em) {
    .newblock {
        height: 460px;
    }

    /*    .newblock:before{
        content:'';
        border-width:50px 512px 50px 512px ;
    }*/
    /*.newblock:after{
        content: '';
        border-width:50px 512px 50px 512px ;
    }*/
    .newblock .block-title {
        padding: 120px 70px;
    }
}

@media only screen and (min-width: 1025px) {
    .newblock {
        height: 460px;
    }

    /*    .newblock:before{
        content:'';
        border-width:50px 600px 50px 600px ;
    }*/
    /*.newblock:after{
        content: '';
        border-width:50px 600px 50px 600px ;
    }*/
}

@media only screen and (min-width: 40em) and (max-width: 63.9375em) {}

@media only screen and (min-width: 1200px) {
    .newblock {
        height: 75vh;
    }

    /*    .newblock:before{
        content:'';
        top:-1px;
        border-width:55px 700px 55px 700px ;
    }*/
    /*.newblock:after{
        content: '';
        bottom:-1px;
        border-width:55px 700px 55px 700px ;
    }*/
    .newblock .block-title {
        padding: 150px 75px;
    }
}

@media only screen and (min-width: 1401px) {
    .outer {
        display: table;
        position: absolute;
        height: 100%;
        width: 60%;
    }

    .outer .middle .inner h5 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    /*    .newblock:before{
        content:'';
        top:-1px;
        border-width:85px 1000px 85px 1000px ;
    }*/
    /*.newblock:after{
        content: '';
        bottom:-1px;
        border-width:85px 1000px 85px 1000px ;
    }*/
    .newblock .block-title {
        padding: 150px 70px;
    }
}

/* .tabs-panel {
    display: block;
    height: 0;
    overflow: hidden;
  }*/
.tabs-panel.is-active {
    display: block;
}

#loading-bar-spinner {
    top: 50% !important;
    left: 50% !important;
    transition: none;
}

#loading-bar .bar {
    display: none
}

#loading-bar-spinner .spinner-icon {
    width: 50px !important;
    height: 50px !important;
    border: 50px solid transparent;
    background-image: url(/business/assets/loading.3f26435a39a364f7bab57555b257f126.svg);
    background-repeat: no-repeat;
    background-position: 100% !important;
    background-size: 50px 50px !important;
    animation: none !important;
    border: none !important;
    border-style: none !important;
}

#loading-bar .peg {
    -ms-box-shadow: none;
    box-shadow: none;
    opacity: 1
}

.danger {
    background-color: #f2dede !important;
    color: #a94442 !important;
    font-weight: bold !important;
}

.warning {
    background-color: #fcf8e3 !important;
    color: #8a6d3b !important;
    font-weight: bold !important;
}

#add-contact,
#remove-contact {
    padding: 5px 10px;
    font-size: 20px;
}

#add-contact {
    margin: 5px 10px;
}

.contacts-list tr,
.contacts-list td {
    padding: 3px 5px;
    margin: 0px;
    max-height: 50px;
}

.contact-list tr:hover {
    background-color: transparent !important;
}

.green-lucky-number {
    color: #78c81e;
    font-weight: bold;
}
.copy-btn a {
    cursor: pointer;
}
.copy-btn a:hover {
    color: #66cc00;
}
.copy-btn span {
    font-size: 13px;
}
[type=checkbox],[type=radio],body,button,legend{padding:0}.accordion-title,.button.dropdown::after,.small-pull-1,.small-pull-10,.small-pull-11,.small-pull-2,.small-pull-3,.small-pull-4,.small-pull-5,.small-pull-6,.small-pull-7,.small-pull-8,.small-pull-9,.small-push-1,.small-push-10,.small-push-11,.small-push-2,.small-push-3,.small-push-4,.small-push-5,.small-push-6,.small-push-7,.small-push-8,.small-push-9,sub,sup{position:relative}[type=checkbox],[type=radio],html,input[type=search],legend,select{box-sizing:border-box}.breadcrumbs a:hover,abbr[title]{text-decoration:underline}img,legend,textarea{max-width:100%}audio,canvas,img,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}.button,img{vertical-align:middle}pre,textarea{overflow:auto}h1,h2,h3,h4,h5,h6,p{text-rendering:optimizeLegibility}button,hr,input{overflow:visible}.card,.is-drilldown,.is-off-canvas-open,.js-off-canvas-overlay,.off-canvas-wrapper,svg:not(:root){overflow:hidden}abbr,body{color:#363636}.button.disabled,.button.disabled.alert,.button.disabled.primary,.button.disabled.secondary,.button.disabled.success,.button.disabled.warning,.button[disabled],.button[disabled].alert,.button[disabled].primary,.button[disabled].secondary,.button[disabled].success,.button[disabled].warning{opacity:.25;cursor:not-allowed}.slider,html.is-reveal-open,html.is-reveal-open body{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline dotted}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none;height:auto;-ms-interpolation-mode:bicubic}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}a,b,em,i,small,strong{line-height:inherit}legend{display:table;color:inherit;white-space:normal}summary{display:list-item}[hidden],template{display:none}.foundation-mq{font-family:"small=0em&medium=40em&large=63.9375em&xlarge=75em&xxlarge=90em"}html{font-size:16px}*,::after,::before{box-sizing:inherit}body{margin:0;background:#fff;font-family:Roboto-Light,Arial,sans-serif;font-weight:400;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}select{width:100%}.map_canvas embed,.map_canvas img,.map_canvas object,.mqa-display embed,.mqa-display img,.mqa-display object{max-width:none!important}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;border-radius:20%;background:0 0;line-height:1}[data-whatinput=mouse] button{outline:0}.is-visible{display:block!important}.is-hidden{display:none!important}.row{max-width:62.5rem;margin-right:auto;margin-left:auto}.row.expanded,.row:not(.expanded) .row{max-width:none}.row::after,.row::before{display:table;content:' '}.row::after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-right:0;padding-left:0}.column,.columns,.row.gutter-medium>.column,.row.gutter-medium>.columns,.row.gutter-small>.column,.row.gutter-small>.columns{padding-right:.625rem;padding-left:.625rem}.row .row{margin-right:-.625rem;margin-left:-.625rem}@media print,screen and (min-width:40em){.row .row{margin-right:-.625rem;margin-left:-.625rem}.column,.columns{padding-right:.625rem;padding-left:.625rem}}@media print,screen and (min-width:63.9375em){.row .row{margin-right:-.625rem;margin-left:-.625rem}}.row .row.collapse{margin-right:0;margin-left:0}.row.expanded .row{margin-right:auto;margin-left:auto}.column,.columns{width:100%;float:left}.column:last-child:not(:first-child),.columns:last-child:not(:first-child){float:right}.column.end:last-child:last-child,.end.columns:last-child:last-child{float:left}.column.row.row,.row.row.columns{float:none}.row .column.row.row,.row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.small-1{width:8.33333%}.small-push-1{left:8.33333%}.small-pull-1{left:-8.33333%}.small-offset-0{margin-left:0}.small-2{width:16.66667%}.small-push-2{left:16.66667%}.small-pull-2{left:-16.66667%}.small-offset-1{margin-left:8.33333%}.small-3{width:25%}.small-push-3{left:25%}.small-pull-3{left:-25%}.small-offset-2{margin-left:16.66667%}.small-4{width:33.33333%}.small-push-4{left:33.33333%}.small-pull-4{left:-33.33333%}.small-offset-3{margin-left:25%}.small-5{width:41.66667%}.small-push-5{left:41.66667%}.small-pull-5{left:-41.66667%}.small-offset-4{margin-left:33.33333%}.small-6{width:50%}.small-push-6{left:50%}.small-pull-6{left:-50%}.small-offset-5{margin-left:41.66667%}.small-7{width:58.33333%}.small-push-7{left:58.33333%}.small-pull-7{left:-58.33333%}.small-offset-6{margin-left:50%}.small-8{width:66.66667%}.small-push-8{left:66.66667%}.small-pull-8{left:-66.66667%}.small-offset-7{margin-left:58.33333%}.small-9{width:75%}.small-push-9{left:75%}.small-pull-9{left:-75%}.small-offset-8{margin-left:66.66667%}.small-10{width:83.33333%}.small-push-10{left:83.33333%}.small-pull-10{left:-83.33333%}.small-offset-9{margin-left:75%}.small-11{width:91.66667%}.small-push-11{left:91.66667%}.small-pull-11{left:-91.66667%}.small-offset-10{margin-left:83.33333%}.small-12{width:100%}.small-offset-11{margin-left:91.66667%}.small-up-1>.column,.small-up-1>.columns{float:left;width:100%}.small-up-1>.column:nth-of-type(1n),.small-up-1>.columns:nth-of-type(1n){clear:none}.small-up-1>.column:nth-of-type(1n+1),.small-up-1>.columns:nth-of-type(1n+1){clear:both}.small-up-1>.column:last-child,.small-up-1>.columns:last-child{float:left}.small-up-2>.column,.small-up-2>.columns{float:left;width:50%}.small-up-2>.column:nth-of-type(1n),.small-up-2>.columns:nth-of-type(1n){clear:none}.small-up-2>.column:nth-of-type(2n+1),.small-up-2>.columns:nth-of-type(2n+1){clear:both}.small-up-2>.column:last-child,.small-up-2>.columns:last-child{float:left}.small-up-3>.column,.small-up-3>.columns{float:left;width:33.33333%}.small-up-3>.column:nth-of-type(1n),.small-up-3>.columns:nth-of-type(1n){clear:none}.small-up-3>.column:nth-of-type(3n+1),.small-up-3>.columns:nth-of-type(3n+1){clear:both}.small-up-3>.column:last-child,.small-up-3>.columns:last-child{float:left}.small-up-4>.column,.small-up-4>.columns{float:left;width:25%}.small-up-4>.column:nth-of-type(1n),.small-up-4>.columns:nth-of-type(1n){clear:none}.small-up-4>.column:nth-of-type(4n+1),.small-up-4>.columns:nth-of-type(4n+1){clear:both}.small-up-4>.column:last-child,.small-up-4>.columns:last-child{float:left}.small-up-5>.column,.small-up-5>.columns{float:left;width:20%}.small-up-5>.column:nth-of-type(1n),.small-up-5>.columns:nth-of-type(1n){clear:none}.small-up-5>.column:nth-of-type(5n+1),.small-up-5>.columns:nth-of-type(5n+1){clear:both}.small-up-5>.column:last-child,.small-up-5>.columns:last-child{float:left}.small-up-6>.column,.small-up-6>.columns{float:left;width:16.66667%}.small-up-6>.column:nth-of-type(1n),.small-up-6>.columns:nth-of-type(1n){clear:none}.small-up-6>.column:nth-of-type(6n+1),.small-up-6>.columns:nth-of-type(6n+1){clear:both}.small-up-6>.column:last-child,.small-up-6>.columns:last-child{float:left}.small-up-7>.column,.small-up-7>.columns{float:left;width:14.28571%}.small-up-7>.column:nth-of-type(1n),.small-up-7>.columns:nth-of-type(1n){clear:none}.small-up-7>.column:nth-of-type(7n+1),.small-up-7>.columns:nth-of-type(7n+1){clear:both}.small-up-7>.column:last-child,.small-up-7>.columns:last-child{float:left}.small-up-8>.column,.small-up-8>.columns{float:left;width:12.5%}.small-up-8>.column:nth-of-type(1n),.small-up-8>.columns:nth-of-type(1n){clear:none}.small-up-8>.column:nth-of-type(8n+1),.small-up-8>.columns:nth-of-type(8n+1){clear:both}.small-up-8>.column:last-child,.small-up-8>.columns:last-child{float:left}.small-collapse>.column,.small-collapse>.columns{padding-right:0;padding-left:0}.expanded.row .small-collapse.row,.small-collapse .row{margin-right:0;margin-left:0}.small-uncollapse>.column,.small-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}.small-centered{margin-right:auto;margin-left:auto}.small-centered,.small-centered:last-child:not(:first-child){float:none;clear:both}.small-pull-0,.small-push-0,.small-uncentered{position:static;float:left;margin-right:0;margin-left:0}@media print,screen and (min-width:40em){.medium-pull-1,.medium-pull-10,.medium-pull-11,.medium-pull-2,.medium-pull-3,.medium-pull-4,.medium-pull-5,.medium-pull-6,.medium-pull-7,.medium-pull-8,.medium-pull-9,.medium-push-1,.medium-push-10,.medium-push-11,.medium-push-2,.medium-push-3,.medium-push-4,.medium-push-5,.medium-push-6,.medium-push-7,.medium-push-8,.medium-push-9{position:relative}.medium-1{width:8.33333%}.medium-push-1{left:8.33333%}.medium-pull-1{left:-8.33333%}.medium-offset-0{margin-left:0}.medium-2{width:16.66667%}.medium-push-2{left:16.66667%}.medium-pull-2{left:-16.66667%}.medium-offset-1{margin-left:8.33333%}.medium-3{width:25%}.medium-push-3{left:25%}.medium-pull-3{left:-25%}.medium-offset-2{margin-left:16.66667%}.medium-4{width:33.33333%}.medium-push-4{left:33.33333%}.medium-pull-4{left:-33.33333%}.medium-offset-3{margin-left:25%}.medium-5{width:41.66667%}.medium-push-5{left:41.66667%}.medium-pull-5{left:-41.66667%}.medium-offset-4{margin-left:33.33333%}.medium-6{width:50%}.medium-push-6{left:50%}.medium-pull-6{left:-50%}.medium-offset-5{margin-left:41.66667%}.medium-7{width:58.33333%}.medium-push-7{left:58.33333%}.medium-pull-7{left:-58.33333%}.medium-offset-6{margin-left:50%}.medium-8{width:66.66667%}.medium-push-8{left:66.66667%}.medium-pull-8{left:-66.66667%}.medium-offset-7{margin-left:58.33333%}.medium-9{width:75%}.medium-push-9{left:75%}.medium-pull-9{left:-75%}.medium-offset-8{margin-left:66.66667%}.medium-10{width:83.33333%}.medium-push-10{left:83.33333%}.medium-pull-10{left:-83.33333%}.medium-offset-9{margin-left:75%}.medium-11{width:91.66667%}.medium-push-11{left:91.66667%}.medium-pull-11{left:-91.66667%}.medium-offset-10{margin-left:83.33333%}.medium-12{width:100%}.medium-offset-11{margin-left:91.66667%}.medium-up-1>.column,.medium-up-1>.columns{float:left;width:100%}.medium-up-1>.column:nth-of-type(1n),.medium-up-1>.columns:nth-of-type(1n){clear:none}.medium-up-1>.column:nth-of-type(1n+1),.medium-up-1>.columns:nth-of-type(1n+1){clear:both}.medium-up-1>.column:last-child,.medium-up-1>.columns:last-child{float:left}.medium-up-2>.column,.medium-up-2>.columns{float:left;width:50%}.medium-up-2>.column:nth-of-type(1n),.medium-up-2>.columns:nth-of-type(1n){clear:none}.medium-up-2>.column:nth-of-type(2n+1),.medium-up-2>.columns:nth-of-type(2n+1){clear:both}.medium-up-2>.column:last-child,.medium-up-2>.columns:last-child{float:left}.medium-up-3>.column,.medium-up-3>.columns{float:left;width:33.33333%}.medium-up-3>.column:nth-of-type(1n),.medium-up-3>.columns:nth-of-type(1n){clear:none}.medium-up-3>.column:nth-of-type(3n+1),.medium-up-3>.columns:nth-of-type(3n+1){clear:both}.medium-up-3>.column:last-child,.medium-up-3>.columns:last-child{float:left}.medium-up-4>.column,.medium-up-4>.columns{float:left;width:25%}.medium-up-4>.column:nth-of-type(1n),.medium-up-4>.columns:nth-of-type(1n){clear:none}.medium-up-4>.column:nth-of-type(4n+1),.medium-up-4>.columns:nth-of-type(4n+1){clear:both}.medium-up-4>.column:last-child,.medium-up-4>.columns:last-child{float:left}.medium-up-5>.column,.medium-up-5>.columns{float:left;width:20%}.medium-up-5>.column:nth-of-type(1n),.medium-up-5>.columns:nth-of-type(1n){clear:none}.medium-up-5>.column:nth-of-type(5n+1),.medium-up-5>.columns:nth-of-type(5n+1){clear:both}.medium-up-5>.column:last-child,.medium-up-5>.columns:last-child{float:left}.medium-up-6>.column,.medium-up-6>.columns{float:left;width:16.66667%}.medium-up-6>.column:nth-of-type(1n),.medium-up-6>.columns:nth-of-type(1n){clear:none}.medium-up-6>.column:nth-of-type(6n+1),.medium-up-6>.columns:nth-of-type(6n+1){clear:both}.medium-up-6>.column:last-child,.medium-up-6>.columns:last-child{float:left}.medium-up-7>.column,.medium-up-7>.columns{float:left;width:14.28571%}.medium-up-7>.column:nth-of-type(1n),.medium-up-7>.columns:nth-of-type(1n){clear:none}.medium-up-7>.column:nth-of-type(7n+1),.medium-up-7>.columns:nth-of-type(7n+1){clear:both}.medium-up-7>.column:last-child,.medium-up-7>.columns:last-child{float:left}.medium-up-8>.column,.medium-up-8>.columns{float:left;width:12.5%}.medium-up-8>.column:nth-of-type(1n),.medium-up-8>.columns:nth-of-type(1n){clear:none}.medium-up-8>.column:nth-of-type(8n+1),.medium-up-8>.columns:nth-of-type(8n+1){clear:both}.medium-up-8>.column:last-child,.medium-up-8>.columns:last-child{float:left}.medium-collapse>.column,.medium-collapse>.columns{padding-right:0;padding-left:0}.expanded.row .medium-collapse.row,.medium-collapse .row{margin-right:0;margin-left:0}.medium-uncollapse>.column,.medium-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}.medium-centered{margin-right:auto;margin-left:auto}.medium-centered,.medium-centered:last-child:not(:first-child){float:none;clear:both}.medium-pull-0,.medium-push-0,.medium-uncentered{position:static;float:left;margin-right:0;margin-left:0}}@media print,screen and (min-width:63.9375em){.large-pull-1,.large-pull-10,.large-pull-11,.large-pull-2,.large-pull-3,.large-pull-4,.large-pull-5,.large-pull-6,.large-pull-7,.large-pull-8,.large-pull-9,.large-push-1,.large-push-10,.large-push-11,.large-push-2,.large-push-3,.large-push-4,.large-push-5,.large-push-6,.large-push-7,.large-push-8,.large-push-9{position:relative}.large-1{width:8.33333%}.large-push-1{left:8.33333%}.large-pull-1{left:-8.33333%}.large-offset-0{margin-left:0}.large-2{width:16.66667%}.large-push-2{left:16.66667%}.large-pull-2{left:-16.66667%}.large-offset-1{margin-left:8.33333%}.large-3{width:25%}.large-push-3{left:25%}.large-pull-3{left:-25%}.large-offset-2{margin-left:16.66667%}.large-4{width:33.33333%}.large-push-4{left:33.33333%}.large-pull-4{left:-33.33333%}.large-offset-3{margin-left:25%}.large-5{width:41.66667%}.large-push-5{left:41.66667%}.large-pull-5{left:-41.66667%}.large-offset-4{margin-left:33.33333%}.large-6{width:50%}.large-push-6{left:50%}.large-pull-6{left:-50%}.large-offset-5{margin-left:41.66667%}.large-7{width:58.33333%}.large-push-7{left:58.33333%}.large-pull-7{left:-58.33333%}.large-offset-6{margin-left:50%}.large-8{width:66.66667%}.large-push-8{left:66.66667%}.large-pull-8{left:-66.66667%}.large-offset-7{margin-left:58.33333%}.large-9{width:75%}.large-push-9{left:75%}.large-pull-9{left:-75%}.large-offset-8{margin-left:66.66667%}.large-10{width:83.33333%}.large-push-10{left:83.33333%}.large-pull-10{left:-83.33333%}.large-offset-9{margin-left:75%}.large-11{width:91.66667%}.large-push-11{left:91.66667%}.large-pull-11{left:-91.66667%}.large-offset-10{margin-left:83.33333%}.large-12{width:100%}.large-offset-11{margin-left:91.66667%}.large-up-1>.column,.large-up-1>.columns{float:left;width:100%}.large-up-1>.column:nth-of-type(1n),.large-up-1>.columns:nth-of-type(1n){clear:none}.large-up-1>.column:nth-of-type(1n+1),.large-up-1>.columns:nth-of-type(1n+1){clear:both}.large-up-1>.column:last-child,.large-up-1>.columns:last-child{float:left}.large-up-2>.column,.large-up-2>.columns{float:left;width:50%}.large-up-2>.column:nth-of-type(1n),.large-up-2>.columns:nth-of-type(1n){clear:none}.large-up-2>.column:nth-of-type(2n+1),.large-up-2>.columns:nth-of-type(2n+1){clear:both}.large-up-2>.column:last-child,.large-up-2>.columns:last-child{float:left}.large-up-3>.column,.large-up-3>.columns{float:left;width:33.33333%}.large-up-3>.column:nth-of-type(1n),.large-up-3>.columns:nth-of-type(1n){clear:none}.large-up-3>.column:nth-of-type(3n+1),.large-up-3>.columns:nth-of-type(3n+1){clear:both}.large-up-3>.column:last-child,.large-up-3>.columns:last-child{float:left}.large-up-4>.column,.large-up-4>.columns{float:left;width:25%}.large-up-4>.column:nth-of-type(1n),.large-up-4>.columns:nth-of-type(1n){clear:none}.large-up-4>.column:nth-of-type(4n+1),.large-up-4>.columns:nth-of-type(4n+1){clear:both}.large-up-4>.column:last-child,.large-up-4>.columns:last-child{float:left}.large-up-5>.column,.large-up-5>.columns{float:left;width:20%}.large-up-5>.column:nth-of-type(1n),.large-up-5>.columns:nth-of-type(1n){clear:none}.large-up-5>.column:nth-of-type(5n+1),.large-up-5>.columns:nth-of-type(5n+1){clear:both}.large-up-5>.column:last-child,.large-up-5>.columns:last-child{float:left}.large-up-6>.column,.large-up-6>.columns{float:left;width:16.66667%}.large-up-6>.column:nth-of-type(1n),.large-up-6>.columns:nth-of-type(1n){clear:none}.large-up-6>.column:nth-of-type(6n+1),.large-up-6>.columns:nth-of-type(6n+1){clear:both}.large-up-6>.column:last-child,.large-up-6>.columns:last-child{float:left}.large-up-7>.column,.large-up-7>.columns{float:left;width:14.28571%}.large-up-7>.column:nth-of-type(1n),.large-up-7>.columns:nth-of-type(1n){clear:none}.large-up-7>.column:nth-of-type(7n+1),.large-up-7>.columns:nth-of-type(7n+1){clear:both}.large-up-7>.column:last-child,.large-up-7>.columns:last-child{float:left}.large-up-8>.column,.large-up-8>.columns{float:left;width:12.5%}.large-up-8>.column:nth-of-type(1n),.large-up-8>.columns:nth-of-type(1n){clear:none}.large-up-8>.column:nth-of-type(8n+1),.large-up-8>.columns:nth-of-type(8n+1){clear:both}.large-up-8>.column:last-child,.large-up-8>.columns:last-child{float:left}.large-collapse>.column,.large-collapse>.columns{padding-right:0;padding-left:0}.expanded.row .large-collapse.row,.large-collapse .row{margin-right:0;margin-left:0}.large-uncollapse>.column,.large-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}.large-centered{margin-right:auto;margin-left:auto}.large-centered,.large-centered:last-child:not(:first-child){float:none;clear:both}.large-pull-0,.large-push-0,.large-uncentered{position:static;float:left;margin-right:0;margin-left:0}}.breadcrumbs::after,.button-group::after,.clearfix::after,.menu.align-right::after,.pagination::after,.tabs::after,.title-bar::after,.top-bar::after,hr{clear:both}.column-block{margin-bottom:1.25rem}.column-block>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.column-block{margin-bottom:1.25rem}.column-block>:last-child{margin-bottom:0}}figure,kbd{margin:0}blockquote,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,li,ol,p,pre,td,th,ul{margin:0;padding:0}ol,ul{margin-left:1.25rem}dl,ol,p,ul{line-height:1.9;margin-bottom:1rem}li,p{font-size:inherit}em,i{font-style:italic}b,strong{font-weight:700}h1,h2,h3,h4,h5,h6{line-height:1.4;margin-top:0;margin-bottom:.5rem;font-family:Roboto-Bold,sans-serif;font-style:normal;font-weight:400;color:#333}code,kbd{background-color:#e6e6e6;font-family:Consolas,"Liberation Mono",Courier,monospace;color:#0a0a0a}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{line-height:0;color:#cacaca}h1{font-size:1.5rem}h2{font-size:1.25rem}h3{font-size:1.1875rem}h4{font-size:1.125rem}h5,h6{font-size:.875rem}@media print,screen and (min-width:40em){h1{font-size:2.75rem}h2{font-size:1.625rem}h3{font-size:1.375rem}h4{font-size:1.25rem}h5{font-size:1.125rem}h6{font-size:1rem}}a{background-color:transparent;-webkit-text-decoration-skip:objects;color:#78c81e;text-decoration:none;cursor:pointer}a:focus,a:hover{color:#3aa37f}a img{border:0}hr{box-sizing:content-box;max-width:62.5rem;height:0;margin:.9375rem auto;border-top:0;border-right:0;border-bottom:1px solid #cacaca;border-left:0}dl,ol,ul{list-style-position:outside}ul{list-style-type:disc}.accordion,.menu,.tabs{list-style-type:none}ol ol,ol ul,ul ol,ul ul{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:.3rem;font-weight:700}.subheader,code,label{font-weight:400}blockquote{margin:0 0 1rem;padding:.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #cacaca}blockquote,blockquote p{line-height:1.9;color:#8a8a8a}cite{display:block;font-size:.8125rem;color:#8a8a8a}cite:before{content:"\2014   "}abbr{border-bottom:1px dotted #0a0a0a;cursor:help}code{padding:.125rem .3125rem .0625rem;border:1px solid #cacaca}kbd{padding:.125rem .25rem 0;border-radius:5px}.subheader{margin-top:.2rem;margin-bottom:.5rem;line-height:1.4;color:#8a8a8a}.lead{font-size:20px;line-height:1.6}.button,.stat{line-height:1}.stat{font-size:2.5rem}p+.stat{margin-top:-1rem}.no-bullet{margin-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}@media print,screen and (min-width:40em){.medium-text-left{text-align:left}.medium-text-right{text-align:right}.medium-text-center{text-align:center}.medium-text-justify{text-align:justify}}@media print,screen and (min-width:63.9375em){.large-text-left{text-align:left}.large-text-right{text-align:right}.large-text-center{text-align:center}.large-text-justify{text-align:justify}}.badge,.button,.input-group-label,.menu-centered,.menu.icon-top>li>a,.orbit-bullets{text-align:center}.show-for-print{display:none!important}@media print{blockquote,img,pre,tr{page-break-inside:avoid}*{background:0 0!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}.show-for-print{display:block!important}.hide-for-print{display:none!important}table.show-for-print{display:table!important}thead.show-for-print{display:table-header-group!important}tbody.show-for-print{display:table-row-group!important}tr.show-for-print{display:table-row!important}td.show-for-print,th.show-for-print{display:table-cell!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}.ir a:after,a[href^='#']:after,a[href^='javascript:']:after{content:''}abbr[title]:after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #8a8a8a}thead{display:table-header-group}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.print-break-inside{page-break-inside:auto}}.button{display:inline-block;margin:0 0 1rem;padding:.8rem;-webkit-appearance:none;border:1px solid transparent;border-radius:1.6rem;transition:background-color .25s ease-out,color .25s ease-out;font-size:.9rem;cursor:pointer;background-color:#78c81e;color:#fff}[data-whatinput=mouse] .button{outline:0}.button:focus,.button:hover{background-color:#6bb11b;color:#fff}.button.tiny{font-size:.625rem}.button.small{font-size:.75rem}.button.large{font-size:1.25rem}.button.expanded{display:block;width:100%;margin-right:0;margin-left:0}.button.primary{background-color:#78c81e;color:#fff}.button.primary:focus,.button.primary:hover{background-color:#6bb11b;color:#fff}.button.secondary{background-color:#868181;color:#fff}.button.secondary:focus,.button.secondary:hover{background-color:#3caa83;color:#fff}.button.success{background-color:#78c81e;color:#fff}.button.success:focus,.button.success:hover{background-color:#52a300;color:#fff}.button.warning{background-color:#ffae00;color:#fff}.button.warning:focus,.button.warning:hover{background-color:#cc8b00;color:#fff}.button.alert{background-color:#cc4b37;color:#fff}.button.alert:focus,.button.alert:hover{background-color:#a53b2a;color:#fff}.button.hollow{border:1px solid #78c81e;color:#78c81e}.button.hollow,.button.hollow:focus,.button.hollow:hover{background-color:transparent}.button.hollow:focus,.button.hollow:hover{border-color:#6bb11b;color:#6bb11b}.button.hollow.primary{border:1px solid #78c81e;color:#78c81e}.button.hollow.primary:focus,.button.hollow.primary:hover{border-color:#5e9b17;color:#5e9b17}.button.hollow.secondary{border:1px solid #868181;color:#868181}.button.hollow.secondary:focus,.button.hollow.secondary:hover{border-color:#434040;color:#434040}.button.hollow.success{border:1px solid #6c0;color:#6c0}.button.hollow.success:focus,.button.hollow.success:hover{border-color:#360;color:#360}.hayag{border-color:#5e9b17;color:#5e9b17}.button.hollow.warning{border:1px solid #ffae00;color:#ffae00}.button.hollow.warning:focus,.button.hollow.warning:hover{border-color:#805700;color:#805700}.button.hollow.alert{border:1px solid #cc4b37;color:#cc4b37}.button.hollow.alert:focus,.button.hollow.alert:hover{border-color:#67251a;color:#67251a}.button.disabled,.button.disabled.primary,.button.disabled.primary:focus,.button.disabled.primary:hover,.button.disabled:focus,.button.disabled:hover,.button[disabled],.button[disabled].primary,.button[disabled].primary:focus,.button[disabled].primary:hover,.button[disabled]:focus,.button[disabled]:hover{background-color:#78c81e;color:#fff}.button.disabled.secondary,.button.disabled.secondary:focus,.button.disabled.secondary:hover,.button[disabled].secondary,.button[disabled].secondary:focus,.button[disabled].secondary:hover{background-color:#868181;color:#fff}.button.disabled.success,.button.disabled.success:focus,.button.disabled.success:hover,.button[disabled].success,.button[disabled].success:focus,.button[disabled].success:hover{background-color:#6c0;color:#fff}.button.disabled.warning,.button.disabled.warning:focus,.button.disabled.warning:hover,.button[disabled].warning,.button[disabled].warning:focus,.button[disabled].warning:hover{background-color:#ffae00;color:#fff}.button.disabled.alert,.button.disabled.alert:focus,.button.disabled.alert:hover,.button[disabled].alert,.button[disabled].alert:focus,.button[disabled].alert:hover{background-color:#cc4b37;color:#fff}.button.dropdown::after{width:0;height:0;border:.4em inset;content:'';border-bottom-width:0;border-top-style:solid;border-color:#fff transparent transparent;top:.4em;display:inline-block;float:right;margin-left:1rem}.button.dropdown.hollow.primary::after,.button.dropdown.hollow::after{border-top-color:#78c81e}.button.dropdown.hollow.secondary::after{border-top-color:#868181}.button.dropdown.hollow.success::after{border-top-color:#6c0}.button.dropdown.hollow.warning::after{border-top-color:#ffae00}.button.dropdown.hollow.alert::after{border-top-color:#cc4b37}.button.arrow-only::after{top:-.1em;float:none;margin-left:0}[type=color],[type=date],[type=datetime-local],[type=datetime],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],textarea{display:block;box-sizing:border-box;width:100%;height:2.1875rem;margin:0 0 1rem;padding:.5rem;border:1px solid #d5d4d5;border-radius:.3125rem;background-color:#fff;box-shadow:none;font-family:Roboto-Bold,sans-serif;font-size:.75rem;font-weight:400;color:#363636;transition:box-shadow .5s,border-color .25s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}[type=color]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=datetime]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,textarea:focus{outline:0;border:1px solid #78c81e;background-color:#fff;box-shadow:none;transition:box-shadow .5s,border-color .25s ease-in-out}textarea{min-height:50px}textarea[rows]{height:auto}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#cacaca}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#cacaca}input::placeholder,textarea::placeholder{color:#cacaca}.help-text,label{color:#363636}input:disabled,input[readonly],textarea:disabled,textarea[readonly]{background-color:#fff;cursor:not-allowed}[type=button],[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:1.6rem}[type=number]{-moz-appearance:textfield}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}[type=checkbox],[type=file],[type=radio]{margin:0 0 1rem}[type=checkbox]+label,[type=radio]+label{display:inline-block;vertical-align:baseline;margin-left:.5rem;margin-right:1rem;margin-bottom:0}.menu-icon,.menu-icon.dark,.menu>li,.menu>li>a i,.menu>li>a i+span,.menu>li>a img,.menu>li>a img+span,.menu>li>a svg,.menu>li>a svg+span{vertical-align:middle}[type=checkbox]+label[for],[type=radio]+label[for]{cursor:pointer}label>[type=checkbox],label>[type=radio]{margin-right:.5rem}[type=file]{width:100%}label{display:block;margin:0;font-size:.8125rem;line-height:2.2}.form-error,.help-text,select{font-size:.75rem}.form-error,.menu-text,.switch{font-weight:700}label.middle{margin:0 0 1rem;padding:.5625rem 0}.help-text{margin-top:-.5rem;font-style:italic}.input-group{display:table;width:100%;margin-bottom:1rem}.input-group>:first-child{border-radius:5px 0 0 5px}.input-group>:last-child>*{border-radius:0 5px 5px 0}.input-group-button,.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label,.input-group-field,.input-group-label{margin:0;white-space:nowrap;display:table-cell;vertical-align:middle}.input-group-label{padding:0 1rem;border:1px solid #d5d4d5;background:#e6e6e6;color:#0a0a0a;white-space:nowrap;width:1%;height:100%}select,select:disabled,select:focus{background-color:#fff}.input-group-label:first-child{border-right:0}.input-group-label:last-child{border-left:0}.input-group-field{border-radius:0;height:2.25rem}.fieldset,select{border:1px solid #eaeaea}.input-group-button{padding-top:0;padding-bottom:0;text-align:center;width:1%;height:100%}.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label{height:2.25rem;padding-top:0;padding-bottom:0;font-size:.75rem}.input-group .input-group-button{display:table-cell}fieldset{margin:0;padding:25px}legend{margin-bottom:.5rem}.fieldset{margin:1.125rem 0;padding:1.25rem}.fieldset legend{margin:0 0 0 -.1875rem;padding:0 .1875rem;background:#fff}select{height:2.1875rem;margin:0 0 1rem;padding:.5rem 1.5rem .5rem .5rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:5px;font-family:Roboto-Bold,sans-serif;line-height:normal;color:#363636;background-image:url("data:image/svg+xml;     utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28213,212,213%29'></polygon></svg>");background-origin:content-box;background-position:right -1rem center;background-repeat:no-repeat;background-size:9px 6px;transition:box-shadow .5s,border-color .25s ease-in-out}.form-error,.is-invalid-label{color:#cc4b37}@media screen and (min-width:0\0){select{background-image:url('data:image/png;         base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMBJREFUeNrEllsOhCAMRVszC9IlzU7KCmVHTJsoMWYMUtpyv9BgbuXQB5ZSdgBYYY4ycgBivk8KYFsQMfMiTTBP4o3nUzCKzOabLJbLy2/g31evGkAginR4/ZegKH5qX3bJCscA3t0x3kgO5tQFyhhFf50xRqFLbyMUNJQzgyjGS/wgCpvKqkRBpuWrE4V9d+1E4dPUXqIg107SQOE/2DRQxMwTDygIInVDET9T3lCoj/6j/VCmGjZOl2lKpZ8AAwDQP7zIimDGFQAAAABJRU5ErkJggg==')}}select:focus{outline:0;border:1px solid #78c81e;box-shadow:none;transition:box-shadow .5s,border-color .25s ease-in-out}select:disabled{cursor:not-allowed}select::-ms-expand{display:none}select[multiple]{height:auto;background-image:none}.is-invalid-input:not(:focus){border-color:#cc4b37;background-color:#faedeb}.accordion-content,.accordion-title:focus,.accordion-title:hover{background-color:#fff}.is-invalid-input:not(:focus)::-webkit-input-placeholder{color:#cc4b37}.is-invalid-input:not(:focus):-ms-input-placeholder{color:#cc4b37}.is-invalid-input:not(:focus)::placeholder{color:#cc4b37}.form-error{display:none;margin-top:-.5rem;margin-bottom:1rem}.form-error.is-visible{display:block}.accordion{margin-left:0;background:#fff}.accordion-item:first-child>:first-child{border-radius:5px 5px 0 0}.accordion-item:last-child>:last-child{border-radius:0 0 5px 5px}.accordion-title{display:block;padding:1.125rem 1.625rem;border:none;border-bottom:0;font-size:.8125rem;line-height:1;color:#363636}:last-child:not(.is-active)>.accordion-title{border-bottom:none;border-radius:0 0 5px 5px}.accordion-title::before{position:absolute;top:50%;right:1rem;margin-top:-.5rem;content:'+'}.is-active>.accordion-title::before{content:'\2013'}.accordion-content{display:none;padding:2rem 2.5rem;border:none;border-bottom:0;color:#363636}:last-child>.accordion-content:last-child{border-bottom:none}.is-accordion-submenu-parent>a{position:relative}.is-accordion-submenu-parent>a::after{display:block;width:0;height:0;border:12px inset;content:'';border-bottom-width:0;border-top-style:solid;border-color:#363636 transparent transparent;position:absolute;top:50%;margin-top:-6px;right:1rem}.is-accordion-submenu-parent[aria-expanded=true]>a::after{-ms-transform:rotate(180deg);transform:rotate(180deg);-ms-transform-origin:50% 50%;transform-origin:50% 50%}.badge{display:inline-block;min-width:2em;padding:.5em;border-radius:50%;font-size:.6rem;background:#78c81e;color:#fff}.badge.primary{background:#78c81e;color:#fff}.badge.secondary{background:#868181;color:#fff}.badge.success{background:#6c0;color:#fff}.badge.warning{background:#ffae00;color:#fff}.badge.alert{background:#cc4b37;color:#fff}.breadcrumbs{margin:0 0 1rem;list-style:none}.breadcrumbs::after,.breadcrumbs::before{display:table;content:' '}.breadcrumbs li{float:left;font-size:.75rem;color:#0a0a0a;cursor:default}.is-dropdown-menu.vertical.align-right,.menu.align-right>li{float:right}.breadcrumbs li:not(:last-child)::after{position:relative;top:1px;margin:0 .75rem;opacity:1;content:"/";color:#cacaca}.breadcrumbs a{color:#333}.breadcrumbs .disabled{color:#cacaca;cursor:not-allowed}.close-button,.menu-icon,.menu-icon.dark{cursor:pointer}.button-group{margin-bottom:1rem;font-size:0}.button-group::after,.button-group::before{display:table;content:' '}.button-group .button{margin:0 1px 1px 0;font-size:.9rem}.button-group .button:last-child{margin-right:0}.button-group.tiny .button{font-size:.625rem}.button-group.small .button{font-size:.75rem}.button-group.large .button{font-size:1.25rem}.button-group.expanded{margin-right:-1px}.button-group.expanded::after,.button-group.expanded::before{display:none}.button-group.expanded .button:first-child:last-child{width:100%}.button-group.expanded .button:first-child:nth-last-child(2),.button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2)~.button{display:inline-block;width:calc(50% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2)~.button:last-child,.button-group.expanded .button:first-child:nth-last-child(2):last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(3),.button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3)~.button{display:inline-block;width:calc(33.33333% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3)~.button:last-child,.button-group.expanded .button:first-child:nth-last-child(3):last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(4),.button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4)~.button{display:inline-block;width:calc(25% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4)~.button:last-child,.button-group.expanded .button:first-child:nth-last-child(4):last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(5),.button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5)~.button{display:inline-block;width:calc(20% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5)~.button:last-child,.button-group.expanded .button:first-child:nth-last-child(5):last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(6),.button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6)~.button{display:inline-block;width:calc(16.66667% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6)~.button:last-child,.button-group.expanded .button:first-child:nth-last-child(6):last-child{margin-right:-6px}.button-group.primary .button{background-color:#78c81e;color:#fff}.button-group.primary .button:focus,.button-group.primary .button:hover{background-color:#369876;color:#fff}.button-group.secondary .button{background-color:#868181;color:#fff}.button-group.secondary .button:focus,.button-group.secondary .button:hover{background-color:#6b6767;color:#fff}.button-group.success .button{background-color:#6c0;color:#fff}.button-group.success .button:focus,.button-group.success .button:hover{background-color:#52a300;color:#fff}.button-group.warning .button{background-color:#ffae00;color:#fff}.button-group.warning .button:focus,.button-group.warning .button:hover{background-color:#cc8b00;color:#fff}.button-group.alert .button{background-color:#cc4b37;color:#fff}.button-group.alert .button:focus,.button-group.alert .button:hover{background-color:#a53b2a;color:#fff}.callout,.callout.alert,.callout.primary,.callout.secondary,.callout.success,.callout.warning,.card,.close-button{color:#363636}.button-group.stacked .button,.button-group.stacked-for-medium .button,.button-group.stacked-for-small .button{width:100%}.button-group.stacked .button:last-child,.button-group.stacked-for-medium .button:last-child,.button-group.stacked-for-small .button:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.button-group.stacked-for-small .button{width:auto;margin-bottom:0}}@media print,screen and (min-width:63.9375em){.button-group.stacked-for-medium .button{width:auto;margin-bottom:0}}@media screen and (max-width:39.9375em){.button-group.stacked-for-small.expanded{display:block}.button-group.stacked-for-small.expanded .button{display:block;margin-right:0}}.callout{position:relative;margin:0 0 1rem;padding:1rem;border:1px solid rgba(10,10,10,.25);border-radius:5px;background-color:#fff}.callout>:first-child{margin-top:0}.callout>:last-child{margin-bottom:0}.callout.primary{background-color:#e3f5ef}.callout.secondary{background-color:#edecec}.callout.success{background-color:#e8ffd1}.callout.warning{background-color:#fff3d9}.callout.alert{background-color:#f7e4e1}.callout.small{padding:.5rem}.callout.large{padding:3rem}.card{margin-bottom:1rem;border:1px solid #e6e6e6;border-radius:5px;background:#fff;box-shadow:none}.card-divider>:last-child,.card-section>:last-child,.card>:last-child,.menu a,.menu button,.menu input,.menu select{margin-bottom:0}.card-divider{padding:1rem;background:#e6e6e6}.card-section{padding:1rem}.close-button{position:absolute}[data-whatinput=mouse] .close-button{outline:0}.close-button:focus,.close-button:hover{color:#0a0a0a}.close-button.small{right:.66rem;top:.33em;font-size:1.5em;line-height:1}.close-button,.close-button.medium{right:1rem;top:.5rem;font-size:2em;line-height:1}.menu{margin:0}[data-whatinput=mouse] .menu>li{outline:0}.menu>li>a{display:block;padding:.7rem 1rem;line-height:1}.menu>li>a i,.menu>li>a img,.menu>li>a svg{margin-right:.25rem;display:inline-block}.menu.horizontal>li,.menu>li{display:table-cell}.menu.expanded{display:table;width:100%;table-layout:fixed}.menu.expanded>li:first-child:last-child{width:100%}.menu.vertical>li{display:block}@media print,screen and (min-width:40em){.menu.medium-horizontal>li{display:table-cell}.menu.medium-expanded{display:table;width:100%;table-layout:fixed}.menu.medium-expanded>li:first-child:last-child{width:100%}.menu.medium-vertical>li{display:block}}@media print,screen and (min-width:63.9375em){.menu.large-horizontal>li{display:table-cell}.menu.large-expanded{display:table;width:100%;table-layout:fixed}.menu.large-expanded>li:first-child:last-child{width:100%}.menu.large-vertical>li{display:block}}.menu.simple li{display:inline-block;vertical-align:top;line-height:1;margin-left:0;margin-right:1rem}.menu.simple a{padding:0}.menu.simple.align-right li{margin-right:0;margin-left:1rem}.menu.align-right::after,.menu.align-right::before{display:table;content:' '}.menu.icon-top>li>a i,.menu.icon-top>li>a img,.menu.icon-top>li>a svg{display:block;margin:0 auto .25rem}.menu.icon-top.vertical a>span{margin:auto}.menu.nested{margin-left:1rem}.menu .active>a{background:#78c81e;color:#fff}.menu.menu-bordered li{border:1px solid #e6e6e6}.menu.menu-bordered li:not(:first-child){border-top:0}.menu.menu-hover li:hover{background-color:#e6e6e6}.menu-text{padding:.7rem 1rem;line-height:1;color:inherit}.menu-centered>.menu{display:inline-block;vertical-align:top}.no-js [data-responsive-menu] ul{display:none}.menu-icon{position:relative;display:inline-block;width:20px;height:16px}.menu-icon::after{position:absolute;top:0;left:0;display:block;width:100%;height:2px;background:#fff;box-shadow:0 7px 0 #fff,0 14px 0 #fff;content:''}.menu-icon:hover::after{background:#cacaca;box-shadow:0 7px 0 #cacaca,0 14px 0 #cacaca}.menu-icon.dark{position:relative;display:inline-block;width:20px;height:16px}.menu-icon.dark::after{position:absolute;top:0;left:0;display:block;width:100%;height:2px;background:#0a0a0a;box-shadow:0 7px 0 #0a0a0a,0 14px 0 #0a0a0a;content:''}.menu-icon.dark:hover::after{background:#8a8a8a;box-shadow:0 7px 0 #8a8a8a,0 14px 0 #8a8a8a}.off-canvas-absolute.is-transition-overlap.is-open,.off-canvas.is-transition-overlap.is-open{box-shadow:0 0 10px rgba(10,10,10,.7)}.is-drilldown{position:relative}.is-drilldown li{display:block}.is-drilldown.animate-height{transition:height .5s}.is-drilldown-submenu{position:absolute;top:0;left:100%;z-index:-1;width:100%;background:#fff;transition:transform .15s linear}.is-drilldown-submenu.is-active{z-index:1;display:block;-ms-transform:translateX(-100%);transform:translateX(-100%)}.is-drilldown-submenu.is-closing{-ms-transform:translateX(100%);transform:translateX(100%)}.drilldown-submenu-cover-previous{min-height:100%}.is-drilldown-submenu-parent>a{position:relative}.is-drilldown-submenu-parent>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #78c81e;position:absolute;top:50%;margin-top:-6px;right:1rem}.js-drilldown-back>a::before{width:0;height:0;border:6px inset;content:'';border-right-style:solid;border-color:transparent #78c81e transparent transparent;display:inline-block;vertical-align:middle;margin-right:.75rem;border-left-width:0}.dropdown-pane{position:absolute;z-index:10;display:block;width:300px;padding:1rem;visibility:hidden;border:1px solid #cacaca;border-radius:5px;background-color:#fff;font-size:1rem}.dropdown-pane.is-open{visibility:visible}.dropdown-pane.tiny{width:100px}.dropdown-pane.small{width:200px}.dropdown-pane.large{width:400px}.dropdown.menu>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-bottom-width:0;border-top-style:solid;border-color:#78c81e transparent transparent;right:5px;margin-top:-3px}[data-whatinput=mouse] .dropdown.menu a{outline:0}.no-js .dropdown.menu ul{display:none}.dropdown.menu.vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.vertical>li>a::after{right:14px}.dropdown.menu.vertical>li.opens-left>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #78c81e transparent transparent}.dropdown.menu.vertical>li.opens-right>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #78c81e}@media print,screen and (min-width:40em){.dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-bottom-width:0;border-top-style:solid;border-color:#78c81e transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.medium-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.medium-vertical>li>a::after{right:14px}.dropdown.menu.medium-vertical>li.opens-left>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #78c81e transparent transparent}.dropdown.menu.medium-vertical>li.opens-right>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #78c81e}}@media print,screen and (min-width:63.9375em){.dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-bottom-width:0;border-top-style:solid;border-color:#78c81e transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.large-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.large-vertical>li>a::after{right:14px}.dropdown.menu.large-vertical>li.opens-left>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #78c81e transparent transparent}.dropdown.menu.large-vertical>li.opens-right>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #78c81e}}.dropdown.menu.align-right .is-dropdown-submenu.first-sub{top:100%;right:0;left:auto}.is-dropdown-menu.vertical{width:100px}.is-dropdown-submenu-parent{position:relative}.is-dropdown-submenu-parent a::after{position:absolute;top:50%;right:5px;margin-top:-6px}.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu{top:100%;left:auto}.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu{right:100%;left:auto}.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu{right:auto;left:100%}.is-dropdown-submenu{position:absolute;top:0;left:100%;z-index:1;display:none;min-width:200px;border:1px solid #cacaca;background:#fff}.is-dropdown-submenu .is-dropdown-submenu-parent>a::after{right:14px}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #78c81e transparent transparent}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after{display:block;width:0;height:0;border:6px inset;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #78c81e}.position-bottom.is-transition-push::after,.position-left.is-transition-push::after,.position-right.is-transition-push::after,.position-top.is-transition-push::after{box-shadow:0 0 10px rgba(10,10,10,.7);content:" "}.is-dropdown-submenu .is-dropdown-submenu{margin-top:-1px}.is-dropdown-submenu>li{width:100%}.is-dropdown-submenu.js-dropdown-active{display:block}.flex-video,.responsive-embed{position:relative;height:0;margin-bottom:1rem;padding-bottom:75%;overflow:hidden}.flex-video embed,.flex-video iframe,.flex-video object,.flex-video video,.js-off-canvas-overlay,.responsive-embed embed,.responsive-embed iframe,.responsive-embed object,.responsive-embed video{top:0;width:100%;height:100%;position:absolute;left:0}.flex-video.widescreen,.responsive-embed.widescreen{padding-bottom:56.25%}.label{display:inline-block;padding:.33333rem .5rem;border-radius:5px;font-size:.8rem;line-height:1;white-space:nowrap;cursor:default;background:#78c81e;color:#fff}.label.primary{background:#78c81e;color:#0a0a0a}.label.secondary{background:#868181;color:#0a0a0a}.label.success{background:#6c0;color:#0a0a0a}.label.warning{background:#ffae00;color:#0a0a0a}.label.alert{background:#cc4b37;color:#fff}.media-object{display:block;margin-bottom:1rem}.media-object img{max-width:none}@media screen and (max-width:39.9375em){.media-object.stack-for-small .media-object-section{padding:0 0 1rem;display:block}.media-object.stack-for-small .media-object-section img{width:100%}}.media-object-section{display:table-cell;vertical-align:top}.media-object-section:first-child{padding-right:1rem}.media-object-section:last-child:not(:nth-child(2)){padding-left:1rem}.media-object-section>:last-child{margin-bottom:0}.media-object-section.middle{vertical-align:middle}.media-object-section.bottom{vertical-align:bottom}.js-off-canvas-overlay{transition:opacity .5s ease,visibility .5s ease;background:rgba(10,10,10,.4);opacity:0;visibility:hidden}.off-canvas,.off-canvas-absolute,.off-canvas-content{transition:transform .5s ease;-webkit-backface-visibility:hidden}.js-off-canvas-overlay.is-visible{opacity:1;visibility:visible}.js-off-canvas-overlay.is-closable{cursor:pointer}.js-off-canvas-overlay.is-overlay-absolute{position:absolute}.js-off-canvas-overlay.is-overlay-fixed{position:fixed}.off-canvas-wrapper{position:relative}.position-left,.position-right{overflow-y:auto;height:100%;top:0}.off-canvas{position:fixed;z-index:1;backface-visibility:hidden;background:#151515}.off-canvas-absolute,.off-canvas-content{backface-visibility:hidden}[data-whatinput=mouse] .off-canvas{outline:0}.off-canvas.is-transition-overlap{z-index:1}.off-canvas.is-open{-ms-transform:translate(0,0);transform:translate(0,0)}.off-canvas-absolute{position:absolute;z-index:1;background:#4e4e4e}.orbit-caption,.orbit-next:active,.orbit-next:focus,.orbit-next:hover,.orbit-previous:active,.orbit-previous:focus,.orbit-previous:hover{background-color:rgba(10,10,10,.5)}[data-whatinput=mouse] .off-canvas-absolute{outline:0}.off-canvas-absolute.is-transition-overlap{z-index:1}.off-canvas-absolute.is-open{-ms-transform:translate(0,0);transform:translate(0,0)}.position-left{left:0;width:270px;-ms-transform:translateX(-300px);transform:translateX(-300px)}.position-left.is-open~.off-canvas-content{-ms-transform:translateX(300px);transform:translateX(300px)}.position-left.is-transition-push::after{position:absolute;top:0;right:0;height:100%;width:1px}.position-left.is-transition-overlap.is-open~.off-canvas-content{-ms-transform:none;transform:none}.position-right{right:0;width:300px;-ms-transform:translateX(300px);transform:translateX(300px)}.position-right.is-open~.off-canvas-content{-ms-transform:translateX(-300px);transform:translateX(-300px)}.position-right.is-transition-push::after{position:absolute;top:0;left:0;height:100%;width:1px}.position-right.is-transition-overlap.is-open~.off-canvas-content{-ms-transform:none;transform:none}.position-top{top:0;left:0;width:100%;height:250px;-ms-transform:translateY(-250px);transform:translateY(-250px);overflow-x:auto}.position-top.is-open~.off-canvas-content{-ms-transform:translateY(250px);transform:translateY(250px)}.position-top.is-transition-push::after{position:absolute;bottom:0;left:0;height:1px;width:100%}.position-top.is-transition-overlap.is-open~.off-canvas-content{-ms-transform:none;transform:none}.position-bottom{bottom:0;left:0;width:100%;height:250px;-ms-transform:translateY(250px);transform:translateY(250px);overflow-x:auto}.position-bottom.is-open~.off-canvas-content{-ms-transform:translateY(-250px);transform:translateY(-250px)}.position-bottom.is-transition-push::after{position:absolute;top:0;left:0;height:1px;width:100%}.orbit,.orbit-container{position:relative}.position-bottom.is-transition-overlap.is-open~.off-canvas-content{-ms-transform:none;transform:none}.reveal,.slide-in-down.mui-enter{-webkit-backface-visibility:hidden}@media print,screen and (min-width:40em){.position-left.reveal-for-medium{-ms-transform:none;transform:none;z-index:1}.position-left.reveal-for-medium~.off-canvas-content{margin-left:270px}.position-right.reveal-for-medium{-ms-transform:none;transform:none;z-index:1}.position-right.reveal-for-medium~.off-canvas-content{margin-right:300px}.position-top.reveal-for-medium{-ms-transform:none;transform:none;z-index:1}.position-top.reveal-for-medium~.off-canvas-content{margin-top:270px}.position-bottom.reveal-for-medium{-ms-transform:none;transform:none;z-index:1}.position-bottom.reveal-for-medium~.off-canvas-content{margin-bottom:270px}}@media print,screen and (min-width:63.9375em){.position-left.reveal-for-large{-ms-transform:none;transform:none;z-index:1}.position-left.reveal-for-large~.off-canvas-content{margin-left:300px}.position-right.reveal-for-large{-ms-transform:none;transform:none;z-index:1}.position-right.reveal-for-large~.off-canvas-content{margin-right:300px}.position-top.reveal-for-large{-ms-transform:none;transform:none;z-index:1}.position-top.reveal-for-large~.off-canvas-content{margin-top:270px}.position-bottom.reveal-for-large{-ms-transform:none;transform:none;z-index:1}.position-bottom.reveal-for-large~.off-canvas-content{margin-bottom:270px}}.orbit-container{height:0;margin:0;list-style:none;overflow:hidden}.orbit-slide{width:100%}.orbit-slide.no-motionui.is-active{top:0;left:0}.orbit-figure{margin:0}.orbit-image{width:100%;max-width:100%;margin:0}.orbit-caption{position:absolute;bottom:0;width:100%;margin-bottom:0;padding:1rem;color:#fff}.orbit-next,.orbit-previous{position:absolute;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%);z-index:10;padding:1rem;color:#fff}[data-whatinput=mouse] .orbit-next,[data-whatinput=mouse] .orbit-previous{outline:0}.orbit-previous{left:0}.orbit-next{left:auto;right:0}.orbit-bullets{position:relative;margin-top:.8rem;margin-bottom:.8rem}[data-whatinput=mouse] .orbit-bullets{outline:0}.orbit-bullets button{width:1.2rem;height:1.2rem;margin:.1rem;border-radius:50%;background-color:#cacaca}.orbit-bullets button.is-active,.orbit-bullets button:hover{background-color:#8a8a8a}.pagination{margin-left:0;margin-bottom:1rem}.pagination::after,.pagination::before{display:table;content:' '}.pagination li{margin-right:.0625rem;border-radius:5px;font-size:.8125rem;display:none}.pagination li:first-child,.pagination li:last-child{display:inline-block}@media print,screen and (min-width:40em){.pagination li{display:inline-block}}.pagination a,.pagination button{display:block;padding:.1875rem .625rem;border-radius:5px;color:#363636}.pagination a:hover,.pagination button:hover{background:#e6e6e6}.pagination .current{padding:.1875rem .625rem;background:#78c81e;color:#fff;cursor:default}.pagination .disabled{padding:.1875rem .625rem;color:#cacaca;cursor:not-allowed}.pagination .disabled:hover{background:0 0}.pagination .ellipsis::after{padding:.1875rem .625rem;content:'\2026';color:#0a0a0a}.pagination-previous a::before,.pagination-previous.disabled::before{display:inline-block;margin-right:.5rem;content:'\AB'}.pagination-next a::after,.pagination-next.disabled::after{display:inline-block;margin-left:.5rem;content:'\BB'}.progress{height:1rem;margin-bottom:1rem;border-radius:5px;background-color:#cacaca}.progress.primary .progress-meter{background-color:#78c81e}.progress.secondary .progress-meter{background-color:#868181}.progress.success .progress-meter{background-color:#6c0}.progress.warning .progress-meter{background-color:#ffae00}.progress.alert .progress-meter{background-color:#cc4b37}.progress-meter{position:relative;display:block;width:0;height:100%;background-color:#78c81e;border-radius:5px}.progress-meter-text{top:50%;left:50%;-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);position:absolute;margin:0;font-size:.75rem;font-weight:700;color:#fff;white-space:nowrap;border-radius:5px}.slider-fill,.slider-handle{left:0;display:inline-block}.slider{position:relative;height:.5rem;margin-top:1.25rem;margin-bottom:2.25rem;background-color:#e6e6e6;cursor:pointer;user-select:none;-ms-touch-action:none;touch-action:none}.slider-fill{position:absolute;top:0;max-width:100%;height:.5rem;background-color:#cacaca;transition:all .2s ease-in-out}.slider-fill.is-dragging{transition:all 0 linear}.slider-handle{top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;z-index:1;width:1.4rem;height:1.4rem;border-radius:5px;background-color:#78c81e;transition:all .2s ease-in-out;-ms-touch-action:manipulation;touch-action:manipulation}[data-whatinput=mouse] .slider-handle{outline:0}.slider-handle:hover{background-color:#39a17d}.slider-handle.is-dragging{transition:all 0 linear}.slider.disabled,.slider[disabled]{opacity:.25;cursor:not-allowed}.slider.vertical{display:inline-block;width:.5rem;height:12.5rem;margin:0 1.25rem;-ms-transform:scale(1,-1);transform:scale(1,-1)}.slider.vertical .slider-fill{top:0;width:.5rem;max-height:100%}.slider.vertical .slider-handle{position:absolute;top:0;left:50%;width:1.4rem;height:1.4rem;-ms-transform:translateX(-50%);transform:translateX(-50%)}.sticky,.sticky-container{position:relative}.sticky{z-index:0;transform:translate3d(0,0,0)}.sticky.is-stuck{position:fixed;z-index:5}.sticky.is-stuck.is-at-top{top:0}.sticky.is-stuck.is-at-bottom{bottom:0}.sticky.is-anchored{position:relative;right:auto;left:auto}.sticky.is-anchored.is-at-bottom{bottom:0}body.is-reveal-open{overflow:hidden}html.is-reveal-open,html.is-reveal-open body{min-height:100%;overflow:hidden;position:fixed;user-select:none}.table-scroll,table.scroll{overflow-x:auto}.reveal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1005;display:none;background-color:rgba(10,10,10,.45);overflow-y:scroll}.reveal{z-index:1006;backface-visibility:hidden;display:none;padding:1.875rem 1.875rem 1.25rem;border:1px solid #cacaca;border-radius:5px;background-color:#fff;position:relative;top:100px;margin-right:auto;margin-left:auto;overflow-y:auto}.switch-paddle,.switch-paddle::after{display:block;transition:all .25s ease-out}[data-whatinput=mouse] .reveal{outline:0}.reveal .column,.reveal .columns{min-width:0}.reveal>:last-child{margin-bottom:0}.reveal.collapse{padding:0}table caption,table tbody td,table tbody th{padding:.71875rem .9375rem}@media print,screen and (min-width:40em){.reveal,.reveal.large,.reveal.small,.reveal.tiny{max-width:62.5rem}.reveal{min-height:0;width:360px}.reveal .reveal{right:auto;left:auto;margin:0 auto}.reveal.tiny{width:30%}.reveal.small{width:50%}.reveal.large{width:90%}}.reveal.full{top:0;left:0;width:100%;max-width:none;height:100%;height:100vh;min-height:100vh;margin-left:0;border:0;border-radius:0}@media screen and (max-width:39.9375em){.reveal{top:0;left:0;width:100%;max-width:none;height:100%;height:100vh;min-height:100vh;margin-left:0;border:0;border-radius:0}}.reveal.without-overlay{position:fixed}.switch{height:2rem;position:relative;margin-bottom:1rem;outline:0;font-size:.875rem;color:#fff;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch-input{position:absolute;margin-bottom:0;opacity:0}.switch-paddle{position:relative;width:4rem;height:2rem;border-radius:5px;background:#cacaca;font-weight:inherit;color:inherit;cursor:pointer}input+.switch-paddle{margin:0}.switch-paddle::after{position:absolute;top:.25rem;left:.25rem;width:1.5rem;height:1.5rem;transform:translate3d(0,0,0);border-radius:5px;background:#fff;content:''}input:checked~.switch-paddle{background:#78c81e}input:checked~.switch-paddle::after{left:2.25rem}[data-whatinput=mouse] input:focus~.switch-paddle{outline:0}.switch-active,.switch-inactive{position:absolute;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}.switch-active{left:8%;display:none}input:checked+label>.switch-active{display:block}.switch-inactive{right:15%}input:checked+label>.switch-inactive{display:none}.switch.tiny{height:1.5rem}.switch.tiny .switch-paddle{width:3rem;height:1.5rem;font-size:.625rem}.switch.tiny .switch-paddle::after{top:.25rem;left:.25rem;width:1rem;height:1rem}.switch.tiny input:checked~.switch-paddle::after{left:1.75rem}.switch.small{height:1.75rem}.switch.small .switch-paddle{width:3.5rem;height:1.75rem;font-size:.75rem}.switch.small .switch-paddle::after{top:.25rem;left:.25rem;width:1.25rem;height:1.25rem}.switch.small input:checked~.switch-paddle::after{left:2rem}.switch.large{height:2.5rem}.switch.large .switch-paddle{width:5rem;height:2.5rem;font-size:1rem}.switch.large .switch-paddle::after{top:.25rem;left:.25rem;width:2rem;height:2rem}.switch.large input:checked~.switch-paddle::after{left:2.75rem}table{width:100%;margin-bottom:1rem;border-radius:5px}table tbody,table tfoot,table thead{border:0 solid #363636;background-color:transparent}table tfoot tr,table thead,table thead tr{background:0 0}table caption{font-weight:700}table thead{color:#383838}table tfoot{background:#fff;color:#363636}table tfoot td,table tfoot th,table thead td,table thead th{padding:.71875rem .9375rem;font-weight:700;text-align:left}table tbody tr:nth-child(even){border-bottom:0;background-color:rgba(13,13,13,0)}table.hover thead tr:hover,table.unstriped tbody,table.unstriped tbody tr{background-color:transparent}table.unstriped tbody tr{border-bottom:0;border-bottom:1px solid #363636}@media screen and (max-width:63.875em){table.stack tfoot,table.stack thead{display:none}table.stack td,table.stack th,table.stack tr{display:block}table.stack td{border-top:0}}table.scroll{display:block;width:100%}table.hover tfoot tr:hover{background-color:#fafafa}table.hover tbody tr:hover,table.hover:not(.unstriped) tr:nth-of-type(even):hover{background-color:transparent}.tabs,.tabs.simple>li>a:hover{background:0 0}.table-scroll table{width:auto}.tabs{margin:0;border:1px solid}.tabs::after,.tabs::before{display:table;content:' '}.tabs.vertical>li{display:block;float:none;width:auto}.tabs-title,.title-bar-left{float:left}.tabs.simple>li>a{padding:0}.tabs.primary{background:#78c81e}.tabs.primary>li>a{color:#0a0a0a}.tabs.primary>li>a:focus,.tabs.primary>li>a:hover{background:#40b48c}.tabs-title>a{display:block;padding:1.25rem 1.5rem;font-size:1rem;line-height:1;color:#363636}.tabs-title>a:hover{background:#e6e6e6;color:rgba(48,48,48,.6)}.tabs-title>a:focus,.tabs-title>a[aria-selected=true]{background:#78c81e;color:#fff}.tabs-content{border:1px solid;border-top:0;background:0 0;color:#363636;transition:all .5s ease}.tabs-content.vertical{border:1px solid;border-left:0}.tabs-panel{display:none;padding:1rem}.tabs-panel[aria-hidden=false]{display:block}.thumbnail{display:inline-block;max-width:100%;margin-bottom:1rem;border:4px solid #fff;border-radius:5px;box-shadow:0 0 0 1px rgba(10,10,10,.2);line-height:0}a.thumbnail{transition:box-shadow .2s ease-out}.slide-in-down.mui-enter,.slide-in-left.mui-enter,.slide-in-right.mui-enter,.slide-in-up.mui-enter,.slide-out-down.mui-leave,.slide-out-left.mui-leave,.slide-out-right.mui-leave,.slide-out-up.mui-leave{transition-property:transform,opacity;transition-duration:.5s;transition-timing-function:linear}a.thumbnail:focus,a.thumbnail:hover{box-shadow:0 0 6px 1px rgba(68,189,147,.5)}a.thumbnail image{box-shadow:none}.title-bar{padding:.5rem;background:#0a0a0a;color:#fff}.title-bar::after,.title-bar::before{display:table;content:' '}.has-tip,.title-bar-title{display:inline-block;font-weight:700}.tooltip.left::before,.tooltip.right::before,.tooltip.top::before,.tooltip::before{display:block;width:0;height:0;content:''}.title-bar .menu-icon{margin-left:.25rem;margin-right:.25rem}.title-bar-right{float:right;text-align:right}.title-bar-title{vertical-align:middle}.has-tip{position:relative;cursor:help}.tooltip{position:absolute;top:calc(100% + .6495rem);z-index:1200;max-width:10rem;padding:.75rem;border-radius:5px;background-color:#0a0a0a;font-size:80%;color:#fff}.tooltip::before{border:.75rem inset;border-top-width:0;border-bottom-style:solid;border-color:transparent transparent #0a0a0a;position:absolute;bottom:100%;left:50%;-ms-transform:translateX(-50%);transform:translateX(-50%)}.tooltip.top::before{border:.75rem inset;border-bottom-width:0;border-top-style:solid;border-color:#0a0a0a transparent transparent;top:100%;bottom:auto}.tooltip.left::before,.tooltip.right::before{top:50%;bottom:auto}.tooltip.left::before{border:.75rem inset;border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #0a0a0a;left:100%;-ms-transform:translateY(-50%);transform:translateY(-50%)}.tooltip.right::before{border:.75rem inset;border-left-width:0;border-right-style:solid;border-color:transparent #0a0a0a transparent transparent;right:100%;left:auto;-ms-transform:translateY(-50%);transform:translateY(-50%)}.top-bar{padding:0}.top-bar::after,.top-bar::before{display:table;content:' '}.top-bar,.top-bar ul{background-color:rgba(255,255,255,.8)}.top-bar input{max-width:500px;margin-right:1rem}.top-bar .input-group-field{width:100%;margin-right:0}.top-bar input.button{width:auto}.top-bar .top-bar-left,.top-bar .top-bar-right{width:100%}@media print,screen and (min-width:40em){.top-bar .top-bar-left,.top-bar .top-bar-right{width:auto}}@media screen and (max-width:74.9375em){.top-bar.stacked-for-large .top-bar-left,.top-bar.stacked-for-large .top-bar-right{width:100%}}.top-bar-title{display:inline-block;float:left;padding:.5rem 1rem .5rem 0}.top-bar-title .menu-icon{bottom:2px}.top-bar-left{float:left}.top-bar-right{float:right}.hide{display:none!important}.invisible{visibility:hidden}@media screen and (max-width:0em),screen and (min-width:40em){.show-for-small-only{display:none!important}}@media print,screen and (min-width:40em){.hide-for-medium{display:none!important}}@media screen and (max-width:39.9375em){.hide-for-small-only,.show-for-medium{display:none!important}}@media screen and (min-width:40em) and (max-width:63.875em){.hide-for-medium-only{display:none!important}}@media screen and (max-width:39.9375em),screen and (min-width:63.9375em){.show-for-medium-only{display:none!important}}@media print,screen and (min-width:63.9375em){.hide-for-large{display:none!important}}@media screen and (max-width:63.875em){.top-bar.stacked-for-medium .top-bar-left,.top-bar.stacked-for-medium .top-bar-right{width:100%}.show-for-large{display:none!important}}@media screen and (min-width:63.9375em) and (max-width:74.9375em){.hide-for-large-only{display:none!important}}@media screen and (max-width:63.875em),screen and (min-width:75em){.show-for-large-only{display:none!important}}.show-for-sr,.show-on-focus{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}.show-on-focus:active,.show-on-focus:focus{position:static!important;width:auto;height:auto;overflow:visible;clip:auto}.hide-for-portrait,.show-for-landscape{display:block!important}@media screen and (orientation:landscape){.hide-for-portrait,.show-for-landscape{display:block!important}.hide-for-landscape,.show-for-portrait{display:none!important}}.hide-for-landscape,.show-for-portrait{display:none!important}@media screen and (orientation:portrait){.hide-for-portrait,.show-for-landscape{display:none!important}.hide-for-landscape,.show-for-portrait{display:block!important}}.float-left{float:left!important}.float-right{float:right!important}.float-center{display:block;margin-right:auto;margin-left:auto}.clearfix::after,.clearfix::before{display:table;content:' '}.slide-in-down.mui-enter{-ms-transform:translateY(-100%);transform:translateY(-100%);backface-visibility:hidden}.slide-in-left.mui-enter,.slide-in-up.mui-enter{-webkit-backface-visibility:hidden}.slide-in-down.mui-enter.mui-enter-active{-ms-transform:translateY(0);transform:translateY(0)}.slide-in-left.mui-enter{-ms-transform:translateX(-100%);transform:translateX(-100%);backface-visibility:hidden}.slide-in-left.mui-enter.mui-enter-active{-ms-transform:translateX(0);transform:translateX(0)}.slide-in-up.mui-enter{-ms-transform:translateY(100%);transform:translateY(100%);backface-visibility:hidden}.slide-in-right.mui-enter,.slide-out-down.mui-leave{-webkit-backface-visibility:hidden}.slide-in-up.mui-enter.mui-enter-active{-ms-transform:translateY(0);transform:translateY(0)}.slide-in-right.mui-enter{-ms-transform:translateX(100%);transform:translateX(100%);backface-visibility:hidden}.slide-in-right.mui-enter.mui-enter-active{-ms-transform:translateX(0);transform:translateX(0)}.slide-out-down.mui-leave{-ms-transform:translateY(0);transform:translateY(0);backface-visibility:hidden}.slide-out-right.mui-leave,.slide-out-up.mui-leave{-webkit-backface-visibility:hidden}.slide-out-down.mui-leave.mui-leave-active{-ms-transform:translateY(100%);transform:translateY(100%)}.slide-out-right.mui-leave{-ms-transform:translateX(0);transform:translateX(0);backface-visibility:hidden}.slide-out-right.mui-leave.mui-leave-active{-ms-transform:translateX(100%);transform:translateX(100%)}.slide-out-up.mui-leave{-ms-transform:translateY(0);transform:translateY(0);backface-visibility:hidden}.slide-out-up.mui-leave.mui-leave-active{-ms-transform:translateY(-100%);transform:translateY(-100%)}.slide-out-left.mui-leave{-ms-transform:translateX(0);transform:translateX(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.fade-in.mui-enter,.fade-out.mui-leave{transition-duration:.5s;transition-timing-function:linear;transition-property:opacity}.hinge-in-from-bottom.mui-enter,.hinge-in-from-left.mui-enter,.hinge-in-from-middle-x.mui-enter,.hinge-in-from-middle-y.mui-enter,.hinge-in-from-right.mui-enter,.hinge-in-from-top.mui-enter,.hinge-out-from-bottom.mui-leave,.hinge-out-from-left.mui-leave,.hinge-out-from-middle-x.mui-leave,.hinge-out-from-middle-y.mui-leave,.hinge-out-from-right.mui-leave,.hinge-out-from-top.mui-leave,.scale-in-down.mui-enter,.scale-in-up.mui-enter,.scale-out-down.mui-leave,.scale-out-up.mui-leave,.spin-in-ccw.mui-enter,.spin-in.mui-enter,.spin-out-ccw.mui-leave,.spin-out.mui-leave{transition-duration:.5s;transition-timing-function:linear;transition-property:transform,opacity}.slide-out-left.mui-leave.mui-leave-active{-ms-transform:translateX(-100%);transform:translateX(-100%)}.fade-in.mui-enter{opacity:0}.fade-in.mui-enter.mui-enter-active,.fade-out.mui-leave{opacity:1}.fade-out.mui-leave.mui-leave-active{opacity:0}.hinge-in-from-top.mui-enter{transform:perspective(2000px) rotateX(-90deg);-ms-transform-origin:top;transform-origin:top;opacity:0}.hinge-in-from-top.mui-enter.mui-enter-active{transform:perspective(2000px) rotate(0);opacity:1}.hinge-in-from-right.mui-enter{transform:perspective(2000px) rotateY(-90deg);-ms-transform-origin:right;transform-origin:right;opacity:0}.hinge-in-from-right.mui-enter.mui-enter-active{transform:perspective(2000px) rotate(0);opacity:1}.hinge-in-from-bottom.mui-enter{transform:perspective(2000px) rotateX(90deg);-ms-transform-origin:bottom;transform-origin:bottom;opacity:0}.hinge-in-from-bottom.mui-enter.mui-enter-active{transform:perspective(2000px) rotate(0);opacity:1}.hinge-in-from-left.mui-enter{transform:perspective(2000px) rotateY(90deg);-ms-transform-origin:left;transform-origin:left;opacity:0}.hinge-in-from-left.mui-enter.mui-enter-active{transform:perspective(2000px) rotate(0);opacity:1}.hinge-in-from-middle-x.mui-enter{transform:perspective(2000px) rotateX(-90deg);-ms-transform-origin:center;transform-origin:center;opacity:0}.hinge-in-from-middle-x.mui-enter.mui-enter-active{transform:perspective(2000px) rotate(0);opacity:1}.hinge-in-from-middle-y.mui-enter{transform:perspective(2000px) rotateY(-90deg);-ms-transform-origin:center;transform-origin:center;opacity:0}.hinge-in-from-middle-y.mui-enter.mui-enter-active,.hinge-out-from-top.mui-leave{transform:perspective(2000px) rotate(0);opacity:1}.hinge-out-from-top.mui-leave{-ms-transform-origin:top;transform-origin:top}.hinge-out-from-top.mui-leave.mui-leave-active{transform:perspective(2000px) rotateX(-90deg);opacity:0}.hinge-out-from-right.mui-leave{transform:perspective(2000px) rotate(0);-ms-transform-origin:right;transform-origin:right;opacity:1}.hinge-out-from-right.mui-leave.mui-leave-active{transform:perspective(2000px) rotateY(-90deg);opacity:0}.hinge-out-from-bottom.mui-leave{transform:perspective(2000px) rotate(0);-ms-transform-origin:bottom;transform-origin:bottom;opacity:1}.hinge-out-from-bottom.mui-leave.mui-leave-active{transform:perspective(2000px) rotateX(90deg);opacity:0}.hinge-out-from-left.mui-leave{transform:perspective(2000px) rotate(0);-ms-transform-origin:left;transform-origin:left;opacity:1}.hinge-out-from-left.mui-leave.mui-leave-active{transform:perspective(2000px) rotateY(90deg);opacity:0}.hinge-out-from-middle-x.mui-leave{transform:perspective(2000px) rotate(0);-ms-transform-origin:center;transform-origin:center;opacity:1}.hinge-out-from-middle-x.mui-leave.mui-leave-active{transform:perspective(2000px) rotateX(-90deg);opacity:0}.hinge-out-from-middle-y.mui-leave{transform:perspective(2000px) rotate(0);-ms-transform-origin:center;transform-origin:center;opacity:1}.hinge-out-from-middle-y.mui-leave.mui-leave-active{transform:perspective(2000px) rotateY(-90deg);opacity:0}.scale-in-up.mui-enter{-ms-transform:scale(.5);transform:scale(.5);opacity:0}.scale-in-up.mui-enter.mui-enter-active{-ms-transform:scale(1);transform:scale(1);opacity:1}.scale-in-down.mui-enter{-ms-transform:scale(1.5);transform:scale(1.5);opacity:0}.scale-in-down.mui-enter.mui-enter-active,.scale-out-up.mui-leave{-ms-transform:scale(1);transform:scale(1);opacity:1}.scale-out-up.mui-leave.mui-leave-active{-ms-transform:scale(1.5);transform:scale(1.5);opacity:0}.scale-out-down.mui-leave{-ms-transform:scale(1);transform:scale(1);opacity:1}.scale-out-down.mui-leave.mui-leave-active{-ms-transform:scale(.5);transform:scale(.5);opacity:0}.spin-in.mui-enter{-ms-transform:rotate(-.75turn);transform:rotate(-.75turn);opacity:0}.spin-in.mui-enter.mui-enter-active,.spin-out.mui-leave{-ms-transform:rotate(0);transform:rotate(0);opacity:1}.spin-in-ccw.mui-enter,.spin-out.mui-leave.mui-leave-active{-ms-transform:rotate(.75turn);transform:rotate(.75turn);opacity:0}.spin-in-ccw.mui-enter.mui-enter-active,.spin-out-ccw.mui-leave{-ms-transform:rotate(0);transform:rotate(0);opacity:1}.spin-out-ccw.mui-leave.mui-leave-active{-ms-transform:rotate(-.75turn);transform:rotate(-.75turn);opacity:0}.linear{transition-timing-function:linear!important;animation-timing-function:linear!important}.ease{transition-timing-function:ease!important;animation-timing-function:ease!important}.ease-in{transition-timing-function:ease-in!important;animation-timing-function:ease-in!important}.ease-out{transition-timing-function:ease-out!important;animation-timing-function:ease-out!important}.ease-in-out{transition-timing-function:ease-in-out!important;animation-timing-function:ease-in-out!important}.bounce-in{transition-timing-function:cubic-bezier(.485,.155,.24,1.245)!important;animation-timing-function:cubic-bezier(.485,.155,.24,1.245)!important}.bounce-out{transition-timing-function:cubic-bezier(.485,.155,.515,.845)!important;animation-timing-function:cubic-bezier(.485,.155,.515,.845)!important}.bounce-in-out{transition-timing-function:cubic-bezier(.76,-.245,.24,1.245)!important;animation-timing-function:cubic-bezier(.76,-.245,.24,1.245)!important}.short-delay{transition-delay:.3s!important;animation-delay:.3s!important}.long-delay{transition-delay:.7s!important;animation-delay:.7s!important}.shake{animation-name:shake-7}.spin-ccw,.spin-cw{animation-name:spin-cw-1turn}@keyframes shake-7{0%,10%,20%,30%,40%,50%,60%,70%,80%,90%{transform:translateX(7%)}15%,25%,35%,45%,5%,55%,65%,75%,85%,95%{transform:translateX(-7%)}}@keyframes spin-cw-1turn{0%,100%{transform:rotate(0)}100%{transform:rotate(1turn)}}.wiggle{animation-name:wiggle-7deg}@keyframes wiggle-7deg{40%,50%,60%{transform:rotate(7deg)}35%,45%,55%,65%{transform:rotate(-7deg)}0%,100%,30%,70%{transform:rotate(0)}}.shake,.spin-ccw,.spin-cw,.wiggle{animation-duration:.5s}.infinite{animation-iteration-count:infinite}.slow{transition-duration:750ms!important;animation-duration:750ms!important}.fast{transition-duration:250ms!important;animation-duration:250ms!important}@font-face {
  font-family: "MonExtraBold";
  src: url(/business/assets/MontserratAlternates-ExtraBold.68548dfd119e5b4c3faaa3034ca9bb11.ttf) format("truetype"); }

@font-face {
  font-family: "MonMedium";
  src: url(/business/assets/MontserratAlternates-Medium.8c205eb88461e84278d351ea64cfd0bd.ttf) format("truetype"); }

/* ngIf animation */
.animationIf.ng-enter,
.animationIf.ng-leave {
  -webkit-transition: opacity ease-in-out 1s;
  -moz-transition: opacity ease-in-out 1s;
  -ms-transition: opacity ease-in-out 1s;
  -o-transition: opacity ease-in-out 1s;
  transition: opacity ease-in-out 1s; }

.animationIf.ng-enter,
.animationIf.ng-leave.ng-leave-active {
  opacity: 0; }

.animationIf.ng-leave,
.animationIf.ng-enter.ng-enter-active {
  opacity: 1; }

lottery .vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

lottery .bckgcolor {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: relative; }

lottery .lotteryApp {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  height: calc(100vh);
  width: calc(100%);
  background-image: url(/business/assets/bg.b2f1f9757715c2cf7dc59b98e1cfcd62.png);
  background-size: 100% 100%;
  background-color: black;
  background-repeat: no-repeat;
  overflow: hidden; }
  lottery .lotteryApp .logo {
    position: absolute;
    background: transparent;
    background-image: url(/business/assets/logo.490e8ebfd98c9c82da6cc85f70b2226e.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 578px;
    height: 348px;
    top: 70px;
    left: calc(50% - 289px);
    z-index: 10; }
  lottery .lotteryApp .home {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    background: url(/business/assets/home.784d28fcd03596369bdbded813f53612.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0; }
  lottery .lotteryApp .box-container {
    position: relative;
    height: 245px;
    width: 100%;
    padding-top: 57px;
    margin-top: 525px;
    transition: all 700ms;
    clear: both; }
    lottery .lotteryApp .box-container .center-div {
      width: max-content;
      display: inline-block;
      margin-left: 50%;
      transform: translateX(-50%); }
    lottery .lotteryApp .box-container .lottery-box {
      position: relative;
      display: inline-block;
      width: 159px;
      height: 159px;
      background: transparent;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      margin-left: 5px;
      font-size: 95px;
      color: #fff;
      font-family: MonExtraBold;
      text-align: center; }
      lottery .lotteryApp .box-container .lottery-box:after {
        content: attr(data-value);
        position: absolute;
        width: 100%;
        font-size: 86px;
        height: 100%;
        left: 0;
        top: 0px; }
      lottery .lotteryApp .box-container .lottery-box.ball {
        background: transparent;
        /* background-image: url(../img/lottery/ball.png);
                    background-size: 100%;
                    background-repeat: no-repeat; */
        height: 130px;
        width: 130px;
        color: #78c81e; }
  lottery .lotteryApp .btn_lottery_start_old {
    position: absolute;
    cursor: pointer;
    height: 213px;
    width: 447px;
    top: 777px;
    left: calc(50% - 223px);
    background: url(/business/assets/btn_start.f07d0088cf78ed37793f1e3289efa2e0.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-family: MonMedium;
    color: #fff;
    text-transform: uppercase; }
  lottery .lotteryApp .btn_lottery_start {
    position: absolute;
    cursor: pointer;
    height: 80px;
    width: 310px;
    top: 777px;
    left: calc(50% - 155px);
    background-color: #78c81e;
    font-family: MonMedium;
    font-size: 35px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    padding-top: 13px;
    text-transform: uppercase; }
  lottery .lotteryApp .btn_lottery_next {
    position: absolute;
    cursor: pointer;
    height: 80px;
    width: 400px;
    top: 777px;
    left: calc(50% - 200px);
    background-color: #78c81e;
    font-family: MonMedium;
    font-size: 35px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    padding-top: 13px;
    text-transform: uppercase; }
  lottery .lotteryApp .btn_lottery_next_old {
    position: absolute;
    cursor: pointer;
    height: 213px;
    width: 592px;
    bottom: 89px;
    left: calc(50% - 296px);
    background: url(/business/assets/btn_next.ffc78e8a950da107a854688187b6ee48.png);
    background-repeat: no-repeat;
    background-size: 100% 100%; }
  lottery .lotteryApp .phoneno {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    position: absolute;
    font-family: MonMedium;
    left: 10px;
    top: -5vh; }
  lottery .lotteryApp .phoneno_name {
    /*color: #fff;
            text-transform: uppercase;
            font-size: 24px;
            position: absolute;
            font-family: MonMedium;
            left: 420px;
            top: 46vh;
            width: 1100px;
            text-align: right;*/
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    position: absolute;
    font-family: MonMedium;
    top: -5vh;
    width: 100%;
    text-align: center; }
  lottery .lotteryApp .gift_image {
    position: absolute;
    width: 400px;
    height: 400px;
    background-size: contain;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    background-repeat: no-repeat; }
    lottery .lotteryApp .gift_image.gift_1 {
      background-image: url(/business/assets/gift_1.6199c0964de93e2a838c7c021badf223.png);
      background-repeat: no-repeat; }
    lottery .lotteryApp .gift_image.top_left {
      left: 68px;
      top: 125px; }
    lottery .lotteryApp .gift_image.top_right {
      right: 68px;
      top: 125px; }
    lottery .lotteryApp .gift_image.bottom_left {
      left: 68px;
      bottom: 50px; }
    lottery .lotteryApp .gift_image.bottom_right {
      right: 68px;
      bottom: 50px; }
    lottery .lotteryApp .gift_image.bottom_center {
      left: calc(50% - 200px);
      bottom: 50px; }

.pyro > .before,
.pyro > .after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
  -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards; }

.pyro > .after {
  -moz-animation-delay: 1.25s, 1.25s, 1.25s;
  -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
  -o-animation-delay: 1.25s, 1.25s, 1.25s;
  -ms-animation-delay: 1.25s, 1.25s, 1.25s;
  animation-delay: 1.25s, 1.25s, 1.25s;
  -moz-animation-duration: 1.25s, 1.25s, 6.25s;
  -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
  -o-animation-duration: 1.25s, 1.25s, 6.25s;
  -ms-animation-duration: 1.25s, 1.25s, 6.25s;
  animation-duration: 1.25s, 1.25s, 6.25s; }

@-webkit-keyframes bang {
  to {
    box-shadow: 203px -209.66667px #00ddff, -170px -277.66667px #7700ff, -13px -222.66667px #c8ff00, -240px -20.66667px #ffee00, 210px -163.66667px #fbff00, 172px -292.66667px #007bff, 108px -126.66667px #0055ff, 207px -46.66667px #ffdd00, -29px 62.33333px #0066ff, -18px -330.66667px #00ffb3, -60px -305.66667px #1eff00, 139px -215.66667px #00bbff, -231px 54.33333px #0040ff, -141px 31.33333px #d0ff00, -197px 4.33333px #00ff62, 109px -257.66667px #37ff00, -188px -310.66667px #004dff, 135px 11.33333px #0088ff, -156px -6.66667px #6a00ff, -73px -170.66667px #ff2200, 213px -141.66667px #73ff00, 70px -152.66667px #5900ff, 68px 1.33333px #ff9500, -169px -39.66667px #ff00d0, 101px -98.66667px #3c00ff, 45px -299.66667px #00ff1e, 136px -233.66667px #00fbff, 179px -337.66667px #d000ff, -101px -338.66667px #0015ff, 95px -250.66667px #ff0099, 42px -387.66667px #2600ff, 148px -116.66667px #ff5900, -161px -372.66667px #ff0033, 94px -87.66667px #005eff, 86px 11.33333px #ff00f7, 7px -12.66667px #00ff80, 147px -345.66667px #ff00c4, -161px 49.33333px #c8ff00, 106px -52.66667px #00eaff, -54px 83.33333px #00d0ff, -219px -244.66667px #ffee00, 200px -367.66667px #8000ff, 232px 56.33333px #d000ff, -218px -285.66667px #ffaa00, 115px -387.66667px #8c00ff, -88px -186.66667px #ff00dd, 43px 44.33333px #00ff4d, -108px -180.66667px #ffa200, 177px -77.66667px #ff0011, 89px -14.66667px #2b00ff, 210px -246.66667px #1e00ff; } }

@-moz-keyframes bang {
  to {
    box-shadow: 203px -209.66667px #00ddff, -170px -277.66667px #7700ff, -13px -222.66667px #c8ff00, -240px -20.66667px #ffee00, 210px -163.66667px #fbff00, 172px -292.66667px #007bff, 108px -126.66667px #0055ff, 207px -46.66667px #ffdd00, -29px 62.33333px #0066ff, -18px -330.66667px #00ffb3, -60px -305.66667px #1eff00, 139px -215.66667px #00bbff, -231px 54.33333px #0040ff, -141px 31.33333px #d0ff00, -197px 4.33333px #00ff62, 109px -257.66667px #37ff00, -188px -310.66667px #004dff, 135px 11.33333px #0088ff, -156px -6.66667px #6a00ff, -73px -170.66667px #ff2200, 213px -141.66667px #73ff00, 70px -152.66667px #5900ff, 68px 1.33333px #ff9500, -169px -39.66667px #ff00d0, 101px -98.66667px #3c00ff, 45px -299.66667px #00ff1e, 136px -233.66667px #00fbff, 179px -337.66667px #d000ff, -101px -338.66667px #0015ff, 95px -250.66667px #ff0099, 42px -387.66667px #2600ff, 148px -116.66667px #ff5900, -161px -372.66667px #ff0033, 94px -87.66667px #005eff, 86px 11.33333px #ff00f7, 7px -12.66667px #00ff80, 147px -345.66667px #ff00c4, -161px 49.33333px #c8ff00, 106px -52.66667px #00eaff, -54px 83.33333px #00d0ff, -219px -244.66667px #ffee00, 200px -367.66667px #8000ff, 232px 56.33333px #d000ff, -218px -285.66667px #ffaa00, 115px -387.66667px #8c00ff, -88px -186.66667px #ff00dd, 43px 44.33333px #00ff4d, -108px -180.66667px #ffa200, 177px -77.66667px #ff0011, 89px -14.66667px #2b00ff, 210px -246.66667px #1e00ff; } }

@-o-keyframes bang {
  to {
    box-shadow: 203px -209.66667px #00ddff, -170px -277.66667px #7700ff, -13px -222.66667px #c8ff00, -240px -20.66667px #ffee00, 210px -163.66667px #fbff00, 172px -292.66667px #007bff, 108px -126.66667px #0055ff, 207px -46.66667px #ffdd00, -29px 62.33333px #0066ff, -18px -330.66667px #00ffb3, -60px -305.66667px #1eff00, 139px -215.66667px #00bbff, -231px 54.33333px #0040ff, -141px 31.33333px #d0ff00, -197px 4.33333px #00ff62, 109px -257.66667px #37ff00, -188px -310.66667px #004dff, 135px 11.33333px #0088ff, -156px -6.66667px #6a00ff, -73px -170.66667px #ff2200, 213px -141.66667px #73ff00, 70px -152.66667px #5900ff, 68px 1.33333px #ff9500, -169px -39.66667px #ff00d0, 101px -98.66667px #3c00ff, 45px -299.66667px #00ff1e, 136px -233.66667px #00fbff, 179px -337.66667px #d000ff, -101px -338.66667px #0015ff, 95px -250.66667px #ff0099, 42px -387.66667px #2600ff, 148px -116.66667px #ff5900, -161px -372.66667px #ff0033, 94px -87.66667px #005eff, 86px 11.33333px #ff00f7, 7px -12.66667px #00ff80, 147px -345.66667px #ff00c4, -161px 49.33333px #c8ff00, 106px -52.66667px #00eaff, -54px 83.33333px #00d0ff, -219px -244.66667px #ffee00, 200px -367.66667px #8000ff, 232px 56.33333px #d000ff, -218px -285.66667px #ffaa00, 115px -387.66667px #8c00ff, -88px -186.66667px #ff00dd, 43px 44.33333px #00ff4d, -108px -180.66667px #ffa200, 177px -77.66667px #ff0011, 89px -14.66667px #2b00ff, 210px -246.66667px #1e00ff; } }

@-ms-keyframes bang {
  to {
    box-shadow: 203px -209.66667px #00ddff, -170px -277.66667px #7700ff, -13px -222.66667px #c8ff00, -240px -20.66667px #ffee00, 210px -163.66667px #fbff00, 172px -292.66667px #007bff, 108px -126.66667px #0055ff, 207px -46.66667px #ffdd00, -29px 62.33333px #0066ff, -18px -330.66667px #00ffb3, -60px -305.66667px #1eff00, 139px -215.66667px #00bbff, -231px 54.33333px #0040ff, -141px 31.33333px #d0ff00, -197px 4.33333px #00ff62, 109px -257.66667px #37ff00, -188px -310.66667px #004dff, 135px 11.33333px #0088ff, -156px -6.66667px #6a00ff, -73px -170.66667px #ff2200, 213px -141.66667px #73ff00, 70px -152.66667px #5900ff, 68px 1.33333px #ff9500, -169px -39.66667px #ff00d0, 101px -98.66667px #3c00ff, 45px -299.66667px #00ff1e, 136px -233.66667px #00fbff, 179px -337.66667px #d000ff, -101px -338.66667px #0015ff, 95px -250.66667px #ff0099, 42px -387.66667px #2600ff, 148px -116.66667px #ff5900, -161px -372.66667px #ff0033, 94px -87.66667px #005eff, 86px 11.33333px #ff00f7, 7px -12.66667px #00ff80, 147px -345.66667px #ff00c4, -161px 49.33333px #c8ff00, 106px -52.66667px #00eaff, -54px 83.33333px #00d0ff, -219px -244.66667px #ffee00, 200px -367.66667px #8000ff, 232px 56.33333px #d000ff, -218px -285.66667px #ffaa00, 115px -387.66667px #8c00ff, -88px -186.66667px #ff00dd, 43px 44.33333px #00ff4d, -108px -180.66667px #ffa200, 177px -77.66667px #ff0011, 89px -14.66667px #2b00ff, 210px -246.66667px #1e00ff; } }

@keyframes bang {
  to {
    box-shadow: 203px -209.66667px #00ddff, -170px -277.66667px #7700ff, -13px -222.66667px #c8ff00, -240px -20.66667px #ffee00, 210px -163.66667px #fbff00, 172px -292.66667px #007bff, 108px -126.66667px #0055ff, 207px -46.66667px #ffdd00, -29px 62.33333px #0066ff, -18px -330.66667px #00ffb3, -60px -305.66667px #1eff00, 139px -215.66667px #00bbff, -231px 54.33333px #0040ff, -141px 31.33333px #d0ff00, -197px 4.33333px #00ff62, 109px -257.66667px #37ff00, -188px -310.66667px #004dff, 135px 11.33333px #0088ff, -156px -6.66667px #6a00ff, -73px -170.66667px #ff2200, 213px -141.66667px #73ff00, 70px -152.66667px #5900ff, 68px 1.33333px #ff9500, -169px -39.66667px #ff00d0, 101px -98.66667px #3c00ff, 45px -299.66667px #00ff1e, 136px -233.66667px #00fbff, 179px -337.66667px #d000ff, -101px -338.66667px #0015ff, 95px -250.66667px #ff0099, 42px -387.66667px #2600ff, 148px -116.66667px #ff5900, -161px -372.66667px #ff0033, 94px -87.66667px #005eff, 86px 11.33333px #ff00f7, 7px -12.66667px #00ff80, 147px -345.66667px #ff00c4, -161px 49.33333px #c8ff00, 106px -52.66667px #00eaff, -54px 83.33333px #00d0ff, -219px -244.66667px #ffee00, 200px -367.66667px #8000ff, 232px 56.33333px #d000ff, -218px -285.66667px #ffaa00, 115px -387.66667px #8c00ff, -88px -186.66667px #ff00dd, 43px 44.33333px #00ff4d, -108px -180.66667px #ffa200, 177px -77.66667px #ff0011, 89px -14.66667px #2b00ff, 210px -246.66667px #1e00ff; } }

@-webkit-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }

@-moz-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }

@-o-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }

@-ms-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }

@keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }

@-webkit-keyframes position {
  0%,
  19.9% {
    margin-top: 20%;
    margin-left: 40%; }
  20%,
  39.9% {
    margin-top: 22%;
    margin-left: 30%; }
  40%,
  59.9% {
    margin-top: 23%;
    margin-left: 70%; }
  60%,
  79.9% {
    margin-top: 24%;
    margin-left: 50%; }
  80%,
  99.9% {
    margin-top: 25%;
    margin-left: 65%; } }

@-moz-keyframes position {
  0%,
  19.9% {
    margin-top: 20%;
    margin-left: 40%; }
  20%,
  39.9% {
    margin-top: 22%;
    margin-left: 30%; }
  40%,
  59.9% {
    margin-top: 23%;
    margin-left: 70%; }
  60%,
  79.9% {
    margin-top: 24%;
    margin-left: 50%; }
  80%,
  99.9% {
    margin-top: 25%;
    margin-left: 65%; } }

@-o-keyframes position {
  0%,
  19.9% {
    margin-top: 20%;
    margin-left: 40%; }
  20%,
  39.9% {
    margin-top: 22%;
    margin-left: 30%; }
  40%,
  59.9% {
    margin-top: 23%;
    margin-left: 70%; }
  60%,
  79.9% {
    margin-top: 24%;
    margin-left: 50%; }
  80%,
  99.9% {
    margin-top: 25%;
    margin-left: 65%; } }

@-ms-keyframes position {
  0%,
  19.9% {
    margin-top: 20%;
    margin-left: 40%; }
  20%,
  39.9% {
    margin-top: 22%;
    margin-left: 30%; }
  40%,
  59.9% {
    margin-top: 23%;
    margin-left: 70%; }
  60%,
  79.9% {
    margin-top: 24%;
    margin-left: 50%; }
  80%,
  99.9% {
    margin-top: 25%;
    margin-left: 65%; } }

@keyframes position {
  0%,
  19.9% {
    margin-top: 20%;
    margin-left: 40%; }
  20%,
  39.9% {
    margin-top: 22%;
    margin-left: 30%; }
  40%,
  59.9% {
    margin-top: 23%;
    margin-left: 70%; }
  60%,
  79.9% {
    margin-top: 24%;
    margin-left: 50%; }
  80%,
  99.9% {
    margin-top: 25%;
    margin-left: 65%; } }
i.pro,
i.vas,
i.adg {
    background-repeat: no-repeat;
    height: 34px;
    width: 36px;
    display: block;
    background-size: 100%;
    transition: all .2s;
    margin: 0 0 1.25rem;
}

i.adg {
    background-size: 30px 30px;
}

@media only screen and (max-width: 39.9375em) {

    i.pro,
    i.vas,
    i.adg {
        height: 30px;
        width: 30px;
        margin-right: 10px;
    }
}

i.i-net {
    background-image: url(/business/assets/i-net.600c637b2b3b843f9a192ef1ceaa34ed.svg);
}

i.i-mobile {
    background-image: url(/business/assets/i-mobile.160c533d378396369e1060f36f1745f9.svg);
}

i.i-iptv {
    background-image: url(/business/assets/i-iptv.28f4b62e01ec7184eda8c050a9d0ea2f.svg);
}

i.i-check {
    background-image: url(/business/assets/i-check.5a458c462ef7614f7235b6e48c21f600.svg);
}

i.i-cloud {
    background-image: url(/business/assets/i-cloud.f408c5a57bc079ad10456356454ec06f.svg);
}

i.i-biz {
    background-image: url(/business/assets/i-biz.4a8aa79438838a727f363e9d3c5ee127.svg);
}

i.i-sms {
    background-image: url(/business/assets/i-sms.4b4e8dbd83ee1b77c203d3ef3cb35265.svg);
}

i.part1 {
    background-image: url(/business/assets/i-money.7752022d0d91f12becfd03c92d1d21e8.svg);
}

i.part2 {
    background-image: url(/business/assets/i-thumb.e4ea3754815cbb3eae979bee8fd4c0d5.svg);
}

i.part3 {
    background-image: url(/business/assets/i-brief.44fcb1643e94e2e024aacb4a3f3bb881.svg);
}

i.part4 {
    background-image: url(/business/assets/i-smile.113280974433ff99f6e7014358249a3c.svg);
}

i.name {
    background-image: url(/business/assets/name.309466c1452122bb33e2899e84b757e0.svg);
}

i.contract {
    background-image: url(/business/assets/contract.c0e8fb93c373ba94df1625d3006ee911.svg);
}

i.created {
    background-image: url(/business/assets/created.d39c2eae5fa9b72ac93ab12b241d665d.svg);
}

i.name,
i.pro.contract,
i.pro.created {
    height: 45px;
}

i.delete,
i.delete1,
i.delete2 {
    background-image: url(/business/assets/delete1.ae038f3c0d65953259af5d72a8e5b4a3.svg);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    background-size: 100%;
    transition: all .2s;
    display: inline-block;
    vertical-align: middle;
}

i.delete1 {
    background-image: url(/business/assets/delete.b23a7a2294dc724f21124fddd41efa5c.svg);
}

i.delete1:hover {
    background-image: url(/business/assets/delete1-1.eb66ec180bfd01f8e068b4027f60a688.svg);
}

i.delete2 {
    background-image: url(/business/assets/b_delete.c119a33a92eb49c15c5472a7b6336b81.svg);
}

i.delete2:hover {
    background-image: url(/business/assets/b_delete.c119a33a92eb49c15c5472a7b6336b81.svg);
}
i.edit,
i.edit1,
i.edit2,
i.edit3,
i.user,
i.printer,
i.excel,
i.dropdown {
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    background-size: 100%;
    transition: all .2s;
    /*margin: 0 10px 0 7px;*/
    display: inline-block;
    background-repeat: no-repeat;
    vertical-align: middle;
}

i.edit {
    background-image: url(/business/assets/edit2.fce92e01408fe64ba6c802c13844bbfa.svg);
}

i.edit:hover {
    background-image: url(/business/assets/edit2.fce92e01408fe64ba6c802c13844bbfa.svg);
}

i.edit1 {
    background-image: url(/business/assets/edit1.8057ec3282dfc9683a737a8f089956be.svg);
}

i.edit1:hover {
    background-image: url(/business/assets/edit1.8057ec3282dfc9683a737a8f089956be.svg);
}

i.edit2 {
    background-image: url(/business/assets/edit.2da83f119826efd1da0d332e4c363f5c.svg);
}

i.edit2:hover {
    background-image: url(/business/assets/edit.2da83f119826efd1da0d332e4c363f5c.svg);
}

i.edit3 {
    background-image: url(/business/assets/b_edit.818e5f531df936df875eda48b638120b.svg);
}

i.edit3:hover {
    background-image: url(/business/assets/b_edit.818e5f531df936df875eda48b638120b.svg);
}

i.user {
    background-image: url(/business/assets/user.f98a6c25a4f37606d05dc8220752e0a8.svg);
}

i.user:hover {
    background-image: url(/business/assets/user.f98a6c25a4f37606d05dc8220752e0a8.svg);
}

i.printer {
    background-image: url(/business/assets/print.2a89363848012c6768618ac7b55449c8.png);
}

i.printer:hover {
    background-image: url(/business/assets/print.2a89363848012c6768618ac7b55449c8.png);
}

i.excel {
    background-image: url(/business/assets/download.017fca772c4626977d8c1d3aa4e8345f.png);
}

i.excel:hover {
    background-image: url(/business/assets/download.017fca772c4626977d8c1d3aa4e8345f.png);
}

i.see {
    background-image: url(/business/assets/see.59e8625a3a35bf60b7ee44d54c63072f.svg);
}

i.see:hover {
    background-image: url(/business/assets/see.59e8625a3a35bf60b7ee44d54c63072f.svg);
}

i.large {
    height: 25px;
    width: 25px;
}

/*account*/
i.search,
i.login,
i.logged {
    background-size: 100%;
    width: 18px;
    height: 18px;
    margin-right: auto;
    margin-left: auto;
}

i.search {
    background-image: url(/business/assets/home_search.ee1da299dfce0e1c933eb5ae42cdbf5e.svg);
}

i.login {
    background-image: url(/business/assets/home_login.adccc52fd6fe003c68c0a29cf187a747.svg);
}

@media only screen and (max-width: 63.9375em) {
    i.logged {
        background-image: url(/business/assets/home_loggedin.11f31902443445d67cc68528e300df0a.svg);
    }
}

@media only screen and (min-width: 64em) {
    i.logged {
        background-image: url(/business/assets/usermneu.710f6f3adbfba8e697b95e33b3337468.svg);
        width: 28px;
        height: 28px;
    }
}

i.account,
i.settings,
i.logout {
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
}

i.account {
    background: url(/business/assets/home_account.0e98c9d4f1efce3c3a754954171dd33b.svg);
}

i.settings {
    background: url(/business/assets/home_service.45501c2a51f4689b3d96827ddf5174c2.svg);
}

i.logout {
    background: url(/business/assets/home_logout.840976a143ddddd9d464d16d98b6cf7d.svg);
}

i.logout1 {
    background: url(/business/assets/home_logout1.9894f092e9e8cc046280ff26ef7228e7.svg);
}

i.upload {
    background-image: url(/business/assets/upload.31b134215408307076fb2f1d24167118.svg);
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    position: absolute;
}

i.more {
    background-image: url(/business/assets/more.31c2d2d6750a6fa227922a99a33d18a3.svg);
    background-size: 40px 40px;
    width: 38px;
    height: 40px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
}

i.calendar {
    background-image: url(/business/assets/calendar.07346e4a6d7628115b8406bf95c115c4.svg);
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    position: absolute;
}

i.add_logo {
    background-image: url(/business/assets/add_logo.8c6e9f5110886c13e6cae2653378f81d.svg);
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    position: absolute;
}

i.add_data {
    background-image: url(/business/assets/add_data.fefb79b214863575a1beac3861df4776.svg);
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
}

i.upload {
    background-image: url(/business/assets/upload.31b134215408307076fb2f1d24167118.svg);
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    display: inline-block;
}

i.addtime {
    background-image: url(/business/assets/addtime.08f429d5e8793787108043e7c7cbb10c.svg);
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    display: inline-block;
}

i.seelist {
    background-image: url(/business/assets/see.f662b2075890cad8e571dcd86a7bd4ff.svg);
    background-size: 40px 40px;
    width: 38px;
    height: 40px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    display: inline-block;
}
i.event-contract {
    background-image: url(/business/assets/contract.73477db525cd72791a3306c6835bbd0e.svg);
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    display: inline-block;
}
i.search {
    width: 25px;
    height: 30px;
    background-image: url(/business/assets/search.49e002479df3b722df08d2a35d621638.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin-left: -6px;
}
i.copy {
    background-image: url(/business/assets/copy.6c9be5904233cb45b938be3a4554bf61.svg);
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    display: inline-block;
}
i.copy.active {
    background-image: url(/business/assets/copied.985812c71eb49b76218fb375af7dffe6.svg);
}

i.data,
i.call,
i.gift,
i.text,
i.default {
    background-size: cover;
    width: 32px;
    height: 32px;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    margin-top: 4px;
}

i.default {
    background-image: url(/business/assets/call.d05f8db8ae74c18048e4bd2e0a0cc4df.svg);
}

i.data {
    background-image: url(/business/assets/data.620972d0e2739571b6cd07cc1f32b8f2.svg);
}

i.call {
    background-image: url(/business/assets/call.d05f8db8ae74c18048e4bd2e0a0cc4df.svg);
}

i.gift {
    background-image: url(/business/assets/gift.fec2f2c610feb089249dee15f428bfd7.svg);
}

i.text {
    background-image: url(/business/assets/sms.a4400b26889c00c715ace5c36923e794.svg);
}

i.looktv {
    background-image: url(/business/assets/data.620972d0e2739571b6cd07cc1f32b8f2.svg);
}

i.dropdown {
    background-image: url(/business/assets/bu_dropdown.6ab4fc1b5956541719d2b6ec69b54d5d.svg);
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: 30%;
}

i.gift {
    animation: shake_gift 0.7s infinite;
    margin-left: 5px;
}

i.add-contract {
    background-image: url(/business/assets/add_contract.48422fa13dc205e22f239780b413b99f.svg);
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    vertical-align: top;
    margin-left: auto;
    display: inline-block;
}

@keyframes shake_gift {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(35deg);
    }
    20% {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(0deg);
        transform: scale(0.5);
    }
    90% {
        transform: rotate(-25deg);
    }
    100% {
        transform: rotate(0deg);
    }
}@font-face {
	font-family: 'icomoon';
	src:url(/business/assets/icomoon.44df401eef39286fe1cb35f580cd3bf7.eot);
	src:url(/business/assets/icomoon.44df401eef39286fe1cb35f580cd3bf7.eot?#iefix) format('embedded-opentype'),
		url(/business/assets/icomoon.4fbd31ddc307166899f3ed1cf48e6359.woff) format('woff'),
		url(/business/assets/icomoon.928054c47ea73f426c8b027bb7afa81c.ttf) format('truetype'),
		url(/business/assets/icomoon.4840d4fa24b11bf9d39683363cf400f8.svg#icomoon) format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Common styles of menus */

.dl-menuwrapper {
	width: 100%;
	max-width: 300px;
	float: left;
	position: relative;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}

/*.dl-menuwrapper:first-child {
	margin-right: 100px;
}
*/
.dl-menuwrapper button {
	background: #ccc;
	border: none;
	width: 48px;
	height: 45px;
	text-indent: -900em;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
	background: #aaa;
	margin-left:0;
	z-index: 5;
}

.dl-menuwrapper button:after {
	content: '';
	position: absolute;
	width: 68%;
	height: 5px;
	background: #fff;
	top: 10px;
	left: 16%;
	box-shadow: 
		0 10px 0 #fff, 
		0 20px 0 #fff;
}

.dl-menuwrapper ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.top-bar-right .dl-menuwrapper li {
	position: relative;
	background-color: #90b912;
}

.dl-menuwrapper li a {
	display: block;
	position: relative;
	padding: 15px 20px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	color: #fff;
	outline: none;
}

.no-touch .dl-menuwrapper li a:hover {
	background: rgba(255,248,213,0.1);
}

.dl-menuwrapper li.dl-back > a {
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: -7px;
	line-height: 50px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\E000";
}

.dl-menuwrapper li.dl-back:after {
	left: 10px;
	color: rgba(212,204,198,0.3);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
	right: 10px;
	color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
	margin: 5px 0 0 0;
	position: absolute;
	opacity: 0;
    right: 0px;
    z-index: 100000;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
	display: none;
}

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
	display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
	display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
	position: absolute;
	top: 50px;
	left: 0;
	margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
	-webkit-animation: MenuAnimOut2 0.3s ease-in-out;
	animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
	-webkit-animation: MenuAnimOut3 0.4s ease;
	animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
	-webkit-animation: MenuAnimOut4 0.4s ease;
	animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
	-webkit-animation: MenuAnimOut5 0.4s ease;
	animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
}

.dl-menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
	-webkit-animation: MenuAnimIn2 0.3s ease-in-out;
	animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
	-webkit-animation: MenuAnimIn3 0.4s ease;
	animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
	-webkit-animation: MenuAnimIn4 0.4s ease;
	animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
	-webkit-animation: MenuAnimIn5 0.4s ease;
	animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
	-webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
	animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
	-webkit-animation: SubMenuAnimIn3 0.4s ease;
	animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
	-webkit-animation: SubMenuAnimIn4 0.4s ease;
	animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
	-webkit-animation: SubMenuAnimIn5 0.4s ease;
	animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
	-webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
	animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
	-webkit-animation: SubMenuAnimOut3 0.4s ease;
	animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
	-webkit-animation: SubMenuAnimOut4 0.4s ease;
	animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
	-webkit-animation: SubMenuAnimOut5 0.4s ease;
	animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
	display: block;
}

.no-js .dl-menuwrapper li.dl-back {
	display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
	content: '';
}

/* Colors for demos */

/* Demo 1 */
.demo-1 .dl-menuwrapper button {
	background: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
	background: #9e1847;
}

/* Demo 2 */
.demo-2 .dl-menuwrapper button {
	background: #e86814;
}

.demo-2 .dl-menuwrapper button:hover,
.demo-2 .dl-menuwrapper button.dl-active,
.demo-2 .dl-menuwrapper ul {
	background: #D35400;
}

/* Demo 3 */
.demo-3 .dl-menuwrapper button {
	background: #08cbc4;
}

.demo-3 .dl-menuwrapper button:hover,
.demo-3 .dl-menuwrapper button.dl-active,
.demo-3 .dl-menuwrapper ul {
	background: #00b4ae;
}

/* Demo 4 */
.demo-4 {
	position: relative;
	z-index: 1000;
}
.demo-4 .dl-menuwrapper button {
	background: #90b912;
}

.demo-4 .dl-menuwrapper button:hover,
.demo-4 .dl-menuwrapper button.dl-active,
.demo-4 .dl-menuwrapper ul {
	background: #79a002;
}

/* Demo 5 */
.demo-5 .dl-menuwrapper button {
	background: #744783;
}

.demo-5 .dl-menuwrapper button:hover,
.demo-5 .dl-menuwrapper button.dl-active,
.demo-5 .dl-menuwrapper ul {
	background: #643771;
}
/*@import url(//fonts.googleapis.com/css?family=Lato:300,400,700);
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
.container,
.scroller {
  height: 100%;
}*/

[class*="ion-"]::before {
  margin: 0 0.6em 0 0;
}

.scroller {
  overflow-y: scroll;
}

.scroller,
.scroller-inner {
  position: relative;
}

/*.container {
  position: relative;
  overflow: hidden;
}*/

.menu-trigger {
  position: relative;
  padding-left: 60px;
  font-size: 0.9em;
}

.menu-trigger:before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  height: 6px;
  background: #fff;
  box-shadow: 0 6px rgba(0, 0, 0, 0), 0 12px #fff, 0 18px rgba(0, 0, 0, 0),
    0 24px #fff;
  content: "";
}

.mp-pusher {
  position: relative;
  left: 0;
  height: 100%;
  perspective: 1000px;
}

.mp-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 300px;
  height: 100%;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mp-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, #c771df, #e86464);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mp-pusher::after,
.mp-level::after,
.mp-level::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  content: "";
  opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
  -moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
  transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
  z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.mp-level.mp-level-overlay {
  cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 1;
}

.mp-pusher,
.mp-level {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
/* overlap */

.mp-overlap .mp-level.mp-level-open {
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(-40px, 0, 0);
  -moz-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
/* First level */

.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
  box-shadow: none;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* cover */

.mp-cover .mp-level.mp-level-open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
/* content style */

.mp-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp-menu h2 {
  margin: 0;
  padding: 1em;
  color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  font-size: 2em;
}

.mp-menu.mp-overlap h2::before {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 8px;
  font-size: 75%;
  line-height: 1.8;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
  transition: opacity 0.3s, transform 0.1s 0.3s;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.mp-menu.mp-cover h2 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1em;
}

.mp-overlap .mp-level.mp-level-overlay > h2::before {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.mp-menu ul li > a {
  display: block;
  padding: 0.7em 1em 0.7em 1.8em;
  outline: none;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  font-size: 1.4em;
  -webkit-transition: background 0.3s, box-shadow 0.3s;
  -moz-transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
}

.mp-menu ul li::before {
  position: absolute;
  left: 10px;
  z-index: -1;
  color: rgba(0, 0, 0, 0.2);
  line-height: 3.5;
}

.mp-level > ul > li:first-child > a {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2), inset 0 1px rgba(0, 0, 0, 0.2);
}

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0);
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0);
}

.mp-level > ul > li:first-child > a:hover,
.mp-level.mp-level-overlay > ul > li:first-child > a {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0), inset 0 1px rgba(0, 0, 0, 0);
}
/* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */

.mp-back {
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  font-size: 0.8em;
  padding: 1em;
  position: relative;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}

.mp-back::after {
  font-family: "Ionicons";
  position: absolute;
  content: "\F10A";
  right: 10px;
  font-size: 1.3em;
  color: rgba(0, 0, 0, 0.3);
}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
  background: transparent;
  box-shadow: none;
  color: transparent;
}

.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
  padding-left: 300px;
}

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
  display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
  display: block;
}

/*body {
  background: linear-gradient(to top left, #C771DF,#E86464);
  color: #fff;
  font-weight: 300;
  font-family: 'Lato', Calibri, Arial, sans-serif;
}*/

a {
  text-decoration: none;
  color: #f7f7f7;
  outline: none;
}

a:hover,
a:focus {
  color: #fff;
  outline: none;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

.codrops-header {
  font-family: "Lato", Arial, sans-serif;
}

.codrops-header {
  margin: 0 auto;
  padding: 2em;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
}

.codrops-header h1 {
  margin: 0;
  font-weight: 300;
  font-size: 2.625em;
  line-height: 1.3;
}

.codrops-header span {
  display: block;
  padding: 0 0 0.6em 0.1em;
  font-size: 60%;
  opacity: 0.7;
}

.content {
  padding: 4em 2em;
  max-width: 1200px;
  margin: 0 auto;
}

/*.block {
  float: left;
  padding: 1em 3em;
}

.block-40 {
  width: 40%;
}

.block-60 {
  width: 60%;
}

.block p {
  margin: 0;
  padding: 0 1em 0.6em;
  font-size: 1.8em;
  line-height: 1.5;
}

@media screen and (max-width: 69em) {
  .block {
    float: none;
    width: 100% !important;
    padding: 1em;
  }
}*/

@media screen and (max-width: 25em) {
  body {
    font-size: 0%;
  }
}
.dataTables_wrapper .dataTable thead tr {
  display: contents !important;
}
.dataTables_wrapper .dataTable tbody {

  display: table-row-group !important;
}
.dataTables_wrapper .dataTable thead,
.dataTables_wrapper .dataTable tbody tr {
  display: table-row !important;
}
@font-face {
  font-family: OpenSans-Regular;
  src: url(/business/assets/OpenSans-Regular.629a55a7e793da068dc580d184cc0e31.ttf); }

@font-face {
  font-family: Roboto-R;
  src: url(/business/assets/Roboto-Regular.54a91b0619ccf9373d525109268219dc.ttf); }

@font-face {
  font-family: Roboto-ConR;
  src: url(/business/assets/RobotoCondensed-Regular.0e1821fdf320fddc0e1c2b272c422068.ttf); }

@font-face {
  font-family: Roboto-Med;
  src: url(/business/assets/Roboto-Medium.99fc0816a09395454061301fefa42bf1.ttf); }

@font-face {
  font-family: Roboto-Light;
  src: url(/business/assets/Roboto-Light.e22062b3188c8199283ef2aa835d4653.ttf); }

@font-face {
  font-family: Roboto-Bold;
  src: url(/business/assets/Roboto-Bold.afa7a91dadd77b23634a0fdf18c148f3.ttf); }

.ro-Con {
  font-family: Roboto-ConR !important; }

.hide {
  display: none; }

.text-light {
  color: #fff; }

.text-muted {
  color: #afb9c3; }

.text-primary {
  color: #78C81E; }

.text-success {
  color: #78C81E !important; }

.text-danger {
  color: #da3116; }

.text-warning {
  color: #ffba00; }

.text-info {
  color: #128ef2; }

.text-purple {
  color: #bd44bc; }

.text-dark {
  color: #000 !important; }

.text-menu {
  color: #7a7a7a !important; }

.text-menu2 {
  color: #b0b0b0 !important; }

.text-upper {
  text-transform: uppercase !important; }

.mar-all {
  margin: 0.9375rem 0.9375rem; }

.mar-contract-lft {
  margin-left: 200px !important; }

.mar-contract-rgt {
  margin-right: 200px !important; }

.mar-no {
  margin: 0px !important; }

.mar-lft {
  margin-left: 0.9375rem !important; }

.mar-lft-no {
  margin-left: 0rem !important; }

.mar-rgt {
  margin-right: 0.9375rem !important; }

.mar-rgt-no {
  margin-right: 0rem !important; }

.mar-top {
  margin-top: 0.9375rem !important; }

.mar-top-no {
  margin-top: 0 !important; }

.mar-btm {
  margin-bottom: 0.9375rem !important; }

.mar-btm-no {
  margin-bottom: 0 !important; }

.mar-btm-2 {
  margin-bottom: 2px !important; }

.mar-btm-8 {
  margin-bottom: 0.5rem !important; }

.mar-btm-10 {
  margin-bottom: 0.625rem !important; }

.mar-btm-20 {
  margin-bottom: 1.25rem !important; }

.mar-btm-24 {
  margin-bottom: 1.5rem !important; }

.mar-btm-50 {
  margin-bottom: 3.125rem !important; }

.mar-btm-100 {
  margin-bottom: 6.25rem !important; }

.mar-top-100 {
  margin-top: 6.25rem !important; }

.mar-top-50 {
  margin-top: 3.125rem !important; }

.mar-top-30 {
  margin-top: 1.875rem !important; }

.mar-top-25 {
  margin-top: 1.5625rem !important; }

.mar-top-20 {
  margin-top: 1.25rem !important; }

.mar-top-10 {
  margin-top: 0.625rem !important; }

.mar-btm-30 {
  margin-bottom: 1.875rem !important; }

.mar-hor {
  margin-right: 0.9375rem;
  margin-left: 0.9375rem; }

.mar-hor-25 {
  margin-right: 1.5625rem;
  margin-left: 1.5625rem; }

.mar-ver {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }

.mar-center {
  margin-right: auto !important;
  margin-left: auto !important; }

.pad-all {
  padding: 0.9375rem 0.9375rem; }

.pad-no-all {
  padding: 0px !important; }

.pad-top {
  padding-top: 0.9375rem; }

.pad-top-30 {
  padding-top: 1.875rem !important; }

.pad-btm {
  padding-bottom: 0.9375rem; }

.pad-lft {
  padding-left: 0.9375rem; }

.pad-rgt {
  padding-right: 0.9375rem; }

.pad-hor {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem; }

.pad-ver {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }

.pad-no-lft {
  padding-left: 0 !important; }

.pad-no-rgt {
  padding-right: 0 !important; }

.pad-no-top {
  padding-top: 0 !important; }

.bdr-all {
  border: 1px solid #eaeaea; }

.bdr-rgt {
  border-right: 1px solid #eaeaea; }

.bdr-lft {
  border-left: 1px solid #eaeaea; }

.bdr-btm {
  border-bottom: 1px solid #eaeaea !important; }

.bdr-top {
  border-top: 1px solid #eaeaea; }

.bdr-no {
  border: none !important; }

.section-odd {
  background-color: #f7f8fa !important; }

::-webkit-scrollbar {
  width: 6px; }

::-webkit-scrollbar:horizontal {
  height: 3px; }

::-webkit-scrollbar-track,
::-webkit-scrollbar-track:horizontal {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  width: 8px; }

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(153, 153, 153, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); }

::-webkit-scrollbar-thumb:horizontal {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(122, 122, 122, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); }

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.4); }

* {
  outline: 0; }

html {
  min-height: 100%;
  position: relative; }

body {
  font-family: OpenSans-Regular;
  font-size: 0.8125rem;
  line-height: 1.5; }

.off-canvas-content {
  min-height: 100vh; }

p {
  font-size: 0.8125rem; }

p.help-text {
  font-size: OpenSans-Regular !important; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
  height: 2.6rem !important;
  border-radius: 0.3125rem;
  padding-left: 12px; }
  input[type="text"].normal,
  input[type="email"].normal,
  input[type="password"].normal,
  input[type="number"].normal,
  select.normal {
    height: auto !important; }
  input[type="text"].square,
  input[type="email"].square,
  input[type="password"].square,
  input[type="number"].square,
  select.square {
    border-radius: 0.5rem !important;
    height: 3.35rem !important; }

label {
  line-height: 2;
  padding-left: 10px; }

.input-group-label {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; }

.button {
  font-family: OpenSans-Regular !important;
  background-color: #78C81E; }
  .button:hover {
    opacity: 0.8; }
  .button.normal {
    min-width: auto;
    padding: 8px 15px; }
  .button.print {
    min-width: auto;
    padding: 10px 15px; }
  .button.purple {
    background-color: purple; }
    .button.purple:hover {
      opacity: 0.8; }
  .button.orange {
    background-color: orange; }
    .button.orange:hover {
      opacity: 0.8; }
  .button.red {
    background-color: red; }
    .button.red:hover {
      opacity: 0.8; }
  .button.cyan {
    background-color: cyan; }
    .button.cyan:hover {
      opacity: 0.8; }
  .button.gray {
    background-color: #c3c5c8; }
    .button.gray:hover {
      opacity: 0.8; }
  .button.lightgray {
    background-color: #eee; }
    .button.lightgray:hover {
      opacity: 0.6; }
  .button.square {
    border-radius: 0.5rem !important; }

ul.menulist {
  list-style-type: none;
  font-family: Roboto-Light;
  font-size: 1rem; }
  ul.menulist a {
    color: #606060; }
  ul.menulist li {
    padding: 3px 7px; }
    ul.menulist li.active, ul.menulist li:hover {
      background-color: #f4f6fa;
      font-family: Roboto-Med; }

ul.check {
  margin-left: 33px;
  list-style: none; }
  ul.check li {
    position: relative; }
    ul.check li:before {
      content: "";
      background-image: url(/business/assets/b_check.7b84e97c34cc3fc48a76451470008665.svg);
      background-size: 13px 11px;
      height: 11px;
      width: 13px;
      position: absolute;
      top: 7px;
      left: -30px; }

ul.block {
  list-style-type: none; }
  ul.block.bdr-rd li {
    position: relative;
    margin-bottom: 20px; }
    ul.block.bdr-rd li .ctn {
      border: 1px solid #ced0d3;
      border-radius: 5px;
      margin-right: 10px;
      padding: 25px 12px 20px;
      text-align: center; }
      ul.block.bdr-rd li .ctn h6 {
        margin-bottom: 5px !important;
        font-size: 1.5rem;
        line-height: 1; }
      ul.block.bdr-rd li .ctn p {
        font-size: 12px; }
      ul.block.bdr-rd li .ctn i {
        display: inline-block;
        margin-bottom: 15px; }
      ul.block.bdr-rd li .ctn:hover {
        background-color: #eaeaea; }

.with-shadow {
  -webkit-box-shadow: 1px 3px 13px 0px #cccccc;
  -moz-box-shadow: 1px 3px 13px 0px #cccccc;
  box-shadow: 1px 3px 13px 0px #cccccc; }

@media only screen {
  .button.hollow.light {
    color: #fff;
    border-color: #fff; }
  .off-canvas {
    height: 100%;
    z-index: 10000; }
    .off-canvas ul.horizontal.menu {
      background-color: #78C81E;
      padding-right: 0.3rem;
      padding-left: 0.4rem; }
      .off-canvas ul.horizontal.menu li a {
        padding: 0.18rem 0.4rem;
        position: relative;
        color: #ffffff;
        line-height: 2.4 !important;
        font-size: 0.625rem; }
        .off-canvas ul.horizontal.menu li a.active {
          color: #151515 !important; }
          .off-canvas ul.horizontal.menu li a.active:before {
            content: "";
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-bottom: 4px solid #000;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent #151515;
            position: absolute;
            bottom: 0;
            left: 45%;
            display: flex;
            z-index: 2; }
    .off-canvas ul.vertical.menu {
      width: inherit;
      padding-top: 10px; }
      .off-canvas ul.vertical.menu div li {
        width: inherit;
        border-width: 0px 0px 0.5px 0px;
        border-color: black;
        border-style: solid; }
        .off-canvas ul.vertical.menu div li a {
          width: inherit;
          padding: 10px 25px;
          display: block;
          color: white; }
          .off-canvas ul.vertical.menu div li a span {
            float: right; }
          .off-canvas ul.vertical.menu div li a:hover {
            color: rgba(255, 255, 255, 0.7); }
        .off-canvas ul.vertical.menu div li .off-canvas-submenu {
          background-color: white;
          margin-left: 0px; }
          .off-canvas ul.vertical.menu div li .off-canvas-submenu li {
            border-color: #dddddd; }
            .off-canvas ul.vertical.menu div li .off-canvas-submenu li a {
              color: #151515;
              padding: 10px 20px 10px 40px;
              color: #777777; }
              .off-canvas ul.vertical.menu div li .off-canvas-submenu li a:hover {
                color: #151515; }
    .off-canvas ul li a {
      color: #b0b0b0; }
      .off-canvas ul li a:hover {
        color: #fff; }
    .off-canvas.position-right {
      right: -270px; }
      .off-canvas.position-right.is-open {
        right: 0; }
  header .web-nav {
    background-color: #333030; }
    header .web-nav ul {
      margin-bottom: 0px;
      list-style-type: none; }
    header .web-nav .row {
      position: relative; }
    header .web-nav .icon-container {
      float: left;
      align-item: center; }
      header .web-nav .icon-container ul {
        margin-left: 0; }
        header .web-nav .icon-container ul li.icon {
          display: inline-block;
          line-height: 1.9;
          padding: 0.2rem 0.7rem;
          cursor: pointer;
          position: relative; }
          header .web-nav .icon-container ul li.icon a {
            font-size: 0.75rem;
            color: #ccc !important; }
            header .web-nav .icon-container ul li.icon a svg {
              height: 1.375rem;
              width: 1.375rem; }
              header .web-nav .icon-container ul li.icon a svg path.cls-1 {
                fill: #6c6b70;
                fill-rule: evenodd; }
          header .web-nav .icon-container ul li.icon:after {
            position: absolute;
            top: 0;
            right: -2px;
            border-right: 1px solid rgba(177, 177, 186, 0.2); }
          header .web-nav .icon-container ul li.icon:hover a {
            color: #66cc00 !important; }
          header .web-nav .icon-container ul li.icon.active {
            background: #fff; }
            header .web-nav .icon-container ul li.icon.active svg path.cls-1 {
              fill: #66cc00;
              fill-rule: evenodd; }
            header .web-nav .icon-container ul li.icon.active:hover a,
            header .web-nav .icon-container ul li.icon.active a {
              color: #333 !important; }
    header .web-nav .lang-container {
      display: block;
      float: right;
      align-item: center; }
      header .web-nav .lang-container ul li {
        display: inline-block;
        border-right: 1px solid rgba(177, 177, 186, 0.2);
        height: 2.1rem;
        padding: 0.4rem 0.7rem;
        cursor: pointer; }
        header .web-nav .lang-container ul li a {
          font-size: 0.75rem;
          color: #7a7a7a !important; }
        header .web-nav .lang-container ul li.active a {
          color: #bfbfbf !important; }
        header .web-nav .lang-container ul li:last-child {
          border-right: none; }
  header .top-bar ul {
    background-color: transparent !important; }
    header .top-bar ul.vertical.menu {
      background-color: rgba(255, 255, 255, 0.8) !important; }
  header .top-bar .top-bar-title img {
    height: 1.8rem; }
  header .top-bar .top-bar-title button:after {
    background: #78C81E;
    box-shadow: 0 7px 0 #78C81E, 0 14px 0 #78C81E; }
  header .top-bar .top-bar-right ul > li > a {
    position: relative; }
    header .top-bar .top-bar-right ul > li > a span.badge {
      position: absolute;
      top: 0.8rem;
      right: 0.9rem; }
  header .top-bar .search-field {
    display: none;
    width: 260px;
    position: absolute;
    top: 12px;
    right: 71px; }
    header .top-bar .search-field input {
      height: 41px !important;
      margin-top: -7px;
      border-width: 1px 0px 1px 1px;
      border-color: #78C81E !important;
      width: 280px;
      box-shadow: none; }
      header .top-bar .search-field input::placeholder {
        color: #78C81E !important; }
    header .top-bar .search-field .button {
      background-color: white;
      height: 41px;
      margin-top: -7px;
      padding: 5px !important;
      border-width: 1px 1px 1px 0px;
      border-color: #78C81E;
      text-align: right; }
      header .top-bar .search-field .button svg {
        margin-top: -3px;
        height: 35px; }
        header .top-bar .search-field .button svg path.st0 {
          fill: white; }
        header .top-bar .search-field .button svg path.st1 {
          fill: #78C81E; }
        header .top-bar .search-field .button svg polygon.st2 {
          fill: none;
          stroke: #78C81E; }
  header .top-bar.fix-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    background-color: white; }
  footer {
    background: #2b2b2b;
    position: absolute;
    bottom: 0;
    width: 100%; }
    footer ul {
      list-style-type: none;
      line-height: 2rem !important;
      font-size: 0.75rem;
      padding: 1.625rem 0rem 1.375rem;
      margin-bottom: 0px !important; }
      footer ul li {
        font-family: OpenSans-Regular;
        color: rgba(255, 254, 254, 0.7); }
        footer ul li a {
          color: rgba(255, 254, 254, 0.7) !important; }
          footer ul li a:focus, footer ul li a:hover {
            color: #fffefe !important; }
        footer ul li.ver-line {
          display: none; }
        footer ul li:last-child {
          float: right; }
  .reveal {
    background-repeat: no-repeat;
    background-position-y: -2px; }
    .reveal input {
      margin-bottom: 1.25rem;
      border-color: #b0b0b0; }
    .reveal button {
      text-transform: uppercase;
      font-family: OpenSans-Regular; }
    .reveal p.small {
      font-size: 0.75rem;
      color: #b0b0b0; }
    .reveal p.alert {
      color: #ff4747; }
    .reveal .title h1,
    .reveal .title h2,
    .reveal .title h3,
    .reveal .title h4,
    .reveal .title h5,
    .reveal .title h6 {
      font-family: Roboto-ConR !important;
      display: inline-block;
      color: #78C81E; }
    .reveal.success .title i,
    .reveal.fail .title i {
      height: 30px;
      width: 30px;
      background-repeat: no-repeat;
      background-size: 40px 40px;
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-right: 10px;
      vertical-align: top;
      margin-left: auto;
      transition: all .1s;
      margin-bottom: -5px; }
    .reveal.fail .title i {
      background-image: url(/business/assets/i_deactive.82b7cd05456ed0faa08510b20880f1fc.svg); }
    .reveal.success .title i {
      background-image: url(/business/assets/i_active.25f39f01b4e95eb2a94b11519870fbc1.svg); }
    .reveal .content {
      padding: 0.5rem 0rem 1rem; }
      .reveal .content h1,
      .reveal .content h2,
      .reveal .content h3,
      .reveal .content h4,
      .reveal .content h5,
      .reveal .content h6 {
        margin-bottom: 1.25rem; }
      .reveal .content a {
        font-size: 0.875rem;
        margin-bottom: 10px; }
      .reveal .content p {
        margin-bottom: 1.25rem;
        font-family: Roboto-R; }
      .reveal .content input[type="checkbox"] {
        height: 13px !important; }
      .reveal .content table tbody {
        border: none; }
        .reveal .content table tbody td {
          padding: 0px;
          line-height: 30px; }
    .reveal.type1 .title {
      color: #78C81E; }
    .reveal.type1 .content a {
      color: #b0b0b0; }
    .reveal.type2 .title h1,
    .reveal.type2 .title h2,
    .reveal.type2 .title h3,
    .reveal.type2 .title h4,
    .reveal.type2 .title h5,
    .reveal.type2 .title h6 {
      line-height: 30px; }
    .reveal.type2 .title svg {
      height: 2.5rem;
      width: 2.5rem; }
  .breadcrumbs a {
    font-family: OpenSans-Regular;
    text-decoration: none; }
  .tabs li.column {
    padding: 0px;
    text-align: center; }
    .tabs li.column.is-active a {
      border: 1px solid #78C81E; }
    .tabs li.column a {
      font-family: Roboto-ConR;
      border-width: 1px 1px 1px 0px;
      border-style: solid;
      border-color: #eaeaea; }
    .tabs li.column:first-child a {
      border-top-left-radius: 5px;
      border-left: 1px solid #eaeaea; }
    .tabs li.column:last-child a {
      border-top-right-radius: 5px; }
  .half-title {
    position: relative;
    text-transform: uppercase !important;
    font-size: 26px;
    font-family: Roboto-Bold; }
    .half-title span {
      font-family: Roboto-Light; }
    .half-title.f28 {
      font-size: 22px;
      padding: 9px 0 15px; }
    .half-title.f36 {
      font-size: 22px;
      padding: 9px 0 18px; }
    .half-title.\--white {
      color: #fff; }
    .half-title.\--halfgreen {
      color: #78C81E; }
      .half-title.\--halfgreen span {
        color: #363636; }
    .half-title.hover:after {
      content: "";
      position: absolute;
      left: 20%;
      right: 20%;
      bottom: 0;
      border-bottom: 2px solid #78C81E;
      transition: all .3s; }
    .half-title.hover:hover:after {
      left: 0%;
      right: 00%; }
    .half-title.hoverwhite:after {
      content: "";
      position: absolute;
      left: 40%;
      right: 40%;
      bottom: 0;
      border-bottom: 2px solid #fff;
      transition: all .3s; }
    .half-title.hoverwhite:hover:after {
      left: 0%;
      right: 00%; }
  section {
    padding: 20px 10px; }
    section.\--green {
      background-color: #78C81E; }
    section.\--lightblue {
      background-color: #f9fafc; }
  .check-list .column .item-box {
    padding-left: 65px;
    position: relative;
    margin-bottom: 44px; }
    .check-list .column .item-box h6 {
      font-family: Roboto-Bold; }
    .check-list .column .item-box:before {
      content: '';
      height: 30px;
      width: 30px;
      background-image: url(/business/assets/i-check.5a458c462ef7614f7235b6e48c21f600.svg);
      background-size: cover;
      position: absolute;
      top: 0;
      left: 15px; }
  .adg-list .item-box {
    border-width: 1px;
    border-style: solid;
    border-color: #e0e1e2;
    border-radius: 10px;
    padding: 3.5em 3.125em 2em;
    text-align: center; }
    .adg-list .item-box i.adg {
      margin: auto auto; }
    .adg-list .item-box p {
      font-family: Roboto-Med;
      text-transform: uppercase;
      color: rgba(123, 123, 124, 0.7); }
    .adg-list .item-box:hover, .adg-list .item-box.selected {
      background-color: #78C81E;
      border-color: #78C81E;
      cursor: pointer; }
      .adg-list .item-box:hover p, .adg-list .item-box.selected p {
        color: #fff; }
      .adg-list .item-box:hover i.part1, .adg-list .item-box.selected i.part1 {
        background-image: url(/business/assets/i-money1.48beb07575f8501152ec4d7c87e60231.svg); }
      .adg-list .item-box:hover i.part2, .adg-list .item-box.selected i.part2 {
        background-image: url(/business/assets/i-thumb1.f399635e2eadef9150f61a23d9add2d7.svg); }
      .adg-list .item-box:hover i.part3, .adg-list .item-box.selected i.part3 {
        background-image: url(/business/assets/i-brief1.2ea87c82d5012faf9ba0826125153b17.svg); }
      .adg-list .item-box:hover i.part4, .adg-list .item-box.selected i.part4 {
        background-image: url(/business/assets/i-smile1.d640ba2f85aa515b5375fab98bfdbfdb.svg); }
      .adg-list .item-box:hover i.i-mobile, .adg-list .item-box.selected i.i-mobile {
        background-image: url(/business/assets/i-mobile1.d24878f43461407748d783d366e4d9ee.svg); }
      .adg-list .item-box:hover i.i-sms, .adg-list .item-box.selected i.i-sms {
        background-image: url(/business/assets/i-sms1.b7c5dff55b0d1c2605bf6b0d30ffd250.svg); }
      .adg-list .item-box:hover i.i-iptv, .adg-list .item-box.selected i.i-iptv {
        background-image: url(/business/assets/i-iptv1.623004e777238b6f7fc232b2ca7aaa10.svg); }
    .adg-list .item-box.hover {
      background-color: #6bb11b !important; }
  .adg-list .active {
    background-color: #78C81E;
    border-color: #78C81E; }
    .adg-list .active p {
      color: #fff; }
    .adg-list .active i.adg.part1 {
      background-image: url(/business/assets/i-money1.48beb07575f8501152ec4d7c87e60231.svg); }
    .adg-list .active i.adg.part2 {
      background-image: url(/business/assets/i-thumb1.f399635e2eadef9150f61a23d9add2d7.svg); }
    .adg-list .active i.adg.part3 {
      background-image: url(/business/assets/i-brief1.2ea87c82d5012faf9ba0826125153b17.svg); }
    .adg-list .active i.adg.part4 {
      background-image: url(/business/assets/i-smile1.d640ba2f85aa515b5375fab98bfdbfdb.svg); }
  .adg-list.category .item-box {
    margin-bottom: 30px;
    padding: 1.5em 0 0 0; }
  .accordion .accordion-item {
    border-bottom: 1px solid #d7d7d7; }
    .accordion .accordion-item .accordion-title {
      font-size: 1rem;
      font-family: Roboto-Light;
      padding-top: 19px;
      padding-bottom: 19px;
      line-height: 1.5; }
      .accordion .accordion-item .accordion-title:before {
        content: '';
        background-image: url(/business/assets/bu_dropdown.6ab4fc1b5956541719d2b6ec69b54d5d.svg);
        background-repeat: no-repeat;
        width: 10px;
        height: 10px;
        margin-top: -.2rem; }
      .accordion .accordion-item .accordion-title:hover {
        color: #78C81E; }
    .accordion .accordion-item.is-active {
      color: #78C81E; }
      .accordion .accordion-item.is-active .accordion-title:before {
        content: '';
        transform: rotate(180deg); }
  .buttondiv {
    /*width:100%;*/
    width: 35px;
    height: 100%;
    display: inline-block;
    color: white;
    /*border:1px solid #CCC;*/
    background: #eaeaea;
    box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    vertical-align: middle;
    max-width: 100px;
    padding: 5px;
    text-align: center;
    border-radius: 3px; }
    .buttondiv:hover {
      background: #39a17d; }
    .buttondiv:active {
      color: white;
      box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.6); }
  .tooltip1 {
    position: relative;
    display: inline-block; }
    .tooltip1 .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      /* Position the tooltip */
      position: absolute;
      z-index: 1; }
    .tooltip1:hover .tooltiptext {
      visibility: visible; }
  table {
    border-collapse: collapse; }
    table tr td {
      font-siZe: 0.8125rem;
      border-width: 0px;
      border-style: solid;
      border-color: #ccc;
      position: relative; }
      table tr td div.buttondiv {
        float: right; }
    table tr:hover {
      background-color: #F1F3F9; }
    table.border tr td {
      border-width: 1px !important; }
    table.bdr-btm {
      border-bottom: none !important; }
      table.bdr-btm thead tr td,
      table.bdr-btm tr td {
        border-width: 0px 0px 1px;
        border-style: solid;
        border-color: #ccc; }
      table.bdr-btm tfoot {
        border: 0px solid #ccc !important; }
        table.bdr-btm tfoot tr td {
          border: none; }
    table.alag thead tr:nth-child(odd) td {
      background-color: #eaeaea; }
    table.alag tr:nth-child(even) td {
      background-color: #eaeaea; }
    table.alag tr td {
      padding: 5px 15px !important; }
    table.bdr-top thead tr td,
    table.bdr-top tr td {
      border-width: 1px 0px 0px;
      border-style: solid;
      border-color: #ccc; }
    table.text-center thead th,
    table.text-center thead td {
      text-align: center !important; }
    table.invoice tbody {
      line-height: 1.5px; }
      table.invoice tbody tr td {
        font-size: 13px !important; }
    table.invoice td:nth-child(5),
    table.invoice td:nth-child(6),
    table.invoice td:nth-child(7) {
      text-align: right; }
    table.datatable {
      table-layout: fixed; }
      table.datatable thead {
        width: 100%; }
      table.datatable thead tr th p.name,
      table.datatable thead tr th p,
      table.datatable tbody tr td p,
      table.datatable tbody tr td p.name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 0px; }
      table.datatable thead tr th p {
        width: 95px; }
        table.datatable thead tr th p.name {
          width: 155px; }
      table.datatable tbody tr td p {
        width: 100px; }
        table.datatable tbody tr td p.name {
          width: 160px; }
      table.datatable tfoot tr th {
        padding: 10px 7px 5px 0px; }
    table.info td:first-child {
      width: 40%; }
    table.table-for-groupsms {
      margin-bottom: 0; }
      table.table-for-groupsms i.delete {
        width: 12px;
        height: 16px; }
      table.table-for-groupsms a {
        color: #78C81E; }
      table.table-for-groupsms tr td {
        border: none !important; }
      table.table-for-groupsms tbody {
        border: none; }
        table.table-for-groupsms tbody tr td {
          width: 33%; }
          table.table-for-groupsms tbody tr td:last-child {
            padding-right: 30px; }
          table.table-for-groupsms tbody tr td i {
            margin-right: 1.25rem;
            float: right; }
          table.table-for-groupsms tbody tr td button.plus {
            margin-top: 1.625rem;
            padding: 12.5px 15px !important;
            margin-left: -15px; }
      table.table-for-groupsms.members tr td {
        padding: 0 0 0 0px; }
        table.table-for-groupsms.members tr td a {
          color: #78C81E !important; }
      table.table-for-groupsms.members tr:last-child td {
        padding-top: 15px; }
    table.autorecharge thead tr td {
      width: 25%; }
  .partner .column {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px; }
  .-lightblue {
    background: #f4f6fa; }
  .-green {
    background: #78C81E; }
  .-orange {
    background: #f9b061; }
  .-lightblue,
  .-green,
  .-orange {
    min-height: 240px;
    position: relative; }
  .-halfgreen:after {
    border-left: 600px solid #e8ecf8;
    border-bottom: 447px solid #78C81E; }
  .container {
    position: absolute;
    top: -160px;
    right: 0;
    height: 767px;
    width: 100%; }
    .container .back-img {
      background-image: url(/business/assets/conference.fdcea5eb251b0cc4f1b5ddc6ffe1382e.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      height: inherit;
      position: relative; }
      .container .back-img:before {
        width: 100%;
        height: 100px;
        position: absolute;
        background-color: #fff;
        top: -100%;
        right: 0;
        transform: skewY(-4.8);
        transform-origin: 0 0; }
      .container .back-img:after {
        width: 100%;
        height: 100px;
        position: absolute;
        background-color: #fff;
        bottom: -100%;
        right: 0;
        transform: skewY(4.8);
        transform-origin: 0 0; }
  .edge--both {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 50px; }
    .edge--both:before, .edge--both:after {
      background-color: inherit;
      content: '';
      display: block;
      height: 90%;
      left: 0;
      position: absolute;
      right: 0;
      z-index: -3;
      -webkit-backface-visibility: hidden; }
    .edge--both:before {
      top: 0;
      transform: skewY(4deg);
      transform-origin: 100% 0; }
    .edge--both:after {
      bottom: 0;
      transform: skewY(-4deg);
      transform-origin: 100%; }
  .edge--both--reverse {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 50px; }
    .edge--both--reverse:before, .edge--both--reverse:after {
      background-color: inherit;
      content: '';
      display: block;
      height: 90%;
      left: 0;
      position: absolute;
      right: 0;
      z-index: -3;
      -webkit-backface-visibility: hidden; }
    .edge--both--reverse:before {
      top: 0;
      transform: skewY(-4deg);
      transform-origin: 0 0; }
    .edge--both--reverse:after {
      bottom: 0;
      transform: skewY(4deg);
      transform-origin: 0 0; }
  .edge--top {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 20px; }
    .edge--top:before {
      background-color: inherit;
      content: '';
      display: block;
      height: 90%;
      left: 0;
      position: absolute;
      right: 0;
      z-index: -3;
      -webkit-backface-visibility: hidden; }
    .edge--top:before {
      top: 0;
      transform: skewY(4deg);
      transform-origin: 100% 0; }
  .edge--bottom {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 50px; }
    .edge--bottom:after {
      background-color: inherit;
      content: '';
      display: block;
      height: 90%;
      left: 0;
      position: absolute;
      right: 0;
      z-index: -3;
      -webkit-backface-visibility: hidden; }
    .edge--bottom:after {
      bottom: 0;
      transform: skewY(-4deg);
      transform-origin: 100%; }
  .edge--top--reverse {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px; }
    .edge--top--reverse:before {
      background-color: inherit;
      content: '';
      display: block;
      height: 90%;
      left: 0;
      position: absolute;
      right: 0;
      z-index: -3;
      -webkit-backface-visibility: hidden; }
    .edge--top--reverse:before {
      top: 0;
      transform: skewY(-4deg);
      transform-origin: 0 0; }
  .edge--bottom--reverse {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 50px; }
    .edge--bottom--reverse:after {
      background-color: inherit;
      content: '';
      display: block;
      height: 90%;
      left: 0;
      position: absolute;
      right: 0;
      z-index: -3;
      -webkit-backface-visibility: hidden; }
    .edge--bottom--reverse:after {
      bottom: 0;
      transform: skewY(4deg);
      transform-origin: 0 100%; }
  .udurlug-box {
    color: #172B4D !important;
    padding: 30px 20px;
    margin-bottom: 70px; }
    .udurlug-box input,
    .udurlug-box select,
    .udurlug-box textarea {
      border-color: #cacaca; }
    .udurlug-box .fadeInDown {
      animation: fadeInDown 1s ease-in both; }
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -20%, 0); }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0); } }
    .udurlug-box .second {
      animation-delay: 0.5s; }
    .udurlug-box .third {
      animation-delay: 1s; }
    .udurlug-box .fourth {
      animation-delay: 1.5s; }
    .udurlug-box .fifth {
      animation-delay: 2s; }
    .udurlug-box .sixth {
      animation-delay: 2.5s; }
    .udurlug-box select::placeholder,
    .udurlug-box input::placeholder {
      font-family: Roboto-Med !important;
      color: #ccc; }
    .udurlug-box .upload-button {
      padding: 10px;
      border: 0.5px solid #cacaca;
      width: 160px;
      height: 50px;
      margin-bottom: 20px;
      border-radius: 5px; }
      .udurlug-box .upload-button i {
        margin-left: 55px;
        margin-top: 3px; }
    .udurlug-box .box-title {
      position: relative;
      margin-bottom: 15px;
      padding: 0px 20px 15px; }
      .udurlug-box .box-title span {
        font-size: 18px;
        font-family: Roboto-Med !important; }
      .udurlug-box .box-title button {
        margin-top: 15px; }
    .udurlug-box label {
      color: black; }
    .udurlug-box .product-box,
    .udurlug-box .picked-products {
      padding: 25px;
      margin-bottom: 50px;
      border: 1px solid #cacaca;
      border-radius: 8px;
      max-height: 320px;
      min-height: 150px;
      overflow-y: auto; }
      .udurlug-box .product-box .name,
      .udurlug-box .picked-products .name {
        display: inline-block;
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
    .udurlug-box .picked-products {
      max-height: 380px;
      min-height: 210px; }
    .udurlug-box .product-box,
    .udurlug-box .picked-products {
      overflow-y: auto; }
      .udurlug-box .product-box ul,
      .udurlug-box .picked-products ul {
        margin-left: 0px !important; }
        .udurlug-box .product-box ul li,
        .udurlug-box .picked-products ul li {
          padding: 5px 0px;
          border-bottom: 1px solid #eee; }
          .udurlug-box .product-box ul li span,
          .udurlug-box .picked-products ul li span {
            padding: 0px; }
          .udurlug-box .product-box ul li button,
          .udurlug-box .picked-products ul li button {
            margin: auto;
            float: right;
            width: 60px;
            font-size: 11px !important;
            padding: 10px !important;
            border-bottom: 1px solid #eee; }
            .udurlug-box .product-box ul li button:last-child,
            .udurlug-box .picked-products ul li button:last-child {
              border-bottom: none; }
    .udurlug-box .picked-products .title,
    .udurlug-box .picked-products .values,
    .udurlug-box .picked-products .buttons {
      display: inline-block; }
    .udurlug-box .picked-products .title,
    .udurlug-box .picked-products .values {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .udurlug-box .picked-products .buttons {
      float: right; }
      .udurlug-box .picked-products .buttons i {
        display: inline-block;
        cursor: pointer; }
    .udurlug-box select:required:invalid {
      color: #cacaca; }
    .udurlug-box option[value=""][disabled] {
      display: none; }
    .udurlug-box option {
      color: black; }
  .custom-file-upload {
    border: 1px solid #ccc;
    border-radius: 20px;
    display: inline-block;
    padding: 0px 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 2px #888888; }
    .custom-file-upload:hover {
      color: #888888; }
  .fi-upload {
    font-size: 20px;
    padding-right: 5px; }
  .file-name {
    color: #000;
    font-size: 13px;
    padding-left: 10px; }
  .udurlug-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    position: relative; }
    .udurlug-table thead {
      background-color: #F1F3F9; }
    .udurlug-table thead,
    .udurlug-table tbody {
      border: none !important; }
    .udurlug-table span {
      margin-top: -10px; }
    .udurlug-table tr td {
      position: relative; }
      .udurlug-table tr td::nth-child(1) {
        padding-left: 40px; }
      .udurlug-table tr td::nth-child(5) {
        padding-right: 40px; }
      .udurlug-table tr td::last-child {
        width: 70px; }
      .udurlug-table tr td i {
        display: inline-block; }
    .udurlug-table .logo {
      height: 30px;
      width: 30px;
      display: inline-block;
      margin-right: 5px;
      background-color: orange;
      border-radius: 50%;
      margin-bottom: -10px;
      background-size: cover;
      background-repeat: no-repeat; }
    .udurlug-table .logo,
    .udurlug-table .companyname {
      display: inline-block; }
    .udurlug-table .status {
      position: relative;
      padding-left: 10px; }
      .udurlug-table .status.pending::before, .udurlug-table .status.ongoing::before, .udurlug-table .status.hold::before, .udurlug-table .status.done::before, .udurlug-table .status.rejected::before {
        content: "";
        height: 12px;
        width: 12px;
        background-color: red;
        position: absolute;
        top: 5px;
        left: -10px;
        border-radius: 50%; }
      .udurlug-table .status.pending::after, .udurlug-table .status.ongoing::after, .udurlug-table .status.hold::after, .udurlug-table .status.done::after, .udurlug-table .status.rejected::after {
        contern: "pending";
        font-size: 12px; }
      .udurlug-table .status.ongoing::before {
        content: "";
        background-color: #66cc00; }
      .udurlug-table .status.ongoing::after {
        contern: "pending";
        font-size: 12px; }
      .udurlug-table .status.done::before {
        content: "";
        background-color: black; }
      .udurlug-table .status.rejected::before {
        content: "";
        background-color: purple; }
      .udurlug-table .status.hold::before {
        content: "";
        background-color: orange; }
    .udurlug-table .member {
      height: 30px;
      width: 30px;
      border-radius: 50%;
      background-color: lightgray;
      top: 15px;
      background-image: url(/business/assets/user.96e8be5e8fde76e709ba9e2f1e8d82f7.jpg);
      background-size: cover;
      background-position: center center; }
    .udurlug-table img {
      width: 20px; }
  .my-event-numbers td {
    padding-right: 5px;
    padding-left: 5px;
    text-align: center; }
  .offer-table button.btn-remove,
  .offer-table button.btn-add,
  .udurlug-table button.btn-remove,
  .udurlug-table button.btn-add {
    width: 25px;
    height: 25px;
    margin: 0;
    padding: 5px 5px; }
  .offer-table .btn-add,
  .offer-table .btn-remove,
  .udurlug-table .btn-add,
  .udurlug-table .btn-remove {
    padding: 8px 0;
    text-align: center; }
  .offer-table .btn-remove button,
  .udurlug-table .btn-remove button {
    background-color: red;
    font-size: 10px; }
  .offer-table .btn-number-control,
  .udurlug-table .btn-number-control {
    font-size: 12px;
    margin: 0 !important;
    padding: 3px 5px !important; }
  .offer-table {
    height: 20px; }
    .offer-table tbody {
      height: 220px;
      display: inline-block;
      overflow-y: scroll; }
  .event-actions {
    padding: 0;
    margin: 0;
    text-align: center; }
    .event-actions button {
      font-size: 11px;
      padding: 1px 5px;
      margin: 1px; }
      .event-actions button:nth-child(1) {
        background: #008CBA; }
      .event-actions button:nth-child(1):hover {
        background: #008CBA; }
  .udurlug-numbers {
    padding: 30px 20px;
    color: #172B4D !important;
    height: 600px;
    min-height: 200px;
    max-height: 700px; }
    .udurlug-numbers .title {
      position: relative;
      margin-bottom: 15px; }
      .udurlug-numbers .title .company {
        padding-left: 50px;
        color: #172B4D !important;
        font-family: Roboto-Bold;
        font-size: 1rem;
        margin-bottom: 30px; }
        .udurlug-numbers .title .company .logo {
          height: 30px;
          width: 30px;
          display: inline-block;
          margin-right: 5px;
          background-color: orange;
          border-radius: 50%;
          margin-bottom: -10px;
          background-size: cover;
          background-repeat: no-repeat;
          position: absolute;
          left: 10px;
          top: -4px; }
      .udurlug-numbers .title .total span {
        margin-left: 30px; }
    .udurlug-numbers table.udurlug-table {
      display: flex;
      flex-flow: column;
      height: 85%;
      width: 100%; }
      .udurlug-numbers table.udurlug-table thead {
        margin-right: 5px; }
        .udurlug-numbers table.udurlug-table thead td label {
          font-size: 11px;
          text-transform: uppercase;
          color: #172B4D !important; }
        .udurlug-numbers table.udurlug-table thead td input {
          margin-bottom: 0px !important;
          height: 26px !important; }
      .udurlug-numbers table.udurlug-table tbody {
        overflow-y: scroll;
        overflow-x: scroll; }
        .udurlug-numbers table.udurlug-table tbody tr {
          width: 100%; }
      .udurlug-numbers table.udurlug-table thead,
      .udurlug-numbers table.udurlug-table tbody tr {
        display: table;
        table-layout: fixed; }
      .udurlug-numbers table.udurlug-table tr {
        cursor: pointer; }
      .udurlug-numbers table.udurlug-table tr td {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
        .udurlug-numbers table.udurlug-table tr td:nth-child(5), .udurlug-numbers table.udurlug-table tr td:nth-child(6) {
          text-align: center; }
        .udurlug-numbers table.udurlug-table tr td:nth-child(6) input {
          margin-bottom: 0px; }
        .udurlug-numbers table.udurlug-table tr td i.addtime.deactive {
          opacity: 0.3; }
        .udurlug-numbers table.udurlug-table tr td input {
          margin-bottom: 0px !important; }
      .udurlug-numbers table.udurlug-table tfoot th input {
        width: 100%;
        padding: 3px;
        box-sizing: border-box;
        height: 26px !important; }
  .time {
    margin-bottom: 2rem;
    margin-top: 10vh;
    padding: 10px; }
    .time .block div {
      border: 1px solid black;
      border-radius: 3px;
      padding: 10px;
      min-width: 60px;
      position: relative;
      margin-right: 20px;
      margin-left: 20px; }
      .time .block div::after {
        content: "";
        background-color: black;
        border-radius: 50%;
        display: inline-block;
        position: absolute;
        width: 10px;
        height: 10px;
        top: 23px;
        right: -26px; }
    .time .block {
      display: inline-block !important; }
      .time .block.last div::after {
        content: none; }
  .location span {
    position: relative; }
  .location span::before {
    content: "";
    background-image: url(/business/assets/Location.aaba404ade39cc93f5e54401153cd679.svg);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat; } }

.scrollable-x {
  overflow-x: auto;
  margin-bottom: 20px; }

@media only screen and (max-width: 39.9375em) {
  button.maygt {
    margin-top: 10px; }
  .page-container {
    margin-bottom: 170px; }
  table.invoice {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    margin: auto; }
  .ctn {
    padding-left: 60px;
    position: relative; }
    .ctn .icon {
      position: absolute;
      top: 28%;
      left: 12%; }
    .ctn:hover {
      background-color: #eaeaea; }
  .hide-for-mobile-only {
    display: none; }
  .reveal {
    padding: 2.5rem 2rem 1.25rem !important; }
  .product-list .item-box {
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #ced0d3;
    border-radius: 10px;
    padding: 30px 30px;
    text-align: center;
    position: relative; }
    .product-list .item-box i {
      margin-bottom: 0px; }
    .product-list .item-box h5 {
      text-transform: uppercase;
      font-family: Roboto-Bold; }
    .product-list .item-box i,
    .product-list .item-box h5 {
      display: inline-block;
      vertical-align: bottom; }
    .product-list .item-box p {
      display: none; }
    .product-list .item-box:hover {
      background-color: #fff;
      border-color: #78C81E; }
  .mail-register .medium-6 .half-title,
  .mail-register .medium-6 p {
    text-align: center; }
  .adg-list .item-box {
    margin-bottom: 20px; }
  .dataTables_wrapper .datatable {
    table-layout: fixed;
    width: 100%;
    overflow-x: scroll;
    background-color: white; }
    .dataTables_wrapper .datatable thead tr th,
    .dataTables_wrapper .datatable tbody tr td {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .udurlug-box {
    overflow: hidden;
    overflow-x: scroll; }
  .logo {
    margin-bottom: 1.25rem; }
    .logo img {
      height: 2rem; }
  .p-to-c-container {
    text-align: center; }
    .p-to-c-container span {
      margin-bottom: 10px; } }

@media only screen and (min-width: 40em) {
  button.maygt {
    margin-left: 10px; }
  .show-for-mobile-only {
    display: none; }
  .container-for-desc {
    position: relative; }
    .container-for-desc .right {
      right: 15px; }
      .container-for-desc .right desc {
        text-align: right; }
      .container-for-desc .right .button {
        float: right; }
    .container-for-desc .left {
      left: 15px; }
      .container-for-desc .left desc {
        text-align: left; }
    .container-for-desc container {
      position: absolute;
      display: block;
      max-width: 270px; }
      .container-for-desc container title,
      .container-for-desc container desc {
        color: #eaeaea;
        font-family: Roboto-Med; }
      .container-for-desc container title {
        size: 18px; }
      .container-for-desc container desc {
        size: 16px;
        margin-bottom: 20px; }
      .container-for-desc container desc,
      .container-for-desc container .button {
        display: block; }
      .container-for-desc container .button,
      .container-for-desc container a {
        max-width: 150px;
        text-transform: uppercase; }
      .container-for-desc container .button {
        max-width: 120px;
        padding: 12px !important; }
      .container-for-desc container a {
        display: block;
        font-size: 20px; }
        .container-for-desc container a:after {
          content: ""; }
  .logo {
    margin-bottom: 1.25rem; }
    .logo img {
      height: 4.875rem; }
  .desc-box {
    max-height: 300px;
    max-widht: 200px;
    position: absolute;
    color: #fff;
    font-size: 16px; }
    .desc-box div {
      height: inherit !important; }
  .back {
    width: 100%;
    position: absolute;
    top: -20px;
    right: 0;
    z-index: -1; }
    .back div {
      width: 50%;
      height: inherit;
      float: right;
      background-size: cover; }
  header {
    width: 100%;
    z-index: 100; }
  .reveal.type2 {
    width: 570px; }
  .reveal.type3 {
    width: 650px; }
  .product-list .item-box {
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #ced0d3;
    border-radius: 10px;
    padding: 60px 29px;
    text-align: center;
    background-color: white; }
    .product-list .item-box i {
      margin: 9px auto 2.75em;
      height: 40px; }
    .product-list .item-box h5 {
      text-transform: uppercase;
      font-family: Roboto-Bold;
      margin-bottom: 31px; }
    .product-list .item-box p {
      display: block;
      /* or inline-block */
      text-overflow: ellipsis;
      word-wrap: break-word;
      overflow: hidden;
      max-height: 9em;
      line-height: 1.8em;
      color: #363636; }
    .product-list .item-box:hover {
      background-color: #fff;
      border-color: #78C81E;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 16px; }
  .half-title {
    position: relative;
    text-transform: uppercase !important;
    font-size: 26px;
    font-family: Roboto-Bold; }
    .half-title span {
      font-family: Roboto-Light; }
    .half-title.f28 {
      font-size: 28px;
      padding: 9px 0 15px; }
    .half-title.f36 {
      font-size: 30px;
      padding: 9px 0 20px; }
  footer ul {
    line-height: 1 !important; }
    footer ul li {
      display: inline-block !important;
      padding-right: .5rem; }
  .edge--both {
    margin-top: 120px;
    margin-bottom: 120px; }
  .edge--both--reverse {
    margin-top: 120px;
    margin-bottom: 120px; }
  .edge--top {
    margin-top: 80px;
    margin-bottom: 20px; }
  .edge--bottom {
    margin-top: 20px;
    margin-bottom: 120px; }
  .edge--top--reverse {
    margin-top: 80px;
    margin-bottom: 20px;
    padding-bottom: 15px; }
  .edge--bottom--reverse {
    margin-top: 20px;
    margin-bottom: 120px; }
  table tr td div.buttondiv {
    margin-right: 10px; }
  .udurlug-box .box-title button {
    float: right;
    margin-top: 0px; }
  .udurlug-box .picked-products .values {
    max-width: 200px; }
  .udurlug-box .product-box .name,
  .udurlug-box .picked-products .name {
    max-width: 180px; }
  .product-box.scrollable {
    max-height: 300px;
    /* Adjust the height as needed */
    overflow-y: auto;
    border: 1px solid #ddd;
    /* Optional: Add a border for better visibility */
    padding: 10px;
    /* Optional: Add padding for better spacing */ }
  .product-box ul.block {
    padding-left: 0;
    margin-bottom: 0; }
  .product-box ul.block li {
    list-style: none;
    margin-bottom: 10px;
    /* Adjust the margin as needed */ }
  .udurlug-numbers .company,
  .udurlug-numbers .total {
    display: inline-block; }
  .udurlug-numbers .title .company {
    margin-bottom: 10px; }
  .udurlug-numbers .title .total {
    float: right;
    padding-right: 10px; }
  .time .block div {
    min-width: 82px; }
    .time .block div::after {
      content: "";
      top: 30px;
      right: -29px; } }

@media only screen and (min-width: 40em) and (max-width: 63.9375em) {
  footer ul li.ver-line {
    display: block; } }

@media only screen and (max-width: 63.9375em) {
  .show-for-large-only {
    display: none; }
  .top-bar .top-bar-title {
    margin: 0.25rem 0.5rem 0.25rem;
    width: 96%; }
    .top-bar .top-bar-title ul.menu {
      float: right;
      display: inline-block;
      right: 10px;
      top: 5px; }
      .top-bar .top-bar-title ul.menu li a {
        padding: 5px 10px;
        color: #78C81E;
        vertical-align: middle; }
        .top-bar .top-bar-title ul.menu li a img.custom-svg {
          width: 30px; }
        .top-bar .top-bar-title ul.menu li a.menu-icon.dark {
          margin-top: -2px; }
          .top-bar .top-bar-title ul.menu li a.menu-icon.dark::after {
            background: #363636 !important;
            box-shadow: 0 7px 0 #7a7a7a, 0 14px 0 #7a7a7a; }
    .top-bar .top-bar-title span {
      float: right;
      margin-right: 5px; }
  .top-bar .top-bar-right {
    display: none; }
  .tdesc {
    display: none; } }

@media only screen and (min-width: 64em) {
  .show-for-large-only {
    display: block; }
  .hide-for-large-up {
    display: none; }
  .back {
    height: 100%; }
  header .top-bar {
    height: 62px; }
    header .top-bar .top-bar-title a {
      padding: 0.5rem; }
      header .top-bar .top-bar-title a img.main-logo {
        height: 2rem;
        margin-top: 7px;
        margin-left: -0.5rem; }
    header .top-bar .top-bar-right {
      position: relative; }
      header .top-bar .top-bar-right .dropdown.menu {
        position: relative; }
        header .top-bar .top-bar-right .dropdown.menu li.cool-link {
          transition: 0.3s ease; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link a {
            padding: 1.45rem 2.1875rem 1.5rem 1.625rem;
            line-height: 1;
            font-size: 0.75rem;
            font-family: OpenSans-Regular;
            text-transform: uppercase;
            color: #363636; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.submenu {
            padding: 15px 0px; }
            header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.submenu a {
              font-size: 0.875rem !important; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.vertical.menu {
            left: 0 !important;
            right: auto !important;
            border-top: 2px solid #78C81E;
            width: 268px;
            top: 97%; }
            header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.vertical.menu li {
              overflow: hidden;
              max-height: 0 !important;
              -webkit-transition: max-height 500ms ease;
              -moz-transition: max-height 500ms ease;
              -o-transition: max-height 500ms ease;
              transition: max-height 500ms ease; }
              header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.vertical.menu li a {
                line-height: 1 !important;
                text-transform: initial !important;
                padding: 0.8125rem 1.5rem; }
                header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.vertical.menu li a:hover {
                  color: #78C81E !important; }
            header .top-bar .top-bar-right .dropdown.menu li.cool-link ul.vertical.menu.right {
              left: auto !important;
              right: 0 !important;
              width: 220px;
              padding: 0px; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link:hover ul.vertical.menu li {
            max-height: 150px !important; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link.btn a {
            padding: 0.75rem 10px !important; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link.has-form {
            display: none; }
            header .top-bar .top-bar-right .dropdown.menu li.cool-link.has-form .row {
              position: absolute;
              right: 30px;
              top: 1rem; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link.cool-link::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background: #fff;
            transition: .6s ease; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link.cool-link:hover::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background: #78C81E; }
          header .top-bar .top-bar-right .dropdown.menu li.cool-link:first-child a {
            padding-left: 1rem; }
    header .top-bar .row {
      position: relative; }
      header .top-bar .row .search-field {
        top: 17px;
        right: 27px; }
  .reveal.type3 {
    width: 870px; }
  section {
    padding: 2.5rem 0 4rem; }
  .tdesc {
    font-size: 25px !important; }
  .-lightblue,
  .-green,
  .-orange {
    min-height: 240px; }
  .login {
    height: 500px; }
  table tr:hover {
    background-color: #F1F3F9; }
    table tr:hover div.buttondiv {
      display: inline-block; } }

.myfigure {
  position: relative;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: all .3s linear 0s; }
  .myfigure:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0); }

.site-list {
  padding-left: 0px;
  margin: 20px 0px 40px;
  list-style-type: none; }
  .site-list li {
    padding: 7px 15px;
    border-bottom: 1px solid #eaeaea;
    position: relative; }

.site-list i.delete {
  background-image: url(/business/assets/delete1.ae038f3c0d65953259af5d72a8e5b4a3.svg);
  height: 27px;
  width: 27px;
  background-size: 15px 15px;
  position: absolute;
  top: 9px;
  right: 10px;
  background-repeat: no-repeat; }

.input-group span,
.input-group button,
.input-group i {
  outline: none; }

.input-group a {
  width: 100%;
  height: 100%; }

.input-group .input-group-label {
  padding: 0; }

.shiidel-list {
  list-style-type: none; }
  .shiidel-list li {
    padding: 7px 10px 7px 0px; }
    .shiidel-list li:hover {
      background: white;
      background: -webkit-linear-gradient(left, white, #eaeaea);
      background: -o-linear-gradient(right, white, #eaeaea);
      background: -moz-linear-gradient(right, white, #eaeaea);
      background: linear-gradient(to right, white, #eaeaea); }
    .shiidel-list li.active {
      font-weight: bold; }

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  cursor: pointer;
  transition: background .5s ease; }
  .js-off-canvas-exit.is-visible {
    display: block !important; }

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0 !important; }

.dataTables_wrapper .dataTable {
  margin-bottom: 20px !important; }
  .dataTables_wrapper .dataTable tbody {
    display: block;
    overflow: auto; }
  .dataTables_wrapper .dataTable thead,
  .dataTables_wrapper .dataTable tbody tr {
    display: table;
    width: 100%; }
  .dataTables_wrapper .dataTable thead {
    width: calc(100% - 1em); }
  .dataTables_wrapper .dataTable thead {
    color: #363636 !important; }
    .dataTables_wrapper .dataTable thead input {
      margin-bottom: 0px;
      height: 2rem !important; }
  .dataTables_wrapper .dataTable tfoot {
    border-top: 1px solid #363636 !important; }

.table_filter select {
  display: inline-block;
  min-width: 100px;
  width: auto;
  margin-right: 5px; }

.button-container .button {
  margin-bottom: 0; }

fieldset {
  border-color: #eee; }
  fieldset legend {
    font-size: 16px; }

.corp-menu div {
  width: 35px;
  height: 5px;
  background-color: black;
  margin: 6px 0; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #fff !important;
  background: #78C81E !important;
  border: 1px solid #78C81E !important;
  border-radius: 1.6em !important; }

.dataTables_scroll {
  background-color: white !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 0px !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: #fff !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  outline: none !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 1px solid #78C81E !important; }

.corp {
  padding: 10px 15px; }
  .corp div,
  .corp p {
    display: inline-block; }
  .corp div {
    width: 50px;
    height: 50px;
    background-color: gray;
    border-radius: 50%; }
  .corp p {
    color: white;
    width: 190px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 15px;
    padding: 15px 5px;
    line-height: 25px;
    margin-bottom: 0px; }
    .corp p:before {
      content: "";
      border-right: 2px solid #78C81E;
      margin-right: 7px; }

.action-title {
  font-size: 14px;
  text-align: center; }

.date-line,
.number-line,
.delete-line {
  width: 50px; }

.btn-edit {
  margin: 0 20px;
  padding-bottom: 20px; }

.date-active,
.number-active,
.delete-active {
  padding-bottom: 10px;
  color: #78c81e;
  text-decoration: none;
  border-bottom: solid 2px #78c81e;
  transition: all .25s ease;
  cursor: pointer; }

.date-inactive,
.number-inactive,
.delete-inactive {
  padding-bottom: 0;
  color: rgba(120, 200, 30, 0.5);
  text-decoration: none;
  border-bottom: none;
  cursor: pointer; }

.report-category {
  padding-top: 20px;
  margin-bottom: -20px; }
  .report-category span {
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    padding: 1.45rem 2.1875rem 1.5rem 1.625rem;
    line-height: 1;
    font-size: 11px;
    text-transform: uppercase;
    color: #363636;
    text-align: center; }
  .report-category span:hover,
  .report-category span.active {
    border-bottom: 2px solid #78c81e; }

.report-header button, .report-header .button {
  margin-top: 20px !important; }

.search-date {
  width: 200px; }

.row-excel {
  background: #78c81e;
  border-radius: 1.6em;
  text-align: center;
  padding: 3px 3px 2px 3px; }

.p-to-c-container {
  background-color: rgba(120, 200, 30, 0.1);
  border-radius: 30px;
  display: block;
  overflow: auto;
  margin-bottom: 36px;
  padding: 36px;
  vertical-align: middle;
  font-size: 14px; }
  .p-to-c-container button {
    margin-bottom: 0;
    line-height: normal; }

.signature_pad_width {
  width: 270px; }

.selectedcontract {
  background-color: #78C81E; }
@charset "UTF-8";
@media only screen {
  .slider {
    height: 390px;
    margin: 0 !important; }
    .slider .slider-container {
      height: inherit; }
    .slider .slider-container .single-item, .slider .slider-container .single-item div, .slider .slider-container .single-item div ul, .slider .slider-container .single-item div ul li {
      height: inherit; }
    .slider .slider-container .single-item {
      margin-bottom: 3px !important; }
      .slider .slider-container .single-item .bg-color1 {
        background-color: #ece5cf; }
      .slider .slider-container .single-item .bg-color2 {
        background-color: #79ded3; }
      .slider .slider-container .single-item .bg-color3 {
        background-color: #ece5cf; }
      .slider .slider-container .single-item .bg-color1, .slider .slider-container .single-item .bg-color2, .slider .slider-container .single-item bg-color3 {
        background-position: center center;
        background-size: cover; }
        .slider .slider-container .single-item .bg-color1 .row, .slider .slider-container .single-item .bg-color2 .row, .slider .slider-container .single-item bg-color3 .row {
          position: relative; }
          .slider .slider-container .single-item .bg-color1 .row ul, .slider .slider-container .single-item .bg-color2 .row ul, .slider .slider-container .single-item bg-color3 .row ul {
            margin: 0; }
            .slider .slider-container .single-item .bg-color1 .row ul li, .slider .slider-container .single-item .bg-color2 .row ul li, .slider .slider-container .single-item bg-color3 .row ul li {
              padding: 0; }
      .slider .slider-container .single-item .row button, .slider .slider-container .single-item .row a {
        font-family: OpenSans-Regular;
        color: #fff !important;
        font-size: 90%; }
    .slider .slick-slider {
      background-size: cover; }
    .slider .slick-slider .slick-list {
      width: 100%; }
    .slider .single-item .bg {
      height: inherit;
      height: inherit;
      background-size: cover;
      background-position: center; }
    .slider .slick-dotted.slick-slider {
      margin-bottom: 3px !important; }
    .slider .slick-dots {
      bottom: 7% !important; }
      .slider .slick-dots .slick-slider .slick-list {
        width: 100%; }
      .slider .slick-dots li {
        width: 8px !important;
        height: 8px !important; }
        .slider .slick-dots li button {
          border: 1px solid #66cc00 !important;
          padding: 2px !important;
          width: 8px !important;
          height: 8px !important; }
          .slider .slick-dots li button:before {
            line-height: 8px;
            width: 4px !important;
            height: 4px !important;
            content: '\2022';
            opacity: 0 !important; }
        .slider .slick-dots li.slick-active button {
          border: 1px solid #6c0 !important; }
          .slider .slick-dots li.slick-active button:before {
            content: '';
            opacity: 1 !important;
            color: #000;
            line-height: 8px;
            width: 4px !important;
            height: 4px !important;
            background-color: #6c0;
            top: 2px;
            left: 2px; }
  .slick-prev, .slick-next {
    width: 50px;
    height: 68px;
    background-color: #e2e3e9;
    border-radius: 8px; }
    .slick-prev:hover, .slick-next:hover {
      background-color: #78C81E; }
  .slick-prev:before, .slick-next:before {
    font-size: 50px !important;
    line-height: 0 !important;
    font-family: Opensans-Light !important;
    font-weight: 100;
    color: white !important; }
  .slick-prev {
    left: -20px !important;
    z-index: 15;
    position: absolute;
    top: 50% !important; }
    .slick-prev:before {
      content: "\2039" !important;
      font-size: 30px; }
  .slick-next {
    right: -20px !important;
    z-index: 15;
    position: absolute;
    top: 50% !important; }
    .slick-next:before {
      content: "\203A" !important;
      font-size: 30px; } }

@media only screen and (min-widsth: 64em) {
  .slider {
    height: 550px; }
    .slider .slider-container {
      height: 550px; }
      .slider .slider-container .single-item, .slider .slider-container .slick-list, .slider .slider-container .slick-track {
        height: inherit; }
      .slider .slider-container .slick-slide {
        background-size: cover; } }
@charset "UTF-8";
.number-search-ps, .number-search-pps {
  line-height: 1;
  margin-bottom: 20px; }
  .number-search-ps select option, .number-search-pps select option {
    border: 1px solid #fff; }
  .number-search-ps select:focus, .number-search-pps select:focus {
    outline: none; }

.num1-list li.column {
  cursor: pointer;
  display: block;
  padding-bottom: 1rem;
  padding-left: 20px; }
  .num1-list li.column:hover {
    color: #44bd93; }

input.static[type="text"] {
  padding: 0.5rem !important;
  background: #fff; }
  input.static[type="text"]:focus {
    border: 1px solid #eaeaea; }

.box {
  background-color: white;
  height: 36px;
  margin: 0px;
  border: 1px solid #eaeaea; }

select.box, input.box {
  height: 36px !important;
  margin-top: -1px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  border-radius: 0px; }

select.box {
  background-position: right -5rem center !important; }

.one, .double, .search, .box, .con-search {
  display: inline-block;
  margin: 0; }

.one {
  text-align: center;
  padding: .5rem; }

.double {
  max-width: 64px;
  text-align: center; }

.four {
  max-width: 131px; }

.six {
  max-width: 240px; }

.con-search {
  position: relative;
  height: 23px;
  width: 36px;
  top: -10px; }

.search.box {
  border: none;
  background-size: 19px 19px;
  background-image: url(/business/assets/home_search2.49e002479df3b722df08d2a35d621638.svg);
  background-repeat: no-repeat;
  background-color: #44bd93;
  background-position-x: 9px;
  background-position-y: 9px;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -1px;
  right: 0; }

.group-of-type .button {
  border-radius: 0px !important;
  background-color: #e5e5e5 !important;
  color: #7a7a7a !important;
  font-size: 0.875rem;
  padding: 12px 16px !important; }
  .group-of-type .button.active {
    background-color: #44bd93 !important;
    color: #fff !important; }

.radio {
  margin-bottom: 30px; }

@media only screen and (max-width: 359px) {
  label {
    margin-right: 10px !important; }
  .one {
    max-width: 31.5px; }
  .double {
    max-width: 60px; }
  .six {
    max-width: 198px; }
  .box {
    min-width: 29px; }
  .con-search {
    top: 0px;
    width: 266px; }
    .con-search button .search.box {
      width: 266px;
      top: 4px;
      background-size: 0px; }
      .con-search button .search.box:after {
        content: '\425\410\419\425';
        padding-top: 5px;
        color: #fff;
        position: absolute;
        top: 5px;
        left: 113px; }
  .group-of-type .button {
    min-width: 87px !important; } }

@media only screen and (min-width: 360px) {
  .one {
    max-width: 32px; }
  .six {
    max-width: 206px; }
  .box {
    min-width: 32px; }
  .group-of-type .button {
    min-width: 103px !important;
    margin: 0px;
    display: inline-block; } }

@media only screen and (max-width: 418px) {
  .number-search-pps {
    margin-right: -18px !important; }
  .group-of-type {
    margin-right: -21px !important; } }

@media only screen and (min-width: 419px) {
  .one {
    max-width: 36px; }
  .double {
    max-width: 74px; }
  .six {
    max-width: 197px; }
  .box {
    min-width: 36px; } }

@media only screen and (max-width: 39.9375em) {
  .number-search-pps {
    margin-bottom: 25px; }
  .radio label {
    font-size: 0.8125em; }
  .group-of-type {
    margin-bottom: 20px; }
    .group-of-type .button {
      font-size: 11px !important;
      display: inline-block; }
  .num1-list {
    height: 280px;
    overflow: hidden; } }

@media only screen and (min-width: 40em) {
  .num1-list {
    height: 320px;
    overflow: hidden; }
  .radio {
    margin-bottom: 50px; }
  .box {
    background-color: white;
    min-width: 39px;
    height: 40px;
    margin: 0px;
    border: 1px solid #eaeaea; }
  select.box, input.box {
    height: 60px !important;
    margin-top: -1px;
    line-height: 1;
    font-size: 18px;
    font-style: bold; }
  .one {
    max-width: 39px;
    text-align: center;
    padding: .5rem; }
  .double {
    text-align: center; }
  .four {
    max-width: 128px; }
  .six {
    max-width: 242px;
    margin-right: 3px; }
  .con-search {
    position: relative;
    height: 23px;
    width: 40px;
    top: -13px; }
  .search.box {
    border: none;
    background-size: 19px 19px;
    background-position-x: 10px;
    background-position-y: 10px;
    width: 38px !important;
    height: 40px;
    position: absolute;
    top: -2px;
    right: 0; }
  .group-of-type .button {
    min-width: 122px !important; } }

@media only screen and (max-width: 63.9375em) {
  .group-of-type {
    margin-bottom: 30px; } }
body {
  font-family: Roboto;
  font-size: 1rem;
  text-rendering: optimizeLegibility; }

.btn-success {
  background-color: #66cc00;
  border-color: #66cc00; }

.btn-outline-success {
  color: #66cc00;
  border-color: #66cc00; }

.btn-outline-success:hover,
.btn-outline-success:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #66cc00;
  border-color: #66cc00; }

.graycolor {
  color: blue;
  font-weight: bold; }

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

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

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

a {
  color: #66cc00; }

.navbar.nav img {
  position: absolute;
  left: 16px;
  top: 13px;
  width: 130px; }

a.nav-link {
  color: black; }

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav a.nav-link.active {
  color: #66cc00 !important; }

.nav .nav-item.active a.nav-link {
  color: #66cc00 !important; }

input:focuss {
  border: 1px solid #66cc00; }

.fade {
  transition: all linear 1s;
  opacity: 1; }

.fade.ng-hide {
  opacity: 0; }

.ng-hide {
  opacity: 0;
  transition: none 0; }

.pagination {
  text-align: right; }

.pagination .disabled {
  display: none !important; }

.pagination li {
  display: inline-block !important; }

/*all*/
@media only screen {
  .section {
    margin: 30px auto; }
  .udurlug-container {
    background-position: center;
    height: 100%;
    width: 100%;
    position: relative; }
    .udurlug-container .contract-container {
      color: #000; }
      .udurlug-container .contract-container .section {
        margin: 50px auto; }
        .udurlug-container .contract-container .section .form-field {
          padding-right: 30px; }
      .udurlug-container .contract-container .row {
        max-width: 62.5rem;
        margin: 0 auto; }
      .udurlug-container .contract-container .term-condition {
        border: 1px solid #eaeaea;
        padding: 25px;
        background-color: #fff;
        margin-bottom: 1.25rem;
        border-radius: 8px; }
        .udurlug-container .contract-container .term-condition .term-container {
          height: 370px;
          overflow-y: auto; }
      .udurlug-container .contract-container .canvas {
        background-color: #eaeaea; }
      .udurlug-container .contract-container .sign .button.success {
        border-radius: 20%; }
      .udurlug-container .contract-container button.confirm {
        min-width: 200px; }
  .time {
    margin-bottom: 2rem;
    margin-top: 10vh;
    padding: 10px; }
    .time .block span {
      border: 1px solid black;
      border-radius: 3px;
      padding: 10px;
      position: relative;
      margin-right: 15px;
      margin-left: 15px; }
      .time .block span::after {
        content: "";
        background-color: black;
        border-radius: 50%;
        display: inline-block;
        position: absolute; }
    .time .block {
      display: inline-block !important; }
      .time .block.last span::after {
        content: none; }
      .time .block div {
        width: 50px !important; }
  .location span {
    position: relative; }
  .location span::before {
    content: "";
    background-image: url(/business/assets/Location.aaba404ade39cc93f5e54401153cd679.svg);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat; }
  .result ul li {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    padding: 10px 20px; }
    .result ul li a {
      padding: 10px 20px;
      cursor: pointer;
      color: black; }
      .result ul li a:hover {
        color: #66cc00; }
  .with-shadow {
    -webkit-box-shadow: 1px 3px 13px 0px #cccccc;
    -moz-box-shadow: 1px 3px 13px 0px #cccccc;
    box-shadow: 1px 3px 13px 0px #cccccc; }
  .contact-box1,
  .contact-box2 {
    margin: auto;
    /*text-align:center;*/
    border-radius: 180px;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer; }
    .contact-box1:hover,
    .contact-box2:hover {
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); }
    .contact-box1 div,
    .contact-box2 div {
      padding-left: 8%; }
    .contact-box1 .contact-cat,
    .contact-box2 .contact-cat {
      color: #fff;
      background: #78c81e;
      padding: 10px;
      margin-left: 70%;
      margin-top: -10px;
      font-size: 12px;
      border-radius: 20px; }
    .contact-box1 .contact-value,
    .contact-box2 .contact-value {
      margin-left: 30%;
      word-wrap: break-word; }
  .contact-box1 {
    width: 400px;
    height: 250px;
    padding: 45px; }
    .contact-box1 p {
      font-size: 60px; }
  .contact-box2 {
    width: 330px;
    margin-top: 50px;
    height: 200px;
    padding: 40px;
    font-size: 13px; }
    .contact-box2 p {
      font-size: 40px; }
  li.list-item {
    position: relative;
    padding-bottom: 15px;
    cursor: pointer; }
    li.list-item div::after {
      content: "";
      position: absolute;
      left: 40%;
      right: 40%;
      bottom: 0; }
    li.list-item div:hover {
      border-bottom: 1px solid #78c81e; }
  .fi-telephone,
  .fi-mail {
    font-size: 18px;
    margin: 10px; }
  .pagination .page-link {
    color: #66cc00 !important; }
  .pagination .page-item.active .page-link {
    background-color: #66cc00;
    border-color: #66cc00;
    color: #fff !important; }
  .phone-list .device {
    margin-bottom: 20px;
    border: 1px solid #DDDDE2;
    padding: 30px 20px;
    border-radius: 5px;
    text-align: center;
    background-color: white;
    box-shadow: 2px 2px 2px #eaeaea; }
    .phone-list .device img {
      height: 250px;
      margin-bottom: 30px; }
    .phone-list .device h5 {
      margin-bottom: 30px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: pointer; }
    .phone-list .device .price {
      font-size: 20px;
      margin-bottom: 20px; }
      .phone-list .device .price .discounted {
        font-size: 14px;
        text-decoration: line-through; }
    .phone-list .device .button {
      margin-bottom: 0px; }
  .text-center {
    text-align: center; }
  .package {
    border: 1px solid #DDDDE2;
    box-shadow: 2px 2px 2px #eaeaea;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    /*width: 90%;*/
    margin-right: 15px; }
  .package:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
    .package:hover .title {
      color: #78c81e !important; } }

@media only screen and (max-width: 768px) {
  .package:hover {
    box-shadow: 2px 2px 2px #eaeaea; } }

@media only screen {
  .package .title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    height: 70px; }
  .package .values {
    display: grid;
    grid-template-columns: auto; }
    .package .values .button {
      margin-bottom: 0px !important;
      padding-left: 40px;
      padding-right: 40px; }
  .package .values ul {
    padding-left: 0px;
    margin-bottom: 15px; }
  .package .values ul li {
    list-style: none;
    margin-bottom: 15px; }
  .package .values ul.block {
    height: 220px;
    overflow-y: auto; }
  .package .values ul.block li,
  .package .values ul.additional li {
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 15px; }
  .package .values .accordion-item {
    border-bottom: none; }
    .package .values .accordion-item .accordion-title {
      margin-bottom: 0px !important;
      padding: 5px 10px 10px !important; }
    .package .values .accordion-item .accordion-content {
      padding: 0px !important; }
  .package .values .icon,
  .package .values .values-con {
    display: inline-block;
    display: grid;
    grid-template-columns: auto; }
  .package .values .icon {
    position: relative;
    width: 40px;
    height: 40px; }
  .package .values .values-con {
    overflow: hidden;
    line-height: 1;
    text-align: left; }
  .package .values .values-con v {
    font-size: 1em;
    color: #363636; }
  .package .values .values-con t {
    font-size: 0.875em;
    color: gray; }
  ul.additional {
    position: relative;
    height: 75px;
    overflow-y: auto; }
  ul.additional li {
    color: #66cc00; }
  .plus {
    font-size: 35px;
    color: black;
    text-align: center;
    line-height: 1;
    padding-top: 10px;
    padding-bottom: 15px; }
  .lower {
    border-top: 1px solid #eaeaea;
    text-align: center;
    padding-top: 15px; }
  .lower a {
    width: 100%;
    margin-bottom: 20px; }
  .lower a span {
    width: 100%;
    margin-bottom: 20px;
    position: relative; }
  .lower a span::after {
    content: "";
    background-image: url(/business/assets/down.412f32896c37205f333f5c7fa9b77585.svg);
    height: 10px;
    width: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -27px;
    top: 7px; }
  .narrow {
    padding-right: 5px !important;
    padding-left: 5px !important; }
  .chain {
    text-align: center;
    margin: auto;
    margin-bottom: 40px; }
  .chain .step {
    display: inline-block;
    border: 1px solid #66cc00;
    text-transform: uppercase;
    color: #66cc00;
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 11px; }
  .chain .step.ongoing {
    border: 1px solid #66cc00;
    background-color: #66cc00;
    color: white; }
  .chain .step.done {
    border: 1px solid #66cc00;
    background-color: #66cc00;
    color: white; }
  .chain .step.onet {
    margin-right: 16px;
    position: relative; }
  .chain .step.onet::after {
    content: "";
    height: 1px;
    width: 22px;
    background-color: #66cc00;
    position: absolute;
    right: -22px;
    top: 18px; }
  .collapse p {
    font-size: 11px;
    margin-bottom: 7px; }
  .modal-body .dugaar-data p {
    margin-bottom: 10px; }
  .modal-body input {
    margin-bottom: 15px !important; }
  .bagts-con {
    display: inline-block; }
    .bagts-con .regtype-container {
      min-height: 150px;
      margin: 0 0 50px;
      position: relative;
      z-index: 10;
      padding: 20px 0; }
    .bagts-con .bagts {
      border: 1px solid #ccc;
      border-radius: 8px;
      position: relative;
      background-color: #fff;
      margin-right: 20px; }
      .bagts-con .bagts .title {
        padding: 1.5rem 1.5625rem 1.25rem;
        font-family: Roboto-Bold;
        font-size: 2rem;
        line-height: 1;
        text-align: center; }
      .bagts-con .bagts .values {
        padding: 10px 1.5625rem .625rem; }
      .bagts-con .bagts .values ul {
        margin-bottom: 1.25rem;
        list-style-type: none;
        margin-left: 0; }
        .bagts-con .bagts .values ul li t {
          font-family: Roboto;
          font-size: 0.89rem;
          color: #808080; }
  .bagts-con .bagts.active:after {
    content: "";
    background-image: url(/business/assets/vasactive.8ecfc139738e9969538c02714a5fbc3b.svg);
    background-repeat: no-repeat;
    height: 85px;
    width: 85px;
    position: absolute;
    top: 0;
    right: 0; }
  .bagts-con.title-double .bagts .title {
    line-height: 1; }
  @keyframes fade-left {
    from {
      background-color: red; }
    to {
      background-color: yellow; } } }

@media only screen and (max-width: 576px) {
  .btn {
    font-size: 0.75rem !important; }
    .btn.enter {
      padding: 12px 30px; }
  .time {
    font-size: 1.5rem;
    padding: 10px; }
    .time .block {
      display: inline-block !important; }
    .time .block span {
      font-size: 2rem; }
      .time .block span::after {
        content: "";
        height: 8px;
        width: 8px;
        top: 34px;
        right: -24px; }
    .time .block::last-child span::after {
      content: none; }
  .location {
    font-size: 1rem;
    margin-bottom: 20px; }
    .location span::before {
      content: "";
      background-image: url(/business/assets/Location.aaba404ade39cc93f5e54401153cd679.svg);
      height: 29px;
      width: 16px;
      top: 0px;
      left: -20px; }
  .logo {
    margin-bottom: 1.25rem; }
    .logo img {
      height: 2rem; }
  .title p {
    font-size: 1.3rem !important;
    line-height: 1;
    max-width: 320px;
    margin: auto auto 1.25rem;
    line-height: 1.2; }
  .search-num {
    text-align: center;
    margin-bottom: 2rem; }
    .search-num h5 {
      font-size: 1.25rem;
      text-transform: uppercase;
      line-height: 1.5rem; }
    .search-num .digits.udurlug {
      /* For IE10 */ }
      .search-num .digits.udurlug .box {
        font-size: 1rem;
        line-height: 1;
        min-width: 20px;
        width: 30px;
        margin-right: 0px;
        border: 1px solid #222222;
        border-radius: 4px;
        margin-bottom: 5px;
        cursor: pointer; }
        .search-num .digits.udurlug .box.button {
          margin-top: 7px;
          border: 1px solid #66cc00;
          width: 260px; }
          .search-num .digits.udurlug .box.button i.search {
            margin: auto;
            margin-top: -8px; }
        .search-num .digits.udurlug .box.rt {
          margin-right: 3px; }
      .search-num .digits.udurlug select.box {
        padding: 8px 8px; }
      .search-num .digits.udurlug input.box {
        padding: 8px 8px;
        margin-top: 8px; }
      .search-num .digits.udurlug select.box {
        -moz-appearance: none;
        -webkit-appearance: none; }
      .search-num .digits.udurlug select.box::-ms-expand {
        display: none; }
  .contact-box1,
  .contact-box2 {
    width: 80%;
    height: 250px;
    margin: 30px 10%; }
  .contact-box2 {
    height: 200px; }
  .chain .step {
    font-size: 8px; } }

@media only screen and (min-width: 576.5px) {
  .title p {
    max-width: 600px;
    margin: auto auto 3rem; }
  .btn {
    font-size: 0.875rem !important; }
    .btn.enter {
      padding: 12px 50px; }
  .time {
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-size: 2.25rem;
    padding: 10px; }
    .time .block {
      display: inline-block !important; }
    .time span {
      border: 1px solid black;
      border-radius: 3px;
      padding: 10px;
      position: relative;
      margin-right: 20px;
      margin-left: 20px; }
      .time span::after {
        content: "";
        height: 10px;
        width: 10px;
        top: 30px;
        right: -27px; }
    .time .block::last-child span::after {
      content: none; }
  .location {
    font-size: 1.25rem;
    margin-bottom: 45px; }
    .location span::before {
      content: "";
      height: 25px;
      width: 15px;
      top: 0px;
      left: -20px; }
  .logo {
    margin-bottom: 1.25rem; }
    .logo img {
      height: 3.3rem; }
  .title p {
    font-size: 1.75rem !important;
    line-height: 1;
    margin: auto;
    margin-bottom: 2.5rem;
    max-width: 500px; }
  .chain .step {
    font-size: 14px;
    padding: 11px 15px; }
    .chain .step.onet {
      margin-right: 78px; }
  .chain .step.onet::after {
    content: "";
    height: 1px;
    width: 84px;
    background-color: #66cc00;
    position: absolute;
    right: -84px;
    top: 22px; }
  .search-num {
    margin-bottom: 4.8rem;
    text-align: center; }
    .search-num h5 {
      font-size: 1.25rem;
      text-transform: uppercase;
      line-height: 1.5rem;
      margin-bottom: 20px; }
    .search-num .digits.udurlug .box {
      font-size: 1.5rem;
      line-height: 1;
      min-width: 2.4375rem;
      width: 3rem !important;
      min-height: 48px;
      border: 1px solid #222222;
      border-radius: 4px; }
      .search-num .digits.udurlug .box.rt {
        margin-right: 8px; }
      .search-num .digits.udurlug .box.ft {
        margin-right: 6px; }
    .search-num .digits.udurlug select.box {
      padding: 8px 15px; }
    .search-num .digits.udurlug input.box {
      padding: 8px 15px;
      margin-right: 6px; }
    .search-num .digits.udurlug button {
      margin-top: -9px; }
      .search-num .digits.udurlug button i.search {
        margin-top: 0px;
        margin-left: -5px !important; } }

@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    max-width: none; } }

@media only screen and (min-width: 768px) {
  .section {
    margin: 95px auto; }
  .title p {
    max-width: 800px;
    margin: auto auto 3rem; }
  .btn {
    font-size: 0.875rem !important; }
    .btn.enter {
      padding: 12px 50px; }
  .time {
    margin-bottom: 3rem;
    margin-top: 5rem;
    font-size: 2rem;
    padding: 10px; }
    .time .block {
      display: inline-block !important; }
    .time span {
      border: 1px solid black;
      border-radius: 3px;
      padding: 10px;
      font-size: 2.875rem;
      position: relative;
      margin-right: 30px;
      margin-left: 20px; }
      .time span::after {
        content: "";
        height: 10px;
        width: 10px;
        top: 37px;
        right: -34px; }
    .time .block::last-child span::after {
      content: none; }
  .location {
    font-size: 1.875rem;
    margin-bottom: 45px; }
    .location span::before {
      content: "";
      height: 2.5rem;
      width: 25px;
      top: 0px;
      left: -35px; }
  .logo {
    margin-bottom: 1.25rem; }
    .logo img {
      height: 4.875rem; }
  .title p {
    font-size: 2.5rem !important;
    line-height: 1;
    margin-bottom: 2.5rem; }
  .search-num {
    margin-bottom: 4.8rem; }
    .search-num .digits.udurlug .box {
      font-size: 1.5rem;
      line-height: 1.8;
      min-width: 2.4375rem;
      width: 3rem !important;
      border: 1px solid #222222;
      border-radius: 4px; }
    .search-num .digits.udurlug select.box {
      padding: 8px 15px; }
    .search-num .digits.udurlug input.box {
      padding: 8px 15px; }
    .search-num .digits.udurlug button {
      height: 60px !important; }
      .search-num .digits.udurlug button i.search {
        margin-top: 0px;
        margin-left: -5px !important; }
  i.search {
    width: 33px !important;
    height: 50px !important;
    margin-left: 6px !important; }
  .title-box h5 {
    font-size: 2.5rem;
    line-height: 3.625rem;
    margin-bottom: 25px; }
    .title-box h5 span {
      position: relative;
      padding-bottom: 15px; }
    .title-box h5 span::after {
      content: "";
      position: absolute;
      left: 40%;
      right: 40%;
      bottom: 0;
      border-bottom: 2px solid #66cc00;
      transition: all .3s; }
    .title-box h5:hover span::after {
      left: 10%;
      right: 10%; }
  .result {
    min-height: 200px; }
    .result ul li {
      padding: 15px 20px; }
      .result ul li a {
        padding: 15px 20px;
        cursor: pointer; }
  .page.navigation {
    float: right; }
  .contact-box {
    padding: 25px 30px; } }

.mprice {
  color: #78c81e; }

@media only screen and (min-width: 40em) {
  .search-num .digits.udurlug button {
    height: 60px !important; }
    .search-num .digits.udurlug button i.search {
      margin-top: 0px !important;
      margin-left: -5px !important;
      margin-top: 5px; }
  .package {
    position: relative;
    margin-bottom: 20px; }
    .package .lower button {
      display: none;
      position: absolute;
      margin-left: -20%; }
    .package:hover .lower button {
      display: initial; }
  .slick-active + .slick-active + .slick-active .title {
    color: #000; } }
/*! 
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;

  background: #29d;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: .45;
  -moz-box-shadow: #29d 1px 0 6px 1px;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.8 - 2017-04-18T05:43:43.881Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}


.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control.single > .selectize-input > input {
  width: 100%;
}

/* Fix line break when there's at least one item selected with the Selectize theme */
.selectize-control.multi > .selectize-input > input {
  margin: 0 !important;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
    width: 0;
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>span {
    cursor: pointer;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
    width: 100%;
    padding-right: 1em;
}
.ui-select-bootstrap .ui-select-match-text span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}

/* Spinner */
.ui-select-refreshing.glyphicon {
    position: absolute;
    right: 0;
    padding: 8px 27px;
 }

@-webkit-keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.ui-select-spin {
  -webkit-animation: ui-select-spin 2s infinite linear;
  animation: ui-select-spin 2s infinite linear;
}

.ui-select-refreshing.ng-animate {
  -webkit-animation: none 0s;
}
/**
 * selectize.css (v0.12.6)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.selectize-control {
  position: relative;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}
.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.selectize-dropdown [data-selectable].option {
  opacity: 1;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.selectize-dropdown .active.create {
  color: #495c68;
}
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}
