#view {
  margin: 0 auto;
}

.image-error::after {
  margin: auto;
  margin-top: 20px;
  display: block;
  text-align: center;
}

/* tools */
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* style */
table.alternatives {
  font-family: Arial, Helvetica, sans-serif;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-collapse: collapse;
}

.alternatives td {
  padding: 10px;
  border: none;
  background: none;
}

a.browser-tile {
  text-align: center;
  display: block;
  width: 140px;

  padding: 4px;
  padding-top: 120px;
  background-repeat: no-repeat;
  background-position: center top;
  text-decoration: none;
  background-color: rgba(255, 150, 0, 0.3);

  transition: background-color 100ms linear;
  -webkit-transition: background-color 100ms linear;
  -moz-transition: background-color 100ms linear;
  -o-transition: background-color 100ms linear;
  -ms-transition: background-color 100ms linear;
}

a.browser-tile:hover {
  background-color: rgba(255, 150, 0, 0.7);
}

a .text-browser {
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 15px;
}

a .text-vendor {
  color: rgb(235, 235, 235);
  display: block;
  font-size: 12px;
}

.status-text {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 90%;
  left: 5%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

/* Background */
#view-background {
  background: rgb(255, 151, 0);
  height: 100%;
  position: absolute;
}

/* Background */
#view-background img {
  width: 100%;
  height: 100%;
  position: absolute;
}

img.fadein {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  -ms-transition: opacity 1s;
}

.view-outer {
  position: relative;
}

.view-inner {
  position: absolute;
  width: 100%;
  height: 100%;
}

#view-page-footer {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 16px 12px 16px 0;
  text-align: right;
  font-family: sans-serif;
  font-size: 12px;
  color: #888;
}

#view-page-footer a {
  color: #888;
  cursor: pointer;
  text-decoration: none;
}

#find-my-id {
  user-select: text;
}

#find-my-id .cuid {
  cursor: text;
  font-weight: 700;
}

#view-page-footer .is-hidden {
  display: none;
}

.footer-separator {
  color: #888;
  padding: 0 4px;
}

/* Effects */
#view-game {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

#preloader-logo {
  margin: auto;
  right: 0px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin-top: 100px;
  display: block;
}

#preloader-progress {
  margin: auto;
  right: 0px;
  left: 0px;
  top: 300px;
  bottom: 0px;

  background: #333;
  border-radius: 13px;
  height: 20px;
  width: 300px;
  padding: 3px;
}

#preloader-progress > div {
  content: "";
  display: block;
  background: #ff6a00;
  width: 50%;
  height: 100%;
  border-radius: 9px;
  transition: width 300ms;

  animation-name: pulse-color;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes pulse-color {
  from {
    background-color: rgb(255, 106, 0);
  }
  to {
    background-color: rgb(255, 144, 0);
  }
}

.list-stores {
  list-style: none;
  padding: 0;
  margin: 0;
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.list-stores div {
  display: table-cell;
}
.list-stores a {
  display: block;
  width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
