@import url(https://fonts.googleapis.com/css?family=Roboto&display=swap);

.main-card.card {
  max-width: 90px;
  z-index: 1; }
  .main-card.card .image-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 90px;
    height: 90px; }
  .main-card.card .image-wrapper__thumbnail {
      margin: 0 auto; }
  .main-card.card .image-wrapper img {
      border-radius: 5px;
      width: 90px;
      height: 90px;
      -o-object-fit: cover;
         object-fit: cover; }
  .main-card.card .card-body {
    padding: 0; }
  .main-card.card .card-body .card-title {
      text-align: center;
      font-size: 12px; }
  @media only screen and (max-width: 576px) {
    .main-card.card {
      max-width: 70px;
      margin-right: 15px;
      margin-left: 15px; }
      .main-card.card .image-wrapper {
        width: 70px;
        height: 70px; }
        .main-card.card .image-wrapper img {
          width: 70px;
          height: 70px; } }

footer ul {
  box-shadow: inset -20px 0px 20px -20px rgba(0, 0, 0, 0.45), inset 20px 0px 20px -20px rgba(0, 0, 0, 0.45);
  background-color: #ebebeb;
  padding: 10px;
  margin-bottom: 0; }
  footer ul .icons {
    margin-top: 4px; }
  footer ul .icons a {
      text-decoration: none; }
  footer ul .icons a i {
        padding: 3px;
        font-size: 32px; }
  footer ul .icons a i:hover:before {
          color: black;
          text-decoration: none; }
  footer ul li:not(:last-child):after {
    display: inline-block;
    font-size: 100%;
    margin: 0 0 0 .5em; }

.header {
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 0 5px rgba(179, 179, 179, 0.5);
  background-color: white;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: all; }
  .header.navbar .container {
    display: contents; }
  .header.navbar.header-hidden {
    top: -70px; }
  .header .navbar-brand .logo-small {
    display: none; }
  .header .btn {
    font-weight: bold; }
  .header .logo, .header .react-autosuggest__input, .header .btn, .header i {
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: all; }
  @media only screen and (min-width: 768px) {
    .header.navbar.header-scrolled {
      height: 40px;
      min-height: 40px; }
      .header.navbar.header-scrolled .navbar-brand .logo {
        height: 30px;
        width: 180px; }
      .header.navbar.header-scrolled .search-box-wrapper i {
        line-height: 26px;
        font-size: 18px; }
      .header.navbar.header-scrolled .search-box-wrapper .react-autosuggest__input {
        padding: 1px 20px 1px 30px;
        height: 26px; }
      .header.navbar.header-scrolled .clear-button {
        margin-top: -23px; }
      .header.navbar.header-scrolled .btn {
        line-height: 1; } }
  @media only screen and (max-width: 767px) {
    .header .navbar-brand .logo {
      display: none; }
    .header .navbar-brand .logo-small {
      display: block; } }

.pagination {
  margin-bottom: 0;
  padding: 45px 15px 20px 0px; }
  .pagination .disabled {
    display: none; }
  .pagination .page-item {
    padding: 0 5px; }
  .pagination .page-item.selected a {
      color: #39b54a;
      font-weight: 900; }
  .pagination .page-item.selected a:hover {
        text-decoration: none; }
  .pagination .page-item.selected a:focus {
        outline: none; }
  .pagination .page-item:not(.selected) a:hover {
      cursor: pointer; }

.image-wrapper {
  position: relative; }
  .image-wrapper .tray-checkbox {
    position: absolute;
    top: -15px;
    right: -10px;
    cursor: pointer; }
  .image-wrapper:hover .content-overlay {
    opacity: 0.7; }
  .image-wrapper__thumbnail {
    position: relative; }
  .image-wrapper.clickable .image-wrapper__thumbnail:hover {
    cursor: pointer; }
  .image-wrapper .thumbnail {
    border: 1px solid #959595;
    width: 100%;
    border-radius: 5px;
    min-width: 50px;
    white-space: normal; }
  .image-wrapper .no-image {
    color: #fff;
    border: 1px solid #959595;
    border-radius: 5px;
    font-size: 35px;
    width: 90px;
    height: 90px;
    text-align: center;
    white-space: normal;
    line-height: 90px;
    display: inline-block; }
  @media only screen and (max-width: 576px) {
      .image-wrapper .no-image {
        width: 70px;
        height: 70px;
        line-height: 70px; } }
  .image-wrapper .report-list-item-size {
    width: 100%;
    height: 100%; }
  .image-wrapper .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 5px; }
  .image-wrapper .content-details {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out 0s;
    color: white;
    font-weight: bold;
    font-size: 68px; }
  .image-wrapper:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1; }

.spinner {
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  top: -200px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1031; }
  .spinner .middle {
    width: 185px;
    margin: 0 auto;
    margin-top: 300px;
    background: white;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
  .spinner .middle .loader {
      display: inline-block; }
  .spinner .middle .loader img {
        vertical-align: unset; }
  .spinner .middle .text {
      margin-left: 15px;
      display: inline-block; }
  .spinner .middle .text span {
        display: block;
        text-align: center; }

.no-results {
  text-align: center;
  padding: 20px; }

.topic-details {
  border-bottom: 1px solid #ebebeb; }
  .topic-details__title {
    font-size: 40px;
    font-weight: 300;
    padding: 20px 20px 0;
    line-height: 40px; }
  .topic-details__title .fancy-checkbox {
      display: inline-block;
      margin-right: 15px;
      line-height: 30px; }
  .topic-details__content {
    padding: 0 20px 5px;
    text-align: justify;
    font-size: 12px; }
  .topic-details .images {
    height: 100px;
    overflow: hidden;
    margin-top: 20px; }
  .topic-details .images > div {
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 60px; }
  .topic-details .images img {
      max-width: 90px;
      max-height: 90px;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 5px; }
  .topic-details__wiki-link {
    font-size: 12px;
    margin-left: 10px;
    color: #3C47C2; }
  .topic-details__wiki-link i {
      margin-left: 2px; }
  .topic-details__aliases {
    margin-top: 30px; }

.paginatedThumbnails_qxqfp1 div, .figure_10ki57k {
  background-color: white; }

.topics-list__ad-unit {
  padding: 20px 30px;
  border-bottom: 1px solid #ebebeb;
  text-align: center; }

.topics-list__amazon-ad {
  margin-left: -15px;
  margin-right: -15px; }

.topics-list__tile {
  padding: 20px 15px;
  border-bottom: 1px solid #ebebeb; }

.topics-list__tile-image {
    overflow: hidden; }

.topics-list__tile h3 {
    position: relative;
    font-size: 24px; }

.topics-list__tile h3 a {
      vertical-align: middle;
      margin-right: 10px;
      display: inline; }

.topics-list__tile h3 .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
      background-color: #39b54a; }

.topics-list__tile h3 .connections {
      display: inline;
      position: static;
      margin-right: 30px; }

.topics-list__tile h3 .connections button {
        padding: 0;
        border: zero; }

.topics-list__tile h3 .fancy-checkbox {
      top: 0;
      right: 15px;
      margin-left: 15px;
      display: inline-block; }

.topics-list__tile .aliases, .topics-list__tile .reciprocal-links {
    margin-bottom: 10px; }

.topics-list__info-details {
  font-size: 12px; }

.topics-list__info-details .text {
    text-align: justify;
    margin-bottom: 10px; }

.topics-list__info-details .sentences {
    color: black;
    margin-bottom: 10px; }

.topics-list__info-details .sentences:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb; }

.topics-list__info-details .images {
    height: 100px;
    overflow: hidden; }

.topics-list__info-details .images > div {
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 60px; }

.topics-list__info-details .images img {
      max-width: 90px;
      max-height: 90px;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 5px; }

.topics-list__info-details em {
    font-weight: bold;
    font-style: normal; }

@media only screen and (max-width: 576px) {
  .topics-list__tile {
    padding: 10px 15px; }
    .topics-list__tile-image {
      display: none; }
    .topics-list__tile h3 a {
      margin-right: 30px;
      display: inline; }
    .topics-list__tile h3 .fancy-checkbox {
      right: 0;
      margin-left: 0;
      margin-right: 10px; }
    .topics-list__tile h3 .connections {
      margin-right: 5px; }
  .topics-list__info .aliases, .topics-list__info .text {
    margin-bottom: 0; }
  .topics-list__info-details .text > div {
    height: 50px;
    margin-bottom: 10px;
    overflow: hidden; } }

.aliases {
  color: black; }
  .aliases span:not(:last-child):after {
    content: " | ";
    color: #a4a4a4; }

.suggestions-links {
  font-size: 12px;
  height: 20px;
  overflow: hidden; }
  .suggestions-links a {
    display: inline-block;
    font-weight: 700; }
  .suggestions-links a:not(:last-child) {
      margin-right: 3px; }
  .suggestions-links a:not(:last-child):after {
        content: " | ";
        color: #a4a4a4; }


.connections {
  position: absolute;
  color: black;
  font-weight: 800; }
  .connections .popover-item button {
    font-size: 10px;
    color: black;
    font-weight: 800; }
  .connections .popover-item button:focus, .connections .popover-item button:hover {
      text-decoration: none;
      color: inherit; }
  .connections .popover-item button em {
      color: #39b54a;
      font-size: 12px;
      font-style: normal;
      font-weight: bold; }
  .connections__popover .popover-header {
    font-size: 14px; }
  .connections__popover .popover-body {
    overflow-y: auto;
    max-height: 300px; }
  .connections__popover .popover-body li:nth-child(odd) {
      padding-top: 15px; }
  .connections__popover em {
    color: #28a745;
    font-style: normal;
    font-weight: bold; }
  .connections__popover strong {
    font-style: normal; }

@charset "UTF-8";
.search-box-wrapper {
  position: relative;
  width: 400px; }
@media only screen and (max-width: 767px) {
    .search-box-wrapper {
      width: 250px; } }
.search-box-wrapper i {
    position: absolute;
    z-index: 1;
    font-size: 20px;
    line-height: 36px;
    left: 9px;
    color: #28a745; }
.search-box-wrapper .clear-button {
    margin-top: -27px;
    cursor: pointer;
    color: white;
    border: 1px solid #b3b3b3;
    border-radius: 30px;
    background: #a4a4a4;
    font-size: 24px;
    line-height: 0px;
    padding: 9px 3px;
    position: absolute;
    right: 25px; }
.search-box-wrapper .clear-button:before {
    content: "\D7"; }
.search-box-wrapper .react-autosuggest__container {
    position: relative;
    margin-right: 16px; }
.search-box-wrapper .react-autosuggest__input {
    width: 100%;
    height: 36px;
    padding: 10px 30px 10px 34px;
    font-size: 16px;
    border: 1px solid #a4a4a4;
    border-radius: 4px; }
.search-box-wrapper .react-autosuggest__input--focused {
      outline: none; }
.search-box-wrapper .react-autosuggest__input--open {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
.search-box-wrapper .react-autosuggest__suggestions-container {
    display: none; }
.search-box-wrapper .react-autosuggest__suggestions-container--open {
      display: block;
      position: absolute;
      top: 35px;
      width: 100%;
      border: 1px solid #a4a4a4;
      background-color: white;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      overflow-y: scroll;
      max-height: 300px;
      z-index: 2; }
.search-box-wrapper .react-autosuggest__suggestions-list {
    margin: 0;
    padding: 0;
    list-style-type: none; }
.search-box-wrapper .react-autosuggest__suggestion {
    cursor: pointer;
    padding: 3px 10px; }
.search-box-wrapper .react-autosuggest__suggestion em {
      font-weight: bold;
      font-style: normal;
      color: black; }
.search-box-wrapper .react-autosuggest__suggestion--highlighted {
      background-color: #ebebeb; }

.tray {
  background-color: #ebebeb;
  box-shadow: inset 0 0 5px #b3b3b3; }
  .tray.container {
    max-width: 940px; }
  .tray .connections {
    right: 0; }
  .tray .combination .card-deck {
    margin: 25px 20px;
    display: inline-flex; }
  .tray .combination .card-deck .main-card {
      background-color: inherit; }

.combination {
  position: relative;
  border-bottom: 1px solid #ebebeb; }
  .combination__item {
    position: relative; }
  .combination__item .card {
      margin-right: 15px;
      margin-top: 26px; }
  @media only screen and (max-width: 767px) {
        .combination__item .card {
          margin-right: 10px; } }
  .combination__item .card:first-child {
      margin-left: 15px; }
  @media only screen and (max-width: 767px) {
        .combination__item .card:first-child {
          margin-left: 10px; } }
  .combination.inverse .card-deck:hover, .combination.inverse .card-deck:hover .main-card {
    transition: all 0.25s;
    cursor: pointer;
    border-radius: 5px;
    background-color: #ebebeb;
    text-decoration: none; }
  .combination .card-deck {
    margin: 30px 55px;
    color: #464646;
    cursor: default; }
  @media only screen and (max-width: 576px) {
      .combination .card-deck {
        flex-flow: row wrap;
        margin-left: 15px;
        margin-right: 15px; }
        .combination .card-deck .card {
          margin-bottom: 0;
          cursor: default; } }
  .combination .card-deck .thumbnail {
      width: auto; }

.reports {
  overflow: hidden;
  padding: 10px 20px;
  border: 1px solid lightgray;
  background-color: whitesmoke;
  display: block;
  font-size: 16px; }
  .reports .reports-horizontal-bar {
    overflow: hidden; }
  .reports .pagination-meta {
    float: left;
    margin-left: 20px; }
  .reports .suggestions-number {
    float: left; }
  .reports .wiki-link {
    color: #214d7d; }
  .reports .wiki-link:hover {
      text-decoration: underline; }
  .reports .wiki-link a {
      cursor: pointer; }
  .reports .reports-list {
    transition: all 100ms ease;
    font-size: 12px; }
  .reports.collapsed .reports-list {
    height: 0;
    overflow: hidden; }
  .reports.collapsed .heading .btn i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  .reports .view-hyperleap-report {
    float: right; }
  .reports .heading {
    display: block; }
  .reports .heading .btn {
      padding: 0; }
  .reports .heading .btn.filter-button {
        display: inline-block;
        margin-left: 5px; }
  .reports .heading .btn i {
        display: inline-block;
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        transition: linear 0.15s;
        margin-right: 5px; }
  .reports .report {
    margin-top: 15px; }
  .reports .report .title {
      font-size: 24px; }
  .reports .report p {
      margin-top: 5px;
      margin-bottom: 10px;
      line-height: 17px; }
  .reports .report p em {
        font-weight: bold;
        font-style: normal; }

.fancy-checkbox .custom-control-label {
  position: static; }

.fancy-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none; }

.fancy-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #39b54a; }

.fancy-checkbox .custom-control-label::before, .fancy-checkbox .custom-control-label::after {
  left: 0; }

.fancy-checkbox .custom-control-label::before {
  background-color: white;
  border: 1px solid #b3b3b3; }

.fancy-checkbox .custom-control-label:not(.report-topic-checkbox)::before, .fancy-checkbox .custom-control-label:not(.report-topic-checkbox)::after {
  width: 24px;
  height: 24px; }

.fancy-checkbox .report-topic-checkbox::before, .fancy-checkbox .report-topic-checkbox::after {
  top: 0.1rem; }

.clear-all {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  right: 0; }

.scroll-top-button {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 2;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid lightgray;
  height: 45px;
  width: 45px;
  padding: 0;
  box-shadow: 0 0 7px 0 #b3b3b3;
  color: #a4a4a4;
  font-size: 18px; }
  .scroll-top-button:hover {
    background-color: #a4a4a4;
    border-color: #a4a4a4; }
  .scroll-top-button:focus {
    box-shadow: 0 0 7px 0 #b3b3b3; }
  @media only screen and (max-width: 576px) {
    .scroll-top-button {
      display: none; } }

.results-link {
  position: relative;
  margin-left: auto;
  display: inline; }

.rangeInputRight {
  padding-left: 5px; }
  @media only screen and (max-width: 576px) {
    .rangeInputRight {
      padding-left: 15px; } }
  .rangeInputLeft {
  padding-right: 5px; }
  @media only screen and (max-width: 576px) {
    .rangeInputLeft {
      padding-right: 15px; } }

.category-filter .categories-items {
  min-height: 100px;
  max-height: 500px;
  overflow: hidden;
  margin-top: 10px; }

.category-filter .selected-category-button {
  margin: 5px; }

.category-filter .category-badge {
  margin-left: 5px; }

.category-filter .pagination {
  padding: 10px 0 0 0; }

.category-filter .categoriesRow {
  line-height: 19px; }

.filters-modal {
  max-width: 700px; }

.remove-button {
  position: absolute;
  width: 17px;
  height: 17px;
  top: -9px;
  right: -8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bolder;
  color: white;
  padding: 0;
  border: 0;
  background-color: #82827c;
  border-radius: 10px;
  font-family: sans-serif;
  text-align: center;
  line-height: 17px; }
  .remove-button:hover {
    background-color: dimgray; }

.edit-report-link {
  margin-left: auto; }

.report-tray {
  background-color: #ebebeb;
  box-shadow: inset 0 0 5px #b3b3b3; }
  .report-tray .categories {
    padding-top: 5px; }
  .report-tray .category-link:not(:last-child):after {
    content: " | ";
    color: #a4a4a4; }
  .report-tray .report-topic-link:not(:last-child):after {
    content: " + ";
    display: inline-block;
    padding: 0 4px;
    color: #a4a4a4; }
  .report-tray .tray-caption {
    margin-left: 20px;
    margin-top: 10px;
    font-size: 18px; }
  .report-tray .tray-images {
    height: 100px;
    overflow: hidden;
    margin-top: 20px; }
  .report-tray .tray-images > div {
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 60px; }
  .report-tray .tray-images img {
      max-width: 90px;
      max-height: 90px;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 5px; }
  .report-tray .reports-tray-horizontal-bar {
    overflow: hidden;
    padding: 10px 20px;
    border: 1px solid lightgray;
    background-color: whitesmoke;
    display: block;
    font-size: 16px; }
  .report-tray .reports-tray-horizontal-bar .relations-number {
      float: right; }
  .report-tray .reports-tray-horizontal-bar .report-filter {
      float: left; }

.report-item__tile {
  padding: 20px 15px;
  border-bottom: 1px solid #ebebeb; }

.report-item__info .text {
  text-align: justify;
  margin-bottom: 10px; }

.report-item__topic-row {
  text-align: center; }

.focus-report-on, .focus-report-checkbox {
  margin-right: 10px; }

.focus-report-checkbox {
  display: inline-block; }

.error .error-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center; }
  .error .error-text span {
    margin: auto;
    display: block;
    font-size: 28px;
    font-weight: bold; }
  .error .error-text a {
    color: #214d7d;
    font-weight: bold; }
  .error .error-text h6 {
    border-top: 1px solid #a4a4a4;
    padding-top: 5px; }

.maintence {
  /* pap */
  /*
  .two {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22103px%22%20height%3D%22103.7px%22%20viewBox%3D%220%200%20103%20103.7%22%0A%09%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%20103%20103.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%235197d6%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M87.3%2C64.8c0.3-1.5%2C1.1-2.9%2C1.6-4.9c0.4-2%2C0.7-3.5%2C0.5-5.1l12.3-6.3c1.2-0.8%2C1.4-1.8%2C1.1-2.9l-6.3-19.6%0A%09c-0.4-0.6-1.3-1.3-2.9-1.1l-13.5%2C2.3c-2.1-2.5-4.7-4.7-7.4-6.8l0.8-13.4C74.3%2C5.8%2C73%2C4.5%2C72%2C4.3L52.1%2C0c-1-0.2-2.7%2C0.5-2.9%2C1.5%0A%09l-4.8%2C13c-3.2%2C0.4-6.1%2C1.8-9.5%2C3.2l-10.9-7.5c-1.4-0.8-2.5-0.5-3.7%2C0.3L6.5%2C25.8c-0.6%2C0.4-0.4%2C2%2C0.4%2C3.2l8.8%2C10.2%0A%09c-0.3%2C1.5-1.1%2C2.9-1.5%2C4.9c-0.4%2C2-0.7%2C3.5-0.6%2C5.1L1.2%2C55.4c-1.2%2C0.8-1.4%2C1.8-1.1%2C2.9l6.3%2C19.6c0.4%2C0.6%2C1.3%2C1.3%2C2.9%2C1.1l13.5-2.3%0A%09c2.1%2C2.5%2C4.7%2C4.7%2C7.4%2C6.8l-0.8%2C13.4c-0.2%2C1%2C0.6%2C2.2%2C2.1%2C2.5l20%2C4.2c1%2C0.2%2C2.7-0.5%2C2.9-1.5l4.7-12.6c3.3-0.9%2C6.6-1.7%2C9.5-3.2L80.1%2C94%0A%09c0.9%2C0.7%2C2.5%2C0.5%2C3.2-0.4L97%2C78.3c0.7-0.9%2C1-2.4%2C0.1-3.1L87.3%2C64.8z%20M47.8%2C69.5C38.3%2C67.5%2C32%2C57.8%2C34%2C48.3%0A%09c2-9.5%2C11.7-15.8%2C21.2-13.8c9.5%2C2%2C15.7%2C11.7%2C13.7%2C21.2C66.9%2C65.2%2C57.3%2C71.5%2C47.8%2C69.5L47.8%2C69.5z%22%2F%3E%0A%3C%2Fsvg%3E");
    width:100px;
    height:100px;
    background-size:100% 100%;
    background-repeat:no-repeat;
  }
  */
  /* pap */ }
  .maintence body {
    font-family: "Noto Sans", sans-serif;
    color: #616161;
    background-color: #eeeeee; }
  .maintence .container {
    margin: auto;
    max-width: 1024px;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative; }
  .maintence .box {
    width: auto;
    height: 500px;
    background: #fff;
    margin-top: 50px;
    margin-left: 100px;
    margin-right: 100px;
    border-radius: 5px;
    box-shadow: 6px 18px 18px rgba(0, 0, 0, 0.08), -6px 18px 18px rgba(0, 0, 0, 0.08); }
  .maintence .animation {
    margin-top: 20%;
    display: inline-block;
    margin-bottom: 5%; }
  .maintence h1 {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0; }
  .maintence p {
    font-size: 16px;
    font-weight: 700;
    margin: 0; }
  .maintence a {
    color: #f6921e;
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px; }
  .maintence .one, .maintence .two, .maintence .three {
    display: block;
    float: left; }
  .maintence .one {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2281px%22%20height%3D%2280.5px%22%20viewBox%3D%220%200%2081%2080.5%22%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%2081%2080.5%3B%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23383838%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M30.3%2C68.2c1.2%2C0.2%2C2.3%2C0.9%2C3.8%2C1.2c1.6%2C0.3%2C2.7%2C0.6%2C4%2C0.4l4.9%2C9.6c0.6%2C0.9%2C1.4%2C1.1%2C2.3%2C0.9l15.3-4.9%0A%09c0.5-0.3%2C1-1%2C0.9-2.3l-1.8-10.6c2-1.6%2C3.6-3.7%2C5.3-5.8l10.5%2C0.6c1.1%2C0.6%2C2.1-0.4%2C2.3-1.1L81%2C40.7c0.2-0.8-0.4-2.1-1.1-2.3l-10.2-3.8%0A%09c-0.3-2.5-1.4-4.8-2.5-7.5l5.9-8.5c0.6-1.1%2C0.4-1.9-0.2-2.9l-12-10.7c-0.3-0.5-1.6-0.3-2.5%2C0.3l-8%2C6.9c-1.2-0.2-2.3-0.9-3.8-1.2%0A%09c-1.6-0.3-2.7-0.6-4-0.4L37.7%2C1c-0.6-0.9-1.4-1.1-2.3-0.9L20.1%2C5c-0.5%2C0.3-1%2C1-0.9%2C2.3l1.8%2C10.6c-2%2C1.6-3.6%2C3.7-5.3%2C5.8L5.3%2C23%0A%09c-0.8-0.2-1.7%2C0.4-2%2C1.6L0%2C40.2c-0.2%2C0.8%2C0.4%2C2.1%2C1.1%2C2.3l9.8%2C3.7c0.7%2C2.6%2C1.4%2C5.2%2C2.5%2C7.5l-6%2C8.9c-0.6%2C0.7-0.4%2C2%2C0.3%2C2.5l12%2C10.7%0A%09c0.7%2C0.5%2C1.9%2C0.8%2C2.4%2C0.1L30.3%2C68.2z%20M26.7%2C37.3c1.6-7.4%2C9.1-12.3%2C16.5-10.8S55.6%2C35.7%2C54%2C43.1c-1.6%2C7.4-9.1%2C12.3-16.5%2C10.7%0A%09C30.1%2C52.3%2C25.1%2C44.7%2C26.7%2C37.3L26.7%2C37.3z%22%2F%3E%0A%3C%2Fsvg%3E");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -10px;
    margin-right: 8px; }
  .maintence .two {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22103px%22%20height%3D%22103.7px%22%20viewBox%3D%220%200%20103%20103.7%22%0A%09%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%20103%20103.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23F6921E%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M87.3%2C64.8c0.3-1.5%2C1.1-2.9%2C1.6-4.9c0.4-2%2C0.7-3.5%2C0.5-5.1l12.3-6.3c1.2-0.8%2C1.4-1.8%2C1.1-2.9l-6.3-19.6%0A%09c-0.4-0.6-1.3-1.3-2.9-1.1l-13.5%2C2.3c-2.1-2.5-4.7-4.7-7.4-6.8l0.8-13.4C74.3%2C5.8%2C73%2C4.5%2C72%2C4.3L52.1%2C0c-1-0.2-2.7%2C0.5-2.9%2C1.5%0A%09l-4.8%2C13c-3.2%2C0.4-6.1%2C1.8-9.5%2C3.2l-10.9-7.5c-1.4-0.8-2.5-0.5-3.7%2C0.3L6.5%2C25.8c-0.6%2C0.4-0.4%2C2%2C0.4%2C3.2l8.8%2C10.2%0A%09c-0.3%2C1.5-1.1%2C2.9-1.5%2C4.9c-0.4%2C2-0.7%2C3.5-0.6%2C5.1L1.2%2C55.4c-1.2%2C0.8-1.4%2C1.8-1.1%2C2.9l6.3%2C19.6c0.4%2C0.6%2C1.3%2C1.3%2C2.9%2C1.1l13.5-2.3%0A%09c2.1%2C2.5%2C4.7%2C4.7%2C7.4%2C6.8l-0.8%2C13.4c-0.2%2C1%2C0.6%2C2.2%2C2.1%2C2.5l20%2C4.2c1%2C0.2%2C2.7-0.5%2C2.9-1.5l4.7-12.6c3.3-0.9%2C6.6-1.7%2C9.5-3.2L80.1%2C94%0A%09c0.9%2C0.7%2C2.5%2C0.5%2C3.2-0.4L97%2C78.3c0.7-0.9%2C1-2.4%2C0.1-3.1L87.3%2C64.8z%20M47.8%2C69.5C38.3%2C67.5%2C32%2C57.8%2C34%2C48.3%0A%09c2-9.5%2C11.7-15.8%2C21.2-13.8c9.5%2C2%2C15.7%2C11.7%2C13.7%2C21.2C66.9%2C65.2%2C57.3%2C71.5%2C47.8%2C69.5L47.8%2C69.5z%22%2F%3E%0A%3C%2Fsvg%3E");
    width: 100px;
    height: 100px;
    background-size: 100% 100%;
    background-repeat: no-repeat; }
  .maintence .three {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2281px%22%20height%3D%2280.5px%22%20viewBox%3D%220%200%2081%2080.5%22%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%2081%2080.5%3B%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23383838%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M30.3%2C68.2c1.2%2C0.2%2C2.3%2C0.9%2C3.8%2C1.2c1.6%2C0.3%2C2.7%2C0.6%2C4%2C0.4l4.9%2C9.6c0.6%2C0.9%2C1.4%2C1.1%2C2.3%2C0.9l15.3-4.9%0A%09c0.5-0.3%2C1-1%2C0.9-2.3l-1.8-10.6c2-1.6%2C3.6-3.7%2C5.3-5.8l10.5%2C0.6c1.1%2C0.6%2C2.1-0.4%2C2.3-1.1L81%2C40.7c0.2-0.8-0.4-2.1-1.1-2.3l-10.2-3.8%0A%09c-0.3-2.5-1.4-4.8-2.5-7.5l5.9-8.5c0.6-1.1%2C0.4-1.9-0.2-2.9l-12-10.7c-0.3-0.5-1.6-0.3-2.5%2C0.3l-8%2C6.9c-1.2-0.2-2.3-0.9-3.8-1.2%0A%09c-1.6-0.3-2.7-0.6-4-0.4L37.7%2C1c-0.6-0.9-1.4-1.1-2.3-0.9L20.1%2C5c-0.5%2C0.3-1%2C1-0.9%2C2.3l1.8%2C10.6c-2%2C1.6-3.6%2C3.7-5.3%2C5.8L5.3%2C23%0A%09c-0.8-0.2-1.7%2C0.4-2%2C1.6L0%2C40.2c-0.2%2C0.8%2C0.4%2C2.1%2C1.1%2C2.3l9.8%2C3.7c0.7%2C2.6%2C1.4%2C5.2%2C2.5%2C7.5l-6%2C8.9c-0.6%2C0.7-0.4%2C2%2C0.3%2C2.5l12%2C10.7%0A%09c0.7%2C0.5%2C1.9%2C0.8%2C2.4%2C0.1L30.3%2C68.2z%20M26.7%2C37.3c1.6-7.4%2C9.1-12.3%2C16.5-10.8S55.6%2C35.7%2C54%2C43.1c-1.6%2C7.4-9.1%2C12.3-16.5%2C10.7%0A%09C30.1%2C52.3%2C25.1%2C44.7%2C26.7%2C37.3L26.7%2C37.3z%22%2F%3E%0A%3C%2Fsvg%3E");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -50px;
    margin-left: -10px; }
  @-webkit-keyframes spin-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg); } }
  @keyframes spin-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg); } }
  .maintence .spin-one {
    -webkit-animation: spin-one 1.5s infinite linear;
    animation: spin-one 1.5s infinite linear; }
  @-webkit-keyframes spin-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(359deg); } }
  @keyframes spin-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(359deg); } }
  .maintence .spin-two {
    -webkit-animation: spin-two 2s infinite linear;
    animation: spin-two 2s infinite linear; }

