 
/* imports */
@import url(https://fonts.googleapis.com/css?family=PT+Sans);

/* global */

h1 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "PT Sans", sans-serif;
    font-size: 25px;
    text-transform: uppercase; 
}

h2 {
    margin: 0;
    padding: 20px 0;
    color: #333;
    font-family: "PT Sans", sans-serif;
    font-size: 30px;
}

span.logout {
    margin: 0;
    padding: 0;
    color: #999;
    font-family: "PT Sans", sans-serif;
    font-size: 13px;
}

p {
    margin: 0;
    padding: 10px 0;
    color: #999;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
}

    .greenbutton a, .purplebutton a, .greybutton a {
        border: medium none;
        border-radius: 44px;
        color: #fff;
        cursor: pointer;
        font-family: "Neo Sans W02",Trebuchet,sans-serif;
        font-size: 14px;
        padding: 7px 15px 5px 15px;
        text-decoration: none;
    }

    .greenbutton a {
        background-color: #84b818;
    }

    .purplebutton a {
        background-color: #530170;
    }

    .greybutton a {
        background-color: #B6B6B6;
    }
/* header */

.header-wrapper {
    width: 100%;
    background: #84B818;
}

.header {
    height: auto;
    margin: 0 auto;
    padding-left: 30px;
    padding-top: 3px;
    padding-bottom: 3px;
}

@media (min-width: 960px) {
.header {
    width: 960px;
    background-image: url('../img/header.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    height: auto;
    min-height: 250px;
    margin: 0 auto;
    padding: 0px;
}    

.header > h1 { 
    padding-top: 80px;
    font-size: 43px;
    }
}

.license {
    position: static;
    font-size: 85%;
    color: #ddd;
    text-align: -webkit-right;
    text-align: right;
    padding-right: 5px;
}

.header p {
    color: #fff;
}

.response {
    font-weight: bold;
    width: 400px;
}

.settings-wrapper {
    width: 100%;
    height: auto;
}

.settings {
    width: 960px;
    margin: 0 auto;
    padding: 5px;
}

.tableform tr {
  height: 45px;
}

.tableform td {
    padding: 10px 0;
    color: #999;
    font-size: 14px;
}

.tableform .label {
    width: 150px;
}

.tableform .version {
    width: 80px;
}

.tableform .button {
    width: 320px;
    text-align: right;
}

.tableform .input {
    width: 400px;
}

.tableform input, .tableform select {
    width: 400px;
    padding: 7px;
    border: 1px solid #aaa !important;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: #ffffff;
    line-height: 1;
    font-size: 12px;
    font-family: "PT Sans", Trebuchet, sans-serif;
    border-radius: 3px;
    color: #666;
    outline: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.tableform select {
  padding: 5px 7px 3px 7px !important;
  background: url('../img/arrow.png');
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 388px 3.5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* actions */

.actions-wrapper {
    width: 100%;
    height: auto;
    background: #fff;
}

.actions {
    width: 960px;
    height: 120px;
    margin: 0 auto;
    padding: 20px 0;
}

.action-button {
    float: left;
    margin-right: 20px;
}

/* popup (old) */

.fmkpp-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: rgba(0,0,0,0.5);
  z-index: 99999999;
}

.fmkpp {
  position: relative;
  top: 30%;
  left: 50%;
  margin-left: -270px;
  width: 540px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
}

.fmkpp .close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 30px;
  height: 28px;
}

.fmkpp .content {
    padding: 20px 60px 20px 20px;
}

.fmkpp .content p {
   color: #666;
   font-size: 18px;
}

.fmkpp .right ul {
    padding-left: 15px !important;
}

.fmkpp .right ul li {
    padding-bottom: 20px;
}

@media (max-width: 540px) {
    .fmkpp {
        width: 100%;
        left: 0%;
        margin-left: 0;
    }

    .fmkpp .right {
        display: none;
    }

    .fmkpp .left{
        width: 99%;
    }
}

/* popup (new) */

.ppp-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  background: rgba(0,0,0,0.5);
  z-index: 99999999;
}

.ppp {
  position: relative;
  top: 30%;
  left: 50%;
  margin-left: -270px;
  width: 540px;
  height: auto;
}

.ppp-header {
  width: 100%;
  height: 100px;
  background-color: #84B818;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.ppp-header h2 {
  color: #fff;
  padding: 50px 0 0 20px;
  font-size: 26px;
}

.ppp-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 30px;
  height: 28px;
}

.ppp-content {
  width: 500px;
  height: auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ppp-block {
  height: 70px;
}

.ppp-block p {
  margin: 0;
  padding: 0;
  color: #666;
}

.ppp-changelog,
.ppp-changelog:hover,
.ppp-changelog:active,
.ppp-changelog:visited {
  color: #530170;
}

.ppp-block p.error {
  color: #ff0000;
}

.ppp-block p.success {
  color: #84B818;
}

.ppp-block.buttons {
  text-align: right;
  height: auto;
  margin-top: 30px;
}

.ppp-block.buttons form {
  display: inline-block;
  padding-left: 10px;
}

/* info.php adaptions */

.header.extended,
.settings.extended {
  width: 90%;
}

.info-output {
  position: relative;
  background: #FFF;
  padding: 10px 20px;
  height: 370px;
  overflow-y: auto;
  border: 1px solid #ddd;
}

/* small header */

.header.small {
  min-height: 0;
  height: 70px;
  background-image: none;
}

.header.small h1 {
  padding-top: 10px;
}

.header.small p {
  padding: 0;
}

/* 3 col set */

.col-3 {
  float: left;
  width: 33%;
}

pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
.string { color: salmon; }
.number { color: blue; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: #84B818; }
