html, body {
    background-color: #2f2f2f;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a { color: #5D5D9E; text-decoration: none; }
a:visited { color: #5D5D9E; }
a:active { color: #5C615E; }
a:hover { color: #B2B3B4; }

button:focus { outline: 0; }

#content {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding: 0 1.5em;
}

#error {
    color: red;
}

#message-list {
    color: white;
}

#packages {
    margin-top: 2em;
}

#credits {
    position: relative;
    margin: 1em auto;
}

#copyright {
    margin-top: .75em;
    font-style: italic;
    font-size: .8em;
    color: #7b7673;
}

#developers { margin-top: 2em; }

.shadow {
    -webkit-box-shadow: 0px 0px 11px 1px #111;
    box-shadow: 0px 0px 11px 1px #111;
}

.container {
    width: 100%;
    position: absolute;
    padding: 0;
}

.btn-group {
    position: relative;
    margin: 0 auto;
}

.pkg-card {
    cursor: pointer;
    background-color: #34373c;
    position: relative;
    width: 100%;
    height: 148px;
    margin-bottom: .5em;
    border-radius: 10px;
}

.pkg-card:hover {
    color: #FFFFFF;
    background-color: #4690C1;
    border: 2px solid #4690C1;
}

.pkg-card:focus {
    color: #FFFFFF;
    background-color: #4690C1;
    border: 2px solid #4690C1;
}

.pkg-title {
    position: absolute;
    padding-right: 1em;
    top: 1em;
    left: 148px;
    color: white;
    font-size: 1.75em;
}

.pkg-icon {
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    height: 128px;
    width: 128px;
}

.pkg-ver {
    text-align: left;
    position: absolute;
    padding-right: 1em;
    bottom: 1em;
    left: 148px;
    font-size: .8em;
}

.status {
    color: #f2f2f2;
    position: absolute;
    right: 1em;
    bottom: 1.25em;
    font-size: 3em;
}

.launch {
    color: green;
    border: 2px solid #4690C1;
}

.install {
    color: #7b7673;
    border: 2px solid #7b7673;
}

.upgrade {
    color: yellow;
    border: 2px solid #4690C1;
}

.warn {
    color: red;
    border: 2px solid #7b7673;
}

.spin {
    -webkit-animation: rotation 4.5s linear infinite;
    animation: rotation 4.5s linear infinite;
    -webkit-transform: translateX(100%) translateY(-100%) rotate(45deg);
    transform: translateX(100%) translateY(-100%) rotate(45deg);
}

@-webkit-keyframes rotation {
    0%      { -webkit-transform: rotate(0deg); }
    50%     { -webkit-transform: rotate(180deg); }
    100%    { -webkit-transform: rotate(360deg); }
}

@keyframes rotation {
    0%      { transform: rotate(0deg); }
    50%     { transform: rotate(180deg); }
    100%    { transform: rotate(360deg); }
}

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?iqb0os');
  src:  url('../fonts/icomoon.eot?iqb0os#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?iqb0os') format('truetype'),
    url('../fonts/icomoon.woff?iqb0os') format('woff'),
    url('../fonts/icomoon.svg?iqb0os#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
  content: "\e900";
}
.icon-play:before {
  content: "\e912";
}
.icon-file-zip:before {
  content: "\e92b";
}
.icon-spinner:before {
  content: "\e982";
}
.icon-update:before {
  content: "\e984";
}
.icon-cog:before {
  content: "\e994";
}
.icon-download:before {
  content: "\e9c5";
}
.icon-android:before {
  content: "\eac0";
}