@charset "UTF-8";
.flex-container-column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-container-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-container--no-wrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-container--wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-container--wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

/* The justify-content property is used to align the flex items */
.flex-container--justify-center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-container--justify-start {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-container--justify-end {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-container--justify-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.flex-container--justify-space-between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* The align-items property is used to align the flex items vertically */
.flex-container--align-items-center {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-container--align-items-start {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex-container--align-items-end {
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.flex-container--align-items-stretch {
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

/* The align-content property is used to align the flex lines.
  used for multiple flex lines in a flex wrap container */
.flex-container--align-content-center {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.flex-container--align-content-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-container--align-content-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.flex-container--align-content-space-around {
  -webkit-align-content: space-around;
  -ms-flex-line-pack: space-around;
  align-content: space-around;
}

.flex-container--align-content-space-between {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: space-between;
  align-content: space-between;
}

.flex-container--align-content-space-evenly {
  -webkit-align-content: space-evenly;
  -ms-flex-line-pack: space-evenly;
  align-content: space-evenly;
}

/* The align-self property specifies the alignment for the selected item inside the flexible container.
  Note: The align-self property overrides the flexible container's align-items property. */
.flex-item--align-self-center {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flex-item--align-self-start {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-item--align-self-end {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.flex-item--align-self-stretch {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.flex-row-space-between {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-row-space-around {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/*$resultHoverColor: $gray4;*/
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.tabs, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .breadcrumb, .button, .is-unselectable, .modal-close, .delete {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.navbar-link:not(.is-arrowless)::after {
  border: 3px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.625em;
  margin-top: -0.4375em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 0.625em;
}

.tabs:not(:last-child), .pagination:not(:last-child), .message:not(:last-child), .list:not(:last-child), .level:not(:last-child), .breadcrumb:not(:last-child), .highlight:not(:last-child), .block:not(:last-child), .title:not(:last-child),
.subtitle:not(:last-child), .table-container:not(:last-child), .table:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .box:not(:last-child) {
  margin-bottom: 1.5rem;
}

.modal-close, .delete {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 20px;
}
.modal-close::before, .delete::before, .modal-close::after, .delete::after {
  background-color: white;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}
.modal-close::before, .delete::before {
  height: 2px;
  width: 50%;
}
.modal-close::after, .delete::after {
  height: 50%;
  width: 2px;
}
.modal-close:hover, .delete:hover, .modal-close:focus, .delete:focus {
  background-color: rgba(10, 10, 10, 0.3);
}
.modal-close:active, .delete:active {
  background-color: rgba(10, 10, 10, 0.4);
}
.is-small.modal-close, .is-small.delete {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}
.is-medium.modal-close, .is-medium.delete {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}
.is-large.modal-close, .is-large.delete {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

.loader, .button.is-loading::after {
  animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

.hero-video, .modal-background, .modal, .image.is-square img,
.image.is-square .has-ratio, .image.is-1by1 img,
.image.is-1by1 .has-ratio, .image.is-5by4 img,
.image.is-5by4 .has-ratio, .image.is-4by3 img,
.image.is-4by3 .has-ratio, .image.is-3by2 img,
.image.is-3by2 .has-ratio, .image.is-5by3 img,
.image.is-5by3 .has-ratio, .image.is-16by9 img,
.image.is-16by9 .has-ratio, .image.is-2by1 img,
.image.is-2by1 .has-ratio, .image.is-3by1 img,
.image.is-3by1 .has-ratio, .image.is-4by5 img,
.image.is-4by5 .has-ratio, .image.is-3by4 img,
.image.is-3by4 .has-ratio, .image.is-2by3 img,
.image.is-2by3 .has-ratio, .image.is-3by5 img,
.image.is-3by5 .has-ratio, .image.is-9by16 img,
.image.is-9by16 .has-ratio, .image.is-1by2 img,
.image.is-1by2 .has-ratio, .image.is-1by3 img,
.image.is-1by3 .has-ratio, .is-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .button {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.5em - 1px);
  padding-left: calc(0.75em - 1px);
  padding-right: calc(0.75em - 1px);
  padding-top: calc(0.5em - 1px);
  position: relative;
  vertical-align: top;
}
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus,
.pagination-ellipsis:focus, .button:focus, .is-focused.pagination-previous,
.is-focused.pagination-next,
.is-focused.pagination-link,
.is-focused.pagination-ellipsis, .is-focused.button, .pagination-previous:active,
.pagination-next:active,
.pagination-link:active,
.pagination-ellipsis:active, .button:active, .is-active.pagination-previous,
.is-active.pagination-next,
.is-active.pagination-link,
.is-active.pagination-ellipsis, .is-active.button {
  outline: none;
}
[disabled].pagination-previous,
[disabled].pagination-next,
[disabled].pagination-link,
[disabled].pagination-ellipsis, [disabled].button, fieldset[disabled] .pagination-previous,
fieldset[disabled] .pagination-next,
fieldset[disabled] .pagination-link,
fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .button {
  cursor: not-allowed;
}

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

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

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
}
td:not([align]),
th:not([align]) {
  text-align: left;
}

html {
  background-color: white;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  color: #666666;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #21a1d8;
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #257EBA;
}

code {
  background-color: whitesmoke;
  color: #e4505a;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: whitesmoke;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

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

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  color: inherit;
  font-weight: 700;
}

fieldset {
  border: none;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: whitesmoke;
  color: #666666;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  vertical-align: top;
}
table td:not([align]),
table th:not([align]) {
  text-align: left;
}
table th {
  color: inherit;
}

.is-clearfix::after {
  clear: both;
  content: " ";
  display: table;
}

.is-pulled-left {
  float: left !important;
}

.is-pulled-right {
  float: right !important;
}

.is-clipped {
  overflow: hidden !important;
}

.is-size-1 {
  font-size: 3rem !important;
}

.is-size-2 {
  font-size: 2.5rem !important;
}

.is-size-3 {
  font-size: 2rem !important;
}

.is-size-4 {
  font-size: 1.5rem !important;
}

.is-size-5 {
  font-size: 1.25rem !important;
}

.is-size-6 {
  font-size: 1rem !important;
}

.is-size-7 {
  font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
  .is-size-1-mobile {
    font-size: 3rem !important;
  }

  .is-size-2-mobile {
    font-size: 2.5rem !important;
  }

  .is-size-3-mobile {
    font-size: 2rem !important;
  }

  .is-size-4-mobile {
    font-size: 1.5rem !important;
  }

  .is-size-5-mobile {
    font-size: 1.25rem !important;
  }

  .is-size-6-mobile {
    font-size: 1rem !important;
  }

  .is-size-7-mobile {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-size-1-tablet {
    font-size: 3rem !important;
  }

  .is-size-2-tablet {
    font-size: 2.5rem !important;
  }

  .is-size-3-tablet {
    font-size: 2rem !important;
  }

  .is-size-4-tablet {
    font-size: 1.5rem !important;
  }

  .is-size-5-tablet {
    font-size: 1.25rem !important;
  }

  .is-size-6-tablet {
    font-size: 1rem !important;
  }

  .is-size-7-tablet {
    font-size: 0.75rem !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-size-1-touch {
    font-size: 3rem !important;
  }

  .is-size-2-touch {
    font-size: 2.5rem !important;
  }

  .is-size-3-touch {
    font-size: 2rem !important;
  }

  .is-size-4-touch {
    font-size: 1.5rem !important;
  }

  .is-size-5-touch {
    font-size: 1.25rem !important;
  }

  .is-size-6-touch {
    font-size: 1rem !important;
  }

  .is-size-7-touch {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-size-1-desktop {
    font-size: 3rem !important;
  }

  .is-size-2-desktop {
    font-size: 2.5rem !important;
  }

  .is-size-3-desktop {
    font-size: 2rem !important;
  }

  .is-size-4-desktop {
    font-size: 1.5rem !important;
  }

  .is-size-5-desktop {
    font-size: 1.25rem !important;
  }

  .is-size-6-desktop {
    font-size: 1rem !important;
  }

  .is-size-7-desktop {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-size-1-widescreen {
    font-size: 3rem !important;
  }

  .is-size-2-widescreen {
    font-size: 2.5rem !important;
  }

  .is-size-3-widescreen {
    font-size: 2rem !important;
  }

  .is-size-4-widescreen {
    font-size: 1.5rem !important;
  }

  .is-size-5-widescreen {
    font-size: 1.25rem !important;
  }

  .is-size-6-widescreen {
    font-size: 1rem !important;
  }

  .is-size-7-widescreen {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-size-1-fullhd {
    font-size: 3rem !important;
  }

  .is-size-2-fullhd {
    font-size: 2.5rem !important;
  }

  .is-size-3-fullhd {
    font-size: 2rem !important;
  }

  .is-size-4-fullhd {
    font-size: 1.5rem !important;
  }

  .is-size-5-fullhd {
    font-size: 1.25rem !important;
  }

  .is-size-6-fullhd {
    font-size: 1rem !important;
  }

  .is-size-7-fullhd {
    font-size: 0.75rem !important;
  }
}
.has-text-centered {
  text-align: center !important;
}

.has-text-justified {
  text-align: justify !important;
}

.has-text-left {
  text-align: left !important;
}

.has-text-right {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .has-text-centered-mobile {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-centered-tablet {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-centered-tablet-only {
    text-align: center !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-centered-touch {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-centered-desktop {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-centered-desktop-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-centered-widescreen {
    text-align: center !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-centered-widescreen-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-centered-fullhd {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-justified-mobile {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-justified-tablet {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-justified-tablet-only {
    text-align: justify !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-justified-touch {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-justified-desktop {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-justified-desktop-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-justified-widescreen {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-justified-widescreen-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-justified-fullhd {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-left-mobile {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-left-tablet {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-left-tablet-only {
    text-align: left !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-left-touch {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-left-desktop {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-left-desktop-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-left-widescreen {
    text-align: left !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-left-widescreen-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-left-fullhd {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-right-mobile {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-right-tablet {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-right-tablet-only {
    text-align: right !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-right-touch {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-right-desktop {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-right-desktop-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-right-widescreen {
    text-align: right !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-right-widescreen-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-right-fullhd {
    text-align: right !important;
  }
}
.is-capitalized {
  text-transform: capitalize !important;
}

.is-lowercase {
  text-transform: lowercase !important;
}

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

.is-italic {
  font-style: italic !important;
}

.has-text-white {
  color: white !important;
}

a.has-text-white:hover, a.has-text-white:focus {
  color: #e6e6e6 !important;
}

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

.has-text-black {
  color: #0a0a0a !important;
}

a.has-text-black:hover, a.has-text-black:focus {
  color: black !important;
}

.has-background-black {
  background-color: #0a0a0a !important;
}

.has-text-light {
  color: whitesmoke !important;
}

a.has-text-light:hover, a.has-text-light:focus {
  color: #dbdbdb !important;
}

.has-background-light {
  background-color: whitesmoke !important;
}

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

a.has-text-dark:hover, a.has-text-dark:focus {
  color: gray !important;
}

.has-background-dark {
  background-color: #999999 !important;
}

.has-text-primary {
  color: #21a1d8 !important;
}

a.has-text-primary:hover, a.has-text-primary:focus {
  color: #1a80ac !important;
}

.has-background-primary {
  background-color: #21a1d8 !important;
}

.has-text-link {
  color: #21a1d8 !important;
}

a.has-text-link:hover, a.has-text-link:focus {
  color: #1a80ac !important;
}

.has-background-link {
  background-color: #21a1d8 !important;
}

.has-text-info {
  color: #3298dc !important;
}

a.has-text-info:hover, a.has-text-info:focus {
  color: #207dbc !important;
}

.has-background-info {
  background-color: #3298dc !important;
}

.has-text-success {
  color: #48c774 !important;
}

a.has-text-success:hover, a.has-text-success:focus {
  color: #34a85c !important;
}

.has-background-success {
  background-color: #48c774 !important;
}

.has-text-warning {
  color: #ffdd57 !important;
}

a.has-text-warning:hover, a.has-text-warning:focus {
  color: #ffd324 !important;
}

.has-background-warning {
  background-color: #ffdd57 !important;
}

.has-text-danger {
  color: #d63737 !important;
}

a.has-text-danger:hover, a.has-text-danger:focus {
  color: #b52525 !important;
}

.has-background-danger {
  background-color: #d63737 !important;
}

.has-text-black-bis {
  color: #121212 !important;
}

.has-background-black-bis {
  background-color: #121212 !important;
}

.has-text-black-ter {
  color: #242424 !important;
}

.has-background-black-ter {
  background-color: #242424 !important;
}

.has-text-grey-darker {
  color: #363636 !important;
}

.has-background-grey-darker {
  background-color: #363636 !important;
}

.has-text-grey-dark {
  color: #666666 !important;
}

.has-background-grey-dark {
  background-color: #666666 !important;
}

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

.has-background-grey {
  background-color: #7a7a7a !important;
}

.has-text-grey-light {
  color: #ededed !important;
}

.has-background-grey-light {
  background-color: #ededed !important;
}

.has-text-grey-lighter {
  color: #dbdbdb !important;
}

.has-background-grey-lighter {
  background-color: #dbdbdb !important;
}

.has-text-white-ter {
  color: whitesmoke !important;
}

.has-background-white-ter {
  background-color: whitesmoke !important;
}

.has-text-white-bis {
  color: #fafafa !important;
}

.has-background-white-bis {
  background-color: #fafafa !important;
}

.has-text-weight-light {
  font-weight: 300 !important;
}

.has-text-weight-normal {
  font-weight: 400 !important;
}

.has-text-weight-medium {
  font-weight: 500 !important;
}

.has-text-weight-semibold {
  font-weight: 600 !important;
}

.has-text-weight-bold {
  font-weight: 700 !important;
}

.is-family-primary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-secondary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-sans-serif {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-monospace {
  font-family: monospace !important;
}

.is-family-code {
  font-family: monospace !important;
}

.is-block {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .is-block-mobile {
    display: block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-block-tablet {
    display: block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-block-tablet-only {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-block-touch {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-block-desktop {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-block-desktop-only {
    display: block !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-block-widescreen {
    display: block !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-block-widescreen-only {
    display: block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-block-fullhd {
    display: block !important;
  }
}
.is-flex {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .is-flex-mobile {
    display: flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-flex-tablet {
    display: flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-flex-tablet-only {
    display: flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-flex-touch {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-flex-desktop {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-flex-desktop-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-flex-widescreen {
    display: flex !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-flex-widescreen-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-flex-fullhd {
    display: flex !important;
  }
}
.is-inline {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  .is-inline-mobile {
    display: inline !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-tablet {
    display: inline !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-tablet-only {
    display: inline !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-touch {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-desktop {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-desktop-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-widescreen {
    display: inline !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-widescreen-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-fullhd {
    display: inline !important;
  }
}
.is-inline-block {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .is-inline-block-mobile {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-block-tablet {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-block-tablet-only {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-block-touch {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-block-desktop {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-block-desktop-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-block-widescreen {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-block-widescreen-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-block-fullhd {
    display: inline-block !important;
  }
}
.is-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .is-inline-flex-mobile {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-flex-tablet {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-flex-tablet-only {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-flex-touch {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-flex-desktop {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-flex-desktop-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-flex-widescreen {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-flex-widescreen-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-flex-fullhd {
    display: inline-flex !important;
  }
}
.is-hidden {
  display: none !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

@media screen and (max-width: 768px) {
  .is-hidden-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-hidden-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-hidden-tablet-only {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-hidden-touch {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-hidden-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-hidden-desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-hidden-widescreen {
    display: none !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-hidden-widescreen-only {
    display: none !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-hidden-fullhd {
    display: none !important;
  }
}
.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  .is-invisible-mobile {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-invisible-tablet {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-invisible-tablet-only {
    visibility: hidden !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-invisible-touch {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-invisible-desktop {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-invisible-desktop-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-invisible-widescreen {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-invisible-widescreen-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-invisible-fullhd {
    visibility: hidden !important;
  }
}
.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.is-radiusless {
  border-radius: 0 !important;
}

.is-shadowless {
  box-shadow: none !important;
}

.is-relative {
  position: relative !important;
}

.box {
  background-color: white;
  border-radius: 6px;
  box-shadow: none;
  color: #666666;
  display: block;
  padding: 1.25rem;
}

a.box:hover, a.box:focus {
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px #21a1d8;
}
a.box:active {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #21a1d8;
}

.button {
  background-color: white;
  border-color: #dbdbdb;
  border-width: 1px;
  color: inherit;
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(0.5em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(0.5em - 1px);
  text-align: center;
  white-space: nowrap;
}
.button strong {
  color: inherit;
}
.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large {
  height: 1.5em;
  width: 1.5em;
}
.button .icon:first-child:not(:last-child) {
  margin-left: calc(-0.5em - 1px);
  margin-right: 0.25em;
}
.button .icon:last-child:not(:first-child) {
  margin-left: 0.25em;
  margin-right: calc(-0.5em - 1px);
}
.button .icon:first-child:last-child {
  margin-left: calc(-0.5em - 1px);
  margin-right: calc(-0.5em - 1px);
}
.button:hover, .button.is-hovered {
  border-color: #ededed;
  color: #257EBA;
}
.button:focus, .button.is-focused {
  border-color: #257EBA;
  color: #363636;
}
.button:focus:not(:active), .button.is-focused:not(:active) {
  box-shadow: 0 rgba(33, 161, 216, 0.25);
}
.button:active, .button.is-active {
  border-color: focusedColor;
  color: #363636;
}
.button.is-text {
  background-color: transparent;
  border-color: transparent;
  color: #666666;
  text-decoration: underline;
}
.button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused {
  background-color: whitesmoke;
  color: inherit;
}
.button.is-text:active, .button.is-text.is-active {
  background-color: #e8e8e8;
  color: inherit;
}
.button.is-text[disabled], fieldset[disabled] .button.is-text {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.button.is-white {
  background-color: white;
  border-color: transparent;
  color: #0a0a0a;
}
.button.is-white:hover, .button.is-white.is-hovered {
  background-color: #f9f9f9;
  border-color: transparent;
  color: #0a0a0a;
}
.button.is-white:focus, .button.is-white.is-focused {
  border-color: transparent;
  color: #0a0a0a;
}
.button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) {
  box-shadow: 0 rgba(255, 255, 255, 0.25);
}
.button.is-white:active, .button.is-white.is-active {
  background-color: #f2f2f2;
  border-color: transparent;
  color: #0a0a0a;
}
.button.is-white[disabled], fieldset[disabled] .button.is-white {
  background-color: white;
  border-color: transparent;
  box-shadow: none;
}
.button.is-white.is-inverted {
  background-color: #0a0a0a;
  color: white;
}
.button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered {
  background-color: black;
}
.button.is-white.is-inverted[disabled], fieldset[disabled] .button.is-white.is-inverted {
  background-color: #0a0a0a;
  border-color: transparent;
  box-shadow: none;
  color: white;
}
.button.is-white.is-loading::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}
.button.is-white.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}
.button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}
.button.is-white.is-outlined.is-loading::after {
  border-color: transparent transparent white white !important;
}
.button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}
.button.is-white.is-outlined[disabled], fieldset[disabled] .button.is-white.is-outlined {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}
.button.is-white.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused {
  background-color: #0a0a0a;
  color: white;
}
.button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}
.button.is-white.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-white.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  box-shadow: none;
  color: #0a0a0a;
}
.button.is-black {
  background-color: #0a0a0a;
  border-color: transparent;
  color: white;
}
.button.is-black:hover, .button.is-black.is-hovered {
  background-color: #040404;
  border-color: transparent;
  color: white;
}
.button.is-black:focus, .button.is-black.is-focused {
  border-color: transparent;
  color: white;
}
.button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) {
  box-shadow: 0 rgba(10, 10, 10, 0.25);
}
.button.is-black:active, .button.is-black.is-active {
  background-color: black;
  border-color: transparent;
  color: white;
}
.button.is-black[disabled], fieldset[disabled] .button.is-black {
  background-color: #0a0a0a;
  border-color: transparent;
  box-shadow: none;
}
.button.is-black.is-inverted {
  background-color: white;
  color: #0a0a0a;
}
.button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-black.is-inverted[disabled], fieldset[disabled] .button.is-black.is-inverted {
  background-color: white;
  border-color: transparent;
  box-shadow: none;
  color: #0a0a0a;
}
.button.is-black.is-loading::after {
  border-color: transparent transparent white white !important;
}
.button.is-black.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}
.button.is-black.is-outlined.is-loading::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}
.button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}
.button.is-black.is-outlined[disabled], fieldset[disabled] .button.is-black.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  box-shadow: none;
  color: #0a0a0a;
}
.button.is-black.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}
.button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused {
  background-color: white;
  color: #0a0a0a;
}
.button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}
.button.is-black.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-black.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}
.button.is-light {
  background-color: whitesmoke;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-light:hover, .button.is-light.is-hovered {
  background-color: #eeeeee;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-light:focus, .button.is-light.is-focused {
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) {
  box-shadow: 0 rgba(245, 245, 245, 0.25);
}
.button.is-light:active, .button.is-light.is-active {
  background-color: #e8e8e8;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-light[disabled], fieldset[disabled] .button.is-light {
  background-color: whitesmoke;
  border-color: transparent;
  box-shadow: none;
}
.button.is-light.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
}
.button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered {
  background-color: rgba(0, 0, 0, 0.7);
}
.button.is-light.is-inverted[disabled], fieldset[disabled] .button.is-light.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: transparent;
  box-shadow: none;
  color: whitesmoke;
}
.button.is-light.is-loading::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}
.button.is-light.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  color: whitesmoke;
}
.button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-light.is-outlined.is-loading::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}
.button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}
.button.is-light.is-outlined[disabled], fieldset[disabled] .button.is-light.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  box-shadow: none;
  color: whitesmoke;
}
.button.is-light.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}
.button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused {
  background-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
}
.button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}
.button.is-light.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-light.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-dark {
  background-color: #999999;
  border-color: transparent;
  color: #fff;
}
.button.is-dark:hover, .button.is-dark.is-hovered {
  background-color: #939393;
  border-color: transparent;
  color: #fff;
}
.button.is-dark:focus, .button.is-dark.is-focused {
  border-color: transparent;
  color: #fff;
}
.button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) {
  box-shadow: 0 rgba(153, 153, 153, 0.25);
}
.button.is-dark:active, .button.is-dark.is-active {
  background-color: #8c8c8c;
  border-color: transparent;
  color: #fff;
}
.button.is-dark[disabled], fieldset[disabled] .button.is-dark {
  background-color: #999999;
  border-color: transparent;
  box-shadow: none;
}
.button.is-dark.is-inverted {
  background-color: #fff;
  color: #999999;
}
.button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-dark.is-inverted[disabled], fieldset[disabled] .button.is-dark.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #999999;
}
.button.is-dark.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #999999;
  color: #999999;
}
.button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused {
  background-color: #999999;
  border-color: #999999;
  color: #fff;
}
.button.is-dark.is-outlined.is-loading::after {
  border-color: transparent transparent #999999 #999999 !important;
}
.button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-dark.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #999999;
  box-shadow: none;
  color: #999999;
}
.button.is-dark.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #999999;
}
.button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #999999 #999999 !important;
}
.button.is-dark.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}
.button.is-primary {
  background-color: #21a1d8;
  border-color: transparent;
  color: #fff;
}
.button.is-primary:hover, .button.is-primary.is-hovered {
  background-color: #1f99cd;
  border-color: transparent;
  color: #fff;
}
.button.is-primary:focus, .button.is-primary.is-focused {
  border-color: transparent;
  color: #fff;
}
.button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) {
  box-shadow: 0 rgba(33, 161, 216, 0.25);
}
.button.is-primary:active, .button.is-primary.is-active {
  background-color: #1e91c2;
  border-color: transparent;
  color: #fff;
}
.button.is-primary[disabled], fieldset[disabled] .button.is-primary {
  background-color: #21a1d8;
  border-color: transparent;
  box-shadow: none;
}
.button.is-primary.is-inverted {
  background-color: #fff;
  color: #21a1d8;
}
.button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-primary.is-inverted[disabled], fieldset[disabled] .button.is-primary.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #21a1d8;
}
.button.is-primary.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #21a1d8;
  color: #21a1d8;
}
.button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused {
  background-color: #21a1d8;
  border-color: #21a1d8;
  color: #fff;
}
.button.is-primary.is-outlined.is-loading::after {
  border-color: transparent transparent #21a1d8 #21a1d8 !important;
}
.button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-primary.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #21a1d8;
  box-shadow: none;
  color: #21a1d8;
}
.button.is-primary.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #21a1d8;
}
.button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #21a1d8 #21a1d8 !important;
}
.button.is-primary.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}
.button.is-primary.is-light {
  background-color: #edf8fc;
  color: #1a7da8;
}
.button.is-primary.is-light:hover, .button.is-primary.is-light.is-hovered {
  background-color: #e2f3fb;
  border-color: transparent;
  color: #1a7da8;
}
.button.is-primary.is-light:active, .button.is-primary.is-light.is-active {
  background-color: #d7eff9;
  border-color: transparent;
  color: #1a7da8;
}
.button.is-link {
  background-color: #21a1d8;
  border-color: transparent;
  color: #fff;
}
.button.is-link:hover, .button.is-link.is-hovered {
  background-color: #1f99cd;
  border-color: transparent;
  color: #fff;
}
.button.is-link:focus, .button.is-link.is-focused {
  border-color: transparent;
  color: #fff;
}
.button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) {
  box-shadow: 0 rgba(33, 161, 216, 0.25);
}
.button.is-link:active, .button.is-link.is-active {
  background-color: #1e91c2;
  border-color: transparent;
  color: #fff;
}
.button.is-link[disabled], fieldset[disabled] .button.is-link {
  background-color: #21a1d8;
  border-color: transparent;
  box-shadow: none;
}
.button.is-link.is-inverted {
  background-color: #fff;
  color: #21a1d8;
}
.button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-link.is-inverted[disabled], fieldset[disabled] .button.is-link.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #21a1d8;
}
.button.is-link.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-link.is-outlined {
  background-color: transparent;
  border-color: #21a1d8;
  color: #21a1d8;
}
.button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused {
  background-color: #21a1d8;
  border-color: #21a1d8;
  color: #fff;
}
.button.is-link.is-outlined.is-loading::after {
  border-color: transparent transparent #21a1d8 #21a1d8 !important;
}
.button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-link.is-outlined[disabled], fieldset[disabled] .button.is-link.is-outlined {
  background-color: transparent;
  border-color: #21a1d8;
  box-shadow: none;
  color: #21a1d8;
}
.button.is-link.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #21a1d8;
}
.button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #21a1d8 #21a1d8 !important;
}
.button.is-link.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-link.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}
.button.is-link.is-light {
  background-color: #edf8fc;
  color: #1a7da8;
}
.button.is-link.is-light:hover, .button.is-link.is-light.is-hovered {
  background-color: #e2f3fb;
  border-color: transparent;
  color: #1a7da8;
}
.button.is-link.is-light:active, .button.is-link.is-light.is-active {
  background-color: #d7eff9;
  border-color: transparent;
  color: #1a7da8;
}
.button.is-info {
  background-color: #3298dc;
  border-color: transparent;
  color: #fff;
}
.button.is-info:hover, .button.is-info.is-hovered {
  background-color: #2793da;
  border-color: transparent;
  color: #fff;
}
.button.is-info:focus, .button.is-info.is-focused {
  border-color: transparent;
  color: #fff;
}
.button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) {
  box-shadow: 0 rgba(50, 152, 220, 0.25);
}
.button.is-info:active, .button.is-info.is-active {
  background-color: #238cd1;
  border-color: transparent;
  color: #fff;
}
.button.is-info[disabled], fieldset[disabled] .button.is-info {
  background-color: #3298dc;
  border-color: transparent;
  box-shadow: none;
}
.button.is-info.is-inverted {
  background-color: #fff;
  color: #3298dc;
}
.button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-info.is-inverted[disabled], fieldset[disabled] .button.is-info.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #3298dc;
}
.button.is-info.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-info.is-outlined {
  background-color: transparent;
  border-color: #3298dc;
  color: #3298dc;
}
.button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused {
  background-color: #3298dc;
  border-color: #3298dc;
  color: #fff;
}
.button.is-info.is-outlined.is-loading::after {
  border-color: transparent transparent #3298dc #3298dc !important;
}
.button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-info.is-outlined[disabled], fieldset[disabled] .button.is-info.is-outlined {
  background-color: transparent;
  border-color: #3298dc;
  box-shadow: none;
  color: #3298dc;
}
.button.is-info.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #3298dc;
}
.button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #3298dc #3298dc !important;
}
.button.is-info.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-info.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}
.button.is-info.is-light {
  background-color: #eef6fc;
  color: #1d72aa;
}
.button.is-info.is-light:hover, .button.is-info.is-light.is-hovered {
  background-color: #e3f1fa;
  border-color: transparent;
  color: #1d72aa;
}
.button.is-info.is-light:active, .button.is-info.is-light.is-active {
  background-color: #d8ebf8;
  border-color: transparent;
  color: #1d72aa;
}
.button.is-success {
  background-color: #48c774;
  border-color: transparent;
  color: #fff;
}
.button.is-success:hover, .button.is-success.is-hovered {
  background-color: #3ec46d;
  border-color: transparent;
  color: #fff;
}
.button.is-success:focus, .button.is-success.is-focused {
  border-color: transparent;
  color: #fff;
}
.button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) {
  box-shadow: 0 rgba(72, 199, 116, 0.25);
}
.button.is-success:active, .button.is-success.is-active {
  background-color: #3abb67;
  border-color: transparent;
  color: #fff;
}
.button.is-success[disabled], fieldset[disabled] .button.is-success {
  background-color: #48c774;
  border-color: transparent;
  box-shadow: none;
}
.button.is-success.is-inverted {
  background-color: #fff;
  color: #48c774;
}
.button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-success.is-inverted[disabled], fieldset[disabled] .button.is-success.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #48c774;
}
.button.is-success.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-success.is-outlined {
  background-color: transparent;
  border-color: #48c774;
  color: #48c774;
}
.button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused {
  background-color: #48c774;
  border-color: #48c774;
  color: #fff;
}
.button.is-success.is-outlined.is-loading::after {
  border-color: transparent transparent #48c774 #48c774 !important;
}
.button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-success.is-outlined[disabled], fieldset[disabled] .button.is-success.is-outlined {
  background-color: transparent;
  border-color: #48c774;
  box-shadow: none;
  color: #48c774;
}
.button.is-success.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #48c774;
}
.button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #48c774 #48c774 !important;
}
.button.is-success.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-success.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}
.button.is-success.is-light {
  background-color: #effaf3;
  color: #257942;
}
.button.is-success.is-light:hover, .button.is-success.is-light.is-hovered {
  background-color: #e6f7ec;
  border-color: transparent;
  color: #257942;
}
.button.is-success.is-light:active, .button.is-success.is-light.is-active {
  background-color: #dcf4e4;
  border-color: transparent;
  color: #257942;
}
.button.is-warning {
  background-color: #ffdd57;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning:hover, .button.is-warning.is-hovered {
  background-color: #ffdb4a;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning:focus, .button.is-warning.is-focused {
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) {
  box-shadow: 0 rgba(255, 221, 87, 0.25);
}
.button.is-warning:active, .button.is-warning.is-active {
  background-color: #ffd83d;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning[disabled], fieldset[disabled] .button.is-warning {
  background-color: #ffdd57;
  border-color: transparent;
  box-shadow: none;
}
.button.is-warning.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}
.button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered {
  background-color: rgba(0, 0, 0, 0.7);
}
.button.is-warning.is-inverted[disabled], fieldset[disabled] .button.is-warning.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: transparent;
  box-shadow: none;
  color: #ffdd57;
}
.button.is-warning.is-loading::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}
.button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #ffdd57;
  color: #ffdd57;
}
.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning.is-outlined.is-loading::after {
  border-color: transparent transparent #ffdd57 #ffdd57 !important;
}
.button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}
.button.is-warning.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #ffdd57;
  box-shadow: none;
  color: #ffdd57;
}
.button.is-warning.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}
.button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #ffdd57 #ffdd57 !important;
}
.button.is-warning.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}
.button.is-warning.is-light {
  background-color: #fffbeb;
  color: #947600;
}
.button.is-warning.is-light:hover, .button.is-warning.is-light.is-hovered {
  background-color: #fff8de;
  border-color: transparent;
  color: #947600;
}
.button.is-warning.is-light:active, .button.is-warning.is-light.is-active {
  background-color: #fff6d1;
  border-color: transparent;
  color: #947600;
}
.button.is-danger {
  background-color: #d63737;
  border-color: transparent;
  color: #fff;
}
.button.is-danger:hover, .button.is-danger.is-hovered {
  background-color: #d42c2c;
  border-color: transparent;
  color: #fff;
}
.button.is-danger:focus, .button.is-danger.is-focused {
  border-color: transparent;
  color: #fff;
}
.button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) {
  box-shadow: 0 rgba(214, 55, 55, 0.25);
}
.button.is-danger:active, .button.is-danger.is-active {
  background-color: #ca2929;
  border-color: transparent;
  color: #fff;
}
.button.is-danger[disabled], fieldset[disabled] .button.is-danger {
  background-color: #d63737;
  border-color: transparent;
  box-shadow: none;
}
.button.is-danger.is-inverted {
  background-color: #fff;
  color: #d63737;
}
.button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered {
  background-color: #f2f2f2;
}
.button.is-danger.is-inverted[disabled], fieldset[disabled] .button.is-danger.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #d63737;
}
.button.is-danger.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #d63737;
  color: #d63737;
}
.button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused {
  background-color: #d63737;
  border-color: #d63737;
  color: #fff;
}
.button.is-danger.is-outlined.is-loading::after {
  border-color: transparent transparent #d63737 #d63737 !important;
}
.button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}
.button.is-danger.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #d63737;
  box-shadow: none;
  color: #d63737;
}
.button.is-danger.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #d63737;
}
.button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #d63737 #d63737 !important;
}
.button.is-danger.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}
.button.is-danger.is-light {
  background-color: #fceeee;
  color: #c32828;
}
.button.is-danger.is-light:hover, .button.is-danger.is-light.is-hovered {
  background-color: #f9e3e3;
  border-color: transparent;
  color: #c32828;
}
.button.is-danger.is-light:active, .button.is-danger.is-light.is-active {
  background-color: #f7d9d9;
  border-color: transparent;
  color: #c32828;
}
.button.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}
.button.is-normal {
  font-size: 1rem;
}
.button.is-medium {
  font-size: 1.25rem;
}
.button.is-large {
  font-size: 1.5rem;
}
.button[disabled], fieldset[disabled] .button {
  background-color: white;
  border-color: #dbdbdb;
  box-shadow: none;
  opacity: 0.5;
}
.button.is-fullwidth {
  display: flex;
  width: 100%;
}
.button.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.button.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}
.button.is-static {
  background-color: whitesmoke;
  border-color: #dbdbdb;
  color: #7a7a7a;
  box-shadow: none;
  pointer-events: none;
}
.button.is-rounded {
  border-radius: 290486px;
  padding-left: calc(1em + 0.25em);
  padding-right: calc(1em + 0.25em);
}

.buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.buttons .button {
  margin-bottom: 0.5rem;
}
.buttons .button:not(:last-child):not(.is-fullwidth) {
  margin-right: 0.5rem;
}
.buttons:last-child {
  margin-bottom: -0.5rem;
}
.buttons:not(:last-child) {
  margin-bottom: 1rem;
}
.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
  border-radius: 2px;
  font-size: 0.75rem;
}
.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) {
  font-size: 1.25rem;
}
.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) {
  font-size: 1.5rem;
}
.buttons.has-addons .button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.buttons.has-addons .button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}
.buttons.has-addons .button:last-child {
  margin-right: 0;
}
.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
  z-index: 2;
}
.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
  z-index: 3;
}
.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
  z-index: 4;
}
.buttons.has-addons .button.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.buttons.is-centered {
  justify-content: center;
}
.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.buttons.is-right {
  justify-content: flex-end;
}
.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.container {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
}
.container.is-fluid {
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 1215px) {
  .container.is-widescreen {
    max-width: 1152px;
  }
}
@media screen and (max-width: 1407px) {
  .container.is-fullhd {
    max-width: 1344px;
  }
}
@media screen and (min-width: 1216px) {
  .container {
    max-width: 1152px;
  }
}
@media screen and (min-width: 1408px) {
  .container {
    max-width: 1344px;
  }
}

.content li + li {
  margin-top: 0.25em;
}
.content p:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content ul:not(:last-child),
.content blockquote:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child) {
  margin-bottom: 1em;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: inherit;
  font-weight: 600;
  line-height: 1.125;
}
.content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.content h1:not(:first-child) {
  margin-top: 1em;
}
.content h2 {
  font-size: 1.75em;
  margin-bottom: 0.5714em;
}
.content h2:not(:first-child) {
  margin-top: 1.1428em;
}
.content h3 {
  font-size: 1.5em;
  margin-bottom: 0.6666em;
}
.content h3:not(:first-child) {
  margin-top: 1.3333em;
}
.content h4 {
  font-size: 1.25em;
  margin-bottom: 0.8em;
}
.content h5 {
  font-size: 1.125em;
  margin-bottom: 0.8888em;
}
.content h6 {
  font-size: 1em;
  margin-bottom: 1em;
}
.content blockquote {
  background-color: whitesmoke;
  border-left: 5px solid #dbdbdb;
  padding: 1.25em 1.5em;
}
.content ol {
  list-style-position: outside;
  margin-left: 2em;
  margin-top: 1em;
}
.content ol:not([type]) {
  list-style-type: decimal;
}
.content ol:not([type]).is-lower-alpha {
  list-style-type: lower-alpha;
}
.content ol:not([type]).is-lower-roman {
  list-style-type: lower-roman;
}
.content ol:not([type]).is-upper-alpha {
  list-style-type: upper-alpha;
}
.content ol:not([type]).is-upper-roman {
  list-style-type: upper-roman;
}
.content ul {
  list-style: disc outside;
  margin-left: 2em;
  margin-top: 1em;
}
.content ul ul {
  list-style-type: circle;
  margin-top: 0.5em;
}
.content ul ul ul {
  list-style-type: square;
}
.content dd {
  margin-left: 2em;
}
.content figure {
  margin-left: 2em;
  margin-right: 2em;
  text-align: center;
}
.content figure:not(:first-child) {
  margin-top: 2em;
}
.content figure:not(:last-child) {
  margin-bottom: 2em;
}
.content figure img {
  display: inline-block;
}
.content figure figcaption {
  font-style: italic;
}
.content pre {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 1.25em 1.5em;
  white-space: pre;
  word-wrap: normal;
}
.content sup,
.content sub {
  font-size: 75%;
}
.content table {
  width: 100%;
}
.content table td,
.content table th {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}
.content table th {
  color: inherit;
}
.content table th:not([align]) {
  text-align: left;
}
.content table thead td,
.content table thead th {
  border-width: 0 0 2px;
  color: inherit;
}
.content table tfoot td,
.content table tfoot th {
  border-width: 2px 0 0;
  color: inherit;
}
.content table tbody tr:last-child td,
.content table tbody tr:last-child th {
  border-bottom-width: 0;
}
.content .tabs li + li {
  margin-top: 0;
}
.content.is-small {
  font-size: 0.75rem;
}
.content.is-medium {
  font-size: 1.25rem;
}
.content.is-large {
  font-size: 1.5rem;
}

.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}
.icon.is-small {
  height: 1rem;
  width: 1rem;
}
.icon.is-medium {
  height: 2rem;
  width: 2rem;
}
.icon.is-large {
  height: 3rem;
  width: 3rem;
}

.image {
  display: block;
  position: relative;
}
.image img {
  display: block;
  height: auto;
  width: 100%;
}
.image img.is-rounded {
  border-radius: 290486px;
}
.image.is-fullwidth {
  width: 100%;
}
.image.is-square img,
.image.is-square .has-ratio, .image.is-1by1 img,
.image.is-1by1 .has-ratio, .image.is-5by4 img,
.image.is-5by4 .has-ratio, .image.is-4by3 img,
.image.is-4by3 .has-ratio, .image.is-3by2 img,
.image.is-3by2 .has-ratio, .image.is-5by3 img,
.image.is-5by3 .has-ratio, .image.is-16by9 img,
.image.is-16by9 .has-ratio, .image.is-2by1 img,
.image.is-2by1 .has-ratio, .image.is-3by1 img,
.image.is-3by1 .has-ratio, .image.is-4by5 img,
.image.is-4by5 .has-ratio, .image.is-3by4 img,
.image.is-3by4 .has-ratio, .image.is-2by3 img,
.image.is-2by3 .has-ratio, .image.is-3by5 img,
.image.is-3by5 .has-ratio, .image.is-9by16 img,
.image.is-9by16 .has-ratio, .image.is-1by2 img,
.image.is-1by2 .has-ratio, .image.is-1by3 img,
.image.is-1by3 .has-ratio {
  height: 100%;
  width: 100%;
}
.image.is-square, .image.is-1by1 {
  padding-top: 100%;
}
.image.is-5by4 {
  padding-top: 80%;
}
.image.is-4by3 {
  padding-top: 75%;
}
.image.is-3by2 {
  padding-top: 66.6666%;
}
.image.is-5by3 {
  padding-top: 60%;
}
.image.is-16by9 {
  padding-top: 56.25%;
}
.image.is-2by1 {
  padding-top: 50%;
}
.image.is-3by1 {
  padding-top: 33.3333%;
}
.image.is-4by5 {
  padding-top: 125%;
}
.image.is-3by4 {
  padding-top: 133.3333%;
}
.image.is-2by3 {
  padding-top: 150%;
}
.image.is-3by5 {
  padding-top: 166.6666%;
}
.image.is-9by16 {
  padding-top: 177.7777%;
}
.image.is-1by2 {
  padding-top: 200%;
}
.image.is-1by3 {
  padding-top: 300%;
}
.image.is-16x16 {
  height: 16px;
  width: 16px;
}
.image.is-24x24 {
  height: 24px;
  width: 24px;
}
.image.is-32x32 {
  height: 32px;
  width: 32px;
}
.image.is-48x48 {
  height: 48px;
  width: 48px;
}
.image.is-64x64 {
  height: 64px;
  width: 64px;
}
.image.is-96x96 {
  height: 96px;
  width: 96px;
}
.image.is-128x128 {
  height: 128px;
  width: 128px;
}

.notification {
  background-color: whitesmoke;
  border-radius: 4px;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  position: relative;
}
.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}
.notification strong {
  color: currentColor;
}
.notification code,
.notification pre {
  background: white;
}
.notification pre code {
  background: transparent;
}
.notification > .delete {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
.notification .title,
.notification .subtitle,
.notification .content {
  color: currentColor;
}
.notification.is-white {
  background-color: white;
  color: #0a0a0a;
}
.notification.is-black {
  background-color: #0a0a0a;
  color: white;
}
.notification.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.notification.is-dark {
  background-color: #999999;
  color: #fff;
}
.notification.is-primary {
  background-color: #21a1d8;
  color: #fff;
}
.notification.is-link {
  background-color: #21a1d8;
  color: #fff;
}
.notification.is-info {
  background-color: #3298dc;
  color: #fff;
}
.notification.is-success {
  background-color: #48c774;
  color: #fff;
}
.notification.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.notification.is-danger {
  background-color: #d63737;
  color: #fff;
}

.progress {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 290486px;
  display: block;
  height: 1rem;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.progress::-webkit-progress-bar {
  background-color: #fcfcfcea;
}
.progress::-webkit-progress-value {
  background-color: #666666;
}
.progress::-moz-progress-bar {
  background-color: #666666;
}
.progress::-ms-fill {
  background-color: #666666;
  border: none;
}
.progress.is-white::-webkit-progress-value {
  background-color: white;
}
.progress.is-white::-moz-progress-bar {
  background-color: white;
}
.progress.is-white::-ms-fill {
  background-color: white;
}
.progress.is-white:indeterminate {
  background-image: linear-gradient(to right, white 30%, #fcfcfcea 30%);
}
.progress.is-black::-webkit-progress-value {
  background-color: #0a0a0a;
}
.progress.is-black::-moz-progress-bar {
  background-color: #0a0a0a;
}
.progress.is-black::-ms-fill {
  background-color: #0a0a0a;
}
.progress.is-black:indeterminate {
  background-image: linear-gradient(to right, #0a0a0a 30%, #fcfcfcea 30%);
}
.progress.is-light::-webkit-progress-value {
  background-color: whitesmoke;
}
.progress.is-light::-moz-progress-bar {
  background-color: whitesmoke;
}
.progress.is-light::-ms-fill {
  background-color: whitesmoke;
}
.progress.is-light:indeterminate {
  background-image: linear-gradient(to right, whitesmoke 30%, #fcfcfcea 30%);
}
.progress.is-dark::-webkit-progress-value {
  background-color: #999999;
}
.progress.is-dark::-moz-progress-bar {
  background-color: #999999;
}
.progress.is-dark::-ms-fill {
  background-color: #999999;
}
.progress.is-dark:indeterminate {
  background-image: linear-gradient(to right, #999999 30%, #fcfcfcea 30%);
}
.progress.is-primary::-webkit-progress-value {
  background-color: #21a1d8;
}
.progress.is-primary::-moz-progress-bar {
  background-color: #21a1d8;
}
.progress.is-primary::-ms-fill {
  background-color: #21a1d8;
}
.progress.is-primary:indeterminate {
  background-image: linear-gradient(to right, #21a1d8 30%, #fcfcfcea 30%);
}
.progress.is-link::-webkit-progress-value {
  background-color: #21a1d8;
}
.progress.is-link::-moz-progress-bar {
  background-color: #21a1d8;
}
.progress.is-link::-ms-fill {
  background-color: #21a1d8;
}
.progress.is-link:indeterminate {
  background-image: linear-gradient(to right, #21a1d8 30%, #fcfcfcea 30%);
}
.progress.is-info::-webkit-progress-value {
  background-color: #3298dc;
}
.progress.is-info::-moz-progress-bar {
  background-color: #3298dc;
}
.progress.is-info::-ms-fill {
  background-color: #3298dc;
}
.progress.is-info:indeterminate {
  background-image: linear-gradient(to right, #3298dc 30%, #fcfcfcea 30%);
}
.progress.is-success::-webkit-progress-value {
  background-color: #48c774;
}
.progress.is-success::-moz-progress-bar {
  background-color: #48c774;
}
.progress.is-success::-ms-fill {
  background-color: #48c774;
}
.progress.is-success:indeterminate {
  background-image: linear-gradient(to right, #48c774 30%, #fcfcfcea 30%);
}
.progress.is-warning::-webkit-progress-value {
  background-color: #ffdd57;
}
.progress.is-warning::-moz-progress-bar {
  background-color: #ffdd57;
}
.progress.is-warning::-ms-fill {
  background-color: #ffdd57;
}
.progress.is-warning:indeterminate {
  background-image: linear-gradient(to right, #ffdd57 30%, #fcfcfcea 30%);
}
.progress.is-danger::-webkit-progress-value {
  background-color: #d63737;
}
.progress.is-danger::-moz-progress-bar {
  background-color: #d63737;
}
.progress.is-danger::-ms-fill {
  background-color: #d63737;
}
.progress.is-danger:indeterminate {
  background-image: linear-gradient(to right, #d63737 30%, #fcfcfcea 30%);
}
.progress:indeterminate {
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: moveIndeterminate;
  animation-timing-function: linear;
  background-color: #fcfcfcea;
  background-image: linear-gradient(to right, #666666 30%, #fcfcfcea 30%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
}
.progress:indeterminate::-webkit-progress-bar {
  background-color: transparent;
}
.progress:indeterminate::-moz-progress-bar {
  background-color: transparent;
}
.progress.is-small {
  height: 0.75rem;
}
.progress.is-medium {
  height: 1.25rem;
}
.progress.is-large {
  height: 1.5rem;
}

@keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.table {
  background-color: white;
  color: inherit;
}
.table td,
.table th {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}
.table td.is-white,
.table th.is-white {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}
.table td.is-black,
.table th.is-black {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}
.table td.is-light,
.table th.is-light {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.table td.is-dark,
.table th.is-dark {
  background-color: #999999;
  border-color: #999999;
  color: #fff;
}
.table td.is-primary,
.table th.is-primary {
  background-color: #21a1d8;
  border-color: #21a1d8;
  color: #fff;
}
.table td.is-link,
.table th.is-link {
  background-color: #21a1d8;
  border-color: #21a1d8;
  color: #fff;
}
.table td.is-info,
.table th.is-info {
  background-color: #3298dc;
  border-color: #3298dc;
  color: #fff;
}
.table td.is-success,
.table th.is-success {
  background-color: #48c774;
  border-color: #48c774;
  color: #fff;
}
.table td.is-warning,
.table th.is-warning {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.table td.is-danger,
.table th.is-danger {
  background-color: #d63737;
  border-color: #d63737;
  color: #fff;
}
.table td.is-narrow,
.table th.is-narrow {
  white-space: nowrap;
  width: 1%;
}
.table td.is-selected,
.table th.is-selected {
  background-color: #21a1d8;
  color: #fff;
}
.table td.is-selected a,
.table td.is-selected strong,
.table th.is-selected a,
.table th.is-selected strong {
  color: currentColor;
}
.table th {
  color: inherit;
}
.table th:not([align]) {
  text-align: left;
}
.table tr.is-selected {
  background-color: #21a1d8;
  color: #fff;
}
.table tr.is-selected a,
.table tr.is-selected strong {
  color: currentColor;
}
.table tr.is-selected td,
.table tr.is-selected th {
  border-color: #fff;
  color: currentColor;
}
.table thead {
  background-color: transparent;
}
.table thead td,
.table thead th {
  border-width: 0 0 2px;
  color: inherit;
}
.table tfoot {
  background-color: transparent;
}
.table tfoot td,
.table tfoot th {
  border-width: 2px 0 0;
  color: inherit;
}
.table tbody {
  background-color: transparent;
}
.table tbody tr:last-child td,
.table tbody tr:last-child th {
  border-bottom-width: 0;
}
.table.is-bordered td,
.table.is-bordered th {
  border-width: 1px;
}
.table.is-bordered tr:last-child td,
.table.is-bordered tr:last-child th {
  border-bottom-width: 1px;
}
.table.is-fullwidth {
  width: 100%;
}
.table.is-hoverable tbody tr:not(.is-selected):hover {
  background-color: #fafafa;
}
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
  background-color: #fafafa;
}
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
  background-color: whitesmoke;
}
.table.is-narrow td,
.table.is-narrow th {
  padding: 0.25em 0.5em;
}
.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
  background-color: #fafafa;
}

.table-container {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  overflow-y: hidden;
  max-width: 100%;
}

.tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.tags .tag {
  margin-bottom: 0.5rem;
}
.tags .tag:not(:last-child) {
  margin-right: 0.5rem;
}
.tags:last-child {
  margin-bottom: -0.5rem;
}
.tags:not(:last-child) {
  margin-bottom: 1rem;
}
.tags.are-medium .tag:not(.is-normal):not(.is-large) {
  font-size: 1rem;
}
.tags.are-large .tag:not(.is-normal):not(.is-medium) {
  font-size: 1.25rem;
}
.tags.is-centered {
  justify-content: center;
}
.tags.is-centered .tag {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.tags.is-right {
  justify-content: flex-end;
}
.tags.is-right .tag:not(:first-child) {
  margin-left: 0.5rem;
}
.tags.is-right .tag:not(:last-child) {
  margin-right: 0;
}
.tags.has-addons .tag {
  margin-right: 0;
}
.tags.has-addons .tag:not(:first-child) {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.tags.has-addons .tag:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.tag:not(body) {
  align-items: center;
  background-color: whitesmoke;
  border-radius: 4px;
  color: #666666;
  display: inline-flex;
  font-size: 0.75rem;
  height: 2em;
  justify-content: center;
  line-height: 1.5;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}
.tag:not(body) .delete {
  margin-left: 0.25rem;
  margin-right: -0.375rem;
}
.tag:not(body).is-white {
  background-color: white;
  color: #0a0a0a;
}
.tag:not(body).is-black {
  background-color: #0a0a0a;
  color: white;
}
.tag:not(body).is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.tag:not(body).is-dark {
  background-color: #999999;
  color: #fff;
}
.tag:not(body).is-primary {
  background-color: #21a1d8;
  color: #fff;
}
.tag:not(body).is-primary.is-light {
  background-color: #edf8fc;
  color: #1a7da8;
}
.tag:not(body).is-link {
  background-color: #21a1d8;
  color: #fff;
}
.tag:not(body).is-link.is-light {
  background-color: #edf8fc;
  color: #1a7da8;
}
.tag:not(body).is-info {
  background-color: #3298dc;
  color: #fff;
}
.tag:not(body).is-info.is-light {
  background-color: #eef6fc;
  color: #1d72aa;
}
.tag:not(body).is-success {
  background-color: #48c774;
  color: #fff;
}
.tag:not(body).is-success.is-light {
  background-color: #effaf3;
  color: #257942;
}
.tag:not(body).is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.tag:not(body).is-warning.is-light {
  background-color: #fffbeb;
  color: #947600;
}
.tag:not(body).is-danger {
  background-color: #d63737;
  color: #fff;
}
.tag:not(body).is-danger.is-light {
  background-color: #fceeee;
  color: #c32828;
}
.tag:not(body).is-normal {
  font-size: 0.75rem;
}
.tag:not(body).is-medium {
  font-size: 1rem;
}
.tag:not(body).is-large {
  font-size: 1.25rem;
}
.tag:not(body) .icon:first-child:not(:last-child) {
  margin-left: -0.375em;
  margin-right: 0.1875em;
}
.tag:not(body) .icon:last-child:not(:first-child) {
  margin-left: 0.1875em;
  margin-right: -0.375em;
}
.tag:not(body) .icon:first-child:last-child {
  margin-left: -0.375em;
  margin-right: -0.375em;
}
.tag:not(body).is-delete {
  margin-left: 1px;
  padding: 0;
  position: relative;
  width: 2em;
}
.tag:not(body).is-delete::before, .tag:not(body).is-delete::after {
  background-color: currentColor;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}
.tag:not(body).is-delete::before {
  height: 1px;
  width: 50%;
}
.tag:not(body).is-delete::after {
  height: 50%;
  width: 1px;
}
.tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus {
  background-color: #e8e8e8;
}
.tag:not(body).is-delete:active {
  background-color: #dbdbdb;
}
.tag:not(body).is-rounded {
  border-radius: 290486px;
}

a.tag:hover {
  text-decoration: underline;
}

.title,
.subtitle {
  word-break: break-word;
}
.title em,
.title span,
.subtitle em,
.subtitle span {
  font-weight: inherit;
}
.title sub,
.subtitle sub {
  font-size: 0.75em;
}
.title sup,
.subtitle sup {
  font-size: 0.75em;
}
.title .tag,
.subtitle .tag {
  vertical-align: middle;
}

.title {
  color: inherit;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
}
.title strong {
  color: inherit;
  font-weight: inherit;
}
.title + .highlight {
  margin-top: -0.75rem;
}
.title:not(.is-spaced) + .subtitle {
  margin-top: -1.25rem;
}
.title.is-1 {
  font-size: 3rem;
}
.title.is-2 {
  font-size: 2.5rem;
}
.title.is-3 {
  font-size: 2rem;
}
.title.is-4 {
  font-size: 1.5rem;
}
.title.is-5 {
  font-size: 1.25rem;
}
.title.is-6 {
  font-size: 1rem;
}
.title.is-7 {
  font-size: 0.75rem;
}

.subtitle {
  color: #666666;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}
.subtitle strong {
  color: inherit;
  font-weight: 600;
}
.subtitle:not(.is-spaced) + .title {
  margin-top: -1.25rem;
}
.subtitle.is-1 {
  font-size: 3rem;
}
.subtitle.is-2 {
  font-size: 2.5rem;
}
.subtitle.is-3 {
  font-size: 2rem;
}
.subtitle.is-4 {
  font-size: 1.5rem;
}
.subtitle.is-5 {
  font-size: 1.25rem;
}
.subtitle.is-6 {
  font-size: 1rem;
}
.subtitle.is-7 {
  font-size: 0.75rem;
}

.heading {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.highlight {
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}
.highlight pre {
  overflow: auto;
  max-width: 100%;
}

.number {
  align-items: center;
  background-color: whitesmoke;
  border-radius: 290486px;
  display: inline-flex;
  font-size: 1.25rem;
  height: 2em;
  justify-content: center;
  margin-right: 1.5rem;
  min-width: 2.5em;
  padding: 0.25rem 0.5rem;
  text-align: center;
  vertical-align: top;
}

.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}
.breadcrumb a {
  align-items: center;
  color: #21a1d8;
  display: flex;
  justify-content: center;
  padding: 0 0.75em;
}
.breadcrumb a:hover {
  color: #257EBA;
}
.breadcrumb li {
  align-items: center;
  display: flex;
}
.breadcrumb li:first-child a {
  padding-left: 0;
}
.breadcrumb li.is-active a {
  color: inherit;
  cursor: default;
  pointer-events: none;
}
.breadcrumb li + li::before {
  color: #ededed;
  content: "/";
}
.breadcrumb ul,
.breadcrumb ol {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.breadcrumb .icon:first-child {
  margin-right: 0.5em;
}
.breadcrumb .icon:last-child {
  margin-left: 0.5em;
}
.breadcrumb.is-centered ol,
.breadcrumb.is-centered ul {
  justify-content: center;
}
.breadcrumb.is-right ol,
.breadcrumb.is-right ul {
  justify-content: flex-end;
}
.breadcrumb.is-small {
  font-size: 0.75rem;
}
.breadcrumb.is-medium {
  font-size: 1.25rem;
}
.breadcrumb.is-large {
  font-size: 1.5rem;
}
.breadcrumb.has-arrow-separator li + li::before {
  content: "→";
}
.breadcrumb.has-bullet-separator li + li::before {
  content: "•";
}
.breadcrumb.has-dot-separator li + li::before {
  content: "·";
}
.breadcrumb.has-succeeds-separator li + li::before {
  content: "≻";
}

.card {
  background-color: white;
  box-shadow: none;
  color: #666666;
  max-width: 100%;
  position: relative;
}

.card-header {
  background-color: transparent;
  align-items: stretch;
  box-shadow: none;
  display: flex;
}

.card-header-title {
  align-items: center;
  color: inherit;
  display: flex;
  flex-grow: 1;
  font-weight: 700;
  padding: 0.75rem 1rem;
}
.card-header-title.is-centered {
  justify-content: center;
}

.card-header-icon {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem;
}

.card-image {
  display: block;
  position: relative;
}

.card-content {
  background-color: transparent;
  padding: 1.5rem;
}

.card-footer {
  background-color: transparent;
  border-top: 1px solid #fcfcfcea;
  align-items: stretch;
  display: flex;
}

.card-footer-item {
  align-items: center;
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.75rem;
}
.card-footer-item:not(:last-child) {
  border-right: 1px solid #fcfcfcea;
}

.card .media:not(:last-child) {
  margin-bottom: 1.5rem;
}

.dropdown {
  display: inline-flex;
  position: relative;
  vertical-align: top;
}
.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
  display: block;
}
.dropdown.is-right .dropdown-menu {
  left: auto;
  right: 0;
}
.dropdown.is-up .dropdown-menu {
  bottom: 100%;
  padding-bottom: 4px;
  padding-top: initial;
  top: auto;
}

.dropdown-menu {
  display: none;
  left: 0;
  min-width: 12rem;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  z-index: 20;
}

.dropdown-content {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.dropdown-item {
  color: #666666;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.375rem 1rem;
  position: relative;
}

a.dropdown-item,
button.dropdown-item {
  padding-right: 3rem;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}
a.dropdown-item:hover,
button.dropdown-item:hover {
  background-color: whitesmoke;
  color: #0a0a0a;
}
a.dropdown-item.is-active,
button.dropdown-item.is-active {
  background-color: #21a1d8;
  color: #fff;
}

.dropdown-divider {
  background-color: #fcfcfcea;
  border: none;
  display: block;
  height: 1px;
  margin: 0.5rem 0;
}

.level {
  align-items: center;
  justify-content: space-between;
}
.level code {
  border-radius: 4px;
}
.level img {
  display: inline-block;
  vertical-align: top;
}
.level.is-mobile {
  display: flex;
}
.level.is-mobile .level-left,
.level.is-mobile .level-right {
  display: flex;
}
.level.is-mobile .level-left + .level-right {
  margin-top: 0;
}
.level.is-mobile .level-item:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}
.level.is-mobile .level-item:not(.is-narrow) {
  flex-grow: 1;
}
@media screen and (min-width: 769px), print {
  .level {
    display: flex;
  }
  .level > .level-item:not(.is-narrow) {
    flex-grow: 1;
  }
}

.level-item {
  align-items: center;
  display: flex;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
}
.level-item .title,
.level-item .subtitle {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .level-item:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}

.level-left,
.level-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.level-left .level-item.is-flexible,
.level-right .level-item.is-flexible {
  flex-grow: 1;
}
@media screen and (min-width: 769px), print {
  .level-left .level-item:not(:last-child),
.level-right .level-item:not(:last-child) {
    margin-right: 0.75rem;
  }
}

.level-left {
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .level-left + .level-right {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .level-left {
    display: flex;
  }
}

.level-right {
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 769px), print {
  .level-right {
    display: flex;
  }
}

.list {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.list-item {
  display: block;
  padding: 0.5em 1em;
}
.list-item:not(a) {
  color: #666666;
}
.list-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.list-item:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}
.list-item.is-active {
  background-color: #21a1d8;
  color: #fff;
}

a.list-item {
  background-color: whitesmoke;
  cursor: pointer;
}

.media {
  align-items: flex-start;
  display: flex;
  text-align: left;
}
.media .content:not(:last-child) {
  margin-bottom: 0.75rem;
}
.media .media {
  border-top: 1px solid rgba(219, 219, 219, 0.5);
  display: flex;
  padding-top: 0.75rem;
}
.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
  margin-bottom: 0.5rem;
}
.media .media .media {
  padding-top: 0.5rem;
}
.media .media .media + .media {
  margin-top: 0.5rem;
}
.media + .media {
  border-top: 1px solid rgba(219, 219, 219, 0.5);
  margin-top: 1rem;
  padding-top: 1rem;
}
.media.is-large + .media {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.media-left,
.media-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.media-left {
  margin-right: 1rem;
}

.media-right {
  margin-left: 1rem;
}

.media-content {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .media-content {
    overflow-x: auto;
  }
}
.menu {
  font-size: 1rem;
}
.menu.is-small {
  font-size: 0.75rem;
}
.menu.is-medium {
  font-size: 1.25rem;
}
.menu.is-large {
  font-size: 1.5rem;
}

.menu-list {
  line-height: 1.25;
}
.menu-list a {
  border-radius: 2px;
  color: #666666;
  display: block;
  padding: 0.5em 0.75em;
}
.menu-list a:hover {
  background-color: whitesmoke;
  color: inherit;
}
.menu-list a.is-active {
  background-color: #21a1d8;
  color: #fff;
}
.menu-list li ul {
  border-left: 1px solid #dbdbdb;
  margin: 0.75em;
  padding-left: 0.75em;
}

.menu-label {
  color: #7a7a7a;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-label:not(:first-child) {
  margin-top: 1em;
}
.menu-label:not(:last-child) {
  margin-bottom: 1em;
}

.message {
  background-color: whitesmoke;
  border-radius: 4px;
  font-size: 1rem;
}
.message strong {
  color: currentColor;
}
.message a:not(.button):not(.tag):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}
.message.is-small {
  font-size: 0.75rem;
}
.message.is-medium {
  font-size: 1.25rem;
}
.message.is-large {
  font-size: 1.5rem;
}
.message.is-white {
  background-color: white;
}
.message.is-white .message-header {
  background-color: white;
  color: #0a0a0a;
}
.message.is-white .message-body {
  border-color: white;
}
.message.is-black {
  background-color: #fafafa;
}
.message.is-black .message-header {
  background-color: #0a0a0a;
  color: white;
}
.message.is-black .message-body {
  border-color: #0a0a0a;
}
.message.is-light {
  background-color: #fafafa;
}
.message.is-light .message-header {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.message.is-light .message-body {
  border-color: whitesmoke;
}
.message.is-dark {
  background-color: #fafafa;
}
.message.is-dark .message-header {
  background-color: #999999;
  color: #fff;
}
.message.is-dark .message-body {
  border-color: #999999;
}
.message.is-primary {
  background-color: #edf8fc;
}
.message.is-primary .message-header {
  background-color: #21a1d8;
  color: #fff;
}
.message.is-primary .message-body {
  border-color: #21a1d8;
  color: #1a7da8;
}
.message.is-link {
  background-color: #edf8fc;
}
.message.is-link .message-header {
  background-color: #21a1d8;
  color: #fff;
}
.message.is-link .message-body {
  border-color: #21a1d8;
  color: #1a7da8;
}
.message.is-info {
  background-color: #eef6fc;
}
.message.is-info .message-header {
  background-color: #3298dc;
  color: #fff;
}
.message.is-info .message-body {
  border-color: #3298dc;
  color: #1d72aa;
}
.message.is-success {
  background-color: #effaf3;
}
.message.is-success .message-header {
  background-color: #48c774;
  color: #fff;
}
.message.is-success .message-body {
  border-color: #48c774;
  color: #257942;
}
.message.is-warning {
  background-color: #fffbeb;
}
.message.is-warning .message-header {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.message.is-warning .message-body {
  border-color: #ffdd57;
  color: #947600;
}
.message.is-danger {
  background-color: #fceeee;
}
.message.is-danger .message-header {
  background-color: #d63737;
  color: #fff;
}
.message.is-danger .message-body {
  border-color: #d63737;
  color: #c32828;
}

.message-header {
  align-items: center;
  background-color: #666666;
  border-radius: 4px 4px 0 0;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1.25;
  padding: 0.75em 1em;
  position: relative;
}
.message-header .delete {
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 0.75em;
}
.message-header + .message-body {
  border-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.message-body {
  border-color: #dbdbdb;
  border-radius: 4px;
  border-style: solid;
  border-width: 0 0 0 4px;
  color: #666666;
  padding: 1.25em 1.5em;
}
.message-body code,
.message-body pre {
  background-color: white;
}
.message-body pre code {
  background-color: transparent;
}

.modal {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 40;
}
.modal.is-active {
  display: flex;
}

.modal-background {
  background-color: rgba(10, 10, 10, 0.86);
}

.modal-content,
.modal-card {
  margin: 0 20px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px), print {
  .modal-content,
.modal-card {
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 640px;
  }
}

.modal-close {
  background: none;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px;
}

.modal-card {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  -ms-overflow-y: visible;
}

.modal-card-head,
.modal-card-foot {
  align-items: center;
  background-color: whitesmoke;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
}

.modal-card-head {
  border-bottom: 1px solid #dbdbdb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.modal-card-title {
  color: inherit;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-card-foot {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid #dbdbdb;
}
.modal-card-foot .button:not(:last-child) {
  margin-right: 0.5em;
}

.modal-card-body {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: auto;
  padding: 20px;
}

.navbar {
  background-color: white;
  min-height: 3.25rem;
  position: relative;
  z-index: 30;
}
.navbar.is-white {
  background-color: white;
  color: #0a0a0a;
}
.navbar.is-white .navbar-brand > .navbar-item,
.navbar.is-white .navbar-brand .navbar-link {
  color: #0a0a0a;
}
.navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active,
.navbar.is-white .navbar-brand .navbar-link:focus,
.navbar.is-white .navbar-brand .navbar-link:hover,
.navbar.is-white .navbar-brand .navbar-link.is-active {
  background-color: #f2f2f2;
  color: #0a0a0a;
}
.navbar.is-white .navbar-brand .navbar-link::after {
  border-color: #0a0a0a;
}
.navbar.is-white .navbar-burger {
  color: #0a0a0a;
}
@media screen and (min-width: 1024px) {
  .navbar.is-white .navbar-start > .navbar-item,
.navbar.is-white .navbar-start .navbar-link,
.navbar.is-white .navbar-end > .navbar-item,
.navbar.is-white .navbar-end .navbar-link {
    color: #0a0a0a;
  }
  .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active,
.navbar.is-white .navbar-start .navbar-link:focus,
.navbar.is-white .navbar-start .navbar-link:hover,
.navbar.is-white .navbar-start .navbar-link.is-active,
.navbar.is-white .navbar-end > a.navbar-item:focus,
.navbar.is-white .navbar-end > a.navbar-item:hover,
.navbar.is-white .navbar-end > a.navbar-item.is-active,
.navbar.is-white .navbar-end .navbar-link:focus,
.navbar.is-white .navbar-end .navbar-link:hover,
.navbar.is-white .navbar-end .navbar-link.is-active {
    background-color: #f2f2f2;
    color: #0a0a0a;
  }
  .navbar.is-white .navbar-start .navbar-link::after,
.navbar.is-white .navbar-end .navbar-link::after {
    border-color: #0a0a0a;
  }
  .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #f2f2f2;
    color: #0a0a0a;
  }
  .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
    background-color: white;
    color: #0a0a0a;
  }
}
.navbar.is-black {
  background-color: #0a0a0a;
  color: white;
}
.navbar.is-black .navbar-brand > .navbar-item,
.navbar.is-black .navbar-brand .navbar-link {
  color: white;
}
.navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active,
.navbar.is-black .navbar-brand .navbar-link:focus,
.navbar.is-black .navbar-brand .navbar-link:hover,
.navbar.is-black .navbar-brand .navbar-link.is-active {
  background-color: black;
  color: white;
}
.navbar.is-black .navbar-brand .navbar-link::after {
  border-color: white;
}
.navbar.is-black .navbar-burger {
  color: white;
}
@media screen and (min-width: 1024px) {
  .navbar.is-black .navbar-start > .navbar-item,
.navbar.is-black .navbar-start .navbar-link,
.navbar.is-black .navbar-end > .navbar-item,
.navbar.is-black .navbar-end .navbar-link {
    color: white;
  }
  .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active,
.navbar.is-black .navbar-start .navbar-link:focus,
.navbar.is-black .navbar-start .navbar-link:hover,
.navbar.is-black .navbar-start .navbar-link.is-active,
.navbar.is-black .navbar-end > a.navbar-item:focus,
.navbar.is-black .navbar-end > a.navbar-item:hover,
.navbar.is-black .navbar-end > a.navbar-item.is-active,
.navbar.is-black .navbar-end .navbar-link:focus,
.navbar.is-black .navbar-end .navbar-link:hover,
.navbar.is-black .navbar-end .navbar-link.is-active {
    background-color: black;
    color: white;
  }
  .navbar.is-black .navbar-start .navbar-link::after,
.navbar.is-black .navbar-end .navbar-link::after {
    border-color: white;
  }
  .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: black;
    color: white;
  }
  .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
    background-color: #0a0a0a;
    color: white;
  }
}
.navbar.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-brand > .navbar-item,
.navbar.is-light .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active,
.navbar.is-light .navbar-brand .navbar-link:focus,
.navbar.is-light .navbar-brand .navbar-link:hover,
.navbar.is-light .navbar-brand .navbar-link.is-active {
  background-color: #e8e8e8;
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.navbar.is-light .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 1024px) {
  .navbar.is-light .navbar-start > .navbar-item,
.navbar.is-light .navbar-start .navbar-link,
.navbar.is-light .navbar-end > .navbar-item,
.navbar.is-light .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active,
.navbar.is-light .navbar-start .navbar-link:focus,
.navbar.is-light .navbar-start .navbar-link:hover,
.navbar.is-light .navbar-start .navbar-link.is-active,
.navbar.is-light .navbar-end > a.navbar-item:focus,
.navbar.is-light .navbar-end > a.navbar-item:hover,
.navbar.is-light .navbar-end > a.navbar-item.is-active,
.navbar.is-light .navbar-end .navbar-link:focus,
.navbar.is-light .navbar-end .navbar-link:hover,
.navbar.is-light .navbar-end .navbar-link.is-active {
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-start .navbar-link::after,
.navbar.is-light .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: rgba(0, 0, 0, 0.7);
  }
}
.navbar.is-dark {
  background-color: #999999;
  color: #fff;
}
.navbar.is-dark .navbar-brand > .navbar-item,
.navbar.is-dark .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active,
.navbar.is-dark .navbar-brand .navbar-link:focus,
.navbar.is-dark .navbar-brand .navbar-link:hover,
.navbar.is-dark .navbar-brand .navbar-link.is-active {
  background-color: #8c8c8c;
  color: #fff;
}
.navbar.is-dark .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-dark .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .navbar.is-dark .navbar-start > .navbar-item,
.navbar.is-dark .navbar-start .navbar-link,
.navbar.is-dark .navbar-end > .navbar-item,
.navbar.is-dark .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active,
.navbar.is-dark .navbar-start .navbar-link:focus,
.navbar.is-dark .navbar-start .navbar-link:hover,
.navbar.is-dark .navbar-start .navbar-link.is-active,
.navbar.is-dark .navbar-end > a.navbar-item:focus,
.navbar.is-dark .navbar-end > a.navbar-item:hover,
.navbar.is-dark .navbar-end > a.navbar-item.is-active,
.navbar.is-dark .navbar-end .navbar-link:focus,
.navbar.is-dark .navbar-end .navbar-link:hover,
.navbar.is-dark .navbar-end .navbar-link.is-active {
    background-color: #8c8c8c;
    color: #fff;
  }
  .navbar.is-dark .navbar-start .navbar-link::after,
.navbar.is-dark .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #8c8c8c;
    color: #fff;
  }
  .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
    background-color: #999999;
    color: #fff;
  }
}
.navbar.is-primary {
  background-color: #21a1d8;
  color: #fff;
}
.navbar.is-primary .navbar-brand > .navbar-item,
.navbar.is-primary .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active,
.navbar.is-primary .navbar-brand .navbar-link:focus,
.navbar.is-primary .navbar-brand .navbar-link:hover,
.navbar.is-primary .navbar-brand .navbar-link.is-active {
  background-color: #1e91c2;
  color: #fff;
}
.navbar.is-primary .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-primary .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .navbar.is-primary .navbar-start > .navbar-item,
.navbar.is-primary .navbar-start .navbar-link,
.navbar.is-primary .navbar-end > .navbar-item,
.navbar.is-primary .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active,
.navbar.is-primary .navbar-start .navbar-link:focus,
.navbar.is-primary .navbar-start .navbar-link:hover,
.navbar.is-primary .navbar-start .navbar-link.is-active,
.navbar.is-primary .navbar-end > a.navbar-item:focus,
.navbar.is-primary .navbar-end > a.navbar-item:hover,
.navbar.is-primary .navbar-end > a.navbar-item.is-active,
.navbar.is-primary .navbar-end .navbar-link:focus,
.navbar.is-primary .navbar-end .navbar-link:hover,
.navbar.is-primary .navbar-end .navbar-link.is-active {
    background-color: #1e91c2;
    color: #fff;
  }
  .navbar.is-primary .navbar-start .navbar-link::after,
.navbar.is-primary .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #1e91c2;
    color: #fff;
  }
  .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
    background-color: #21a1d8;
    color: #fff;
  }
}
.navbar.is-link {
  background-color: #21a1d8;
  color: #fff;
}
.navbar.is-link .navbar-brand > .navbar-item,
.navbar.is-link .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active,
.navbar.is-link .navbar-brand .navbar-link:focus,
.navbar.is-link .navbar-brand .navbar-link:hover,
.navbar.is-link .navbar-brand .navbar-link.is-active {
  background-color: #1e91c2;
  color: #fff;
}
.navbar.is-link .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-link .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .navbar.is-link .navbar-start > .navbar-item,
.navbar.is-link .navbar-start .navbar-link,
.navbar.is-link .navbar-end > .navbar-item,
.navbar.is-link .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active,
.navbar.is-link .navbar-start .navbar-link:focus,
.navbar.is-link .navbar-start .navbar-link:hover,
.navbar.is-link .navbar-start .navbar-link.is-active,
.navbar.is-link .navbar-end > a.navbar-item:focus,
.navbar.is-link .navbar-end > a.navbar-item:hover,
.navbar.is-link .navbar-end > a.navbar-item.is-active,
.navbar.is-link .navbar-end .navbar-link:focus,
.navbar.is-link .navbar-end .navbar-link:hover,
.navbar.is-link .navbar-end .navbar-link.is-active {
    background-color: #1e91c2;
    color: #fff;
  }
  .navbar.is-link .navbar-start .navbar-link::after,
.navbar.is-link .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #1e91c2;
    color: #fff;
  }
  .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
    background-color: #21a1d8;
    color: #fff;
  }
}
.navbar.is-info {
  background-color: #3298dc;
  color: #fff;
}
.navbar.is-info .navbar-brand > .navbar-item,
.navbar.is-info .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active,
.navbar.is-info .navbar-brand .navbar-link:focus,
.navbar.is-info .navbar-brand .navbar-link:hover,
.navbar.is-info .navbar-brand .navbar-link.is-active {
  background-color: #238cd1;
  color: #fff;
}
.navbar.is-info .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-info .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .navbar.is-info .navbar-start > .navbar-item,
.navbar.is-info .navbar-start .navbar-link,
.navbar.is-info .navbar-end > .navbar-item,
.navbar.is-info .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active,
.navbar.is-info .navbar-start .navbar-link:focus,
.navbar.is-info .navbar-start .navbar-link:hover,
.navbar.is-info .navbar-start .navbar-link.is-active,
.navbar.is-info .navbar-end > a.navbar-item:focus,
.navbar.is-info .navbar-end > a.navbar-item:hover,
.navbar.is-info .navbar-end > a.navbar-item.is-active,
.navbar.is-info .navbar-end .navbar-link:focus,
.navbar.is-info .navbar-end .navbar-link:hover,
.navbar.is-info .navbar-end .navbar-link.is-active {
    background-color: #238cd1;
    color: #fff;
  }
  .navbar.is-info .navbar-start .navbar-link::after,
.navbar.is-info .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #238cd1;
    color: #fff;
  }
  .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
    background-color: #3298dc;
    color: #fff;
  }
}
.navbar.is-success {
  background-color: #48c774;
  color: #fff;
}
.navbar.is-success .navbar-brand > .navbar-item,
.navbar.is-success .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active,
.navbar.is-success .navbar-brand .navbar-link:focus,
.navbar.is-success .navbar-brand .navbar-link:hover,
.navbar.is-success .navbar-brand .navbar-link.is-active {
  background-color: #3abb67;
  color: #fff;
}
.navbar.is-success .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-success .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .navbar.is-success .navbar-start > .navbar-item,
.navbar.is-success .navbar-start .navbar-link,
.navbar.is-success .navbar-end > .navbar-item,
.navbar.is-success .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active,
.navbar.is-success .navbar-start .navbar-link:focus,
.navbar.is-success .navbar-start .navbar-link:hover,
.navbar.is-success .navbar-start .navbar-link.is-active,
.navbar.is-success .navbar-end > a.navbar-item:focus,
.navbar.is-success .navbar-end > a.navbar-item:hover,
.navbar.is-success .navbar-end > a.navbar-item.is-active,
.navbar.is-success .navbar-end .navbar-link:focus,
.navbar.is-success .navbar-end .navbar-link:hover,
.navbar.is-success .navbar-end .navbar-link.is-active {
    background-color: #3abb67;
    color: #fff;
  }
  .navbar.is-success .navbar-start .navbar-link::after,
.navbar.is-success .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #3abb67;
    color: #fff;
  }
  .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
    background-color: #48c774;
    color: #fff;
  }
}
.navbar.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand > .navbar-item,
.navbar.is-warning .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active,
.navbar.is-warning .navbar-brand .navbar-link:focus,
.navbar.is-warning .navbar-brand .navbar-link:hover,
.navbar.is-warning .navbar-brand .navbar-link.is-active {
  background-color: #ffd83d;
  color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 1024px) {
  .navbar.is-warning .navbar-start > .navbar-item,
.navbar.is-warning .navbar-start .navbar-link,
.navbar.is-warning .navbar-end > .navbar-item,
.navbar.is-warning .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active,
.navbar.is-warning .navbar-start .navbar-link:focus,
.navbar.is-warning .navbar-start .navbar-link:hover,
.navbar.is-warning .navbar-start .navbar-link.is-active,
.navbar.is-warning .navbar-end > a.navbar-item:focus,
.navbar.is-warning .navbar-end > a.navbar-item:hover,
.navbar.is-warning .navbar-end > a.navbar-item.is-active,
.navbar.is-warning .navbar-end .navbar-link:focus,
.navbar.is-warning .navbar-end .navbar-link:hover,
.navbar.is-warning .navbar-end .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-start .navbar-link::after,
.navbar.is-warning .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
  }
}
.navbar.is-danger {
  background-color: #d63737;
  color: #fff;
}
.navbar.is-danger .navbar-brand > .navbar-item,
.navbar.is-danger .navbar-brand .navbar-link {
  color: #fff;
}
.navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active,
.navbar.is-danger .navbar-brand .navbar-link:focus,
.navbar.is-danger .navbar-brand .navbar-link:hover,
.navbar.is-danger .navbar-brand .navbar-link.is-active {
  background-color: #ca2929;
  color: #fff;
}
.navbar.is-danger .navbar-brand .navbar-link::after {
  border-color: #fff;
}
.navbar.is-danger .navbar-burger {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .navbar.is-danger .navbar-start > .navbar-item,
.navbar.is-danger .navbar-start .navbar-link,
.navbar.is-danger .navbar-end > .navbar-item,
.navbar.is-danger .navbar-end .navbar-link {
    color: #fff;
  }
  .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active,
.navbar.is-danger .navbar-start .navbar-link:focus,
.navbar.is-danger .navbar-start .navbar-link:hover,
.navbar.is-danger .navbar-start .navbar-link.is-active,
.navbar.is-danger .navbar-end > a.navbar-item:focus,
.navbar.is-danger .navbar-end > a.navbar-item:hover,
.navbar.is-danger .navbar-end > a.navbar-item.is-active,
.navbar.is-danger .navbar-end .navbar-link:focus,
.navbar.is-danger .navbar-end .navbar-link:hover,
.navbar.is-danger .navbar-end .navbar-link.is-active {
    background-color: #ca2929;
    color: #fff;
  }
  .navbar.is-danger .navbar-start .navbar-link::after,
.navbar.is-danger .navbar-end .navbar-link::after {
    border-color: #fff;
  }
  .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #ca2929;
    color: #fff;
  }
  .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
    background-color: #d63737;
    color: #fff;
  }
}
.navbar > .container {
  align-items: stretch;
  display: flex;
  min-height: 3.25rem;
  width: 100%;
}
.navbar.has-shadow {
  box-shadow: 0 2px 0 0 whitesmoke;
}
.navbar.is-fixed-bottom, .navbar.is-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 30;
}
.navbar.is-fixed-bottom {
  bottom: 0;
}
.navbar.is-fixed-bottom.has-shadow {
  box-shadow: 0 -2px 0 0 whitesmoke;
}
.navbar.is-fixed-top {
  top: 0;
}

html.has-navbar-fixed-top,
body.has-navbar-fixed-top {
  padding-top: 3.25rem;
}
html.has-navbar-fixed-bottom,
body.has-navbar-fixed-bottom {
  padding-bottom: 3.25rem;
}

.navbar-brand,
.navbar-tabs {
  align-items: stretch;
  display: flex;
  flex-shrink: 0;
  min-height: 3.25rem;
}

.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover {
  background-color: transparent;
}

.navbar-tabs {
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
}

.navbar-burger {
  color: #666666;
  cursor: pointer;
  display: block;
  height: 3.25rem;
  position: relative;
  width: 3.25rem;
  margin-left: auto;
}
.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 16px;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}
.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.navbar-menu {
  display: none;
}

.navbar-item,
.navbar-link {
  color: #666666;
  display: block;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  position: relative;
}
.navbar-item .icon:only-child,
.navbar-link .icon:only-child {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

a.navbar-item,
.navbar-link {
  cursor: pointer;
}
a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active,
.navbar-link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
.navbar-link.is-active {
  background-color: #fafafa;
  color: #21a1d8;
}

.navbar-item {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
}
.navbar-item img {
  max-height: 1.75rem;
}
.navbar-item.has-dropdown {
  padding: 0;
}
.navbar-item.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.navbar-item.is-tab {
  border-bottom: 1px solid transparent;
  min-height: 3.25rem;
  padding-bottom: calc(0.5rem - 1px);
}
.navbar-item.is-tab:focus, .navbar-item.is-tab:hover {
  background-color: transparent;
  border-bottom-color: #21a1d8;
}
.navbar-item.is-tab.is-active {
  background-color: transparent;
  border-bottom-color: #21a1d8;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  color: #21a1d8;
  padding-bottom: calc(0.5rem - 3px);
}

.navbar-content {
  flex-grow: 1;
  flex-shrink: 1;
}

.navbar-link:not(.is-arrowless) {
  padding-right: 2.5em;
}
.navbar-link:not(.is-arrowless)::after {
  border-color: #21a1d8;
  margin-top: -0.375em;
  right: 1.125em;
}

.navbar-dropdown {
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.navbar-dropdown .navbar-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar-divider {
  background-color: whitesmoke;
  border: none;
  display: none;
  height: 2px;
  margin: 0.5rem 0;
}

@media screen and (max-width: 1023px) {
  .navbar > .container {
    display: block;
  }

  .navbar-brand .navbar-item,
.navbar-tabs .navbar-item {
    align-items: center;
    display: flex;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-menu {
    background-color: white;
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
    padding: 0.5rem 0;
  }
  .navbar-menu.is-active {
    display: block;
  }

  .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }
  .navbar.is-fixed-bottom-touch {
    bottom: 0;
  }
  .navbar.is-fixed-bottom-touch.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }
  .navbar.is-fixed-top-touch {
    top: 0;
  }
  .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 3.25rem);
    overflow: auto;
  }

  html.has-navbar-fixed-top-touch,
body.has-navbar-fixed-top-touch {
    padding-top: 3.25rem;
  }
  html.has-navbar-fixed-bottom-touch,
body.has-navbar-fixed-bottom-touch {
    padding-bottom: 3.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .navbar,
.navbar-menu,
.navbar-start,
.navbar-end {
    align-items: stretch;
    display: flex;
  }

  .navbar {
    min-height: 3.25rem;
  }
  .navbar.is-spaced {
    padding: 1rem 2rem;
  }
  .navbar.is-spaced .navbar-start,
.navbar.is-spaced .navbar-end {
    align-items: center;
  }
  .navbar.is-spaced a.navbar-item,
.navbar.is-spaced .navbar-link {
    border-radius: 4px;
  }
  .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
.navbar.is-transparent .navbar-link:focus,
.navbar.is-transparent .navbar-link:hover,
.navbar.is-transparent .navbar-link.is-active {
    background-color: transparent !important;
  }
  .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
    background-color: transparent !important;
  }
  .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
  }
  .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #21a1d8;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-item,
.navbar-link {
    align-items: center;
    display: flex;
  }

  .navbar-item {
    display: flex;
  }
  .navbar-item.has-dropdown {
    align-items: stretch;
  }
  .navbar-item.has-dropdown-up .navbar-link::after {
    transform: rotate(135deg) translate(0.25em, -0.25em);
  }
  .navbar-item.has-dropdown-up .navbar-dropdown {
    border-bottom: 2px solid #dbdbdb;
    border-radius: 6px 6px 0 0;
    border-top: none;
    bottom: 100%;
    box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
    top: auto;
  }
  .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
    display: block;
  }
  .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar-menu {
    flex-grow: 1;
    flex-shrink: 0;
  }

  .navbar-start {
    justify-content: flex-start;
    margin-right: auto;
  }

  .navbar-end {
    justify-content: flex-end;
    margin-left: auto;
  }

  .navbar-dropdown {
    background-color: white;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 2px solid #dbdbdb;
    box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
    display: none;
    font-size: 0.875rem;
    left: 0;
    min-width: 100%;
    position: absolute;
    top: 100%;
    z-index: 20;
  }
  .navbar-dropdown .navbar-item {
    padding: 0.375rem 1rem;
    white-space: nowrap;
  }
  .navbar-dropdown a.navbar-item {
    padding-right: 3rem;
  }
  .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
  }
  .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #21a1d8;
  }
  .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
    border-radius: 6px;
    border-top: none;
    box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    display: block;
    opacity: 0;
    pointer-events: none;
    top: calc(100% + (-4px));
    transform: translateY(-5px);
    transition-duration: 86ms;
    transition-property: opacity, transform;
  }
  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }

  .navbar-divider {
    display: block;
  }

  .navbar > .container .navbar-brand,
.container > .navbar .navbar-brand {
    margin-left: -0.75rem;
  }
  .navbar > .container .navbar-menu,
.container > .navbar .navbar-menu {
    margin-right: -0.75rem;
  }

  .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }
  .navbar.is-fixed-bottom-desktop {
    bottom: 0;
  }
  .navbar.is-fixed-bottom-desktop.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }
  .navbar.is-fixed-top-desktop {
    top: 0;
  }

  html.has-navbar-fixed-top-desktop,
body.has-navbar-fixed-top-desktop {
    padding-top: 3.25rem;
  }
  html.has-navbar-fixed-bottom-desktop,
body.has-navbar-fixed-bottom-desktop {
    padding-bottom: 3.25rem;
  }
  html.has-spaced-navbar-fixed-top,
body.has-spaced-navbar-fixed-top {
    padding-top: 5.25rem;
  }
  html.has-spaced-navbar-fixed-bottom,
body.has-spaced-navbar-fixed-bottom {
    padding-bottom: 5.25rem;
  }

  a.navbar-item.is-active,
.navbar-link.is-active {
    color: #0a0a0a;
  }
  a.navbar-item.is-active:not(:focus):not(:hover),
.navbar-link.is-active:not(:focus):not(:hover) {
    background-color: transparent;
  }

  .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #fafafa;
  }
}
.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - 3.25rem);
}

.pagination {
  font-size: 1rem;
  margin: -0.25rem;
}
.pagination.is-small {
  font-size: 0.75rem;
}
.pagination.is-medium {
  font-size: 1.25rem;
}
.pagination.is-large {
  font-size: 1.5rem;
}
.pagination.is-rounded .pagination-previous,
.pagination.is-rounded .pagination-next {
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 290486px;
}
.pagination.is-rounded .pagination-link {
  border-radius: 290486px;
}

.pagination,
.pagination-list {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
  font-size: 1em;
  justify-content: center;
  margin: 0.25rem;
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link {
  border-color: #dbdbdb;
  color: inherit;
  min-width: 2.5em;
}
.pagination-previous:hover,
.pagination-next:hover,
.pagination-link:hover {
  border-color: #ededed;
  color: #257EBA;
}
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus {
  border-color: #3273dc;
}
.pagination-previous:active,
.pagination-next:active,
.pagination-link:active {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
}
.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled] {
  background-color: #dbdbdb;
  border-color: #dbdbdb;
  box-shadow: none;
  color: #7a7a7a;
  opacity: 0.5;
}

.pagination-previous,
.pagination-next {
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

.pagination-link.is-current {
  background-color: #21a1d8;
  border-color: #21a1d8;
  color: #fff;
}

.pagination-ellipsis {
  color: #ededed;
  pointer-events: none;
}

.pagination-list {
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
  }

  .pagination-previous,
.pagination-next {
    flex-grow: 1;
    flex-shrink: 1;
  }

  .pagination-list li {
    flex-grow: 1;
    flex-shrink: 1;
  }
}
@media screen and (min-width: 769px), print {
  .pagination-list {
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    order: 1;
  }

  .pagination-previous {
    order: 2;
  }

  .pagination-next {
    order: 3;
  }

  .pagination {
    justify-content: space-between;
  }
  .pagination.is-centered .pagination-previous {
    order: 1;
  }
  .pagination.is-centered .pagination-list {
    justify-content: center;
    order: 2;
  }
  .pagination.is-centered .pagination-next {
    order: 3;
  }
  .pagination.is-right .pagination-previous {
    order: 1;
  }
  .pagination.is-right .pagination-next {
    order: 2;
  }
  .pagination.is-right .pagination-list {
    justify-content: flex-end;
    order: 3;
  }
}
.panel {
  border-radius: 6px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  font-size: 1rem;
}
.panel:not(:last-child) {
  margin-bottom: 1.5rem;
}
.panel.is-white .panel-heading {
  background-color: white;
  color: #0a0a0a;
}
.panel.is-white .panel-tabs a.is-active {
  border-bottom-color: white;
}
.panel.is-white .panel-block.is-active .panel-icon {
  color: white;
}
.panel.is-black .panel-heading {
  background-color: #0a0a0a;
  color: white;
}
.panel.is-black .panel-tabs a.is-active {
  border-bottom-color: #0a0a0a;
}
.panel.is-black .panel-block.is-active .panel-icon {
  color: #0a0a0a;
}
.panel.is-light .panel-heading {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.panel.is-light .panel-tabs a.is-active {
  border-bottom-color: whitesmoke;
}
.panel.is-light .panel-block.is-active .panel-icon {
  color: whitesmoke;
}
.panel.is-dark .panel-heading {
  background-color: #999999;
  color: #fff;
}
.panel.is-dark .panel-tabs a.is-active {
  border-bottom-color: #999999;
}
.panel.is-dark .panel-block.is-active .panel-icon {
  color: #999999;
}
.panel.is-primary .panel-heading {
  background-color: #21a1d8;
  color: #fff;
}
.panel.is-primary .panel-tabs a.is-active {
  border-bottom-color: #21a1d8;
}
.panel.is-primary .panel-block.is-active .panel-icon {
  color: #21a1d8;
}
.panel.is-link .panel-heading {
  background-color: #21a1d8;
  color: #fff;
}
.panel.is-link .panel-tabs a.is-active {
  border-bottom-color: #21a1d8;
}
.panel.is-link .panel-block.is-active .panel-icon {
  color: #21a1d8;
}
.panel.is-info .panel-heading {
  background-color: #3298dc;
  color: #fff;
}
.panel.is-info .panel-tabs a.is-active {
  border-bottom-color: #3298dc;
}
.panel.is-info .panel-block.is-active .panel-icon {
  color: #3298dc;
}
.panel.is-success .panel-heading {
  background-color: #48c774;
  color: #fff;
}
.panel.is-success .panel-tabs a.is-active {
  border-bottom-color: #48c774;
}
.panel.is-success .panel-block.is-active .panel-icon {
  color: #48c774;
}
.panel.is-warning .panel-heading {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.panel.is-warning .panel-tabs a.is-active {
  border-bottom-color: #ffdd57;
}
.panel.is-warning .panel-block.is-active .panel-icon {
  color: #ffdd57;
}
.panel.is-danger .panel-heading {
  background-color: #d63737;
  color: #fff;
}
.panel.is-danger .panel-tabs a.is-active {
  border-bottom-color: #d63737;
}
.panel.is-danger .panel-block.is-active .panel-icon {
  color: #d63737;
}

.panel-tabs:not(:last-child),
.panel-block:not(:last-child) {
  border-bottom: 1px solid #fcfcfcea;
}

.panel-heading {
  background-color: #fcfcfcea;
  border-radius: 6px 6px 0 0;
  color: inherit;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.75em 1em;
}

.panel-tabs {
  align-items: flex-end;
  display: flex;
  font-size: 0.875em;
  justify-content: center;
}
.panel-tabs a {
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: -1px;
  padding: 0.5em;
}
.panel-tabs a.is-active {
  border-bottom-color: #666666;
  color: #363636;
}

.panel-list a {
  color: #666666;
}
.panel-list a:hover {
  color: #21a1d8;
}

.panel-block {
  align-items: center;
  color: inherit;
  display: flex;
  justify-content: flex-start;
  padding: 0.5em 0.75em;
}
.panel-block input[type=checkbox] {
  margin-right: 0.75em;
}
.panel-block > .control {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
}
.panel-block.is-wrapped {
  flex-wrap: wrap;
}
.panel-block.is-active {
  border-left-color: #21a1d8;
  color: #363636;
}
.panel-block.is-active .panel-icon {
  color: #21a1d8;
}
.panel-block:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

a.panel-block,
label.panel-block {
  cursor: pointer;
}
a.panel-block:hover,
label.panel-block:hover {
  background-color: whitesmoke;
}

.panel-icon {
  display: inline-block;
  font-size: 14px;
  height: 1em;
  line-height: 1em;
  text-align: center;
  vertical-align: top;
  width: 1em;
  color: #7a7a7a;
  margin-right: 0.75em;
}
.panel-icon .fa {
  font-size: inherit;
  line-height: inherit;
}

.tabs {
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.tabs a {
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #666666;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
}
.tabs a:hover {
  border-bottom-color: inherit;
  color: inherit;
}
.tabs li {
  display: block;
}
.tabs li.is-active a {
  border-bottom-color: #21a1d8;
  color: #21a1d8;
}
.tabs ul {
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
}
.tabs ul.is-left {
  padding-right: 0.75em;
}
.tabs ul.is-center {
  flex: none;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.tabs ul.is-right {
  justify-content: flex-end;
  padding-left: 0.75em;
}
.tabs .icon:first-child {
  margin-right: 0.5em;
}
.tabs .icon:last-child {
  margin-left: 0.5em;
}
.tabs.is-centered ul {
  justify-content: center;
}
.tabs.is-right ul {
  justify-content: flex-end;
}
.tabs.is-boxed a {
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.tabs.is-boxed a:hover {
  background-color: whitesmoke;
  border-bottom-color: #dbdbdb;
}
.tabs.is-boxed li.is-active a {
  background-color: white;
  border-color: #dbdbdb;
  border-bottom-color: transparent !important;
}
.tabs.is-fullwidth li {
  flex-grow: 1;
  flex-shrink: 0;
}
.tabs.is-toggle a {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 0;
  position: relative;
}
.tabs.is-toggle a:hover {
  background-color: whitesmoke;
  border-color: #ededed;
  z-index: 2;
}
.tabs.is-toggle li + li {
  margin-left: -1px;
}
.tabs.is-toggle li:first-child a {
  border-radius: 4px 0 0 4px;
}
.tabs.is-toggle li:last-child a {
  border-radius: 0 4px 4px 0;
}
.tabs.is-toggle li.is-active a {
  background-color: #21a1d8;
  border-color: #21a1d8;
  color: #fff;
  z-index: 1;
}
.tabs.is-toggle ul {
  border-bottom: none;
}
.tabs.is-toggle.is-toggle-rounded li:first-child a {
  border-bottom-left-radius: 290486px;
  border-top-left-radius: 290486px;
  padding-left: 1.25em;
}
.tabs.is-toggle.is-toggle-rounded li:last-child a {
  border-bottom-right-radius: 290486px;
  border-top-right-radius: 290486px;
  padding-right: 1.25em;
}
.tabs.is-small {
  font-size: 0.75rem;
}
.tabs.is-medium {
  font-size: 1.25rem;
}
.tabs.is-large {
  font-size: 1.5rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.columns.is-mobile > .column.is-narrow {
  flex: none;
}
.columns.is-mobile > .column.is-full {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-three-quarters {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}
.columns.is-mobile > .column.is-half {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-one-third {
  flex: none;
  width: 33.3333%;
}
.columns.is-mobile > .column.is-one-quarter {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-one-fifth {
  flex: none;
  width: 20%;
}
.columns.is-mobile > .column.is-two-fifths {
  flex: none;
  width: 40%;
}
.columns.is-mobile > .column.is-three-fifths {
  flex: none;
  width: 60%;
}
.columns.is-mobile > .column.is-four-fifths {
  flex: none;
  width: 80%;
}
.columns.is-mobile > .column.is-offset-three-quarters {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-offset-two-thirds {
  margin-left: 66.6666%;
}
.columns.is-mobile > .column.is-offset-half {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-offset-one-third {
  margin-left: 33.3333%;
}
.columns.is-mobile > .column.is-offset-one-quarter {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-offset-one-fifth {
  margin-left: 20%;
}
.columns.is-mobile > .column.is-offset-two-fifths {
  margin-left: 40%;
}
.columns.is-mobile > .column.is-offset-three-fifths {
  margin-left: 60%;
}
.columns.is-mobile > .column.is-offset-four-fifths {
  margin-left: 80%;
}
.columns.is-mobile > .column.is-0 {
  flex: none;
  width: 0%;
}
.columns.is-mobile > .column.is-offset-0 {
  margin-left: 0%;
}
.columns.is-mobile > .column.is-1 {
  flex: none;
  width: 8.3333333333%;
}
.columns.is-mobile > .column.is-offset-1 {
  margin-left: 8.3333333333%;
}
.columns.is-mobile > .column.is-2 {
  flex: none;
  width: 16.6666666667%;
}
.columns.is-mobile > .column.is-offset-2 {
  margin-left: 16.6666666667%;
}
.columns.is-mobile > .column.is-3 {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-offset-3 {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-4 {
  flex: none;
  width: 33.3333333333%;
}
.columns.is-mobile > .column.is-offset-4 {
  margin-left: 33.3333333333%;
}
.columns.is-mobile > .column.is-5 {
  flex: none;
  width: 41.6666666667%;
}
.columns.is-mobile > .column.is-offset-5 {
  margin-left: 41.6666666667%;
}
.columns.is-mobile > .column.is-6 {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-offset-6 {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-7 {
  flex: none;
  width: 58.3333333333%;
}
.columns.is-mobile > .column.is-offset-7 {
  margin-left: 58.3333333333%;
}
.columns.is-mobile > .column.is-8 {
  flex: none;
  width: 66.6666666667%;
}
.columns.is-mobile > .column.is-offset-8 {
  margin-left: 66.6666666667%;
}
.columns.is-mobile > .column.is-9 {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-offset-9 {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-10 {
  flex: none;
  width: 83.3333333333%;
}
.columns.is-mobile > .column.is-offset-10 {
  margin-left: 83.3333333333%;
}
.columns.is-mobile > .column.is-11 {
  flex: none;
  width: 91.6666666667%;
}
.columns.is-mobile > .column.is-offset-11 {
  margin-left: 91.6666666667%;
}
.columns.is-mobile > .column.is-12 {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-offset-12 {
  margin-left: 100%;
}
@media screen and (max-width: 768px) {
  .column.is-narrow-mobile {
    flex: none;
  }
  .column.is-full-mobile {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-mobile {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-mobile {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-mobile {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-mobile {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-mobile {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-mobile {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-mobile {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-mobile {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-mobile {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-mobile {
    margin-left: 50%;
  }
  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }
  .column.is-0-mobile {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-mobile {
    margin-left: 0%;
  }
  .column.is-1-mobile {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-mobile {
    margin-left: 8.3333333333%;
  }
  .column.is-2-mobile {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-mobile {
    margin-left: 16.6666666667%;
  }
  .column.is-3-mobile {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-mobile {
    margin-left: 25%;
  }
  .column.is-4-mobile {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-mobile {
    margin-left: 33.3333333333%;
  }
  .column.is-5-mobile {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-mobile {
    margin-left: 41.6666666667%;
  }
  .column.is-6-mobile {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-mobile {
    margin-left: 50%;
  }
  .column.is-7-mobile {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-mobile {
    margin-left: 58.3333333333%;
  }
  .column.is-8-mobile {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-mobile {
    margin-left: 66.6666666667%;
  }
  .column.is-9-mobile {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-mobile {
    margin-left: 75%;
  }
  .column.is-10-mobile {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-mobile {
    margin-left: 83.3333333333%;
  }
  .column.is-11-mobile {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-mobile {
    margin-left: 91.6666666667%;
  }
  .column.is-12-mobile {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}
@media screen and (min-width: 769px), print {
  .column.is-narrow, .column.is-narrow-tablet {
    flex: none;
  }
  .column.is-full, .column.is-full-tablet {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters, .column.is-three-quarters-tablet {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds, .column.is-two-thirds-tablet {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half, .column.is-half-tablet {
    flex: none;
    width: 50%;
  }
  .column.is-one-third, .column.is-one-third-tablet {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter, .column.is-one-quarter-tablet {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth, .column.is-one-fifth-tablet {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths, .column.is-two-fifths-tablet {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths, .column.is-three-fifths-tablet {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths, .column.is-four-fifths-tablet {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }
  .column.is-offset-half, .column.is-offset-half-tablet {
    margin-left: 50%;
  }
  .column.is-offset-one-third, .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }
  .column.is-0, .column.is-0-tablet {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0, .column.is-offset-0-tablet {
    margin-left: 0%;
  }
  .column.is-1, .column.is-1-tablet {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1, .column.is-offset-1-tablet {
    margin-left: 8.3333333333%;
  }
  .column.is-2, .column.is-2-tablet {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2, .column.is-offset-2-tablet {
    margin-left: 16.6666666667%;
  }
  .column.is-3, .column.is-3-tablet {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3, .column.is-offset-3-tablet {
    margin-left: 25%;
  }
  .column.is-4, .column.is-4-tablet {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4, .column.is-offset-4-tablet {
    margin-left: 33.3333333333%;
  }
  .column.is-5, .column.is-5-tablet {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5, .column.is-offset-5-tablet {
    margin-left: 41.6666666667%;
  }
  .column.is-6, .column.is-6-tablet {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6, .column.is-offset-6-tablet {
    margin-left: 50%;
  }
  .column.is-7, .column.is-7-tablet {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7, .column.is-offset-7-tablet {
    margin-left: 58.3333333333%;
  }
  .column.is-8, .column.is-8-tablet {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8, .column.is-offset-8-tablet {
    margin-left: 66.6666666667%;
  }
  .column.is-9, .column.is-9-tablet {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9, .column.is-offset-9-tablet {
    margin-left: 75%;
  }
  .column.is-10, .column.is-10-tablet {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10, .column.is-offset-10-tablet {
    margin-left: 83.3333333333%;
  }
  .column.is-11, .column.is-11-tablet {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11, .column.is-offset-11-tablet {
    margin-left: 91.6666666667%;
  }
  .column.is-12, .column.is-12-tablet {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12, .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .column.is-narrow-touch {
    flex: none;
  }
  .column.is-full-touch {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-touch {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-touch {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-touch {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-touch {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-touch {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-touch {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-touch {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-touch {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-touch {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-touch {
    margin-left: 50%;
  }
  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }
  .column.is-0-touch {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-touch {
    margin-left: 0%;
  }
  .column.is-1-touch {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-touch {
    margin-left: 8.3333333333%;
  }
  .column.is-2-touch {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-touch {
    margin-left: 16.6666666667%;
  }
  .column.is-3-touch {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-touch {
    margin-left: 25%;
  }
  .column.is-4-touch {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-touch {
    margin-left: 33.3333333333%;
  }
  .column.is-5-touch {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-touch {
    margin-left: 41.6666666667%;
  }
  .column.is-6-touch {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-touch {
    margin-left: 50%;
  }
  .column.is-7-touch {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-touch {
    margin-left: 58.3333333333%;
  }
  .column.is-8-touch {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-touch {
    margin-left: 66.6666666667%;
  }
  .column.is-9-touch {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-touch {
    margin-left: 75%;
  }
  .column.is-10-touch {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-touch {
    margin-left: 83.3333333333%;
  }
  .column.is-11-touch {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-touch {
    margin-left: 91.6666666667%;
  }
  .column.is-12-touch {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop {
    flex: none;
  }
  .column.is-full-desktop {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-desktop {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-desktop {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-desktop {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-desktop {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-desktop {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-desktop {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-desktop {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-desktop {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-desktop {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-desktop {
    margin-left: 50%;
  }
  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }
  .column.is-0-desktop {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-desktop {
    margin-left: 0%;
  }
  .column.is-1-desktop {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-desktop {
    margin-left: 8.3333333333%;
  }
  .column.is-2-desktop {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-desktop {
    margin-left: 16.6666666667%;
  }
  .column.is-3-desktop {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-desktop {
    margin-left: 25%;
  }
  .column.is-4-desktop {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-desktop {
    margin-left: 33.3333333333%;
  }
  .column.is-5-desktop {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-desktop {
    margin-left: 41.6666666667%;
  }
  .column.is-6-desktop {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-desktop {
    margin-left: 50%;
  }
  .column.is-7-desktop {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-desktop {
    margin-left: 58.3333333333%;
  }
  .column.is-8-desktop {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-desktop {
    margin-left: 66.6666666667%;
  }
  .column.is-9-desktop {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-desktop {
    margin-left: 75%;
  }
  .column.is-10-desktop {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-desktop {
    margin-left: 83.3333333333%;
  }
  .column.is-11-desktop {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-desktop {
    margin-left: 91.6666666667%;
  }
  .column.is-12-desktop {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1216px) {
  .column.is-narrow-widescreen {
    flex: none;
  }
  .column.is-full-widescreen {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-widescreen {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-widescreen {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-widescreen {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-widescreen {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-widescreen {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-widescreen {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-widescreen {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-widescreen {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-widescreen {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }
  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }
  .column.is-0-widescreen {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }
  .column.is-1-widescreen {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-widescreen {
    margin-left: 8.3333333333%;
  }
  .column.is-2-widescreen {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-widescreen {
    margin-left: 16.6666666667%;
  }
  .column.is-3-widescreen {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-widescreen {
    margin-left: 25%;
  }
  .column.is-4-widescreen {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-widescreen {
    margin-left: 33.3333333333%;
  }
  .column.is-5-widescreen {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-widescreen {
    margin-left: 41.6666666667%;
  }
  .column.is-6-widescreen {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-widescreen {
    margin-left: 50%;
  }
  .column.is-7-widescreen {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-widescreen {
    margin-left: 58.3333333333%;
  }
  .column.is-8-widescreen {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-widescreen {
    margin-left: 66.6666666667%;
  }
  .column.is-9-widescreen {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-widescreen {
    margin-left: 75%;
  }
  .column.is-10-widescreen {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-widescreen {
    margin-left: 83.3333333333%;
  }
  .column.is-11-widescreen {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-widescreen {
    margin-left: 91.6666666667%;
  }
  .column.is-12-widescreen {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1408px) {
  .column.is-narrow-fullhd {
    flex: none;
  }
  .column.is-full-fullhd {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-fullhd {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-fullhd {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-fullhd {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-fullhd {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-fullhd {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-fullhd {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-fullhd {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-fullhd {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-fullhd {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-fullhd {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-fullhd {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-fullhd {
    margin-left: 50%;
  }
  .column.is-offset-one-third-fullhd {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-fullhd {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-fullhd {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-fullhd {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-fullhd {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-fullhd {
    margin-left: 80%;
  }
  .column.is-0-fullhd {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-fullhd {
    margin-left: 0%;
  }
  .column.is-1-fullhd {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-fullhd {
    margin-left: 8.3333333333%;
  }
  .column.is-2-fullhd {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-fullhd {
    margin-left: 16.6666666667%;
  }
  .column.is-3-fullhd {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-fullhd {
    margin-left: 25%;
  }
  .column.is-4-fullhd {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-fullhd {
    margin-left: 33.3333333333%;
  }
  .column.is-5-fullhd {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-fullhd {
    margin-left: 41.6666666667%;
  }
  .column.is-6-fullhd {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-fullhd {
    margin-left: 50%;
  }
  .column.is-7-fullhd {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-fullhd {
    margin-left: 58.3333333333%;
  }
  .column.is-8-fullhd {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-fullhd {
    margin-left: 66.6666666667%;
  }
  .column.is-9-fullhd {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-fullhd {
    margin-left: 75%;
  }
  .column.is-10-fullhd {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-fullhd {
    margin-left: 83.3333333333%;
  }
  .column.is-11-fullhd {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-fullhd {
    margin-left: 91.6666666667%;
  }
  .column.is-12-fullhd {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-fullhd {
    margin-left: 100%;
  }
}

.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.columns:last-child {
  margin-bottom: -0.75rem;
}
.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.columns.is-centered {
  justify-content: center;
}
.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.columns.is-gapless > .column {
  margin: 0;
  padding: 0 !important;
}
.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem;
}
.columns.is-gapless:last-child {
  margin-bottom: 0;
}
.columns.is-mobile {
  display: flex;
}
.columns.is-multiline {
  flex-wrap: wrap;
}
.columns.is-vcentered {
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .columns:not(.is-desktop) {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-desktop {
    display: flex;
  }
}

.columns.is-variable {
  --columnGap: 0.75rem;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}
.columns.is-variable .column {
  padding-left: var(--columnGap);
  padding-right: var(--columnGap);
}
.columns.is-variable.is-0 {
  --columnGap: 0rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-0-mobile {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-0-tablet {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-0-tablet-only {
    --columnGap: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-0-touch {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-0-desktop {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-0-desktop-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-0-widescreen {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-0-widescreen-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-0-fullhd {
    --columnGap: 0rem;
  }
}
.columns.is-variable.is-1 {
  --columnGap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-1-mobile {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-1-tablet {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-1-tablet-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-1-touch {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-1-desktop {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-1-desktop-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-1-widescreen {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-1-widescreen-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-1-fullhd {
    --columnGap: 0.25rem;
  }
}
.columns.is-variable.is-2 {
  --columnGap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-2-mobile {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-2-tablet {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-2-tablet-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-2-touch {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-2-desktop {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-2-desktop-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-2-widescreen {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-2-widescreen-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-2-fullhd {
    --columnGap: 0.5rem;
  }
}
.columns.is-variable.is-3 {
  --columnGap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-3-mobile {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-3-tablet {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-3-tablet-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-3-touch {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-3-desktop {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-3-desktop-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-3-widescreen {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-3-widescreen-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-3-fullhd {
    --columnGap: 0.75rem;
  }
}
.columns.is-variable.is-4 {
  --columnGap: 1rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-4-mobile {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-4-tablet {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-4-tablet-only {
    --columnGap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-4-touch {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-4-desktop {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-4-desktop-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-4-widescreen {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-4-widescreen-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-4-fullhd {
    --columnGap: 1rem;
  }
}
.columns.is-variable.is-5 {
  --columnGap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-5-mobile {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-5-tablet {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-5-tablet-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-5-touch {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-5-desktop {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-5-desktop-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-5-widescreen {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-5-widescreen-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-5-fullhd {
    --columnGap: 1.25rem;
  }
}
.columns.is-variable.is-6 {
  --columnGap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-6-mobile {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-6-tablet {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-6-tablet-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-6-touch {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-6-desktop {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-6-desktop-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-6-widescreen {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-6-widescreen-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-6-fullhd {
    --columnGap: 1.5rem;
  }
}
.columns.is-variable.is-7 {
  --columnGap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-7-mobile {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-7-tablet {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-7-tablet-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-7-touch {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-7-desktop {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-7-desktop-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-7-widescreen {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-7-widescreen-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-7-fullhd {
    --columnGap: 1.75rem;
  }
}
.columns.is-variable.is-8 {
  --columnGap: 2rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-8-mobile {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-8-tablet {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-8-tablet-only {
    --columnGap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-8-touch {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-8-desktop {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-8-desktop-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-8-widescreen {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-8-widescreen-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-8-fullhd {
    --columnGap: 2rem;
  }
}

.tile {
  align-items: stretch;
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: min-content;
}
.tile.is-ancestor {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.tile.is-ancestor:last-child {
  margin-bottom: -0.75rem;
}
.tile.is-ancestor:not(:last-child) {
  margin-bottom: 0.75rem;
}
.tile.is-child {
  margin: 0 !important;
}
.tile.is-parent {
  padding: 0.75rem;
}
.tile.is-vertical {
  flex-direction: column;
}
.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 1.5rem !important;
}
@media screen and (min-width: 769px), print {
  .tile:not(.is-child) {
    display: flex;
  }
  .tile.is-1 {
    flex: none;
    width: 8.3333333333%;
  }
  .tile.is-2 {
    flex: none;
    width: 16.6666666667%;
  }
  .tile.is-3 {
    flex: none;
    width: 25%;
  }
  .tile.is-4 {
    flex: none;
    width: 33.3333333333%;
  }
  .tile.is-5 {
    flex: none;
    width: 41.6666666667%;
  }
  .tile.is-6 {
    flex: none;
    width: 50%;
  }
  .tile.is-7 {
    flex: none;
    width: 58.3333333333%;
  }
  .tile.is-8 {
    flex: none;
    width: 66.6666666667%;
  }
  .tile.is-9 {
    flex: none;
    width: 75%;
  }
  .tile.is-10 {
    flex: none;
    width: 83.3333333333%;
  }
  .tile.is-11 {
    flex: none;
    width: 91.6666666667%;
  }
  .tile.is-12 {
    flex: none;
    width: 100%;
  }
}

.hero {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero .navbar {
  background: none;
}
.hero .tabs ul {
  border-bottom: none;
}
.hero.is-white {
  background-color: white;
  color: #0a0a0a;
}
.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-white strong {
  color: inherit;
}
.hero.is-white .title {
  color: #0a0a0a;
}
.hero.is-white .subtitle {
  color: rgba(10, 10, 10, 0.9);
}
.hero.is-white .subtitle a:not(.button),
.hero.is-white .subtitle strong {
  color: #0a0a0a;
}
@media screen and (max-width: 1023px) {
  .hero.is-white .navbar-menu {
    background-color: white;
  }
}
.hero.is-white .navbar-item,
.hero.is-white .navbar-link {
  color: rgba(10, 10, 10, 0.7);
}
.hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active,
.hero.is-white .navbar-link:hover,
.hero.is-white .navbar-link.is-active {
  background-color: #f2f2f2;
  color: #0a0a0a;
}
.hero.is-white .tabs a {
  color: #0a0a0a;
  opacity: 0.9;
}
.hero.is-white .tabs a:hover {
  opacity: 1;
}
.hero.is-white .tabs li.is-active a {
  opacity: 1;
}
.hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
  color: #0a0a0a;
}
.hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}
.hero.is-white.is-bold {
  background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-white.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%);
  }
}
.hero.is-black {
  background-color: #0a0a0a;
  color: white;
}
.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-black strong {
  color: inherit;
}
.hero.is-black .title {
  color: white;
}
.hero.is-black .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-black .subtitle a:not(.button),
.hero.is-black .subtitle strong {
  color: white;
}
@media screen and (max-width: 1023px) {
  .hero.is-black .navbar-menu {
    background-color: #0a0a0a;
  }
}
.hero.is-black .navbar-item,
.hero.is-black .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active,
.hero.is-black .navbar-link:hover,
.hero.is-black .navbar-link.is-active {
  background-color: black;
  color: white;
}
.hero.is-black .tabs a {
  color: white;
  opacity: 0.9;
}
.hero.is-black .tabs a:hover {
  opacity: 1;
}
.hero.is-black .tabs li.is-active a {
  opacity: 1;
}
.hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
  color: white;
}
.hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}
.hero.is-black.is-bold {
  background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-black.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
  }
}
.hero.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-light strong {
  color: inherit;
}
.hero.is-light .title {
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-light .subtitle {
  color: rgba(0, 0, 0, 0.9);
}
.hero.is-light .subtitle a:not(.button),
.hero.is-light .subtitle strong {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1023px) {
  .hero.is-light .navbar-menu {
    background-color: whitesmoke;
  }
}
.hero.is-light .navbar-item,
.hero.is-light .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active,
.hero.is-light .navbar-link:hover,
.hero.is-light .navbar-link.is-active {
  background-color: #e8e8e8;
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-light .tabs a {
  color: rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}
.hero.is-light .tabs a:hover {
  opacity: 1;
}
.hero.is-light .tabs li.is-active a {
  opacity: 1;
}
.hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a {
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
}
.hero.is-light.is-bold {
  background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-light.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
  }
}
.hero.is-dark {
  background-color: #999999;
  color: #fff;
}
.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-dark strong {
  color: inherit;
}
.hero.is-dark .title {
  color: #fff;
}
.hero.is-dark .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-dark .subtitle a:not(.button),
.hero.is-dark .subtitle strong {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hero.is-dark .navbar-menu {
    background-color: #999999;
  }
}
.hero.is-dark .navbar-item,
.hero.is-dark .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active,
.hero.is-dark .navbar-link:hover,
.hero.is-dark .navbar-link.is-active {
  background-color: #8c8c8c;
  color: #fff;
}
.hero.is-dark .tabs a {
  color: #fff;
  opacity: 0.9;
}
.hero.is-dark .tabs a:hover {
  opacity: 1;
}
.hero.is-dark .tabs li.is-active a {
  opacity: 1;
}
.hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
  color: #fff;
}
.hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #999999;
}
.hero.is-dark.is-bold {
  background-image: linear-gradient(141deg, #8c7377 0%, #999999 71%, #aaa3a1 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-dark.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #8c7377 0%, #999999 71%, #aaa3a1 100%);
  }
}
.hero.is-primary {
  background-color: #21a1d8;
  color: #fff;
}
.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-primary strong {
  color: inherit;
}
.hero.is-primary .title {
  color: #fff;
}
.hero.is-primary .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-primary .subtitle a:not(.button),
.hero.is-primary .subtitle strong {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hero.is-primary .navbar-menu {
    background-color: #21a1d8;
  }
}
.hero.is-primary .navbar-item,
.hero.is-primary .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
.hero.is-primary .navbar-link:hover,
.hero.is-primary .navbar-link.is-active {
  background-color: #1e91c2;
  color: #fff;
}
.hero.is-primary .tabs a {
  color: #fff;
  opacity: 0.9;
}
.hero.is-primary .tabs a:hover {
  opacity: 1;
}
.hero.is-primary .tabs li.is-active a {
  opacity: 1;
}
.hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
  color: #fff;
}
.hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #21a1d8;
}
.hero.is-primary.is-bold {
  background-image: linear-gradient(141deg, #10a0b6 0%, #21a1d8 71%, #2d8fe6 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-primary.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #10a0b6 0%, #21a1d8 71%, #2d8fe6 100%);
  }
}
.hero.is-link {
  background-color: #21a1d8;
  color: #fff;
}
.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-link strong {
  color: inherit;
}
.hero.is-link .title {
  color: #fff;
}
.hero.is-link .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-link .subtitle a:not(.button),
.hero.is-link .subtitle strong {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hero.is-link .navbar-menu {
    background-color: #21a1d8;
  }
}
.hero.is-link .navbar-item,
.hero.is-link .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active,
.hero.is-link .navbar-link:hover,
.hero.is-link .navbar-link.is-active {
  background-color: #1e91c2;
  color: #fff;
}
.hero.is-link .tabs a {
  color: #fff;
  opacity: 0.9;
}
.hero.is-link .tabs a:hover {
  opacity: 1;
}
.hero.is-link .tabs li.is-active a {
  opacity: 1;
}
.hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a {
  color: #fff;
}
.hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #21a1d8;
}
.hero.is-link.is-bold {
  background-image: linear-gradient(141deg, #10a0b6 0%, #21a1d8 71%, #2d8fe6 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-link.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #10a0b6 0%, #21a1d8 71%, #2d8fe6 100%);
  }
}
.hero.is-info {
  background-color: #3298dc;
  color: #fff;
}
.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-info strong {
  color: inherit;
}
.hero.is-info .title {
  color: #fff;
}
.hero.is-info .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-info .subtitle a:not(.button),
.hero.is-info .subtitle strong {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hero.is-info .navbar-menu {
    background-color: #3298dc;
  }
}
.hero.is-info .navbar-item,
.hero.is-info .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active,
.hero.is-info .navbar-link:hover,
.hero.is-info .navbar-link.is-active {
  background-color: #238cd1;
  color: #fff;
}
.hero.is-info .tabs a {
  color: #fff;
  opacity: 0.9;
}
.hero.is-info .tabs a:hover {
  opacity: 1;
}
.hero.is-info .tabs li.is-active a {
  opacity: 1;
}
.hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
  color: #fff;
}
.hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #3298dc;
}
.hero.is-info.is-bold {
  background-image: linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-info.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
  }
}
.hero.is-success {
  background-color: #48c774;
  color: #fff;
}
.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-success strong {
  color: inherit;
}
.hero.is-success .title {
  color: #fff;
}
.hero.is-success .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-success .subtitle a:not(.button),
.hero.is-success .subtitle strong {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hero.is-success .navbar-menu {
    background-color: #48c774;
  }
}
.hero.is-success .navbar-item,
.hero.is-success .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
.hero.is-success .navbar-link:hover,
.hero.is-success .navbar-link.is-active {
  background-color: #3abb67;
  color: #fff;
}
.hero.is-success .tabs a {
  color: #fff;
  opacity: 0.9;
}
.hero.is-success .tabs a:hover {
  opacity: 1;
}
.hero.is-success .tabs li.is-active a {
  opacity: 1;
}
.hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
  color: #fff;
}
.hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #48c774;
}
.hero.is-success.is-bold {
  background-image: linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-success.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%);
  }
}
.hero.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-warning strong {
  color: inherit;
}
.hero.is-warning .title {
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-warning .subtitle {
  color: rgba(0, 0, 0, 0.9);
}
.hero.is-warning .subtitle a:not(.button),
.hero.is-warning .subtitle strong {
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1023px) {
  .hero.is-warning .navbar-menu {
    background-color: #ffdd57;
  }
}
.hero.is-warning .navbar-item,
.hero.is-warning .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active,
.hero.is-warning .navbar-link:hover,
.hero.is-warning .navbar-link.is-active {
  background-color: #ffd83d;
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-warning .tabs a {
  color: rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}
.hero.is-warning .tabs a:hover {
  opacity: 1;
}
.hero.is-warning .tabs li.is-active a {
  opacity: 1;
}
.hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
  color: rgba(0, 0, 0, 0.7);
}
.hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}
.hero.is-warning.is-bold {
  background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-warning.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
  }
}
.hero.is-danger {
  background-color: #d63737;
  color: #fff;
}
.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-danger strong {
  color: inherit;
}
.hero.is-danger .title {
  color: #fff;
}
.hero.is-danger .subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero.is-danger .subtitle a:not(.button),
.hero.is-danger .subtitle strong {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hero.is-danger .navbar-menu {
    background-color: #d63737;
  }
}
.hero.is-danger .navbar-item,
.hero.is-danger .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}
.hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active,
.hero.is-danger .navbar-link:hover,
.hero.is-danger .navbar-link.is-active {
  background-color: #ca2929;
  color: #fff;
}
.hero.is-danger .tabs a {
  color: #fff;
  opacity: 0.9;
}
.hero.is-danger .tabs a:hover {
  opacity: 1;
}
.hero.is-danger .tabs li.is-active a {
  opacity: 1;
}
.hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
  color: #fff;
}
.hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}
.hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #d63737;
}
.hero.is-danger.is-bold {
  background-image: linear-gradient(141deg, #c01a36 0%, #d63737 71%, #e06047 100%);
}
@media screen and (max-width: 768px) {
  .hero.is-danger.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #c01a36 0%, #d63737 71%, #e06047 100%);
  }
}
.hero.is-small .hero-body {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media screen and (min-width: 769px), print {
  .hero.is-medium .hero-body {
    padding-bottom: 9rem;
    padding-top: 9rem;
  }
}
@media screen and (min-width: 769px), print {
  .hero.is-large .hero-body {
    padding-bottom: 18rem;
    padding-top: 18rem;
  }
}
.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body {
  align-items: center;
  display: flex;
}
.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container {
  flex-grow: 1;
  flex-shrink: 1;
}
.hero.is-halfheight {
  min-height: 50vh;
}
.hero.is-fullheight {
  min-height: 100vh;
}

.hero-video {
  overflow: hidden;
}
.hero-video video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.hero-video.is-transparent {
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .hero-video {
    display: none;
  }
}

.hero-buttons {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .hero-buttons .button {
    display: flex;
  }
  .hero-buttons .button:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .hero-buttons {
    display: flex;
    justify-content: center;
  }
  .hero-buttons .button:not(:last-child) {
    margin-right: 1.5rem;
  }
}

.hero-head,
.hero-foot {
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-body {
  flex-grow: 1;
  flex-shrink: 0;
  padding: 3rem 1.5rem;
}

.section {
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 1024px) {
  .section.is-medium {
    padding: 9rem 1.5rem;
  }
  .section.is-large {
    padding: 18rem 1.5rem;
  }
}

.footer {
  background-color: #fafafa;
  padding: 3rem 1.5rem 6rem;
}

.message .message-header {
  cursor: pointer;
  border-radius: 0;
}

.message .message-body {
  border-left: 0;
  border-radius: 0;
}

span.tag {
  background-color: #bfe4fd;
  color: #2e2e2e;
}

.card {
  border: 1px solid #E2E4E5;
}

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

.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
  border-radius: 4px;
}

.input.is-small {
  border-radius: 4px;
}

.extensions__row-container {
  /*padding: 10px;
  padding-top: 0;*/
  padding-bottom: 30px;
  border: solid 1px #dfdfdf;
  /*border-top: 0;*/
}
.extensions__order-container {
  padding: 10px;
}
.extensions__order-info-container {
  /*padding: 10px;*/
  /*border-left: dotted 1px $borderColor;
  border-right: dotted 1px $borderColor;*/
  padding-left: 20px;
  padding-right: 20px;
}
.extensions__order-header {
  min-height: 42px;
  padding: 15px;
  font-size: 12px;
  cursor: pointer;
}
.extensions__order-header-line {
  padding-bottom: 7px;
}
.extensions__order-details-container {
  padding-bottom: 30px;
}
.extensions__order-cancel-container {
  padding-right: 20px;
  /*padding-bottom: 40px;*/
}
.extensions__order-details-container td {
  padding: 5px;
}

.tag.disabled {
  color: #808285;
  background-color: #F7F7F7;
  text-decoration: line-through;
}

.site-content__header {
  background-color: #E2E4E5;
}

.site-content__container {
  max-width: 1200px;
  padding: 20px;
  margin: auto;
}

.site-nav__item {
  display: inline-block;
  margin-right: 8px;
}

.app-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  grid-column-gap: 4px;
  grid-template-areas: "header-fixed header-fixed header-fixed header-fixed" "spacer       spacer       spacer       spacer" "sidebar      content      content      sidebar-right" "sidebar      content      content      sidebar-right" "sidebar      footer       footer       sidebar-right";
}
.app-grid__header-fixed {
  grid-area: header-fixed;
  position: fixed;
  z-index: 5000;
  display: inline-block;
  top: 0;
  width: 100%;
  background-color: white;
}
.app-grid__spacer {
  grid-area: spacer;
  margin-top: 76px;
}
.app-grid__sidebar {
  grid-area: sidebar;
}
.app-grid__content {
  grid-area: content;
}
.app-grid__sidebar-right {
  grid-area: sidebar-right;
}
.app-grid__footer {
  grid-area: footer;
}

.app-nav {
  padding: 6px;
  padding-bottom: 20px;
}

.user-nav {
  text-align: left;
}
.user-nav__item {
  display: inline-block;
  margin: 8px;
}

.tab-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  grid-column-gap: 4px;
  grid-template-areas: "header-title  header-title  header-title  header-title" "header-spacer header-spacer header-spacer header-spacer" "tab-header    tab-header    tab-header    tab-header" "search        search        search        search" "sidebar       content       content       sidebar-right" "sidebar       footer        footer        sidebar-right" "modal         modal         modal         modal";
}
.tab-grid__header-title {
  grid-area: header-title;
  position: -webkit-sticky;
  position: sticky;
  top: 76px;
  background-color: white;
  z-index: 1000;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 12px;
  padding-bottom: 10px;
  background-color: #F7F7F7;
  height: 52px;
}
.tab-grid__header-spacer {
  grid-area: header-spacer;
}
.tab-grid__search {
  grid-area: search;
}
.tab-grid__sidebar {
  grid-area: sidebar;
  background-color: #F7F7F7;
  padding-bottom: 100px;
}
.tab-grid__tab-header {
  grid-area: tab-header;
  padding-top: 8px;
  background-color: #F7F7F7;
}
.tab-grid__content {
  grid-area: content;
  padding: 8px;
  padding-right: 15px;
  padding-bottom: 100px;
  width: 100%;
}
@media print {
  .tab-grid__content {
    grid-area: content;
    padding: 0;
    overflow: visible;
  }
}
.tab-grid__sidebar-right {
  grid-area: sidebar-right;
  background-color: #F7F7F7;
  padding-bottom: 100px;
}
.tab-grid__footer {
  grid-area: footer;
}
.tab-grid__modal {
  grid-area: modal;
  position: fixed;
  z-index: 3001;
}

.tab-grid__modal--fullscreen {
  z-index: 10002 !important;
}

.tab-grid .tab-grid__content .tab-grid__header-title {
  position: relative;
  top: inherit;
  z-index: inherit;
}

.tab-grid__header-title__no-sticky {
  position: inherit;
}

.panel-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  grid-column-gap: 4px;
  grid-template-areas: "header-title header-title header-title header-title" "tab-header   tab-header    tab-header    tab-header" "header-nav   header-nav    header-nav    header-nav" "header-sub   header-sub    header-sub    header-sub" "sidebar      content       content       sidebar-right" "sidebar      footer-spacer footer-spacer sidebar-right" "footer       footer        footer        footer";
}
@media only screen and (max-width: 900px) {
  .panel-grid {
    grid-template-areas: "header-title  header-title  header-title  header-title" "tab-header    tab-header    tab-header    tab-header" "header-nav    header-nav    header-nav    header-nav" "header-sub    header-sub    header-sub    header-sub" "sidebar       sidebar       sidebar       sidebar" "content       content       content       content" "sidebar-right sidebar-right sidebar-right sidebar-right" "footer-spacer footer-spacer footer-spacer footer-spacer" "footer        footer        footer        footer";
  }
}
.panel-grid__header-title {
  grid-area: header-title;
  padding-top: 4px;
}
.panel-grid__header-nav {
  grid-area: header-nav;
}
.panel-grid__header-sub {
  grid-area: header-sub;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.panel-grid__tab-header {
  grid-area: tab-header;
}
.panel-grid__sidebar {
  grid-area: sidebar;
  padding-bottom: 200px !important;
}
@media only screen and (max-width: 900px) {
  .panel-grid__sidebar {
    grid-area: sidebar;
    padding-bottom: 30px !important;
  }
}
.panel-grid__content {
  grid-area: content;
  overflow-x: auto;
  min-width: 340px;
  padding-bottom: 200px !important;
}
.panel-grid__sidebar-right {
  grid-area: sidebar-right;
  padding-bottom: 200px !important;
  border-left: solid 1px #E2E4E5;
}
@media print {
  .panel-grid__content {
    grid-area: content;
    padding: 0 !important;
    overflow: visible;
  }
}
.panel-grid__footer-spacer {
  grid-area: footer-spacer;
  margin-top: 150px;
}
.panel-grid__footer {
  grid-area: footer;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #F7F7F7;
  padding: 12px;
  border-top: 1px solid #E2E4E5;
  z-index: 1000;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.panel-grid .panel-grid .panel-grid__content, .panel-grid .panel-grid .panel-grid__sidebar, .panel-grid .panel-grid .panel-grid__sidebar-right {
  padding-top: 0px !important;
}

.panel-grid__tab-header {
  position: -webkit-sticky;
  position: sticky;
  top: 128px;
  background-color: white;
  z-index: 1000;
}

.guest-app .panel-grid__tab-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
}

.tab-grid .panel-grid__content .panel-grid__tab-header {
  position: relative;
  top: inherit;
  z-index: inherit;
}

@media print {
  .panel-grid__footer {
    display: none !important;
  }
}
.modal-dialog__content .panel-grid__tab-header {
  position: relative;
  top: inherit;
  z-index: inherit;
}

.modal-dialog__content .panel-grid--has-header .panel-grid__content {
  margin-top: 40px;
}

.documents-grid {
  display: grid;
  grid-template-columns: auto minmax(200px, 1fr) minmax(200px, 1fr);
  grid-column-gap: 4px;
  grid-template-areas: "header-title   header-title   header-title" "header-nav     header-nav     header-nav" "header-sub     header-sub     header-sub" "sidebar        content        content" "sidebar        content        content" "footer-spacer  footer-spacer  footer-spacer";
}
.documents-grid__header-title {
  grid-area: header-title;
  padding-top: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}
.documents-grid__header-sub {
  grid-area: header-sub;
  padding-bottom: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.documents-grid__header-nav {
  grid-area: header-nav;
}
.documents-grid__sidebar {
  grid-area: sidebar;
}
.documents-grid__content {
  grid-area: content;
  padding: 16px;
}
.documents-grid__footer-spacer {
  grid-area: footer-spacer;
  height: 300px;
}

.chat-grid {
  background-color: #F7F7F7;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(500px, 1fr);
  grid-column-gap: 4px;
  grid-template-areas: "messages" "footer-spacer" "footer";
}
.chat-grid__messages {
  grid-area: messages;
  padding-top: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}
.chat-grid__footer-spacer {
  grid-area: footer-spacer;
  height: 300px;
}
.chat-grid__footer {
  grid-area: footer;
  position: fixed;
  width: 100%;
  bottom: 60px;
  min-height: 100px;
  background-color: #F7F7F7;
  padding: 5px;
  border-top: 1px solid #E2E4E5;
  z-index: 1000;
}

.table-form th {
  vertical-align: middle;
  border-top: 1px solid #E2E4E5;
  background-color: #F7F7F7;
  padding: 4px;
  border-bottom: 1px solid #E2E4E5;
}
.table-form__padding {
  padding: 4px;
}

.table-form.table-form--no-border td {
  border-bottom: 0;
}

tr.is-drag-over.insert-below td {
  border-bottom: 2px solid red;
}

tr.is-drag-over.insert-above td {
  border-top: 2px solid red;
}

.table-form td .element-input, .table-form td .list-searcher, .table-form td .list-dropdown {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.table-form td .list-searcher {
  width: 100%;
  height: 100%;
  overflow: unset;
}

.table-form.table-reward {
  margin-top: 10px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.table-form th:first-child {
  border-left: 1px solid #E2E4E5;
}

.table-form th:last-child {
  border-right: 1px solid #E2E4E5;
}

.table-form > tr > td {
  box-sizing: border-box;
  vertical-align: middle;
  border-bottom: 1px solid #E2E4E5;
  padding: 3px;
}

.table-form.table-form--no-last-border tr:last-child td {
  border-bottom: 0;
}

.table-form td.table-form__td--no-border-left {
  border-left: 0;
}

.table-form td.table-form__td--no-border-right {
  border-right: 0;
}

.table-form__td--no-padding, .u-table .table-form__td--no-padding {
  padding: 0;
}

.table-form__td--padding-8 td {
  padding: 5px;
}

.table-form__btn {
  border: 0;
  border-radius: 0;
  background-color: white;
}

.element-btn:focus.table-form__btn:focus {
  border: 0;
}

.table-form.table-form--with-date-picker .modal-container {
  position: fixed;
}

/* .table-form td .input {
  width: 100%;
  height: 100%;
}

.input.table-form__input, .textarea.table-form__input {

  -webkit-box-shadow: 0 0 0px 1000px white inset;
  background-color: white;
  border: 0;
  border-radius: 0;
  border-left: 1px solid transparent;
  // font-size: $l4;

  @include modifier('40') {

    min-width: 40px;
    width: 100%;
  }
  @include modifier('80') {

    min-width: 80px;
    width: 100%;
  }
  @include modifier('90') {
    min-width: 90px;
    width: 100%;
  }
  @include modifier('120') {

    min-width: 120px;
    width: 100%;
  }
  @include modifier('200') {

    min-width: 200px;
    width: 100%;
  }
  @include modifier('350') {

    min-width: 350px;
    width: 100%;
  }
}

.input:focus.table-form__input:focus, .textarea:focus.table-form__input:focus {
  border: 0;
  border-left: 1px solid $borderActiveColor;
} */
.table-view .table-view__detail-row > td, .table-view .table-view__detail-row--alt > td {
  vertical-align: top;
  padding-top: 3px;
  padding-bottom: 3px;
}

.table-view__detail-row > td, .table-view .table-view__detail-row--alt.odd > td {
  border-bottom: 1px solid #F7F7F7;
  background-color: #F7F7F7;
}

.table-view__detail-row:nth-child(odd) > td,
.table-view .table-view__detail-row--alt.even > td {
  border-bottom: 1px solid #F7F7F7;
  background-color: white;
}

.table-view .table-view__detail-row--alt.table-view__detail-row--alt-details > td {
  border-bottom: 1px solid #dfdfdf;
}

.table-view__detail-row--alt.no-border-bottom > td {
  border-bottom: 1 solid transparent;
}

.table-view > tr > td {
  padding-left: 5px;
  padding-right: 5px;
}

.table-view.is-editing td, .table-view.is-new td {
  vertical-align: top !important;
  padding: 0;
}

table.pika-table td, table.pika-table th {
  padding: 0;
}

.login {
  margin: auto;
  text-align: center;
}
.login__header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}
.login__section-row__container {
  max-width: 800px;
  margin: 0 auto;
}
.login__row {
  padding: 8px;
}
.login__row--error {
  color: #d41010;
}
.login__hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

.accordion {
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion-panel {
  padding: 0 18px;
  max-height: 50px;
  overflow: hidden;
}

.accordion-panel-active {
  max-height: 100%;
}

.automations-container {
  border: 1px solid #E2E4E5;
  margin-top: 20px;
  margin-bottom: 30px;
}

.automations__container {
  border: 1px solid #E2E4E5;
}

.automations__table td {
  padding: 8px;
}

.automations-editor__details-thumbnail-container {
  border: 1px solid #E2E4E5;
  padding: 10px;
  min-width: 50px;
  min-height: 50px;
}

.blogs-card__container {
  border: 1px solid #E2E4E5;
  margin-top: 20px;
  margin-bottom: 30px;
  display: inline-block;
  width: 200px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
}

.blogs-card {
  width: 200px;
}

.blogs-card__card-content {
  padding: 1rem;
}

.blogs-card__container:hover {
  border-color: #21a1d8;
}

.blogs-card__title-container, .blogs-card__desc-container {
  overflow: scroll;
}

.blogs-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 15px 0;
}

.blogs-card__container--cursor-default {
  cursor: default;
}

.form-section__blogs-preview {
  min-height: 380px;
}

.store-items__table > tr > td {
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #E2E4E5;
}

.store-items__thumbnail-container {
  width: 96px;
}

.store-items__thumbnail {
  max-height: 80px;
  max-width: 80px;
}

.store-items__advanced-toggler-container {
  width: 50px;
}

.store-items__advanced-row td {
  padding: 10px;
}

.store-items__container {
  max-width: 1000px;
}

.store-items__container ul {
  padding: 0;
}

.store-items__container ul li {
  display: inline-block;
  list-style: none;
  max-width: 300px;
  margin: 5px;
}

.store-item__card {
  /* width */
  width: 300px;
  /* height: 400px; */
  margin: 8px;
  cursor: pointer;
}

.store-item__page {
  /* width */
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-item__price--sale {
  margin-left: 6px;
  color: #d41010;
}

.store-item__price--old {
  color: #808285;
  font-size: 11px;
  text-decoration: line-through;
  font-style: italic;
}

.chat-message-left {
  padding-right: 25%;
}

.chat-message-right {
  padding-left: 25%;
}

.chat-message {
  padding: 10px;
  overflow-wrap: break-word;
}

.chat-window {
  overflow: auto;
  height: 40vh;
}

.bot-chat-toggle {
  right: 1%;
  /*left: 85%;*/
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  text-align: center;
  position: absolute;
  bottom: 0;
  border-radius: 100%;
  background-size: auto;
  /*background: url("https://img.icons8.com/plasticine/1x/bot.png") no-repeat 50% 50%;*/
  width: 4em;
  height: 4em;
  transition: all 0.25s;
}

.bot-chat-toggle .status {
  position: absolute;
  height: 1em;
  width: 1em;
  border-radius: 100%;
  background: #4DFF00;
  right: 0;
  top: 0;
  border: 2px solid #FFF;
}

.bot-chat-toggle-hover, .bot-chat-toggle:hover {
  transform: scale(1.5);
  cursor: pointer;
  /*border: solid 4px #4DFF00;*/
  box-shadow: 0 15px 10px 1px rgba(0, 0, 0, 0.2);
}

.bot-chat-toggle-hover .status, .bot-chat-toggle:hover .status {
  border: none;
}

.bot-chat-window-hide {
  right: -27.5em !important;
  opacity: 0 !important;
}

.bot-chat-window {
  right: 50px;
  width: 95%;
  margin-bottom: 15px;
  padding-bottom: 25px !important;
  box-shadow: 0 0 6px #f7f7f7, 0 6px 12px rgba(100, 100, 100, 0.32);
  border-radius: 2%;
}

.message-text {
  width: 80%;
}

.bot-message-text-input {
  width: 100% !important;
}

.bot-sidebar-right {
  min-width: 300px;
  width: auto;
}

.message-image {
  border-radius: 10px;
}

.panel-row {
  position: relative;
  margin: 0 10px 10px;
}

.swatch {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #ccc;
  border-radius: 4px;
  /*margin-left: 4px;*/
  /*margin-bottom: 4px;*/
  box-sizing: border-box;
  border: 2px solid #364347;
  cursor: pointer;
  margin: 1px;
}

.swatch-wrapper-list {
  padding: 5px;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 230px;
  align-items: center;
}

.swatch-wrapper-list:hover {
  background-color: #dfdfdf;
}

.swatch-wrapper-list.is-active {
  background-color: #21a1d8;
  color: white;
}

.default-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.default-swatches .swatch:nth-child(6n+1) {
  margin-left: 0;
}

.color-cursor {
  border-radius: 100%;
  background: #ccc;
  box-sizing: border-box;
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border: 2px solid #fff;
  transition: all 0.2s ease;
}

.color-cursor.dragging {
  transition: none;
}

.color-cursor.spectrum-cursor {
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  top: 0;
  left: 0;
}

.color-cursor.hue-cursor {
  top: 0;
  left: 50%;
  height: 20px;
  width: 20px;
  margin-top: -10px;
  margin-left: -10px;
  pointer-events: none;
}

.spectrum-map {
  position: relative;
  width: 212px;
  height: 120px;
  overflow: hidden;
}

.spectrum-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
}

.hue-map {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: -45px;
  width: 10px;
}

.hue-canvas {
  border-radius: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
}

.hex-field {
  width: 170px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.width-120 {
  width: 120px;
}

.width-350 {
  width: 350px;
}

.comments__editor-container {
  width: 100%;
}

.comments__modal-display {
  margin-bottom: 120px;
}

.comments__editor {
  width: 100%;
}

.comments__editor .fr-box {
  margin-bottom: 15px;
}

.contacts-info__container {
  padding: 8px;
  padding-left: 16px;
  padding-top: 16px;
}

.contacts-btn__container {
  padding: 16px;
  padding-left: 4px;
}

.contacts-detail__container {
  margin-top: 8px;
  padding: 8px;
  padding-left: 16px;
}
.contacts-detail__container:hover {
  background-color: #F7F7F7;
}
.contacts-person__container {
  margin-top: 8px;
  padding: 8px;
  padding-left: 16px;
  /*padding-top: $l4;*/
  border: 1px solid #dfdfdf;
}
.contacts-person__container--group {
  /*padding: $l2;*/
  /*padding-left: $l4;*/
  border: 0;
  padding-top: 16px;
  /*margin-left: $l4;*/
}
.contacts-person__container--children {
  padding: 8px;
  padding-left: 16px;
  border: 0;
  margin-left: 16px;
  border-left: 1px solid #dfdfdf;
}
.contacts-person__icon {
  background: url("/images/person.png") no-repeat center;
  background-size: 14px;
  vertical-align: bottom;
}
.contacts-person__name {
  /*display: inline-block;    */
}

.contacts-department__container {
  padding: 8px;
  padding-left: 12px;
  margin-top: 8px;
  padding: 8px;
  padding-left: 16px;
  /*padding-top: $l4;*/
  border: 1px solid #dfdfdf;
}
.contacts-department__container--group {
  /*padding: $l2;*/
  /*padding-left: $l4;*/
  border: 0;
  padding-top: 16px;
}
.contacts-department__container--children {
  padding: 8px;
  padding-left: 16px;
  border: 0;
  margin-left: 16px;
  border-left: 1px solid #dfdfdf;
}
.contacts-department__icon {
  background: url("/images/department.png") no-repeat center;
  background-size: 14px;
  vertical-align: bottom;
}
.contacts-display__container {
  margin-bottom: 16px;
}
.contacts-display__main {
  padding: 8px;
  min-height: 317px;
}
.contacts-display__group {
  padding: 0;
  border: 1px solid #E2E4E5;
}
.contacts-display__group-header {
  padding: 12px;
  background-color: #F7F7F7;
}
.contacts-display__child {
  padding: 8px;
  padding-left: 16px;
  border: 0;
}

.contacts-display__group .contacts-display__group {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.contacts-display__group-header.level {
  margin-bottom: 0;
}

.contacts-editor__selectors {
  width: 130px;
  padding: 8px;
}
.contacts-editor__form {
  padding: 8px;
  margin-left: 16px;
}

.date-open-hours {
  margin: 0 10px;
}

.dispatch-list__table-th {
  padding: 8px;
}

.dispatch-list__table {
  font-size: 10px;
}

.dispatch-list__table-info-row {
  font-weight: bold;
}

.dispatch-list__table-info-row > td {
  font-size: 11px;
  border-bottom: 1px solid #dfdfdf;
}

.dispatch-list__table-info-row > td:first {
  border-left: 1px solid #dfdfdf;
}

.dispatch-list__table-info-row.is-expanded > td,
.odd.dispatch-list__table-info-row.is-expanded > td,
.dispatch-list__table-info-row.is-expanded > td,
.even.dispatch-list__table-info-row.is-expanded > td {
  border-bottom: 1px solid transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #dfdfdf;
}

.dispatch-list__table-info-row > td > button .sapn,
.dispatch-list__table-info-row > td .tag:not(body),
.dispatch-list__table-info-row td button.button.element-btn.button:not(.is-normal):not(.is-medium):not(.is-large) {
  font-size: 10px;
}

.u-table .dispatch-list__table-spacer-row > td {
  padding-top: 30px;
  border-bottom: 1px solid #dfdfdf;
}

.u-table .dispatch-list__table-details-row td {
  padding-left: 35px;
}

.dispatch-list__table-th {
  font-size: 10px;
  white-space: nowrap;
}

.dispatch-item__header:first-child, .dispatch-item__td:first-child {
  border-left: 1px solid #dfdfdf;
}

.dispatch-item__header:last-child, .dispatch-item__td:last-child {
  border-right: 1px solid #dfdfdf;
}

.dispatch-item__header {
  background-color: #fdf1f1;
  padding: 16px;
  font-size: 12px;
  vertical-align: middle;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.dispatch-item__td {
  padding: 16px;
}
.dispatch-item__line {
  margin-bottom: 8px;
}
.dispatch-item__separator td {
  padding: 16px;
  border-top: 1px solid #dfdfdf;
}
.dispatch-item__details-table {
  padding: 16px;
}
.dispatch-item__details-table-td {
  padding: 16px;
}

.dispatch-item.u-print-no-break {
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-bottom: 5px;
}

.dispatch-item__details-table .is-set-with-choices-child {
  padding-left: 24px;
}

.dispatch-item__details-table .is-set-child {
  padding-left: 24px;
}

.dispatch-item__details-table .is-set-with-choices-child.is-set-child {
  padding-left: 32px;
}

.dispatch-item.dispatch-item--dispatchable-today .dispatch-item__header {
  background-color: #e3ffe0;
}

.u-table.dispatch-item__details-table td {
  vertical-align: top;
}

.dispatch-summary__table tr:nth-child(odd) {
  background: #F7F7F7;
}

@media print {
  .dispatch-item {
    box-sizing: border-box;
    border: 1px solid #dfdfdf;
    margin-bottom: 4px;
    font-size: 10px;
    padding: 2px;
  }
  .dispatch-item__table {
    padding: 2px;
    font-size: 10px;
  }
  .dispatch-item__table tr td {
    padding: 2px;
  }
  .dispatch-item__line {
    line-height: 8px;
  }
  .dispatch-item__info-table {
    width: 100%;
  }
  .dispatch-item__info-table-td {
    padding: 4px;
    width: 25%;
    vertical-align: top;
  }
  .dispatch-item__details-table-td {
    padding: 4px;
    vertical-align: top;
  }
}
.documentation-icon-title {
  right: 5%;
  position: absolute;
  margin: 25px;
}

.documentation-description-title {
  padding: 15px;
  font-size: 16px;
}

.documentation-description {
  font-style: italic;
  color: #1f1b1b99;
}

.documents {
  /*@include element('print-table') {

    box-sizing: border-box;

    td {
      padding: $l4;
      backgound-color: black;
    }

    @include modifier('header-contact') {

      td {
        box-sizing: border-box;
        background-color: blue;
        min-height: 128px;
      }
    }
  }*/
}
.documents__info-container {
  padding-top: 8px;
  padding-bottom: 16px;
}
.documents__details-container {
  padding-top: 16px;
  padding-bottom: 16px;
}
.documents__totals-container {
  padding-top: 20px;
}
.documents__comments-container {
  padding-top: 16px;
  padding-bottom: 16px;
}
.documents__totals {
  width: 100%;
}
.documents__totals-value {
  width: 150px;
}
.documents__header {
  /* p {
    margin-top: 4px;
    margin-bottom: 4px;
  } */
}
.documents__header-status {
  margin-left: 12px;
}
.documents__sub-header {
  padding: 8px;
}
.documents__section {
  box-sizing: border-box;
  margin-bottom: 12px;
  border: 1px solid #dfdfdf;
}
.documents__header-self {
  box-sizing: border-box;
  min-height: 80px;
}
.documents__header-self td {
  padding: 16px;
}
.documents__header-item {
  box-sizing: border-box;
}
.documents__header-item--logo {
  text-align: left;
  width: 100px;
}
.documents__header-item--company {
  text-align: left;
  width: auto;
  min-width: 300px;
}
.documents__header-item--date {
  text-align: right;
}
.documents__header-contact {
  box-sizing: border-box;
  min-height: 130px;
}
.documents__header-contact td {
  width: 50%;
  padding: 16px;
}
.documents__footer {
  padding: 16px;
}
.documents__details {
  padding: 8px;
}
.documents__details-error {
  position: absolute;
  z-index: 10;
  margin-top: -30px;
  margin-left: 5px;
}
.documents__details-table {
  width: 100%;
}
.documents__details-table th {
  font-weight: bold;
  padding: 8px;
  padding-bottom: 12px;
}
.documents__details-table td {
  padding: 8px;
}
.documents__details-table tr:hover td {
  background-color: #F7F7F7;
}
.documents__aging-summary {
  margin-top: 8px;
  margin-bottom: 16px;
}
.documents__aging-summary table {
  width: 100%;
}
.documents__aging-summary th, .documents__aging-summary td {
  border: 1px solid #dfdfdf;
  padding: 8px;
  text-align: center;
}
.documents__conflict-option {
  border: 1px solid #dfdfdf;
  border-bottom: 2px solid #dfdfdf;
  min-height: 80px;
  max-width: 50%;
  cursor: pointer;
}
.documents__conflict-option p {
  padding-top: 4px;
  padding-bottom: 4px;
}
.documents__conflict-option textarea {
  cursor: pointer;
}
.documents__conflict-option:hover {
  border-bottom: 2px solid #999999;
}
.documents__conflict-option.is-selected {
  border-bottom: 2px solid #21a1d8;
}
.documents__conflict-option.is-selected textarea {
  color: #21a1d8;
}

.table-form .documents__details-table-row--isSet td {
  border-bottom: 1px solid transparent;
}

.table-form .documents__details-table-row--isSetChild td {
  border-bottom: 1px solid transparent;
}

.table-form .documents__details-table-row--isSetChild td input, .table-form .documents__details-table-row--isSetChild td textarea {
  color: #2e2e2e;
  font-size: 11px;
}

.table-form .documents__details-table-row--isSetChild-last td {
  border-bottom: 1px solid #dfdfdf;
}

.documents-print__section {
  padding-bottom: 5px;
}
.documents-print__description {
  min-width: 300px;
  max-width: 400px;
}
.documents-print__date {
  width: 120px;
}
.documents-print__label {
  margin-bottom: 3px;
}
.documents-print__notes {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 9px !important;
}
.documents-print__terms {
  font-size: 9px !important;
}
.documents-print__signature-table td {
  font-size: 9px !important;
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
}
.documents-print__signature-label {
  width: 100px;
  padding: 3px;
  padding-left: 10px;
}
.documents-print__signature-value {
  padding: 3px;
  border-right: 1px solid #dfdfdf;
  width: 200px;
}
.documents-print__signature-value--half {
  width: 100px;
}

.documents__totals td {
  padding: 3px;
}

.documents__totals-value.u-v-align-middle {
  vertical-align: middle;
}

.documents__header-container {
  font-size: 10px;
}

.documents__body-container .u-print-table {
  font-size: 10px;
}

.accordian-btn {
  outline: none;
  width: auto;
  vertical-align: middle;
  padding: 16px;
  font-size: 16px;
  line-height: 1.8;
  cursor: pointer;
  display: inline-block;
  border: #dfdfdf 1px solid;
  margin-bottom: -1px;
  box-sizing: border-box;
}
.accordian-btn--fullw {
  width: 100%;
}
.accordian-btn--no-bg {
  background: none;
  border: 1px solid transparent;
}
.accordian-btn--on {
  border: #dfdfdf 1px solid;
}
.accordian-btn__icon {
  display: inline-block;
}
.accordian-btn__label {
  display: inline-block;
}

.accordian-btn:hover {
  color: #21a1d8;
}

.accordian-btn:focus {
  background-color: #dfdfdf;
  border: #dfdfdf 1px solid;
}

.color-picker__btn {
  border: 1px solid;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin-left: -30px;
}

.color-picker__btn.is-readonly {
  cursor: not-allowed;
}

.color-picker__input {
  z-index: 0;
  width: 200px !important;
}

.color-picker__wrapper {
  width: 335px;
  position: relative;
  right: 50px;
  z-index: 1;
}

.gjs-fullscreen .modal-dialog__content.modal-dialog__content--color-picker-override {
  padding-top: 20px !important;
  padding-bottom: 130px !important;
}

.modal-dialog__content.modal-dialog__content--color-picker-override {
  padding-top: 20px !important;
  padding-bottom: 150px !important;
}

.button[disabled] {
  border: 0;
  background: #F7F7F7;
}

.button.is-focused.element-btn, .button:focus.element-btn {
  box-shadow: none;
}

.element-btn-with-modal-dialog:not(:last-child) {
  margin-right: 0.5rem !important;
}

.element-btn-with-modal-dialog--no-border {
  background-color: transparent;
  border: 0;
}

.button--delete:hover, .button--delete.is-on {
  color: white;
  background-color: #d41010;
}

.element-pushbtn__component:hover {
  color: #257EBA;
  cursor: pointer;
}

.tag.element-btn__status-badge {
  display: inline-block;
  border-radius: 1000px;
  color: white;
  min-width: 10px;
  height: 10px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 2px;
  font-weight: bold;
}

.element-btn__badge {
  display: inline-block;
  border-radius: 1000px;
  background-color: #d41010;
  color: white;
  min-width: 20px;
  font-size: 10px;
  margin-left: 5px;
  padding: 2px;
  font-weight: bold;
}

.element-btn--no-border {
  border: 0;
}

.button:focus {
  border: 1px solid #21a1d8;
}

.u-btn-menu .button {
  width: 100%;
  margin-bottom: 5px;
}

.element-checkbox {
  cursor: pointer;
  display: inline-block;
}

.element-checkbox--checked i {
  font-size: 15px;
  color: #21a1d8;
}

.element-checkbox--unchecked i {
  font-size: 15px;
  color: #808285;
}

.element-checkbox--disabled .element-checkbox--unchecked i {
  cursor: not-allowed;
  font-size: 15px;
  color: #E2E4E5;
}

.element-checkbox--disabled .element-checkbox--checked i {
  cursor: not-allowed;
  color: #dfdfdf;
}

.element-checkbox--disabled .element-checkbox__label {
  cursor: not-allowed;
  color: #E2E4E5;
}

.element-checkbox__label {
  cursor: pointer;
  margin-left: 5px;
}

.element-checkbox__label:hover {
  color: #257EBA;
}

.element-icon {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
}

.element-icon--xs {
  font-size: 8px;
}

.element-icon--margin {
  margin-left: 3px;
  margin-right: 3px;
}

.input {
  border: #dfdfdf 1px solid;
}

input[readonly] {
  border: 0;
  background: #F7F7F7;
}

.element-input .field {
  margin-bottom: 0;
}

.element-input .control {
  padding: 0;
  font-size: inherit;
}

.element-input {
  display: inline-block;
  margin-right: 3px;
}
.element-input--fullw {
  width: 100%;
}

.input.table-form__input, .textarea.table-form__input {
  height: 100%;
  min-height: 2.5em;
  box-shadow: 0 0 0px 1000px white inset;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.input.table-form__input--40, .textarea.table-form__input--40 {
  min-width: 40px;
  width: 100%;
}
.input.table-form__input--80, .textarea.table-form__input--80 {
  min-width: 80px;
  width: 100%;
}
.input.table-form__input--90, .textarea.table-form__input--90 {
  min-width: 90px;
  width: 100%;
}
.input.table-form__input--120, .textarea.table-form__input--120 {
  min-width: 120px;
  width: 100%;
}
.input.table-form__input--200, .textarea.table-form__input--200 {
  min-width: 200px;
  width: 100%;
}
.input.table-form__input--350, .textarea.table-form__input--350 {
  min-width: 350px;
  width: 100%;
}

.input--40, .table-form .form__input .input--40 {
  width: 40px;
}

.input--50, .table-form .form__input .input--50 {
  width: 50px;
}

.input--60, .table-form .form__input .input--60 {
  width: 60px;
}

.input--80, .table-form .form__input .input--80 {
  width: 80px;
}

.input-no-style {
  /* border: 0; */
  width: 100%;
  height: 100%;
}

.files-uploader__input {
  display: none;
}

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

.element-label-dropdown.button-less {
  padding: 12px;
  padding-left: 0;
  display: inline-block;
  min-width: 63px;
  min-height: 43px;
  /* color: $linkColor; */
  /*border: transparent 1px solid;*/
}

.element-label-dropdown.button-less:hover {
  color: #21a1d8;
}

.element-label-dropdown.button-less:focus {
  outline: none;
  color: #21a1d8;
  /* border: $borderActiveColor 1px solid; */
}

.list-dropdown .element-list-dropdown-label {
  height: 100%;
  padding: 12px;
  display: inline-block;
}

.list-dropdown .element-list-dropdown-label:hover {
  color: #21a1d8;
}

.list-dropdown .element-list-dropdown-label:focus {
  outline: none;
}

.list-dropdown.u-tappable {
  display: inline-flex;
  align-items: center;
}

.textarea {
  border: #dfdfdf 1px solid;
  vertical-align: middle;
}

.element-textarea textarea {
  padding-top: 5px;
  padding-bottom: 5px;
}

.textarea[readonly] {
  border: 0;
  background: #F7F7F7;
}

.element-textarea {
  display: inline-block;
  vertical-align: middle;
}

.element-textareapvt {
  width: 100%;
  -webkit-box-shadow: 0 0 0px 1000px #dfdfdf inset;
  font-size: 16px;
  line-height: 1.4;
  vertical-align: middle;
  padding: 8px;
  background-color: #F7F7F7;
  border-radius: 8px 8px 8px 8px;
  border: #dfdfdf solid 1px;
  box-sizing: border-box;
  display: inline-block;
}
.element-textareapvt--large {
  width: 300px;
}

.element-textareapvt:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  background-color: white;
  border: #21a1d8 solid 1px;
}

.button__toggle {
  /*@include modifier('off') {
    doesnt work: component never assigns this classname
  }*/
}
.button__toggle--on {
  color: white;
  background-color: #21a1d8;
}
.button__toggle--on:hover {
  background-color: #21a1d8;
}

.button.on .element-icon {
  color: #21a1d8;
}

.button.on:hover .element-icon {
  color: #257EBA;
}

.element-toggler-container {
  cursor: pointer;
  display: inline-block;
}

.element-toggler-container.disabled {
  cursor: not-allowed;
}

.element-toggler-container.disabled .element-toggler {
  color: #b0acac;
}

.element-toggler-container.disabled .element-toggler.has-text-success {
  color: #66a07a !important;
}

.element-toggler-container .element-icon {
  vertical-align: middle;
}

.element-toggler {
  font-size: 36px;
}

.element-toggler-container .element-icon--xs {
  font-size: 22px;
}

.bigordr-slider-image-delete-btn {
  position: absolute;
  top: -10px;
  right: -10px;
}

.bigordr-slider-image-drop-container {
  display: flex;
}

.bigordr-slider-image {
  margin: 5px;
}

.tns-outer {
  grid-template-areas: "left center right";
  display: grid;
  grid-template-columns: 0 auto 0;
  grid-template-rows: auto;
}

.tns-ovh {
  grid-area: center;
}

.tns-controls {
  display: grid;
  grid-column: 1/4;
  grid-row: 1;
}

.tns-controls > button {
  grid-column: 1;
  width: min-content;
  align-self: center;
  z-index: 1;
  background-color: #e4e4e47a;
  border: none;
  border-radius: 20px;
  position: relative;
}

.tns-controls > button:nth-child(1) {
  grid-column: 1;
  justify-self: start;
  left: 15px;
}

.tns-controls > button:nth-child(2) {
  grid-column: 3;
  justify-self: end;
  right: 15px;
}

button.slider-button {
  padding: 10px;
  font-size: 20px;
}

button.slider-button:hover {
  background-color: #e4e4e4c4;
}

button.slider-button:focus {
  outline-width: 0;
}

.slider-thumbnail {
  display: flex;
  align-items: center;
}

.drop-container-border.on-drop-select-left {
  border-left: 5px dashed rgba(50, 115, 220, 0.5);
}

.drop-container-border.on-drop-select-right {
  /*border: 5px dashed rgba(50, 115, 220, 0.5);*/
  border-right: 5px dashed rgba(50, 115, 220, 0.5);
}

.drop-container-border {
  border: 5px solid transparent;
}

.bigordr-slider-preview {
  width: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.slider-button-bottom-right {
  position: relative;
  bottom: 35px;
  float: right;
  margin-right: 10px;
}

.slider-link-btn.is-on {
  color: #257EBA;
}

.bigordr-products-slider-preview {
  width: 100%;
  min-height: 400px;
}

.slider__products-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 15px 0;
}

.slider__products-card {
  display: inline-block;
  margin: 0 10px;
  width: 200px;
  overflow-wrap: break-word;
}

.slider__products-card .media-content {
  overflow-wrap: break-word;
}

.slider__products-image {
  max-height: 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.steps-bar__container {
  display: inline-block;
}

.steps-bar {
  counter-reset: step;
  display: inline-block;
}

.step-node {
  display: inline-block;
  list-style-type: none;
  font-size: 12px;
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 5px;
  margin-bottom: 8px;
}

.step-node__counter, .step-node__label {
  cursor: pointer;
}

.step-node.disabled .step-node__counter, .step-node.disabled .step-node__label {
  cursor: not-allowed;
}

.step-node__counter:hover, .step-node__label:hover {
  color: #257EBA;
}

.steps-bar__container.is-horizontal .step-node.disabled .step-node__counter {
  border: 0;
  width: 12px;
  height: 12px;
  font-size: 12px;
  line-height: 12px;
}
.steps-bar__container.is-horizontal .step-node__counter {
  font-size: 15px;
  width: 30px;
  height: 30px;
  counter-increment: step;
  line-height: 30px;
  border: 1px solid #E2E4E5;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
  border-radius: 50%;
  background-color: white;
}
.steps-bar__container.is-horizontal .step-node__label {
  display: inline-block;
  height: 20px;
  vertical-align: bottom;
}
.steps-bar__container.is-horizontal .step-node.disabled.active .step-node__counter {
  color: #21a1d8;
  background: none;
}

.step-node.active {
  color: #21a1d8;
}

.step-node.active .step-node__counter {
  color: white;
  background-color: #21a1d8;
  border-color: #21a1d8;
}

.step-node.disabled:hover {
  color: #58585B;
}

.step-node.not-allowed, .step-node.not-allowed .step-node__label, .step-node.not-allowed .step-node__counter {
  cursor: not-allowed;
}

.step-node__btn {
  padding: 3px;
  border: 0;
  height: 20px;
  background: none;
}

.step-node__btn:hover {
  background-color: #E2E4E5;
}

.step-node.disabled .step-node__btn:hover {
  background: none;
}

.steps-bar__container.is-vertical {
  display: block;
}
.steps-bar__container.is-vertical .steps-bar {
  counter-reset: step;
  display: block;
}
.steps-bar__container.is-vertical .step-node {
  cursor: pointer;
  display: block;
  list-style-type: none;
  font-size: 12px;
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 8px;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
}
.steps-bar__container.is-vertical .step-node:hover {
  background-color: #E2E4E5;
}
.steps-bar__container.is-vertical .step-node__counter {
  display: inline-block;
  border: 0;
}
.steps-bar__container.is-vertical .step-node__label {
  display: inline-block;
  margin-left: 10px;
}
.steps-bar__container.is-vertical .step-node.active {
  background-color: #21a1d8;
  color: white;
}

@font-face {
  font-family: "NW-7";
  src: url("/assets/fonts/NW-7.eot");
  /* IE9 Compat Modes */
  src: url("/assets/fonts/NW-7.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/NW-7.woff2") format("woff2"), url("/assets/fonts/NW-7.woff") format("woff"), url("/assets/fonts/NW-7.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}
@media print {
  html, body {
    height: 100%;
  }
}
.invoice-editor {
  padding: 8px;
}

.hct-waybills__multiple-waybills-per-page {
  padding-top: 50px;
  height: 100%;
  width: 100%;
}
@media screen {
  .hct-waybills__multiple-waybills-per-page .hct-waybills__column {
    width: 370px;
    max-height: 320px;
  }
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__container-outer {
  padding: 10px;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__container {
  width: 100%;
  height: 100%;
  font-family: 微軟正黑體, Myriad Pro, Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.hct-waybills__multiple-waybills-per-page .hct-waybills__container--empty {
  vertical-align: middle;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__barcode-container {
  max-width: 200px;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__barcode {
  font-family: "NW-7";
  font-size: 35px;
  color: black;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__region-code {
  font-size: 45px;
  height: 45px;
  color: black;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__contact-info {
  padding-left: 5px;
  min-height: 70px;
  max-height: 70px;
  text-align: left;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__font-bold {
  font-size: 12px;
  color: black;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__font-normal {
  font-size: 12px;
  color: black;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__font-small {
  font-size: 11px;
  color: black;
}
.hct-waybills__multiple-waybills-per-page .hct-waybill__font-smallest {
  font-size: 11px;
  color: black;
}

.hct-waybill {
  /*@include element('font-smallest') {
    font-size: 16px;
    color: black;
  }*/
}
.hct-waybill__hidden {
  border: 1px solid #dfdfdf;
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
}
.hct-waybill__hidden:hover {
  border: 1px solid #21a1d8;
}
.hct-waybill__container {
  width: 450px;
  max-width: 450px;
  font-family: 微軟正黑體, Myriad Pro, Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.hct-waybill__notifications {
  min-width: 14px;
  max-width: 14px;
  text-align: center;
  vertical-align: top;
}
.hct-waybill__details-container {
  width: 100%;
  border: 1px solid #000;
}
.hct-waybill__details-container table {
  width: 100%;
}
.hct-waybill__details-td {
  padding: 2px;
  text-align: center;
  vertical-align: middle;
  color: black;
}
.hct-waybill__details-td td {
  text-align: center;
  vertical-align: middle;
}
.hct-waybill__details-td--date {
  text-align: right;
}
.hct-waybill__details-td--border-top {
  border-top: 1px solid #000;
}
.hct-waybill__details-td--border-bottom {
  border-bottom: 1px solid #000;
}
.hct-waybill__details-td--border-right {
  border-right: 1px solid #000;
}
.hct-waybill__barcode-container {
  max-width: 300px;
}
.hct-waybill__barcode {
  font-family: "NW-7";
  font-size: 45px;
  color: black;
}
.hct-waybill__region-code {
  font-size: 55px;
  height: 60px;
  color: black;
}
.hct-waybill__font-bold {
  font-size: 24px;
  color: black;
}
.hct-waybill__font-normal {
  font-size: 20px;
  color: black;
}
.hct-waybill__font-small {
  font-size: 15px;
  color: black;
}
.hct-waybill__font-smallest {
  font-size: 14px;
  color: black;
}
.hct-waybill__contact-info {
  padding-left: 5px;
  min-height: 90px;
  text-align: left;
}

.hct-summary {
  font-size: 11px;
}

.hct-summary .u-table td {
  padding: 4px;
}

.tw-invoices {
  font-size: 12px;
  width: 800px;
  page-break-after: always;
}
.tw-invoices__page-break {
  margin-bottom: 30px;
}
.tw-invoices__title-container {
  margin-bottom: 8px;
}
.tw-invoices__title {
  font-size: 16px;
  color: black;
  font-weight: bold;
  margin-bottom: 4px;
}
.tw-invoices__header-table {
  width: 100%;
}
.tw-invoices__header-table-td {
  width: 50%;
}
.tw-invoices__header-table-inner {
  width: 100%;
}
.tw-invoices__header-table-inner td {
  padding: 8px;
  border: 1px solid black;
}
.tw-invoices__header-table-td-left {
  width: 90px;
}
.tw-invoices__header-table-summary {
  width: 100%;
  margin-top: 4px;
}
.tw-invoices__header-table-summary td {
  padding: 8px;
  border: 1px solid black;
}
.tw-invoices__header-table-summary-th {
  border: 1px solid black;
  padding: 8px;
}
.tw-invoices__header-table-summary-th--date {
  min-width: 85px;
}
.tw-invoices__header-table-footer {
  width: 800px;
}
.tw-invoices__header-table-footer td {
  padding: 8px;
  border: 1px solid black;
}

@media print {
  .hct-waybills__multiple-waybills-per-page {
    padding: 0;
    box-sizing: border-box;
  }
  .hct-waybills__multiple-waybills-per-page .hct-waybills__column {
    width: 50%;
  }
  .hct-waybills__multiple-waybills-per-page .hct-waybill__container-outer {
    padding: 15px;
  }
  .hct-waybills__multiple-waybills-per-page .hct-waybills__row:nth-child(1) .hct-waybills__column {
    vertical-align: top;
    height: 98mm;
  }
  .hct-waybills__multiple-waybills-per-page .hct-waybills__row:nth-child(2) .hct-waybills__column {
    vertical-align: middle;
    height: 90mm;
  }
  .hct-waybills__multiple-waybills-per-page .hct-waybills__row:nth-child(3) .hct-waybills__column {
    vertical-align: bottom;
  }
  .hct-waybills__multiple-waybills-per-page .hct-waybills__row:nth-child(3) .hct-waybill__container-outer {
    padding: 15px;
    padding-top: 35px;
    padding-bottom: 0px;
  }
}
.tw-einvoice-tracks-manager-row {
  width: 200px;
}

.files-manager {
  display: grid;
  grid-template-areas: "menu results";
  grid-template-rows: auto;
  grid-template-columns: 250px auto;
}

.files-manager-menu {
  grid-area: menu;
}

.files-manager-results {
  grid-area: results;
}

.images-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.images-container--single-image {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.images-container-items {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.files__gallery-item-container {
  display: inline-block;
  padding: 10px;
  text-align: center;
}

.files__icon {
  font-size: 4em;
}

img.files__image-item.default.files__gallery-item--no-underline {
  border: 0;
}

.images-gallery img {
  padding: 2px;
}

.images-gallery .default {
  border-bottom: 2px solid #21a1d8;
}

.images-uploader .uploadcare--widget__button.uploadcare--widget__button_type_open {
  display: none;
}

.uploadcare--page .uploadcare--powered-by {
  display: none;
}

.uploadcare--widget .uploadcare--widget__dragndrop-area {
  display: none;
}

.form__label {
  color: #2e2e2e;
}
.form__label--right {
  text-align: right;
}
.form__input {
  min-height: 41px;
  width: 100%;
  padding-top: 5px;
  padding-left: 0;
  min-width: 30px;
  max-width: 800px;
}
.form__input--40 {
  width: 40px;
}
.form__input--65 {
  width: 65px;
}
.form__input--100 {
  width: 100px;
}
.form__input--full-width {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.form__input .input, .form__input .textarea, .form__input .list-searcher {
  width: 350px;
  margin-right: 5px;
}

.form__input--table-view {
  width: 100%;
}

.form__input--table-view .element-input, .form__input--table-view .input {
  width: 100%;
}

.form-input-row, .form-row {
  margin-top: 10px;
  margin-bottom: 20px;
}

.form-input-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-input-row .form-input-row {
  margin-left: 10px;
  margin-bottom: 10px;
}

.form-input-row .form-input-row:last-child {
  margin-bottom: 0;
}

.form__input > .element-checkbox {
  margin-top: 7px;
  margin-left: 10px;
}

.form-input-row__label-container {
  margin-bottom: 8px;
}

.form__input-large {
  width: 300px;
}

.form__input-numbers {
  width: 80px;
}

.form__input-small {
  width: 60px;
}

.form-label {
  color: #2e2e2e;
  margin-bottom: 3px;
}

.form-cell {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}

.form-cell:first-child {
  margin-left: 0;
}

.form-cell:last-child {
  margin-right: 0;
}

.form__input {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-column-gap: 4px;
}
.form-grid--contacts {
  grid-template-columns: minmax(auto, 150px) 1fr;
}
.form-grid--2 {
  grid-template-columns: 1fr 1fr;
}
.form-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-grid--1and2 {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 500px) {
  .form-grid--2 {
    grid-template-columns: 1fr;
  }
}
.form-section__outer-container--only-margin {
  margin: 10px;
}

.form-section__outer-container {
  margin: 10px;
  border: 1px solid #E2E4E5;
}

.form-section__outer-container--no-margin {
  margin: 0;
}

.form-section__outer-container--no-border {
  border: 1px solid transparent;
}

.form-section__title-container {
  margin-bottom: 20px;
  padding: 20px;
  border-bottom: 1px solid #E2E4E5;
  background-color: #F7F7F7;
}

.form-section__title-container.form-section__subtitle-container {
  margin-bottom: 0px;
  padding: 0.7em 20px;
}

.form-section__content.centered {
  text-align: center;
  padding: 5px;
  min-width: auto;
}

.form-section__title-container--accordian {
  padding: 8px 15px;
  margin-bottom: 0;
}

.form-section__title-container--accordian:hover {
  color: #257EBA;
}

.form-section__title-container--accordian-collapsed {
  border-bottom: 0;
  margin-bottom: 0;
}

.form-section__title {
  width: 100%;
  font-size: 20px;
  color: #2e2e2e;
}

.form-section__title.form-section__subtitle {
  font-size: 1.3em;
}

.form-section__title--accordian {
  width: 100%;
  font-size: 16px;
  color: #2e2e2e;
}

.form-section__description {
  padding: 20px;
}

.form-section__content {
  padding: 20px;
  min-width: 250px;
}

.form-section__content-container--accordian {
  padding: 0 15px;
}

.form-sub-section {
  margin-bottom: 10px;
}

.form-sub-section__label {
  font-weight: bold;
  color: #21a1d8;
}

.form-sub-section__content {
  padding: 5px;
  padding-bottom: 10px;
}

.table-row__label {
  min-width: 200px;
  padding: 12px;
  padding-left: 0;
}

.table-row__detail {
  min-width: 300px;
  padding: 12px;
  padding-left: 0;
}

.u-table--even-children-bg tr:nth-child(even) {
  background: #E2E4E5;
}

.fr-box.fr-basic .fr-element.fr-view {
  font-family: Arial, "Times New Roman", Georgia, serif;
  font-size: 14px;
  color: #444444;
}

.fr-popup.fr-active {
  z-index: 6000 !important;
}

.panel-grid--has-header .fr-toolbar.fr-sticky-on {
  margin-top: 85px;
}

.fr-box.fr-fullscreen .fr-toolbar.fr-top {
  margin-top: 0;
  position: absolute;
}

.fr-box.fr-fullscreen {
  z-index: 6000 !important;
}

.modal-dialog__content .fr-toolbar.fr-sticky-on {
  margin-top: 0;
}

.modal-dialog__container--fr-fullscreen {
  z-index: 10020;
}

.gjs-one-bg {
  background-color: #F7F7F7;
}
.gjs-one-color {
  color: #F7F7F7;
}
.gjs-one-color-h:hover {
  color: #F7F7F7;
}
.gjs-two-bg {
  background-color: #58585B;
}
.gjs-two-color {
  color: #58585B;
}
.gjs-two-color-h:hover {
  color: #58585B;
}
.gjs-three-bg {
  background-color: #dfdfdf;
}
.gjs-three-color {
  color: #dfdfdf;
}
.gjs-three-color-h:hover {
  color: #dfdfdf;
}
.gjs-four-bg {
  background-color: #2e2e2e;
}
.gjs-four-color {
  color: #2e2e2e;
}
.gjs-four-color-h:hover {
  color: #2e2e2e;
}

.gjs-color-warn {
  color: #3c3c3f;
  fill: #3c3c3f;
}

.gjs-blocker-overlay {
  width: 100%;
  height: 100%;
  background-color: red;
  position: absolute;
}

.gjs-editor .gjs-off-prv {
  display: none !important;
}

.web-builder__web-preview {
  width: 100%;
  min-height: 800px;
  border: 0;
}

.sp-button-container button, .sp-button-container a {
  color: #58585B !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
}

.gjs-fields #gjs-sm-add {
  color: #58585B !important;
}

.style-manager__bar--hidden .style-manager-container {
  right: -500px;
}

.style-manager__bar--hidden .blocks-manager-container {
  right: 0;
}

.style-manager__bar--hidden .blocks-manager {
  display: none;
}

.style-manager-container {
  position: fixed;
  top: 0;
  right: 0;
  min-width: 250px;
}

.style-manager {
  height: 100vh;
  overflow: auto;
  width: 250px;
  padding: 0;
  padding-bottom: 100px;
}

.style-manager__toggler {
  bottom: 55px;
  padding: 20px;
  position: absolute;
  z-index: 400;
  width: 100px;
  background-color: #dfdfdf;
}

.blocks-manager-container {
  position: fixed;
  top: 0;
  right: 250px;
  min-width: 80px;
  height: 100vh;
}

.blocks-manager {
  height: 100vh;
  overflow: auto;
  width: 100px;
  padding-top: 140px;
  padding-bottom: 200px;
  background-color: #dfdfdf;
}

.blocks--hidden {
  display: none;
}

.style-manager .gjs-column {
  height: 100vh;
}

.sp-container {
  z-index: 1000;
}

.gjs-container.is-editing {
  margin-right: 0;
}

.gjs-container.is-editing.style-manager__bar--hidden {
  margin-right: 0;
}

.gjs-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  border: 1px solid #dfdfdf;
}

.gjs-column {
  min-height: 75px;
  flex-grow: 1;
  flex-basis: 100%;
  overflow: auto;
  padding: 0;
}

.gjs-column .panel__top {
  background-color: #F7F7F7;
}

.gjs-block {
  color: #58585B;
  height: 70px;
  width: 100px;
  text-align: center;
  border: 1px solid #58585B;
  margin: 5px;
}

.gjs-block:hover {
  background-color: #dfdfdf;
}

.gjs-block svg {
  display: block;
  margin: auto;
}

.gjs-block .fa-stack {
  font-size: 20px;
  line-height: 1em;
  margin: auto;
}

.gjs-block .fa-stack {
  margin: auto;
}

.gjs-block.fa {
  font-size: 20px;
  line-height: 1em;
  padding: 10px;
}

.gjs-full-width-img-icon {
  margin-top: -6px;
}

.gjs-full-width-icon {
  margin-top: 8px;
}

.gjs-block i {
  font-size: 20px;
  line-height: 1em;
  padding: 10px;
}

.gjs-blocks-cs {
  border: 0;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #dfdfdf;
}

.gjs__center-devices {
  justify-content: center;
}

/* Let's highlight canvas boundaries */
#gjs {
  border: 3px solid #444;
}

/* Reset some default styling */
.gjs-cv-canvas {
  top: 0;
  width: 100%;
  height: 100%;
}

.panel__top {
  padding: 0;
  width: 100%;
  display: flex;
  position: initial;
  justify-content: center;
  justify-content: space-between;
}

.panel__basic-actions {
  position: initial;
}

.editor-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}

.editor-row.is-editing {
  height: 100vh;
}

.editor-row.is-readonly {
  height: 100%;
}

.panel__left {
  flex-basis: 230px;
  position: relative;
  overflow-y: auto;
  background-color: #dfdfdf;
}

/* ----------- Retina Screens ----------- */
.panel__right {
  flex-basis: 250px;
  position: relative;
  overflow-y: auto;
}

/* ----------- Retina Screens ----------- */
.blocks-container, .blocks-container > div {
  height: auto;
}

.blocks-container {
  padding-bottom: 100px;
}

.gjs-blocks-cs {
  margin: 0;
}

.gjs-fullscreen {
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 6000;
  left: 0;
  height: 10000px;
  overflow: hidden;
}

.gjs-pn-btn:hover {
  color: #257EBA;
}

.panel-btn-active {
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
}

.dropdown-menu {
  left: -65px;
  min-width: 15rem;
}

.gjs-view-height {
  height: auto;
}

.gjs-pn-disable {
  pointer-events: none;
  opacity: 0.5;
}

.editor-loading {
  visibility: hidden;
}

.editor-loaded {
  visibility: visible;
}

.editor-top-panel-display-none {
  display: none;
}

.editor-top-panel-display-initial {
  display: block;
}

.editor-canvas {
  flex-grow: 1;
}

.gjs-btn-modal-target:hover {
  background-color: #dfdfdf;
}

.gjs-btn-modal-target {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  width: 100px;
  align-items: center;
}

/* ----------- Retina Screens ----------- */
.gjs-dropdown-menu {
  left: -63px;
  min-width: 14rem;
}

.gjs-dropdown {
  background-color: #f7f7f7;
}

.gjs-preview-grid {
  height: 100%;
  display: grid;
  grid-template-areas: "palettes gjs";
  grid-template-columns: 350px auto;
  grid-template-rows: 110%;
}

.gjs-preview-palettes-list {
  height: 100%;
  overflow: scroll;
}

.gjs-preview-container {
  height: 100%;
}

a.dropdown-item, button.dropdown-item {
  padding-right: 1rem;
}

.gjs__products-content {
  padding: 0.5rem;
}

.header-sort {
  cursor: pointer;
}

.header-sort:hover {
  color: #21a1d8;
}

.header-sort.is-main {
  color: #21a1d8;
}

.header-sort.inactive {
  cursor: default;
}

.divider-h {
  border-bottom: solid #E2E4E5 1px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.divider-h--no-border {
  border-bottom: solid transparent 1px;
}

.draggable {
  cursor: move;
  color: #58585B;
}

.is-dragging {
  color: red;
}

.pagination-controls-container--small {
  width: 250px;
}

.pagination {
  padding: 3px;
}

.footer-btns__container .pagination {
  margin-bottom: 0;
  margin-top: 1px;
}

.pagination-page-number {
  margin-left: 5px;
  margin-right: 5px;
}

.tab-link {
  margin-bottom: 5px;
  cursor: pointer;
}

.tab-link .info-tooltip-modal {
  color: #58585B;
  background-color: white;
}

.tab-link__tooltip-container {
  margin-top: 5px;
}

.tab-link__button-container .button {
  color: #58585B;
}

.tab-link__button-container .button:hover {
  color: #257EBA;
}

.section-row__outer-container {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 20px;
}

.section-row__outer-container--no-margin, .section-row__outer-container--no-margin .section-row__container {
  margin: 0;
}

.section-row__outer-container .divider-h:last-child {
  display: none;
}

.section-row__container {
  margin-bottom: 40px;
}

.footer-btns__container {
  margin: auto;
  text-align: center;
  padding-top: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.btns-group {
  margin-left: 5px;
  margin-right: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.footer-btns__container .pagination {
  padding: 0;
}

.footer-btns__container .pagination button {
  margin-top: 0;
}

.btns-seperator {
  border-left: 1px solid #E2E4E5;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  min-height: 25px;
  vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
  .footer-btns__container > .btns-seperator {
    display: none;
  }

  .footer-btns__container .is-right {
    float: right;
  }

  .footer-btns__container .is-left {
    float: left;
  }
}
.layouts__left-bar, .layouts__right-bar {
  position: fixed;
  top: 0;
  background-color: white;
  min-width: 200px;
}

.layouts__left-bar-contents, .layouts__right-bar-contents {
  padding-top: 95px;
  padding-bottom: 65px;
  height: 100vh;
  overflow: scroll;
}

.layouts__right-bar {
  right: 0;
  border: 1px solid #dfdfdf;
  min-width: 80vw;
}

.sidebar-container {
  padding: 5px;
  min-width: 200px;
}

.list-btn {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.list-btn__item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  padding: 5px;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 5px;
  border-radius: 5px;
  min-height: 35px;
  min-width: 150px;
  cursor: pointer;
}

.list-btn__item:hover {
  background-color: #dfdfdf;
}

.list-dropdown {
  cursor: pointer;
  display: inline-block;
}
.list-dropdown__container {
  position: relative;
  z-index: 1001;
  box-sizing: border-box;
}
.list-dropdown__wrapper {
  z-index: 1002;
  overflow-y: auto;
}
.list-dropdown__content {
  position: absolute;
  background-color: white;
  padding: 8px;
  border: #dfdfdf 1px solid;
  border-radius: 8px 8px 8px 8px;
  max-height: 340px;
}
.list-dropdown__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 0;
}

.list-dropdown-container {
  z-index: 1001;
}
.list-dropdown-container__outer-wrapper {
  position: absolute;
  z-index: 1001;
}
.list-dropdown-container__wrapper {
  position: relative;
  overflow-y: auto;
  z-index: 1002;
}
.list-dropdown-container__content {
  overflow-y: auto;
  z-index: 1003;
  background-color: white;
  padding: 8px;
  border: #dfdfdf 1px solid;
  min-width: 100px;
  box-sizing: border-box;
}
.list-dropdown-container__content--fixed-height {
  max-height: 320px;
}

.list-dropdown-container--no-box .list-dropdown-container__content {
  border: 0;
  padding: 0;
}

.list-results__legend {
  color: #808285;
  margin-bottom: 4px;
  padding: 8px;
}

.list-results__item {
  /*tabindex: 0;*/
  cursor: pointer;
  line-height: 1.4;
  padding: 8px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 4px;
  display: block;
  background-color: white;
}

.list-results__item:nth-child(odd) {
  background-color: #F7F7F7;
}

.list-results__item:hover, .list-results__item--selected, .list-results__item:nth-child(odd).list-results__item--selected {
  background-color: #dfdfdf;
}

.list-results__item.disabled {
  cursor: not-allowed;
  font-style: italic;
  color: #808285;
}

.list-results__item.is-deleted {
  cursor: not-allowed;
}

.list-results__item:focus {
  outline: none;
  background-color: #dfdfdf;
}

.list-results__table-thumb {
  padding-right: 10px;
  vertical-align: middle;
}

.list-results.is-horizontal .list-results__item {
  display: inline-block;
}

.list-searcher.is-dropdown-visible {
  z-index: 100;
}

.list-searcher {
  display: inline-block;
  z-index: 0;
}
.list-searcher__tag {
  min-height: 28px;
  min-width: 20px;
  line-height: 1.8;
  border: transparent 1px solid;
  border-radius: 8px 8px 8px 8px;
  vertical-align: middle;
  padding: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #58585B;
  background-color: #F7F7F7;
  border-color: #dfdfdf;
  display: inline-block;
}
.list-searcher__tag:focus {
  outline: none;
  border: #21a1d8 1px solid;
}
.list-searcher__tag-discrete {
  min-height: 28px;
  min-width: 20px;
  line-height: 1.8;
  border: transparent 1px solid;
  vertical-align: middle;
  padding: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #58585B;
  background-color: #F7F7F7;
  display: inline-block;
}
.list-searcher__tag-discrete:focus {
  outline: none;
  border-right: #21a1d8 1px solid;
}
.list-searcher__deselect--hidden {
  visibility: hidden;
}

.list-selector--horizontal span {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.list-selector--horizontal .list-selector__item {
  margin-right: 5px;
}
.list-selector--horizontal .list-selector__item > span {
  margin-right: 5px;
}
.list-selector__legend {
  color: #808285;
  margin-bottom: 4px;
  padding: 8px;
}
.list-selector__item {
  /*tabindex: 0;*/
  cursor: pointer;
  line-height: 1.4;
  padding: 8px;
  margin-bottom: 4px;
  display: block;
  border-radius: 8px 8px 8px 8px;
}
.list-selector__item--horizontal {
  display: inline-block;
}
.list-selector__item.disabled {
  cursor: not-allowed;
  color: #808285;
}
.list-selector__item.disabled .element-checkbox--unchecked, .list-selector__item.disabled .element-checkbox--unchecked i, .list-selector__item.disabled .element-checkbox--checked, .list-selector__item.disabled .element-checkbox--checked i {
  color: #808285 !important;
}
.list-selector__item.disabled:hover {
  background-color: inherit;
}
.list-selector__item:hover {
  background-color: #dfdfdf;
}
.list-selector__item:focus {
  outline: none;
  background-color: #E2E4E5;
}
.list-selector__item.is-selected {
  color: white;
  background-color: #21a1d8;
}

.list-tags {
  margin-right: 4px;
}
.list-tags__item {
  line-height: 1.8;
  border: transparent 1px solid;
  border-radius: 8px 8px 8px 8px;
  vertical-align: middle;
  padding: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white;
  background-color: #21a1d8;
  display: inline-block;
}
.list-tags__item--active-status {
  background-color: #5BA316;
}
.list-tags__item--inactive-status {
  background-color: #808285;
}

.nav-tree {
  list-style-type: none;
}
.nav-tree__children-container {
  padding-left: 16px;
  border: solid 1px #dfdfdf;
  margin-bottom: 5px;
}
.nav-tree__item {
  cursor: pointer;
  padding: 8px;
  color: #257EBA;
}
.nav-tree__item:hover {
  color: #21a1d8;
}
.nav-tree--nested {
  margin-left: 12px;
}

.nav-tree__item {
  font-size: 17px;
  border-bottom: 0;
  border-top: 0;
}

.nav-tree__icon i {
  padding-right: 10px;
  color: #2e2e2e;
}

.nav-menu {
  display: inline-block;
}

.nav-menu > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: no-wrap;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.nav-menu > ul > li {
  display: inline-block;
}

.nav-tree .disabled {
  cursor: not-allowed;
  color: #808285;
}

.nav-tree__item .drag-container {
  padding-left: 10px;
  padding-right: 10px;
}

.nav-tree__item .drag-container.draggable {
  cursor: move;
}

.nav-tree__specs-item:hover {
  cursor: pointer;
}

.pages-nav .drop-container {
  border-top: 2px solid transparent;
  min-height: 8px;
  margin-top: 4px;
}

.pages-nav .drop-container--into.is-drag-over {
  color: red;
}

.drop-container {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  min-height: 8px;
  margin-top: 4px;
}

.drop-container--above.is-drag-over {
  margin-top: 4px;
  border-top: 2px solid red;
}

.drop-container--below.is-drag-over {
  margin-top: 4px;
  border-bottom: 2px solid red;
}

.drop-container--left.is-drag-over {
  margin-top: 4px;
  border-left: 2px solid red;
  background-color: #bff0f0;
}

.drop-container--right.is-drag-over {
  margin-top: 4px;
  border-right: 2px solid red;
  background-color: #bff0f0;
}

.website-nav-tree__item {
  padding: 10px;
}

.website-nav-tree__item-wrapper {
  border: 1px solid transparent;
}

.website-nav-tree__item-wrapper:hover {
  cursor: pointer;
  border: 1px solid #999999;
}

.website-nav-tree__item-wrapper:hover div {
  color: #21a1d8;
}

.modal-dialog {
  position: absolute;
}
.modal-dialog__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  min-height: 40px;
  background-color: #F7F7F7;
  border-bottom: 1px solid #E2E4E5;
  z-index: 1002;
}
.modal-dialog__container {
  position: fixed;
  z-index: 1002;
  top: 110px;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  height: auto;
  min-width: 300px;
  width: 98%;
  padding: 30px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.modal-dialog__content {
  overflow-y: auto;
  top: 20px;
  padding-top: 50px !important;
  padding-bottom: 200px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
.modal-dialog__footer-spacer {
  padding-top: 60px;
}
.modal-dialog__footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #F7F7F7;
  padding: 12px;
  border-top: 1px solid #E2E4E5;
  z-index: 1000;
}

/* for when modal footer is in a list btn */
.modal-container__outer-wrapper .modal-dialog__footer {
  position: absolute;
}

.modal-container {
  position: absolute;
  z-index: 1001;
}
.modal-container__wrapper {
  position: relative;
  z-index: 1002;
}
.modal-container__content {
  overflow-y: auto;
  background-color: white;
  padding: 8px;
  border: #dfdfdf 1px solid;
  min-width: 100px;
  box-sizing: border-box;
}
.modal-container__content--fixed-height {
  max-height: 320px;
}
.modal-container__footer-spacer {
  height: 80px;
}
.modal-container__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px;
  border-top: 1px solid #dfdfdf;
  width: 100%;
  border: #dfdfdf 1px solid;
  background-color: white;
}

.modal-dialog__container .modal-dialog__container {
  height: 100%;
  top: 0;
  bottom: 0;
  width: 100%;
}

.modal-dialog__container.modal-dialog__container-small {
  width: 40%;
  height: max-content;
}

@media screen and (max-width: 800px) {
  .modal-dialog__container.modal-dialog__container-small {
    width: 95%;
  }
}
@media screen and (max-width: 1200px) {
  .modal-dialog__container.modal-dialog__container-small {
    width: 70%;
  }
}
.modal-dialog__container.modal-dialog__container-small .modal-dialog__content {
  height: max-content;
  padding-bottom: 0px;
  padding-top: 10px !important;
}

.modal-dialog__container.modal-dialog__container-small .modal-dialog__content .panel-grid__footer-spacer {
  margin-top: 60px;
}

.modal-overlay {
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: translateX(0);
}

.modal-overlay--clear {
  background-color: transparent;
}

.modal-container--no-box .modal-container__content {
  border: 0;
  padding: 0;
}

.info-tooltip-modal .button {
  color: #58585B;
}

.info-tooltip-modal .button:hover {
  color: #257EBA;
}

.deleted-error {
  color: #d41010;
  margin: 8px;
}

.error-msg {
  color: #d41010;
  margin: 8px;
  min-width: 300px;
}

.msgs__info-msg {
  margin-left: 20px;
  margin-right: 20px;
}

.notification-item {
  border: 1px solid #dfdfdf;
  padding: 10px;
  margin: 10px;
}

.page-import-btn__item-container {
  width: 30%;
  min-width: 300px;
  border: 1px solid #dfdfdf;
  display: inline-block;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}

.page-import-btn__item-container:hover {
  color: #21a1d8;
  border: 1px solid #999999;
}

.page-import-btn__template-preview {
  margin-top: 10px;
  height: 300px;
  width: 100%;
  overflow: auto;
  display: inline-block;
  padding: 10px;
  transform: scale(0.9);
}

.products-display__header {
  margin-top: 12px;
  margin-bottom: 12px;
}
.products-display__name {
  font-size: 14px;
}
.products-display__tags {
  margin-top: 12px;
}
.products-display__tags--margin-right {
  margin-right: 4px;
}
.products-display__footer {
  margin-top: 16px;
}
.products-display__files-container {
  padding: 16px;
  background-color: #F7F7F7;
  min-width: 200px;
  max-width: 300px;
}
.products-display__inventory-container {
  padding: 16px;
  background-color: #F7F7F7;
  min-width: 200px;
}

.product-image-thumb-container {
  min-height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.product-image-thumb-container .u-no-image {
  color: #808285;
  font-size: 20px;
  margin: auto;
}

.u-no-image__large {
  font-size: 4em;
}

.products-editor__selectors {
  width: 130px;
  padding: 8px;
}
.products-editor__form {
  padding: 8px;
  padding-left: 16px;
}

.products-images__container {
  max-width: 350px;
}

.report__table {
  width: 100%;
}
.report__table td {
  padding: 5px;
}
.report__dash-title {
  font-size: 17px;
  color: #257EBA;
  margin-top: 10px;
  font-weight: bold;
}
.report__dash-table td {
  text-align: center;
}
.report__card-stat {
  display: inline-block;
}
.report__value {
  color: #0072BC;
  margin-left: 5px;
  margin-right: 5px;
}

.report__dash-table tr:last-child td {
  border-bottom: 0;
}

.report__card .u-table > tr > td {
  vertical-align: middle;
}

.report__card .content p {
  padding: 0px;
  margin-bottom: 0px;
}

.report__card {
  overflow: auto;
}

.report-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.report-row .report-half-item {
  min-width: 400px;
  width: 48%;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex: 1;
  flex-grow: 1;
  margin: 1%;
}

.report-row .report-full-item {
  width: 100%;
  max-width: 98%;
  margin: 1%;
}

.search-results-list--retracted {
  display: none;
}

.specs-container {
  width: 100%;
  max-width: 100%;
  overflow-y: inherit;
  overflow-x: auto;
  padding-bottom: 300px;
}

.spec-child__cell, .table-form .spec-child__cell {
  border: 1px solid #dfdfdf;
  padding: 10px;
  vertical-align: top;
}

.spec-child__cell--add-new, .table-form .spec-child__cell--add-new {
  text-align: center;
  vertical-align: middle;
  width: 200px;
  min-width: 200px;
}

.spec-child__cell--add-row, .spec-table.table-form .spec-child__cell--add-row, .table-form th.spec-child__cell--add-row {
  padding: 0px;
  border: 0;
  background-color: transparent;
  vertical-align: middle;
  text-align: center;
  width: 50px;
}

.spec-child__cell--main, .table-form .spec-child__cell--main {
  position: relative;
  padding-bottom: 55px;
  width: 200px;
  min-width: 200px;
}

.spec-child__cell-delete-btn, .table-form .spec-child__cell-delete-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.spec-child__cell .form-input-row, .spec-child__cell .form-row {
  margin-top: 0px;
  margin-bottom: 0px;
}

.table-grid {
  display: grid;
  border-collapse: collapse;
  min-width: 100%;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1.67fr) minmax(150px, 1.67fr) minmax(150px, 1.67fr) minmax(150px, 3.33fr) minmax(150px, 1.67fr) minmax(150px, 3.33fr) minmax(150px, 1.67fr);
}

.table-grid thead,
.table-grid tbody,
.table-grid tr {
  display: contents;
}

.table-grid th,
.table-grid td {
  padding: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-grid th {
  position: sticky;
  top: 0;
  background: #6c7ae0;
  text-align: left;
  font-weight: normal;
  font-size: 1.1rem;
  color: white;
}

.table-grid th:last-child {
  border: 0;
}

.table-grid td {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #808080;
}

.table-grid tr:nth-child(even) td {
  background: #f8f6ff;
}

.tab-header {
  width: 100%;
}

.tab-header-close {
  margin-left: 8px;
}

.tab-header-closeSpec {
  margin-left: 8px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.tab-header-closeTransform {
  margin-left: 8px;
  position: absolute;
  top: 7px;
  left: -17px;
}

.tabs li.tab-item button {
  margin-right: 5px;
}

.tabs li.tab-item.is-active button {
  background-color: #21a1d8;
  color: white;
}

.tab-headers__component {
  cursor: pointer;
}

.tab-headers__group button {
  margin-right: 5px;
}

.images-sidebar__container {
  width: 350px;
}

.background-transparent {
  background-color: transparent;
}

.background-gray:active {
  border: #3273dc;
}

.quick-template-is-selected {
  -webkit-box-shadow: inset 0 0 0 1px #3273dc;
  -moz-box-shadow: inset 0 0 0 1px #3273dc;
  box-shadow: inset 0 0 0 1px #3273dc;
}

.validate-dns-grid {
  display: grid;
  grid-template-areas: "steps settings";
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
}

.validate-dns-steps {
  grid-area: steps;
}

.validate-dns-settings {
  grid-area: settings;
}

.zIndex-1001 {
  z-index: 1001;
}

.form-section__content-reward {
  position: relative;
}

.btn-delete-accordion-reward {
  position: absolute;
  right: 5px;
}

.u-ul--with-list-bullet {
  list-style-type: square;
}

.rewards-dialog__table-filter {
  width: 50%;
}

.rewards-dialog__table-filter td:first-child {
  padding-right: 5px;
}

.rewards-dialog__table-filter td:last-child {
  padding-right: 5px;
}

.rewards-dialog__table-filter td {
  padding-right: 5px;
  padding-left: 5px;
}

.rewards-panel-display-sub-panels-details__form-section-title {
  padding: 8px 15px;
  margin-bottom: 0;
}

.rewards-panel-display-sub-panels-details__form-section-title .form-section__title {
  width: 100%;
  font-size: 16px;
}

.rewards-panel-display-sub-panels-details__pre-like {
  display: flex;
  unicode-bidi: embed;
  white-space: pre;
  line-height: 1;
}

.table.table-member-level {
  margin-bottom: 0;
}

.table-member-level tr td {
  border: none;
}

.table-member-level__tab-link-flex-end {
  display: flex;
  justify-content: flex-end;
}

.member-levels-editor__form-input-row {
  margin-top: 0;
  margin-bottom: 0;
}

.member-levels-editor__error-font-size {
  font-size: 0.8rem;
}

.member-levels-editor__error-width {
  min-width: auto;
}

.zone-editor__table-zone thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.zone-editor__table-zone thead th, .zone-editor__table-zone thead td {
  padding: 4px;
}

.zone-editor__table-zone tbody {
  overflow-y: scroll;
  height: 350px;
  max-height: 350px;
  width: 100%;
  display: block;
}

.zone-editor__table-zone tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.zone-editor__heading {
  padding: 4px 7px;
  margin: 15px 0 5px 0;
  font-weight: 600;
}

.zone-editor__heading:first-child {
  margin-top: 0;
}

.zone-editor__heading:last-child {
  margin-bottom: 0;
}

.zone-editor__table--zone-detail tbody tr td {
  padding-top: 7px;
}

.zone-editor__table--border-right {
  border-right: 1px solid #dfdfdf;
}

.zone-editor__td--column-separator {
  padding-right: 5px;
  padding-left: 5px;
}

._3rd-part__tw_eInvoice_print_custom_block_placeholder {
  font-family: monospace;
}

.accordion-panel.email-editor__accordion-panel-no-border {
  border: none;
  padding-left: 0;
  width: 50%;
}

.accordion-panel.email-editor__accordion-panel-no-border .card-header-title {
  padding: 0.75rem 0;
}

.accordion-panel.email-editor__accordion-panel-no-border .card-content {
  padding: 1.5rem 0;
}

.bulk-discounts__u-container {
  position: relative;
}

.bulk-discounts__btn-delete-bulk-discount {
  position: absolute;
  right: 5px;
}

.workflows-stages-table {
  min-height: 500px;
}

.workflows-stages-table td {
  width: 310px;
  border-right: 1px solid #E2E4E5;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.workflows-stages-table td.drop-container--below, .workflows-stages-table td.drop-container--above {
  background-color: #F7F7F7;
  border-top: 0;
  border-bottom: 0;
}

.workflows-stages-header {
  text-align: center;
  border-bottom: 1px solid #E2E4E5;
  background-color: #F7F7F7;
  padding: 5px;
}

.workflows-item__container {
  background-color: white;
  border: solid 1px #E2E4E5;
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 300px;
  cursor: pointer;
}

.workflows-item__container:hover {
  border: solid 1px #999999;
}

.workflows-item__container .btns-group {
  border-top: 1px solid #E2E4E5;
  padding-top: 10px;
  margin-top: 10px;
  text-align: right;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.workflows-item-activity__container {
  padding: 20px;
  border: solid 1px #E2E4E5;
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.workflows-item-activity__container:hover {
  cursor: pointer;
  border: solid 1px #999999;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input.input, textarea.textarea, input, textarea, select, select.select {
    font-size: 16px;
  }
}
@media print {
  .u-no-print {
    display: none !important;
  }

  .u-print-container {
    /*display: block;*/
    font-size: 11px !important;
    max-width: auto !important;
  }

  .u-print-font {
    font-size: 11px !important;
  }

  .u-print-page {
    box-sizing: border-box !important;
    margin: 0 !important;
    border: 0 !important;
    page-break-after: always !important;
  }

  .u-print-page-no-break {
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .u-print-hidden {
    display: none !important;
  }

  .u-page-break {
    page-break-after: always !important;
  }

  .u-print-no-break {
    display: block;
    -webkit-column-break-inside: avoid !important;
    /* Chrome, Safari, Opera */
    page-break-inside: avoid !important;
    /* Firefox */
    break-inside: avoid !important;
    /* IE 10+ */
  }
}
@media screen {
  #print-container {
    display: none;
  }

  .u-print-container {
    font-size: 12px;
    max-width: 790px;
  }

  .u-print-hidden {
    display: none;
  }

  .u-print-font {
    font-size: 13px;
  }

  .u-print-page {
    box-sizing: border-box;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #dfdfdf;
  }

  .u-print-table tr:not(:last-child) {
    border-bottom: 1px solid #dfdfdf;
  }

  .u-print-table td {
    padding: 5px;
  }
}
html, body, a, p, input, select, label, textarea {
  font-family: 微軟正黑體, Helvetica, Myriad Pro, Arial, sans-serif;
  color: #58585B;
  text-decoration: none;
}

html, body {
  height: 100%;
  margin: 0;
  width: 100%;
}

body {
  min-width: 300px;
  margin: 0;
  /* This is used to reset any browser-default margins */
  height: 100vh;
  /* This is needed to overcome a Chrome bug. */
  width: 100vw;
  /* As above. */
  height: 100%;
  font-size: 12px;
}

p {
  padding-top: 3px;
  padding-bottom: 3px;
}

hr {
  margin-top: 5px;
  margin-bottom: 5px;
}

h1, h2, h3, h4 {
  font-weight: bold;
  font-family: 微軟正黑體, Helvetica, Myriad Pro, Arial, sans-serif;
  color: #58585B;
}

h1 {
  font-size: 23px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 17px;
}

h4 {
  font-size: 14px;
  font-weight: normal;
}

body > .ember-view {
  height: 100%;
}

.u-input, .u-textare, .input, .textarea {
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.u-white-space-nowrap {
  white-space: nowrap;
}

input:focus, textarea:focus, .u-container .message .message-header {
  outline: none !important;
  -webkit-appearance: none !important;
}

.button {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

a {
  font-size: 12px;
}

.u-margin-0 {
  margin: 0px;
}

.u-margin-top-0 {
  margin-top: 0px;
}

.u-margin-top-important-0 {
  margin-top: 0px !important;
}

.u-margin-right-0 {
  margin-right: 0px;
}

.u-margin-bottom-0 {
  margin-bottom: 0px;
}

.u-margin-bottom-important-0 {
  margin-bottom: 0px !important;
}

.u-margin-left-0 {
  margin-left: 0px;
}

.u-padding-0 {
  padding: 0px;
}

.u-padding-top-0 {
  padding-top: 0px;
}

.u-padding-right-0 {
  padding-right: 0px;
}

.u-padding-bottom-0 {
  padding-bottom: 0px;
}

.u-padding-left-0 {
  padding-left: 0px;
}

.u-width-0 {
  width: 0%;
}

.u-width-important-0 {
  width: 0% !important;
}

.u-truncate--0 {
  width: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-1 {
  margin: 1px;
}

.u-margin-top-1 {
  margin-top: 1px;
}

.u-margin-top-important-1 {
  margin-top: 1px !important;
}

.u-margin-right-1 {
  margin-right: 1px;
}

.u-margin-bottom-1 {
  margin-bottom: 1px;
}

.u-margin-bottom-important-1 {
  margin-bottom: 1px !important;
}

.u-margin-left-1 {
  margin-left: 1px;
}

.u-padding-1 {
  padding: 1px;
}

.u-padding-top-1 {
  padding-top: 1px;
}

.u-padding-right-1 {
  padding-right: 1px;
}

.u-padding-bottom-1 {
  padding-bottom: 1px;
}

.u-padding-left-1 {
  padding-left: 1px;
}

.u-width-1 {
  width: 1%;
}

.u-width-important-1 {
  width: 1% !important;
}

.u-truncate--1 {
  width: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-2 {
  margin: 2px;
}

.u-margin-top-2 {
  margin-top: 2px;
}

.u-margin-top-important-2 {
  margin-top: 2px !important;
}

.u-margin-right-2 {
  margin-right: 2px;
}

.u-margin-bottom-2 {
  margin-bottom: 2px;
}

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

.u-margin-left-2 {
  margin-left: 2px;
}

.u-padding-2 {
  padding: 2px;
}

.u-padding-top-2 {
  padding-top: 2px;
}

.u-padding-right-2 {
  padding-right: 2px;
}

.u-padding-bottom-2 {
  padding-bottom: 2px;
}

.u-padding-left-2 {
  padding-left: 2px;
}

.u-width-2 {
  width: 2%;
}

.u-width-important-2 {
  width: 2% !important;
}

.u-truncate--2 {
  width: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-3 {
  margin: 3px;
}

.u-margin-top-3 {
  margin-top: 3px;
}

.u-margin-top-important-3 {
  margin-top: 3px !important;
}

.u-margin-right-3 {
  margin-right: 3px;
}

.u-margin-bottom-3 {
  margin-bottom: 3px;
}

.u-margin-bottom-important-3 {
  margin-bottom: 3px !important;
}

.u-margin-left-3 {
  margin-left: 3px;
}

.u-padding-3 {
  padding: 3px;
}

.u-padding-top-3 {
  padding-top: 3px;
}

.u-padding-right-3 {
  padding-right: 3px;
}

.u-padding-bottom-3 {
  padding-bottom: 3px;
}

.u-padding-left-3 {
  padding-left: 3px;
}

.u-width-3 {
  width: 3%;
}

.u-width-important-3 {
  width: 3% !important;
}

.u-truncate--3 {
  width: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-4 {
  margin: 4px;
}

.u-margin-top-4 {
  margin-top: 4px;
}

.u-margin-top-important-4 {
  margin-top: 4px !important;
}

.u-margin-right-4 {
  margin-right: 4px;
}

.u-margin-bottom-4 {
  margin-bottom: 4px;
}

.u-margin-bottom-important-4 {
  margin-bottom: 4px !important;
}

.u-margin-left-4 {
  margin-left: 4px;
}

.u-padding-4 {
  padding: 4px;
}

.u-padding-top-4 {
  padding-top: 4px;
}

.u-padding-right-4 {
  padding-right: 4px;
}

.u-padding-bottom-4 {
  padding-bottom: 4px;
}

.u-padding-left-4 {
  padding-left: 4px;
}

.u-width-4 {
  width: 4%;
}

.u-width-important-4 {
  width: 4% !important;
}

.u-truncate--4 {
  width: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-5 {
  margin: 5px;
}

.u-margin-top-5 {
  margin-top: 5px;
}

.u-margin-top-important-5 {
  margin-top: 5px !important;
}

.u-margin-right-5 {
  margin-right: 5px;
}

.u-margin-bottom-5 {
  margin-bottom: 5px;
}

.u-margin-bottom-important-5 {
  margin-bottom: 5px !important;
}

.u-margin-left-5 {
  margin-left: 5px;
}

.u-padding-5 {
  padding: 5px;
}

.u-padding-top-5 {
  padding-top: 5px;
}

.u-padding-right-5 {
  padding-right: 5px;
}

.u-padding-bottom-5 {
  padding-bottom: 5px;
}

.u-padding-left-5 {
  padding-left: 5px;
}

.u-width-5 {
  width: 5%;
}

.u-width-important-5 {
  width: 5% !important;
}

.u-truncate--5 {
  width: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-7 {
  margin: 7px;
}

.u-margin-top-7 {
  margin-top: 7px;
}

.u-margin-top-important-7 {
  margin-top: 7px !important;
}

.u-margin-right-7 {
  margin-right: 7px;
}

.u-margin-bottom-7 {
  margin-bottom: 7px;
}

.u-margin-bottom-important-7 {
  margin-bottom: 7px !important;
}

.u-margin-left-7 {
  margin-left: 7px;
}

.u-padding-7 {
  padding: 7px;
}

.u-padding-top-7 {
  padding-top: 7px;
}

.u-padding-right-7 {
  padding-right: 7px;
}

.u-padding-bottom-7 {
  padding-bottom: 7px;
}

.u-padding-left-7 {
  padding-left: 7px;
}

.u-width-7 {
  width: 7%;
}

.u-width-important-7 {
  width: 7% !important;
}

.u-truncate--7 {
  width: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-10 {
  margin: 10px;
}

.u-margin-top-10 {
  margin-top: 10px;
}

.u-margin-top-important-10 {
  margin-top: 10px !important;
}

.u-margin-right-10 {
  margin-right: 10px;
}

.u-margin-bottom-10 {
  margin-bottom: 10px;
}

.u-margin-bottom-important-10 {
  margin-bottom: 10px !important;
}

.u-margin-left-10 {
  margin-left: 10px;
}

.u-padding-10 {
  padding: 10px;
}

.u-padding-top-10 {
  padding-top: 10px;
}

.u-padding-right-10 {
  padding-right: 10px;
}

.u-padding-bottom-10 {
  padding-bottom: 10px;
}

.u-padding-left-10 {
  padding-left: 10px;
}

.u-width-10 {
  width: 10%;
}

.u-width-important-10 {
  width: 10% !important;
}

.u-truncate--10 {
  width: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-15 {
  margin: 15px;
}

.u-margin-top-15 {
  margin-top: 15px;
}

.u-margin-top-important-15 {
  margin-top: 15px !important;
}

.u-margin-right-15 {
  margin-right: 15px;
}

.u-margin-bottom-15 {
  margin-bottom: 15px;
}

.u-margin-bottom-important-15 {
  margin-bottom: 15px !important;
}

.u-margin-left-15 {
  margin-left: 15px;
}

.u-padding-15 {
  padding: 15px;
}

.u-padding-top-15 {
  padding-top: 15px;
}

.u-padding-right-15 {
  padding-right: 15px;
}

.u-padding-bottom-15 {
  padding-bottom: 15px;
}

.u-padding-left-15 {
  padding-left: 15px;
}

.u-width-15 {
  width: 15%;
}

.u-width-important-15 {
  width: 15% !important;
}

.u-truncate--15 {
  width: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-20 {
  margin: 20px;
}

.u-margin-top-20 {
  margin-top: 20px;
}

.u-margin-top-important-20 {
  margin-top: 20px !important;
}

.u-margin-right-20 {
  margin-right: 20px;
}

.u-margin-bottom-20 {
  margin-bottom: 20px;
}

.u-margin-bottom-important-20 {
  margin-bottom: 20px !important;
}

.u-margin-left-20 {
  margin-left: 20px;
}

.u-padding-20 {
  padding: 20px;
}

.u-padding-top-20 {
  padding-top: 20px;
}

.u-padding-right-20 {
  padding-right: 20px;
}

.u-padding-bottom-20 {
  padding-bottom: 20px;
}

.u-padding-left-20 {
  padding-left: 20px;
}

.u-width-20 {
  width: 20%;
}

.u-width-important-20 {
  width: 20% !important;
}

.u-truncate--20 {
  width: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-25 {
  margin: 25px;
}

.u-margin-top-25 {
  margin-top: 25px;
}

.u-margin-top-important-25 {
  margin-top: 25px !important;
}

.u-margin-right-25 {
  margin-right: 25px;
}

.u-margin-bottom-25 {
  margin-bottom: 25px;
}

.u-margin-bottom-important-25 {
  margin-bottom: 25px !important;
}

.u-margin-left-25 {
  margin-left: 25px;
}

.u-padding-25 {
  padding: 25px;
}

.u-padding-top-25 {
  padding-top: 25px;
}

.u-padding-right-25 {
  padding-right: 25px;
}

.u-padding-bottom-25 {
  padding-bottom: 25px;
}

.u-padding-left-25 {
  padding-left: 25px;
}

.u-width-25 {
  width: 25%;
}

.u-width-important-25 {
  width: 25% !important;
}

.u-truncate--25 {
  width: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-30 {
  margin: 30px;
}

.u-margin-top-30 {
  margin-top: 30px;
}

.u-margin-top-important-30 {
  margin-top: 30px !important;
}

.u-margin-right-30 {
  margin-right: 30px;
}

.u-margin-bottom-30 {
  margin-bottom: 30px;
}

.u-margin-bottom-important-30 {
  margin-bottom: 30px !important;
}

.u-margin-left-30 {
  margin-left: 30px;
}

.u-padding-30 {
  padding: 30px;
}

.u-padding-top-30 {
  padding-top: 30px;
}

.u-padding-right-30 {
  padding-right: 30px;
}

.u-padding-bottom-30 {
  padding-bottom: 30px;
}

.u-padding-left-30 {
  padding-left: 30px;
}

.u-width-30 {
  width: 30%;
}

.u-width-important-30 {
  width: 30% !important;
}

.u-truncate--30 {
  width: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-35 {
  margin: 35px;
}

.u-margin-top-35 {
  margin-top: 35px;
}

.u-margin-top-important-35 {
  margin-top: 35px !important;
}

.u-margin-right-35 {
  margin-right: 35px;
}

.u-margin-bottom-35 {
  margin-bottom: 35px;
}

.u-margin-bottom-important-35 {
  margin-bottom: 35px !important;
}

.u-margin-left-35 {
  margin-left: 35px;
}

.u-padding-35 {
  padding: 35px;
}

.u-padding-top-35 {
  padding-top: 35px;
}

.u-padding-right-35 {
  padding-right: 35px;
}

.u-padding-bottom-35 {
  padding-bottom: 35px;
}

.u-padding-left-35 {
  padding-left: 35px;
}

.u-width-35 {
  width: 35%;
}

.u-width-important-35 {
  width: 35% !important;
}

.u-truncate--35 {
  width: 35px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-40 {
  margin: 40px;
}

.u-margin-top-40 {
  margin-top: 40px;
}

.u-margin-top-important-40 {
  margin-top: 40px !important;
}

.u-margin-right-40 {
  margin-right: 40px;
}

.u-margin-bottom-40 {
  margin-bottom: 40px;
}

.u-margin-bottom-important-40 {
  margin-bottom: 40px !important;
}

.u-margin-left-40 {
  margin-left: 40px;
}

.u-padding-40 {
  padding: 40px;
}

.u-padding-top-40 {
  padding-top: 40px;
}

.u-padding-right-40 {
  padding-right: 40px;
}

.u-padding-bottom-40 {
  padding-bottom: 40px;
}

.u-padding-left-40 {
  padding-left: 40px;
}

.u-width-40 {
  width: 40%;
}

.u-width-important-40 {
  width: 40% !important;
}

.u-truncate--40 {
  width: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-45 {
  margin: 45px;
}

.u-margin-top-45 {
  margin-top: 45px;
}

.u-margin-top-important-45 {
  margin-top: 45px !important;
}

.u-margin-right-45 {
  margin-right: 45px;
}

.u-margin-bottom-45 {
  margin-bottom: 45px;
}

.u-margin-bottom-important-45 {
  margin-bottom: 45px !important;
}

.u-margin-left-45 {
  margin-left: 45px;
}

.u-padding-45 {
  padding: 45px;
}

.u-padding-top-45 {
  padding-top: 45px;
}

.u-padding-right-45 {
  padding-right: 45px;
}

.u-padding-bottom-45 {
  padding-bottom: 45px;
}

.u-padding-left-45 {
  padding-left: 45px;
}

.u-width-45 {
  width: 45%;
}

.u-width-important-45 {
  width: 45% !important;
}

.u-truncate--45 {
  width: 45px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-50 {
  margin: 50px;
}

.u-margin-top-50 {
  margin-top: 50px;
}

.u-margin-top-important-50 {
  margin-top: 50px !important;
}

.u-margin-right-50 {
  margin-right: 50px;
}

.u-margin-bottom-50 {
  margin-bottom: 50px;
}

.u-margin-bottom-important-50 {
  margin-bottom: 50px !important;
}

.u-margin-left-50 {
  margin-left: 50px;
}

.u-padding-50 {
  padding: 50px;
}

.u-padding-top-50 {
  padding-top: 50px;
}

.u-padding-right-50 {
  padding-right: 50px;
}

.u-padding-bottom-50 {
  padding-bottom: 50px;
}

.u-padding-left-50 {
  padding-left: 50px;
}

.u-width-50 {
  width: 50%;
}

.u-width-important-50 {
  width: 50% !important;
}

.u-truncate--50 {
  width: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-75 {
  margin: 75px;
}

.u-margin-top-75 {
  margin-top: 75px;
}

.u-margin-top-important-75 {
  margin-top: 75px !important;
}

.u-margin-right-75 {
  margin-right: 75px;
}

.u-margin-bottom-75 {
  margin-bottom: 75px;
}

.u-margin-bottom-important-75 {
  margin-bottom: 75px !important;
}

.u-margin-left-75 {
  margin-left: 75px;
}

.u-padding-75 {
  padding: 75px;
}

.u-padding-top-75 {
  padding-top: 75px;
}

.u-padding-right-75 {
  padding-right: 75px;
}

.u-padding-bottom-75 {
  padding-bottom: 75px;
}

.u-padding-left-75 {
  padding-left: 75px;
}

.u-width-75 {
  width: 75%;
}

.u-width-important-75 {
  width: 75% !important;
}

.u-truncate--75 {
  width: 75px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-80 {
  margin: 80px;
}

.u-margin-top-80 {
  margin-top: 80px;
}

.u-margin-top-important-80 {
  margin-top: 80px !important;
}

.u-margin-right-80 {
  margin-right: 80px;
}

.u-margin-bottom-80 {
  margin-bottom: 80px;
}

.u-margin-bottom-important-80 {
  margin-bottom: 80px !important;
}

.u-margin-left-80 {
  margin-left: 80px;
}

.u-padding-80 {
  padding: 80px;
}

.u-padding-top-80 {
  padding-top: 80px;
}

.u-padding-right-80 {
  padding-right: 80px;
}

.u-padding-bottom-80 {
  padding-bottom: 80px;
}

.u-padding-left-80 {
  padding-left: 80px;
}

.u-width-80 {
  width: 80%;
}

.u-width-important-80 {
  width: 80% !important;
}

.u-truncate--80 {
  width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-90 {
  margin: 90px;
}

.u-margin-top-90 {
  margin-top: 90px;
}

.u-margin-top-important-90 {
  margin-top: 90px !important;
}

.u-margin-right-90 {
  margin-right: 90px;
}

.u-margin-bottom-90 {
  margin-bottom: 90px;
}

.u-margin-bottom-important-90 {
  margin-bottom: 90px !important;
}

.u-margin-left-90 {
  margin-left: 90px;
}

.u-padding-90 {
  padding: 90px;
}

.u-padding-top-90 {
  padding-top: 90px;
}

.u-padding-right-90 {
  padding-right: 90px;
}

.u-padding-bottom-90 {
  padding-bottom: 90px;
}

.u-padding-left-90 {
  padding-left: 90px;
}

.u-width-90 {
  width: 90%;
}

.u-width-important-90 {
  width: 90% !important;
}

.u-truncate--90 {
  width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-95 {
  margin: 95px;
}

.u-margin-top-95 {
  margin-top: 95px;
}

.u-margin-top-important-95 {
  margin-top: 95px !important;
}

.u-margin-right-95 {
  margin-right: 95px;
}

.u-margin-bottom-95 {
  margin-bottom: 95px;
}

.u-margin-bottom-important-95 {
  margin-bottom: 95px !important;
}

.u-margin-left-95 {
  margin-left: 95px;
}

.u-padding-95 {
  padding: 95px;
}

.u-padding-top-95 {
  padding-top: 95px;
}

.u-padding-right-95 {
  padding-right: 95px;
}

.u-padding-bottom-95 {
  padding-bottom: 95px;
}

.u-padding-left-95 {
  padding-left: 95px;
}

.u-width-95 {
  width: 95%;
}

.u-width-important-95 {
  width: 95% !important;
}

.u-truncate--95 {
  width: 95px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-margin-100 {
  margin: 100px;
}

.u-margin-top-100 {
  margin-top: 100px;
}

.u-margin-top-important-100 {
  margin-top: 100px !important;
}

.u-margin-right-100 {
  margin-right: 100px;
}

.u-margin-bottom-100 {
  margin-bottom: 100px;
}

.u-margin-bottom-important-100 {
  margin-bottom: 100px !important;
}

.u-margin-left-100 {
  margin-left: 100px;
}

.u-padding-100 {
  padding: 100px;
}

.u-padding-top-100 {
  padding-top: 100px;
}

.u-padding-right-100 {
  padding-right: 100px;
}

.u-padding-bottom-100 {
  padding-bottom: 100px;
}

.u-padding-left-100 {
  padding-left: 100px;
}

.u-width-100 {
  width: 100%;
}

.u-width-important-100 {
  width: 100% !important;
}

.u-truncate--100 {
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-height-100vh {
  height: 100vh;
}

.u-full-height {
  height: 100%;
}

.u-height-max-content {
  height: max-content;
  min-height: max-content;
  max-height: max-content;
}

.u-full-width {
  width: 100%;
}

.u-width-max-content {
  width: max-content;
}

.u-half-width, .u-width-50 {
  width: 50%;
}

.u-third-width {
  width: 33.3%;
}

.u-scale--half {
  transform: scale(0.5);
}

.u-scale--third {
  transform: scale(0.33);
}

.u-display-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

.u-inline-flex {
  display: inline-flex;
}

.u-overflow-scroll {
  overflow: auto;
}

.u-borderless {
  border: 0;
}

.u-backgroundless {
  background-color: transparent;
}

.u-z-index--1000 {
  z-index: 1000;
}

.u-z-index--2000 {
  z-index: 2000;
}

.u-z-index--3000 {
  z-index: 3000;
}

.u-z-index--4000 {
  z-index: 4000;
}

.u-z-index--5000 {
  z-index: 5000;
}

/*.u-grid {

  display: table;

  // position: absolute;
  // width: 100%;
  box-sizing: border-box;
  width: 100%;
  height: 100%;

  @include element('row') {
    display: table-row;
  }

  @include element('cell') {

    box-sizing: border-box;
    vertical-align: top;
    display: table-cell;
    height: 100%;

    @include modifier('fill') {
      width: auto;
    }

    @include modifier('text-center') {
      text-align: center;
    }
  }
}*/
.u-bg--white {
  background-color: white;
}
.u-bg--green {
  background-color: #e3ffe0;
}
.u-bg--orange {
  background-color: #fff4e0;
}
.u-bg--pink {
  background-color: #ffe4e0;
}
.u-bg--gray {
  background-color: #E2E4E5;
}

.u-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.u-is-child {
  margin-left: 16px;
}

.u-is-pointer, .u-tappable {
  cursor: pointer;
}

.u-is-cursor-default {
  cursor: default;
}

.u-pre-line {
  white-space: pre-line;
}

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

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

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

.u-color-disabled {
  color: #808285;
}

.u-v-align-top {
  vertical-align: top;
}

.u-v-align-middle {
  vertical-align: middle;
}

.u-v-align-middle-important {
  vertical-align: middle !important;
}

.u-v-align-bottom {
  vertical-align: bottom;
}

.u-float-clear {
  clear: both;
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-padding--3 {
  padding: 3px;
}

.u-padding--6 {
  padding: 6px !important;
}

.u-link {
  cursor: pointer;
  color: #257EBA;
}

.u-link:hover, .u-link--text:hover {
  color: #21a1d8;
}

.u-link--text {
  cursor: pointer;
}

.u-nav-link {
  cursor: pointer;
  color: #58585B;
}

.u-nav-link:hover {
  color: #21a1d8;
}

.u-input--large {
  width: 300px;
}

.u-btn {
  outline: none;
  -webkit-appearance: none;
}

.u-btn--submit {
  color: white;
  background-color: #5BA316;
  border: #8BC62E 1px solid;
  margin-left: 16px;
  margin-right: 16px;
}

.u-btn--submit:focus {
  -webkit-appearance: none;
  border: #21a1d8 1px solid;
}

.u-btn--submit:hover {
  background-color: #8BC62E;
}

.u-close-btn {
  display: inline-block;
  background: url("/images/close.png") no-repeat center;
  background-size: 8px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  cursor: pointer;
  vertical-align: middle;
  margin-bottom: 1px;
}

.u-badge {
  text-align: center;
  display: inline-block;
  border-radius: 1000px;
  background-color: #A20606;
  color: white;
  min-width: 30px;
  padding: 5px;
  font-weight: bold;
}

.u-badge-spacer--left {
  display: inline-block;
  margin-left: 5px;
}

.u-pause-btn:hover {
  background-color: #dfdfdf;
}

.u-pause-btn {
  display: inline-block;
  background: url("/images/pause.png") no-repeat center;
  background-size: 8px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 1px;
}

.u-play-btn:hover {
  background-color: #dfdfdf;
}

.u-play-btn {
  display: inline-block;
  background: url("/images/play.png") no-repeat center;
  background-size: 8px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  cursor: pointer;
  vertical-align: middle;
  margin-bottom: 1px;
}

.u-close-btn:hover {
  background-color: #dfdfdf;
}

.u-edit-btn {
  display: inline-block;
  background: url("/images/edit.png") no-repeat center;
  background-size: 8px;
  width: 16px;
  height: 16px;
  /* border-radius: 16px; */
  cursor: pointer;
  vertical-align: middle;
  margin-bottom: 1px;
  border-bottom: 1px solid transparent;
}

.u-edit-btn:hover {
  border-bottom: 1px solid #21a1d8;
}

.u-star-btn {
  display: inline-block;
  background: url("/images/star-unchecked.png") no-repeat center;
  background-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  cursor: pointer;
  vertical-align: middle;
  margin-bottom: 1px;
}
.u-star-btn--checked {
  background: url("/images/star-checked.png") no-repeat center;
  background-size: 12px;
}

.u-star-btn:hover {
  background: url("/images/star-checked.png") no-repeat center;
  background-size: 12px;
}

.u-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 76px;
  background-color: white;
  z-index: 1000;
}

.u-icon--8 {
  background-size: 8px;
}

.u-icon--10 {
  background-size: 10px;
}

.u-icon-spacer--right {
  display: inline-block;
  margin-right: 5px;
}

.u-icon-spacer--left {
  display: inline-block;
  margin-left: 5px;
}

.u-error {
  color: #d41010;
  margin-top: 16px;
  margin-bottom: 16px;
}

.u-bold {
  font-weight: bold;
}

.u-modal-min-container {
  min-width: 500px;
  min-height: 300px;
}

.info-tooltip {
  cursor: pointer;
}

.info-tooltip-modal {
  color: white;
  background-color: #2e2e2e;
}

.info-badge {
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px;
}

.info-badge--round {
  background-color: #0072BC;
  color: white;
  border-radius: 16px;
}

.info-popup__container {
  cursor: pointer;
}

.info-popup {
  cursor: default;
  z-index: 1003;
  position: absolute;
  background-color: #F7F7F7;
  border: 1px solid #E2E4E5;
  padding: 15px;
  box-shadow: 5px 10px 18px #dfdfdf;
}

.u-tab-menu {
  width: 100%;
  display: inline-block;
  text-align: center;
  /*padding: $l2;*/
}
.u-tab-menu--right {
  float: right;
}
.u-tab-menu__item {
  display: inline-block;
  cursor: pointer;
  color: #257EBA;
  padding: 8px;
}
.u-tab-menu__item:hover {
  color: #21a1d8;
}

.u-btn-menu div {
  padding-top: 3px;
  padding-bottom: 3px;
}

.u-desc--mini {
  color: #808285;
  font-size: 11px;
}
.u-desc--bold {
  font-weight: bold;
}
.u-desc--italics {
  font-style: italic;
}
.u-desc--highlight {
  color: #d41010;
}
.u-desc--red {
  color: #d41010;
}
.u-desc--green {
  color: #5BA316;
}
.u-desc--strikethrough {
  text-decoration: line-through;
}

.u-input {
  width: 100%;
  border: 0;
  border-radius: 0;
}

.u-input:focus {
  border: 0;
  border-left: #21a1d8 solid 1px;
}

.u-table-align-middle td, .u-table.u-table-align-middle td {
  vertical-align: middle;
  padding: 3px;
}

.u-table--right {
  margin-right: 0;
  margin-left: auto;
}

.u-table-results td {
  border: 0;
  cursor: pointer;
}

.u-table-results tr:hover {
  color: #21a1d8;
}

.u-table__row-separator {
  border-top: 1px solid #dfdfdf;
  height: 80px;
}

.u-table__td {
  vertical-align: top;
  padding: 4px;
}
.u-table__td--border-bottom {
  border-bottom: 1px solid #dfdfdf;
}

.u-table > th, .u-table > thead > th {
  font-weight: bold;
  background-color: #F7F7F7;
  /* border-bottom: 1px solid $borderColor; */
  padding: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  vertical-align: top;
}

.u-table > tr.odd > td, .u-table > tbody > tr.odd > td {
  background-color: #F7F7F7;
}

.u-table > tbody > tr > td, .u-table > tr > td {
  vertical-align: top;
  padding: 4px;
}

.table td.table__td-no-border {
  border: 0;
}

.u-tags__container {
  max-width: 250px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.u-under-modal {
  z-index: 0 !important;
}

.u-container {
  padding: 16px;
}

.u-panel {
  padding-top: 16px;
  padding-bottom: 16px;
}

.u-box {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #F7F7F7;
  border: 1px solid #E2E4E5;
}

.u-section {
  padding-top: 16px;
  padding-bottom: 16px;
}
.u-section--mini {
  padding-top: 8px;
  padding-bottom: 8px;
}

.u-sub-section {
  padding-top: 8px;
}

.u-indent, table tr td.u-indent {
  padding-left: 16px;
}

.u-indent-right, table tr td.u-indent-right {
  padding-right: 16px;
}

.u-dashboard-bar {
  margin-top: 5px;
  margin-bottom: 5px;
}

.u-dashboard-bar__item, li.u-dashboard-bar__item {
  display: inline-block;
  padding: 0px;
  border: 1px solid #dfdfdf;
  min-width: 80px;
  margin-left: 0;
  margin-right: 0;
}

.u-dashboard-bar__header {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #F7F7F7;
  width: 100%;
}

.u-dashboard-bar__body {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

.u-border {
  border: 1px solid #dfdfdf;
}
.u-border__total {
  border: 0;
  border-top: 1px solid #dfdfdf;
}
.u-border__top {
  border: 0;
  border-top: 1px solid #dfdfdf;
}
.u-border__top--dashed {
  border-top: 1px dashed #dfdfdf;
}
.u-border__bottom {
  border: 0;
  border-bottom: 1px solid #dfdfdf;
}
.u-border__bottom--dashed {
  border-bottom: 1px dashed #dfdfdf;
}
.u-border__right {
  border: 0;
  border-right: 1px solid #dfdfdf;
}
.u-border__right--dashed {
  border-right: 1px dashed #dfdfdf;
}
.u-border__left {
  border: 0;
  border-left: 1px solid #dfdfdf;
}
.u-border__left--dashed {
  border-left: 1px dashed #dfdfdf;
}

.u-margin {
  margin: 16px;
}

.u-margin-left--auto {
  margin-left: auto;
}

.u-margin-right--auto {
  margin-right: auto;
}

.u-margin-top--3 {
  margin-top: 3px;
}

.u-margin-top--6 {
  margin-top: 6px;
}

.u-margin-left--6 {
  margin-left: 6px;
}

.u-width-5 {
  width: 5%;
}

.u-width-10 {
  width: 10%;
}

.u-width-30 {
  width: 30%;
}

.u-width-70 {
  width: 70%;
}

.u-header-1 {
  font-size: 23px;
  padding-bottom: 12px;
}

.u-header-2 {
  font-size: 20px;
  padding-bottom: 8px;
}

.u-header-3 {
  font-size: 17px;
  padding-bottom: 4px;
}

.u-header-4 {
  font-size: 14px;
  padding-bottom: 4px;
}

.u-results {
  padding-top: 8px;
  padding-bottom: 8px;
  height: 100%;
}
.u-results__list {
  box-sizing: border-box;
  padding: 0;
  background-color: #F7F7F7;
  height: 100%;
}
.u-results__item {
  padding: 12px;
  padding-left: 24px;
  padding-right: 24px;
  border-bottom: 1px solid #E2E4E5;
  cursor: pointer;
  min-width: 350px;
  max-width: 400px;
}
.u-results__item:last-child {
  border-bottom: 0;
}
.u-results__item:hover {
  background-color: #dfdfdf;
}
.u-results__item:focus {
  outline: none;
  background-color: #dfdfdf;
}
.u-results__text {
  padding-bottom: 12px;
}

.u-results .list-results {
  min-width: 200px;
}

.u-results .pagination {
  padding: 12px;
}

.is-loading-container .button {
  min-width: 60px;
}

.is-loading-container--fullscreen {
  height: 100vh;
  background-color: #F7F7F7;
}

.is-loading-container--fullscreen .is-loading {
  top: 50vh;
  display: block;
  margin: auto;
}

.u-truncate {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-calendar__table {
  border: 1px solid #dfdfdf;
}
.u-calendar__header {
  text-align: right;
  vertical-align: middle;
  min-width: 150px;
  padding: 10px;
  background-color: #F7F7F7;
  height: 35px;
}
.u-calendar__td {
  text-align: right;
  min-width: 150px;
  height: 120px;
  padding: 10px;
}
.u-calendar__day--is-today {
  text-align: center;
  display: inline-block;
  border-radius: 1000px;
  background-color: #A20606;
  color: white;
  min-width: 30px;
  padding: 5px;
  font-weight: bold;
}
.u-calendar__td:nth-child(even) {
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
}
.u-calendar__tr:nth-child(even) td {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.u-highlight {
  /* color: ##951f1f; */
  color: #d41010;
}

.facebook-login-btn {
  background-color: #4267B2;
  border-color: #4267B2;
  color: white;
}

.facebook-login-btn:hover {
  background-color: #1e77b3;
  border-color: #1e77b3;
  color: white;
}

.facebook-login-btn:disabled {
  background-color: #4267B2;
}

.u-disabled-pointer {
  cursor: not-allowed;
}

.u-div-table {
  display: table;
  box-sizing: border-box;
}
.u-div-table__heading {
  display: table-header-group;
  font-weight: bold;
}
.u-div-table__row {
  display: table-row;
}
.u-div-table__body {
  display: table-row-group;
}
.u-div-table__head {
  box-sizing: border-box;
  vertical-align: top;
  display: table-cell;
  width: auto;
}
.u-div-table__cell {
  box-sizing: border-box;
  vertical-align: top;
  display: table-cell;
  width: auto;
}

.u-print-table {
  display: table;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  box-sizing: border-box;
}
.u-print-table__heading {
  display: table-header-group;
  font-weight: bold;
}
.u-print-table__row {
  display: table-row;
}
.u-print-table__empty-row {
  height: 35px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.u-print-table__body {
  display: table-row-group;
}
.u-print-table__head {
  box-sizing: border-box;
  vertical-align: top;
  display: table-cell;
  width: auto;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid black;
}
.u-print-table__cell {
  box-sizing: border-box;
  vertical-align: top;
  display: table-cell;
  width: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}
.u-print-table__cell--border {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.u-fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}

.u-fade-in--quick {
  animation: fadeIn ease 200ms;
  -webkit-animation: fadeIn ease 200ms;
  -moz-animation: fadeIn ease 200ms;
  -o-animation: fadeIn ease 200ms;
  -ms-animation: fadeIn ease 200ms;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.breadcrumb li + li::before {
  color: #b5b5b5;
}