@media screen {
  #main {
    display: inline-block;
    height: 650px;
    width: 59%;
    font-size: 16px;
  }
  #main .nav {
    height: 40px;
  }
  #main .has-one-canvas {
    height: 90%;
  }
  #main .has-two-canvases-top {
    height: 320px;
  }
  #main .has-two-canvases-bottom {
    height: 230px;
  }
  #main .canvases-wrapper {
    overflow-y: auto;
  }
  #main .canvases-wrapper .bg {
    position: relative;
    margin-top: 35px;
    margin-left: 35px;
    border: 1px solid;
    background-image: url("img/cell.png");
    background-repeat: repeat;
    background-size: 50px 50px;
  }
  #main .canvases-wrapper .bg .squares-wrapper .diff-square {
    position: absolute;
    border-width: 2px;
    border-style: solid;
  }
  #main .canvases-wrapper .bg .squares-wrapper .diff-square-black {
    border-color: black;
  }
  #main .canvases-wrapper .bg .squares-wrapper .diff-square-red {
    border-color: red;
  }
  #main .canvases-wrapper .bg .diagonals-wrapper .diagonal {
    position: absolute;
    height: 5px;
    border-top-width: 6px;
    border-top-color: transparent;
    border-top-style: solid;
    -webkit-transform-origin: left top 0px;
            transform-origin: left top 0px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #main .canvases-wrapper .bg .diagonals-wrapper .diagonal:hover {
    border-top-color: rgba(30, 40, 80, 0.4);
  }
  #main .canvases-wrapper .bg .points-wrapper .point-outer {
    position: absolute;
    height: 12.5px;
    width: 12.5px;
  }
  #main .canvases-wrapper .bg .points-wrapper .point-outer .point-inner {
    height: 12.5px;
    width: 12.5px;
  }
  #main .canvases-wrapper .bg .axis-cell {
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    font-size: 30px;
  }
  #main .canvases-wrapper .bg .x-axis-wrapper {
    position: absolute;
    top: -150px;
    pointer-events: none;
  }
  #main .canvases-wrapper .bg .x-axis-wrapper .x-axis {
    position: relative;
    left: 20px;
    height: 100px;
  }
  #main .canvases-wrapper .bg .x-axis-wrapper .x-axis .x-axis-cell {
    height: 100px;
    width: 50px;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 100px;
  }
  #main .canvases-wrapper .bg .y-axis-wrapper {
    position: absolute;
    left: -100px;
    pointer-events: none;
  }
  #main .canvases-wrapper .bg .y-axis-wrapper .y-axis {
    position: relative;
    top: 25px;
    width: 100px;
  }
  #main .canvases-wrapper .bg .y-axis-wrapper .y-axis .y-axis-cell {
    height: 50px;
    width: 100px;
    padding-left: 60px;
    line-height: 50px;
  }
}
@media screen and (min-width: 831px) and (min-height: 713px) {
  #main {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 830px) {
  #main {
    display: block;
    width: 100%;
    height: 60%;
  }
  #main .canvases-wrapper {
    height: 40%;
    overflow-x: auto;
  }
  #main .has-one-canvas {
    height: 90%;
  }
  #main .has-two-canvases-top,
  #main .has-two-canvases-bottom {
    height: 40%;
  }
}
@-webkit-keyframes showDiagonal {
  from {
    height: 0px;
    width: 0px;
  }
  to {
    height: 50px;
    width: 50px;
  }
}
@keyframes showDiagonal {
  from {
    height: 0px;
    width: 0px;
  }
  to {
    height: 50px;
    width: 50px;
  }
}
.diagonal-line {
  position: absolute;
  background-size: 50px 50px;
  -webkit-animation-name: showDiagonal;
          animation-name: showDiagonal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.diagonal-line-black {
  background-image: url("img/diagonal.png");
}
.diagonal-line-red {
  background-image: url("img/diagonal-red.png");
}
@-webkit-keyframes showHorizontal {
  from {
    width: 0px;
  }
  to {
    width: 50px;
  }
}
@keyframes showHorizontal {
  from {
    width: 0px;
  }
  to {
    width: 50px;
  }
}
.horizontal-line {
  position: absolute;
  height: 28px;
  width: 50px;
  background-size: 50px 50px;
  -webkit-animation-name: showHorizontal;
          animation-name: showHorizontal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.horizontal-line .horizontal-line-inner {
  height: 28px;
  width: 50px;
  background-size: 50px 50px;
  -webkit-animation-name: showHorizontal;
          animation-name: showHorizontal;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.horizontal-line-black {
  background-image: url("img/horizontal.png");
}
.horizontal-line-red {
  background-image: url("img/horizontal-red.png");
}
@-webkit-keyframes showVertical {
  from {
    height: 0px;
  }
  to {
    height: 50px;
  }
}
@keyframes showVertical {
  from {
    height: 0px;
  }
  to {
    height: 50px;
  }
}
.vertical-line {
  position: absolute;
  width: 29px;
  background-size: 50px 50px;
  -webkit-animation-name: showVertical;
          animation-name: showVertical;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.vertical-line .vertical-line-inner {
  width: 29px;
  background-size: 50px 50px;
  -webkit-animation-name: showVertical;
          animation-name: showVertical;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.vertical-line-black {
  background-image: url("img/vertical.png");
}
.vertical-line-red {
  background-image: url("img/vertical-red.png");
}
@media screen {
  #panel-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    font-size: 16px;
  }
  #panel-wrapper .input-boxes input[type="text"],
  #panel-wrapper .input-boxes input[type="number"] {
    width: 70px;
  }
  #panel-wrapper #tables-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    height: 25%;
  }
  #panel-wrapper #tables-wrapper .diff-table {
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  #panel-wrapper #tables-wrapper .diff-table table,
  #panel-wrapper #tables-wrapper .diff-table th,
  #panel-wrapper #tables-wrapper .diff-table td {
    border: 1px solid black;
    padding: 5px;
    text-align: center;
  }
  #panel-wrapper #tables-wrapper .diff-table .cell-selected {
    font-weight: bolder;
    color: red;
  }
  #panel-wrapper #tables-wrapper .diff-table .cell-selected:not(.cell-choice) {
    border: 2px solid red;
  }
  #panel-wrapper #tables-wrapper .diff-table .cell-choice {
    border: 2px dotted red;
  }
  #panel-wrapper #log {
    overflow-y: auto;
  }
  #panel-wrapper #log .log-info {
    margin-top: 15px;
    height: 60px;
  }
  #panel-wrapper #log .log-info > * {
    vertical-align: middle;
  }
  #panel-wrapper #log .log-info .log-info-d-path-on-diagonal-k {
    white-space: pre-wrap;
  }
  #panel-wrapper #log .log-info .log-info-d-path-on-diagonal-k-black,
  #panel-wrapper #log .log-info .log-info-d-path-on-diagonal-k-black * {
    color: black;
  }
  #panel-wrapper #log .log-info .log-info-d-path-on-diagonal-k-red,
  #panel-wrapper #log .log-info .log-info-d-path-on-diagonal-k-red * {
    color: red;
  }
  #panel-wrapper #log .log-info .log-info-modify-path {
    display: inline-block;
    height: 33px;
  }
  #panel-wrapper #log .log-info .log-info-modify-path div {
    font-size: 10px;
    height: 11px;
  }
  #panel-wrapper #log .log-info .log-info-modify-path .log-info-modify-path-arrow {
    background-size: 11px 11px;
    background-repeat: no-repeat;
  }
  #panel-wrapper #log .log-info .log-info-modify-path .horizontal-arrow {
    background-image: url("horizontal.png");
    background-position: 10px 3px;
  }
  #panel-wrapper #log .log-info .log-info-modify-path .vertical-arrow {
    background-image: url("vertical.png");
    background-position: 65% -1px;
  }
  #panel-wrapper #log .log-info .horizontal-path {
    height: 11px;
  }
  #panel-wrapper #log .log-info .horizontal-path div {
    display: inline-block;
  }
  #panel-wrapper #log .log-info .horizontal-path .horizontal-arrow {
    height: 11px;
    width: 16.5px;
    background-position: 3px 3px;
  }
}
@media screen and (min-width: 831px) and (min-height: 713px) {
  #panel-wrapper {
    position: absolute;
    left: 10px;
  }
}
@media screen and (max-width: 830px) {
  #panel-wrapper {
    display: block;
    width: 100%;
    height: 35%;
    max-height: 400px;
    max-width: none;
  }
  #panel-wrapper #log-wrapper {
    height: 52%;
  }
  #panel-wrapper #log-wrapper #log {
    height: 100%;
  }
}
@media screen and (max-width: 830px) and (max-height: 712px) {
  #panel-wrapper #log-wrapper {
    display: none;
  }
}
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
  white-space: pre-wrap;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.nav a {
  text-decoration: none;
}
.mensuFade {
  display: none;
}
.mensuFade.active {
  -webkit-animation-name: mensuFadeIn;
          animation-name: mensuFadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: block;
}
@-webkit-keyframes mensuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mensuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hidden {
  display: none;
}
/*# sourceMappingURL=diff-demo.css.map */