@keyframes ConfirmCheck_scaleAnimation {
  0% {
    opacity: 0;
    transform: scale(1.5); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes ConfirmCheck_drawCircle {
  0% {
    stroke-dashoffset: 500px; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes ConfirmCheck_drawCheck {
  0% {
    stroke-dashoffset: 36px; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes ConfirmCheck_fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@keyframes ConfirmCheck_fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

#successAnimationCircle {
  stroke-dasharray: 500px 500px;
  stroke: #14ba39; }

#successAnimationCheck {
  stroke-dasharray: 36px 36px;
  stroke: #FFF; }

#successAnimationResult {
  fill: #14ba39;
  opacity: 0; }

#successAnimation.animated {
  animation: 1s ease-out 0s 1 both ConfirmCheck_scaleAnimation; }
  #successAnimation.animated #successAnimationCircle {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both ConfirmCheck_drawCircle, 0.3s linear 0.9s 1 both ConfirmCheck_fadeOut; }
  #successAnimation.animated #successAnimationCheck {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both ConfirmCheck_drawCheck, 0.3s linear 0.9s 1 both ConfirmCheck_fadeOut; }
  #successAnimation.animated #successAnimationResult {
    animation: 0.3s linear 0.9s both ConfirmCheck_fadeIn; }

.loadingbar-bars {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 7px;
  right: 5px;
  visibility: hidden;
  pointer-events: none; }

.loadingbar-bars > div {
  background-color: #dedede;
  margin-right: 1px;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: loadingbar-stretchdelay 1.2s infinite ease-in-out;
  animation: loadingbar-stretchdelay 1.2s infinite ease-in-out; }

.loadingbar-bars .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.loadingbar-bars .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.loadingbar-bars .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.loadingbar-bars .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes loadingbar-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes loadingbar-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  border: 1px solid #f1f1f1; }

.CodeMirror-scroll {
  /* Set scrolling behaviour here */
  overflow: auto; }

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */ }

.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */ }

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */ }

/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap; }

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/* CURSOR */
.CodeMirror div.CodeMirror-cursor {
  border-left: 1px solid black;
  z-index: 3; }

/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver; }

.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7;
  z-index: 1; }

/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block; }

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  position: absolute; }

/* DEFAULT THEME */
.cm-s-default .cm-keyword {
  color: #708; }

.cm-s-default .cm-atom {
  color: #219; }

.cm-s-default .cm-number {
  color: #164; }

.cm-s-default .cm-def {
  color: #00f; }

.cm-s-default .cm-variable-2 {
  color: #05a; }

.cm-s-default .cm-variable-3 {
  color: #085; }

.cm-s-default .cm-comment {
  color: #a50; }

.cm-s-default .cm-string {
  color: #a11; }

.cm-s-default .cm-string-2 {
  color: #f50; }

.cm-s-default .cm-meta {
  color: #555; }

.cm-s-default .cm-qualifier {
  color: #555; }

.cm-s-default .cm-builtin {
  color: #30a; }

.cm-s-default .cm-bracket {
  color: #997; }

.cm-s-default .cm-tag {
  color: #170; }

.cm-s-default .cm-attribute {
  color: #00c; }

.cm-s-default .cm-header {
  color: blue; }

.cm-s-default .cm-quote {
  color: #090; }

.cm-s-default .cm-hr {
  color: #999; }

.cm-s-default .cm-link {
  color: #00c; }

.cm-negative {
  color: #d44; }

.cm-positive {
  color: #292; }

.cm-header, .cm-strong {
  font-weight: bold; }

.cm-em {
  font-style: italic; }

.cm-link {
  text-decoration: underline; }

.cm-s-default .cm-error {
  color: #f00; }

.cm-invalidchar {
  color: #f00; }

div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0; }

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22; }

.CodeMirror-activeline-background {
  background: #e8f2ff; }

/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  line-height: 1;
  position: relative;
  overflow: hidden;
  background: white;
  color: black; }

.CodeMirror-scroll {
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none; }

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll; }

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll; }

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0; }

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0; }

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 30px;
  z-index: 3; }

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 30px;
  margin-bottom: -32px;
  display: inline-block;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline; }

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4; }

.CodeMirror-lines {
  cursor: text; }

.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible; }

.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal; }

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto; }

.CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden; }

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden; }

.CodeMirror-measure pre {
  position: static; }

.CodeMirror div.CodeMirror-cursor {
  position: absolute;
  visibility: hidden;
  border-right: none;
  width: 0; }

.CodeMirror-focused div.CodeMirror-cursor {
  visibility: visible; }

.CodeMirror-selected {
  background: #d9d9d9; }

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4); }

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
  *vertical-align: text-bottom; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursor {
    visibility: hidden; } }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-thin.eot);
  src: url(/heian/font/gotham-thin.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-thin.ttf) format("truetype"), url(/heian/font/gotham-thin.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-thinita.eot);
  src: url(/heian/font/gotham-thinita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-thinita.ttf) format("truetype"), url(/heian/font/gotham-thinita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-xlight.eot);
  src: url(/heian/font/gotham-xlight.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-xlight.ttf) format("truetype"), url(/heian/font/gotham-xlight.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-xlightita.eot);
  src: url(/heian/font/gotham-xlightita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-xlightita.ttf) format("truetype"), url(/heian/font/gotham-xlightita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-light.eot);
  src: url(/heian/font/gotham-light.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-light.ttf) format("truetype"), url(/heian/font/gotham-light.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-lightita.eot);
  src: url(/heian/font/gotham-lightita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-lightita.ttf) format("truetype"), url(/heian/font/gotham-lightita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-book.eot);
  src: url(/heian/font/gotham-book.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-book.ttf) format("truetype"), url(/heian/font/gotham-book.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-bookita.eot);
  src: url(/heian/font/gotham-bookita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-bookita.ttf) format("truetype"), url(/heian/font/gotham-bookita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-medium.eot);
  src: url(/heian/font/gotham-medium.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-medium.ttf) format("truetype"), url(/heian/font/gotham-medium.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-mediumita.eot);
  src: url(/heian/font/gotham-mediumita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-mediumita.ttf) format("truetype"), url(/heian/font/gotham-mediumita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-bold.eot);
  src: url(/heian/font/gotham-bold.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-bold.ttf) format("truetype"), url(/heian/font/gotham-bold.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-boldita.eot);
  src: url(/heian/font/gotham-boldita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-boldita.ttf) format("truetype"), url(/heian/font/gotham-boldita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-black.eot);
  src: url(/heian/font/gotham-black.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-black.ttf) format("truetype"), url(/heian/font/gotham-black.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-blackita.eot);
  src: url(/heian/font/gotham-blackita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-blackita.ttf) format("truetype"), url(/heian/font/gotham-blackita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-ultra.eot);
  src: url(/heian/font/gotham-ultra.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-ultra.ttf) format("truetype"), url(/heian/font/gotham-ultra.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-ultraita.eot);
  src: url(/heian/font/gotham-ultraita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-ultraita.ttf) format("truetype"), url(/heian/font/gotham-ultraita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 800;
  font-style: italic; }

.heian-ursus-product-container-sandbox div.container-fluid {
  margin-bottom: 30px; }

.heian-ursus-product-container, #www-wysiwyg-container {
  font-family: Gotham, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a18;
  font-size: 16px;
  width: 100%;
  max-width: 1280px;
  margin: auto; }
  @media (min-width: 992px) {
    .heian-ursus-product-container .row, #www-wysiwyg-container .row {
      display: flex; } }
  .heian-ursus-product-container .bg-red, #www-wysiwyg-container .bg-red {
    background-color: #f61b16; }
  .heian-ursus-product-container .bg-black, #www-wysiwyg-container .bg-black {
    background-color: #070407; }
  .heian-ursus-product-container .bg-grey, #www-wysiwyg-container .bg-grey {
    background-color: #cdcdcd; }
  .heian-ursus-product-container .mt-30, #www-wysiwyg-container .mt-30 {
    margin-top: 30px; }
  .heian-ursus-product-container .mb-30, #www-wysiwyg-container .mb-30 {
    margin-bottom: 30px; }
  .heian-ursus-product-container .hupc-two-tiles-text .title, #www-wysiwyg-container .hupc-two-tiles-text .title {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; }
    .heian-ursus-product-container .hupc-two-tiles-text .title span, #www-wysiwyg-container .hupc-two-tiles-text .title span {
      font-weight: 300; }
  .heian-ursus-product-container .hupc-two-tiles-text .text, #www-wysiwyg-container .hupc-two-tiles-text .text {
    padding: 15px;
    text-align: justify; }
  .heian-ursus-product-container .hupc-text, #www-wysiwyg-container .hupc-text {
    font-size: 20px;
    text-align: justify;
    padding: 60px 30px; }
    .heian-ursus-product-container .hupc-text .text:first-letter, #www-wysiwyg-container .hupc-text .text:first-letter {
      font-size: 150%;
      font-weight: 600; }
  .heian-ursus-product-container .hupc-two-tiles-image-text .image, #www-wysiwyg-container .hupc-two-tiles-image-text .image {
    background: no-repeat center center;
    background-size: cover;
    height: 400px; }
  .heian-ursus-product-container .hupc-two-tiles-image-text .nest, #www-wysiwyg-container .hupc-two-tiles-image-text .nest {
    background-color: #f1f1f1; }
    .heian-ursus-product-container .hupc-two-tiles-image-text .nest .title, #www-wysiwyg-container .hupc-two-tiles-image-text .nest .title {
      font-size: 26px;
      font-weight: 800;
      text-transform: uppercase;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      padding: 15px;
      margin: 0 -15px 30px -15px; }
      .heian-ursus-product-container .hupc-two-tiles-image-text .nest .title span, #www-wysiwyg-container .hupc-two-tiles-image-text .nest .title span {
        font-weight: 300; }
    .heian-ursus-product-container .hupc-two-tiles-image-text .nest p, #www-wysiwyg-container .hupc-two-tiles-image-text .nest p {
      text-align: justify; }
  .heian-ursus-product-container .hupc-two-tiles-image .title, #www-wysiwyg-container .hupc-two-tiles-image .title {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; }
    .heian-ursus-product-container .hupc-two-tiles-image .title span, #www-wysiwyg-container .hupc-two-tiles-image .title span {
      font-weight: 300; }
  .heian-ursus-product-container .hupc-two-tiles-image .image, #www-wysiwyg-container .hupc-two-tiles-image .image {
    background: no-repeat center center;
    background-size: cover;
    height: 400px; }
  .heian-ursus-product-container .hupc-three-images .image div, #www-wysiwyg-container .hupc-three-images .image div {
    background: no-repeat center center;
    background-size: cover;
    height: 400px; }
  .heian-ursus-product-container .hupc-three-images .image:first-child, #www-wysiwyg-container .hupc-three-images .image:first-child {
    padding-left: 0; }
  .heian-ursus-product-container .hupc-three-images .image:last-child, #www-wysiwyg-container .hupc-three-images .image:last-child {
    padding-right: 0; }
  @media (max-width: 767px) {
    .heian-ursus-product-container .hupc-three-images .image, #www-wysiwyg-container .hupc-three-images .image {
      padding: 0; } }
  .heian-ursus-product-container .hupc-list-image .list, #www-wysiwyg-container .hupc-list-image .list {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120%;
    font-weight: 600; }
  .heian-ursus-product-container .hupc-list-image ul, #www-wysiwyg-container .hupc-list-image ul {
    padding-left: 1.5rem; }
  .heian-ursus-product-container .hupc-list-image li, #www-wysiwyg-container .hupc-list-image li {
    margin-bottom: .4rem;
    list-style-type: none;
    padding-left: 1rem; }
  .heian-ursus-product-container .hupc-list-image li:before, #www-wysiwyg-container .hupc-list-image li:before {
    font-family: 'FontAwesome';
    content: "\f00c";
    margin: 0 10px 0 -28px;
    color: #f61b16; }
  .heian-ursus-product-container .hupc-list-image .image, #www-wysiwyg-container .hupc-list-image .image {
    background: no-repeat center center;
    background-size: contain;
    height: 300px; }
  .heian-ursus-product-container .hupc-image .title, #www-wysiwyg-container .hupc-image .title {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    color: #ffffff; }
    .heian-ursus-product-container .hupc-image .title span, #www-wysiwyg-container .hupc-image .title span {
      font-weight: 300; }
  .heian-ursus-product-container .hupc-image .nest, #www-wysiwyg-container .hupc-image .nest {
    background: no-repeat center center;
    background-size: cover;
    height: 300px; }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__items, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__items {
    background-color: #fdfdfd;
    position: relative;
    text-align: center;
    padding: 2.14rem .71rem 2.14rem .71rem;
    -webkit-box-shadow: 0 1px 15px 1px rgba(69, 65, 78, 0.1);
    box-shadow: 0 1px 15px 1px rgba(69, 65, 78, 0.1);
    margin-bottom: 30px; }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__item, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__item {
    border-right: 1px solid #e8e8e8;
    width: 100%; }
    .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__item:last-child, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__item:last-child {
      border: none; }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__visual, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__visual {
    position: relative;
    margin-top: 6.8rem;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__hexagon, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__hexagon {
    height: 0;
    background: #f4fcff;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute; }
    .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__hexagon:before, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__hexagon:before {
      content: "";
      position: absolute;
      top: -2.14rem;
      width: 13.2rem;
      height: 0;
      border-left: 3.35rem solid transparent;
      border-right: 3.35rem solid transparent;
      border-bottom: 5.71rem solid #f7f7f7;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
    .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__hexagon:after, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__hexagon:after {
      content: "";
      position: absolute;
      top: 3.57rem;
      width: 13.21rem;
      height: 0;
      border-left: 3.35rem solid transparent;
      border-right: 3.35rem solid transparent;
      border-top: 5.71rem solid #f7f7f7;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__icon, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__icon {
    margin-top: .8rem;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    color: #f61b16; }
    .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__icon i, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__icon i {
      font-size: 6.43rem; }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__subtitle, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__subtitle {
    margin-top: 17.1rem;
    font-size: 1.64rem; }
  .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__features, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__features {
    margin: 2.14rem 0 1.8rem;
    line-height: 2.2; }
    .heian-ursus-product-container .hupc-three-icon-boxes .m-pricing-table-2__features span, #www-wysiwyg-container .hupc-three-icon-boxes .m-pricing-table-2__features span {
      display: block;
      font-weight: 500;
      color: #cdcdcd; }

@media (min-width: 1441px) {
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; } }

.bgcolor-polish {
  background-color: #fffbfb; }

.bgcolor-english {
  background-color: #f2f9ff; }

.add-bgcolor-palered {
  background-color: #fff3f3; }

#app-container {
  visibility: hidden; }

.cursor-n-resize {
  cursor: n-resize; }

.blockUI.blockOverlay {
  z-index: 1000 !important; }

@media (max-width: 1699px) {
  .hide-below-1700 {
    display: none !important; } }

.m-login__logo img {
  width: 100%;
  height: auto; }

.swal2-popup.swal2-modal.swal2-show {
  width: 700px;
  max-width: 90%; }

#upload-browser-popup .modal-dialog {
  width: 90%;
  max-width: 90%; }

#upload-browser-popup iframe {
  height: 90vh;
  border: 0; }

#logout-mask {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
  font-size: 40px;
  align-items: center;
  justify-content: center; }
  #logout-mask p {
    z-index: 1001;
    position: relative;
    text-align: center;
    color: #ffffff;
    pointer-events: none;
    text-transform: uppercase; }
  #logout-mask img {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0; }

#login-confirmation-icon {
  text-align: center;
  display: none; }

#login-confirmation-mask {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  display: none; }

.m-header {
  background-color: #ffffff; }

.m-content {
  padding-top: 0 !important;
  background-color: initial !important; }

.m-card-profile__details {
  overflow: hidden; }

#main-menu-show-trigger {
  background: url("/heian/img/main-menu-show-trigger-bg.png");
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 50px; }
  #main-menu-show-trigger img {
    position: relative;
    top: 120px;
    left: 3px; }
  @media (min-width: 1700px) {
    #main-menu-show-trigger {
      display: none; } }

@media (max-width: 1699px) {
  #m_aside_left {
    position: fixed;
    top: 110px;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 0px 18px 1px #797979; } }

.note-editing-area .note-editable {
  padding-top: 20px !important; }

.m-card-profile-widget-override .m-card-profile {
  padding: 0 !important; }
  .m-card-profile-widget-override .m-card-profile .m-card-profile__pic-wrapper {
    margin: 0 !important; }

.m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper {
  border-radius: 10%;
  position: relative; }
  .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper .m-loader {
    width: 30px;
    display: block;
    position: absolute;
    left: 47%;
    top: 47%;
    z-index: 5; }

.m-card-profile .m-card-profile__pic img {
  max-width: 100% !important;
  position: relative;
  z-index: 10; }

.m-card-user__details {
  text-align: center !important; }
  .m-card-user__details a {
    margin-top: 10px; }

.m-brand__logo-wrapper img {
  height: 60px; }

.dev-environment-tag {
  display: inline;
  position: relative;
  left: 338px;
  top: -5px;
  font-weight: 600;
  color: #e20000; }

.m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper {
  transition: 1s all ease-in-out; }

.m-card-profile .m-card-profile__pic img {
  border-radius: 10% !important; }

thead, tfoot {
  background-color: #f9f9f9; }

.heian-product-page .nav-tabs .nav-item.show .nav-link, .heian-product-page .nav-tabs .nav-link {
  background: #e6e6e6; }
  .heian-product-page .nav-tabs .nav-item.show .nav-link:hover, .heian-product-page .nav-tabs .nav-link:hover {
    background: #fdebeb; }

.heian-product-page .nav-tabs .nav-item.show .nav-link, .heian-product-page .nav-tabs .nav-link.active {
  border-color: #ffffff;
  background: #ffffff; }

.heian-product-page #www-wysiwyg-container {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff; }

.heian-product-parameter-prototype, .heian-product-priceoption-prototype {
  position: relative; }
  .heian-product-parameter-prototype select, .heian-product-priceoption-prototype select {
    background: #fff8ef; }
  .heian-product-parameter-prototype input, .heian-product-priceoption-prototype input {
    background: #f1fff5; }
  .heian-product-parameter-prototype button, .heian-product-priceoption-prototype button {
    position: absolute;
    bottom: 5px;
    right: 5px; }

li.select2-results__option[role=treeitem] {
  background-color: #f2fff6; }

li.select2-results__option[aria-disabled="true"] {
  background-color: #fff4f6; }

strong.select2-results__group {
  background-color: #becdff; }

#product_productHandings fieldset {
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid gainsboro; }

.product-parameter-selectfield optgroup, .product-parameter-en-selectfield optgroup, .product-priceoption-selectfield optgroup {
  background-color: #dcf9ff; }

.product-parameter-selectfield option:disabled, .product-parameter-en-selectfield option:disabled, .product-priceoption-selectfield option:disabled {
  background-color: #fff4f6; }

.product-parameter-selectfield option:not(disabled), .product-parameter-en-selectfield option:not(disabled), .product-priceoption-selectfield option:not(disabled) {
  background-color: #f2fff6; }

.heian-notification-entry:before {
  left: 13rem !important; }

.heian-notification-entry .m-timeline-3__item-time {
  width: 12rem !important;
  padding-top: 0 !important; }
  .heian-notification-entry .m-timeline-3__item-time .time-diff {
    font-size: 0.8rem;
    position: relative;
    top: -1rem; }

.heian-notification-entry .m-timeline-3__item-desc {
  padding-left: 15rem !important; }

.heian-notification-entry .m-timeline-3__item-user-name {
  pointer-events: none; }

.product-select2-parameter-nest .select2-container, .heian-product-page .select2-container {
  width: 100% !important; }

table.dataTable td {
  position: relative; }

.m-timeline-2 {
  position: relative; }

.m-timeline-2-wider .m-timeline-2__item-cricle {
  left: 11rem !important; }

.m-timeline-2-wider .m-timeline-2__item-text {
  padding-left: 12rem !important; }

.m-timeline-2-wider:before {
  left: 11.75rem !important; }

.snapshot-diff-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 100px; }
  .snapshot-diff-container .m-timeline-1__item {
    top: 3rem !important;
    left: 0 !important; }
  .snapshot-diff-container .fa {
    font-size: 2rem;
    display: block;
    text-align: center; }
    .snapshot-diff-container .fa.fa-thumbs-up {
      color: green; }
    .snapshot-diff-container .fa.fa-thumbs-down {
      color: red; }
  .snapshot-diff-container ins {
    background: #dcffdc; }
  .snapshot-diff-container del {
    background: #ffdcdc; }

.save-button-confirmation {
  font-size: 30px;
  margin-right: 15px;
  color: #00a700;
  display: none; }

.save-icon-animation {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  height: 100vh;
  align-items: center;
  justify-content: center;
  width: 100vw;
  pointer-events: none; }
  .save-icon-animation .loader {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
    stroke-linecap: round;
    stroke-width: 4;
    fill: none; }
    .save-icon-animation .loader .internal-circle,
    .save-icon-animation .loader .external-circle {
      stroke: #f61b16;
      stroke-dashoffset: 0;
      transform-origin: center; }
    .save-icon-animation .loader .internal-circle {
      stroke-dasharray: 187;
      animation: internal 1s ease-in-out infinite;
      opacity: .4; }
    .save-icon-animation .loader .external-circle {
      stroke-dasharray: 312;
      animation: external 1s linear infinite;
      opacity: .9; }

@keyframes internal {
  0% {
    stroke-dashoffset: 187; }
  25% {
    stroke-dashoffset: 80; }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(360deg); } }

@keyframes external {
  0% {
    stroke-dashoffset: 312;
    transform: rotate(70deg); }
  60% {
    stroke-dashoffset: -312; }
  100% {
    stroke-dashoffset: -312;
    transform: rotate(450deg); } }

@keyframes bgcolors {
  0% {
    background: #1a87c5; }
  25% {
    background: #c51a3a; }
  50% {
    background: #e6d121; }
  75% {
    background: #22cf76; }
  100% {
    background: #1a87c5; } }

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  border: 1px solid #f1f1f1; }

.CodeMirror-scroll {
  /* Set scrolling behaviour here */
  overflow: auto; }

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */ }

.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */ }

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */ }

/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap; }

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/* CURSOR */
.CodeMirror div.CodeMirror-cursor {
  border-left: 1px solid black;
  z-index: 3; }

/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver; }

.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7;
  z-index: 1; }

/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block; }

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  position: absolute; }

/* DEFAULT THEME */
.cm-s-default .cm-keyword {
  color: #708; }

.cm-s-default .cm-atom {
  color: #219; }

.cm-s-default .cm-number {
  color: #164; }

.cm-s-default .cm-def {
  color: #00f; }

.cm-s-default .cm-variable-2 {
  color: #05a; }

.cm-s-default .cm-variable-3 {
  color: #085; }

.cm-s-default .cm-comment {
  color: #a50; }

.cm-s-default .cm-string {
  color: #a11; }

.cm-s-default .cm-string-2 {
  color: #f50; }

.cm-s-default .cm-meta {
  color: #555; }

.cm-s-default .cm-qualifier {
  color: #555; }

.cm-s-default .cm-builtin {
  color: #30a; }

.cm-s-default .cm-bracket {
  color: #997; }

.cm-s-default .cm-tag {
  color: #170; }

.cm-s-default .cm-attribute {
  color: #00c; }

.cm-s-default .cm-header {
  color: blue; }

.cm-s-default .cm-quote {
  color: #090; }

.cm-s-default .cm-hr {
  color: #999; }

.cm-s-default .cm-link {
  color: #00c; }

.cm-negative {
  color: #d44; }

.cm-positive {
  color: #292; }

.cm-header, .cm-strong {
  font-weight: bold; }

.cm-em {
  font-style: italic; }

.cm-link {
  text-decoration: underline; }

.cm-s-default .cm-error {
  color: #f00; }

.cm-invalidchar {
  color: #f00; }

div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0; }

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22; }

.CodeMirror-activeline-background {
  background: #e8f2ff; }

/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  line-height: 1;
  position: relative;
  overflow: hidden;
  background: white;
  color: black; }

.CodeMirror-scroll {
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none; }

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll; }

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll; }

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0; }

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0; }

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 30px;
  z-index: 3; }

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 30px;
  margin-bottom: -32px;
  display: inline-block;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline; }

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4; }

.CodeMirror-lines {
  cursor: text; }

.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible; }

.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal; }

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto; }

.CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden; }

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden; }

.CodeMirror-measure pre {
  position: static; }

.CodeMirror div.CodeMirror-cursor {
  position: absolute;
  visibility: hidden;
  border-right: none;
  width: 0; }

.CodeMirror-focused div.CodeMirror-cursor {
  visibility: visible; }

.CodeMirror-selected {
  background: #d9d9d9; }

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4); }

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
  *vertical-align: text-bottom; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursor {
    visibility: hidden; } }

@keyframes ConfirmCheck_scaleAnimation {
  0% {
    opacity: 0;
    transform: scale(1.5); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes ConfirmCheck_drawCircle {
  0% {
    stroke-dashoffset: 500px; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes ConfirmCheck_drawCheck {
  0% {
    stroke-dashoffset: 36px; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes ConfirmCheck_fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@keyframes ConfirmCheck_fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

#successAnimationCircle {
  stroke-dasharray: 500px 500px;
  stroke: #14ba39; }

#successAnimationCheck {
  stroke-dasharray: 36px 36px;
  stroke: #FFF; }

#successAnimationResult {
  fill: #14ba39;
  opacity: 0; }

#successAnimation.animated {
  animation: 1s ease-out 0s 1 both ConfirmCheck_scaleAnimation; }
  #successAnimation.animated #successAnimationCircle {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both ConfirmCheck_drawCircle, 0.3s linear 0.9s 1 both ConfirmCheck_fadeOut; }
  #successAnimation.animated #successAnimationCheck {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both ConfirmCheck_drawCheck, 0.3s linear 0.9s 1 both ConfirmCheck_fadeOut; }
  #successAnimation.animated #successAnimationResult {
    animation: 0.3s linear 0.9s both ConfirmCheck_fadeIn; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-thin.eot);
  src: url(/heian/font/gotham-thin.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-thin.ttf) format("truetype"), url(/heian/font/gotham-thin.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-thinita.eot);
  src: url(/heian/font/gotham-thinita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-thinita.ttf) format("truetype"), url(/heian/font/gotham-thinita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-xlight.eot);
  src: url(/heian/font/gotham-xlight.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-xlight.ttf) format("truetype"), url(/heian/font/gotham-xlight.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-xlightita.eot);
  src: url(/heian/font/gotham-xlightita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-xlightita.ttf) format("truetype"), url(/heian/font/gotham-xlightita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-light.eot);
  src: url(/heian/font/gotham-light.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-light.ttf) format("truetype"), url(/heian/font/gotham-light.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-lightita.eot);
  src: url(/heian/font/gotham-lightita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-lightita.ttf) format("truetype"), url(/heian/font/gotham-lightita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-book.eot);
  src: url(/heian/font/gotham-book.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-book.ttf) format("truetype"), url(/heian/font/gotham-book.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-bookita.eot);
  src: url(/heian/font/gotham-bookita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-bookita.ttf) format("truetype"), url(/heian/font/gotham-bookita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-medium.eot);
  src: url(/heian/font/gotham-medium.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-medium.ttf) format("truetype"), url(/heian/font/gotham-medium.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-mediumita.eot);
  src: url(/heian/font/gotham-mediumita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-mediumita.ttf) format("truetype"), url(/heian/font/gotham-mediumita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-bold.eot);
  src: url(/heian/font/gotham-bold.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-bold.ttf) format("truetype"), url(/heian/font/gotham-bold.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-boldita.eot);
  src: url(/heian/font/gotham-boldita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-boldita.ttf) format("truetype"), url(/heian/font/gotham-boldita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-black.eot);
  src: url(/heian/font/gotham-black.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-black.ttf) format("truetype"), url(/heian/font/gotham-black.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-blackita.eot);
  src: url(/heian/font/gotham-blackita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-blackita.ttf) format("truetype"), url(/heian/font/gotham-blackita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-ultra.eot);
  src: url(/heian/font/gotham-ultra.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-ultra.ttf) format("truetype"), url(/heian/font/gotham-ultra.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: Gotham;
  src: url(/heian/font/gotham-ultraita.eot);
  src: url(/heian/font/gotham-ultraita.eot?#iefix) format("embedded-opentype"), url(/heian/font/gotham-ultraita.ttf) format("truetype"), url(/heian/font/gotham-ultraita.svg#5e602f8a-1e6a-461e-bfd8-ff46a5460527) format("svg");
  font-weight: 800;
  font-style: italic; }

.loadingbar-bars {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 7px;
  right: 5px;
  visibility: hidden;
  pointer-events: none; }

.loadingbar-bars > div {
  background-color: #dedede;
  margin-right: 1px;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: loadingbar-stretchdelay 1.2s infinite ease-in-out;
  animation: loadingbar-stretchdelay 1.2s infinite ease-in-out; }

.loadingbar-bars .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.loadingbar-bars .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.loadingbar-bars .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.loadingbar-bars .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes loadingbar-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes loadingbar-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }
