﻿html,
body {
    background-color: #222;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 15px;
    /* //padding-bottom: 20px; */
    font-family: Lato,sans-serif;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
    padding-top: 40px;
    margin-top: 15px;
    width: 96%;
    opacity: 0.85;
    -moz-box-shadow: 0 0 3px #222;
    -webkit-box-shadow: 0 0 3px #222;
    box-shadow: 0 0 3px #222
}

.topbar {
    background-color: #FFF;
    opacity: .85;
    width: 96%;
    height: 40px;
    -moz-box-shadow: 0 0 3px #222;
    -webkit-box-shadow: 0 0 3px #222;
    box-shadow: 0 0 3px #222;
    margin: auto;
}

.formbar {
    background-color: #FFF;
    /* //opacity: .85; */
    width: 100%;
    height: 50px;
    -moz-box-shadow: 0 0 3px #bbb;
    -webkit-box-shadow: 0 0 3px #bbb;
    box-shadow: 0 0 3px #bbb;
    margin: auto;
}

.logo {
    height: 30px;
    width: 30px;
    float: left;
    margin-top: 5px;
    margin-left: 8px;
    opacity: 1;
}

.configure {
    float: right;
    cursor: pointer;
    font-weight: 300;
    transition: all .2s ease;
    font-size: 16px;
    padding-top: 8.5px;
    padding-right: 12px;
}

.configure:hover {
    color: #ccc;
}

.buttonClose {
    float: right;
    cursor: pointer;
    font-weight: 300;
    transition: all .2s ease;
    font-size: 30px;
    padding: 11px 20px;
}

.buttonClose:hover {
    color: #ccc;
}

.config {
}

.head {
    font-weight: 400; 
    font-size: 24px;
    cursor: default;
}

.text {
    font-weight: 500; 
    font-size: 16px;
    cursor: default;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.body-content:hover {
    -moz-box-shadow: 0 0 6px #222;
    -webkit-box-shadow: 0 0 6px #222;
    box-shadow: 0 0 6px #222
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

#modal {
    /* //display: none; */
    /*position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    //background-color: #DDD;
    opacity: 0;
    transition: all .2s ease;*/
}

#modal-shade {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #DDD;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

#modal-content {
    position: fixed;
    z-index: 3000;
    left: 50%;
    top: 20%;
    width: 450px;
    margin-left: -225px;
    /* //max-width: 500px; */
    /* //min-width: 350px; */
    opacity: 0;
    visibility: hidden;
}

.form {
    padding: 20px;
    background-color: #fff;
    margin-top: 8px;
    text-align: center;
    -moz-box-shadow: 0 0 3px #bbb;
    -webkit-box-shadow: 0 0 3px #bbb;
    box-shadow: 0 0 3px #bbb;
}

.formbar-title {
  float: left;
  font-size: 20px;
  /* //line-height: 20px; */
  font-weight: 300;
  color: #333333;
  cursor: default;
  padding: .55em 1em;
}

#submit {
    background-color: #0078e7;
    color: #fff;
    border: 0 transparent;
    padding: .5em 1em;
    font-size: 15px;
    border-radius: 2px;
    float: left;
}

#disable {
    background-color: lightgrey;
    color: #fff;
    border: 0 transparent;
    padding: .5em 1em;
    font-size: 15px;
    border-radius: 2px;
    float: left;
}

#submit:hover {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(transparent),color-stop(40%,rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));
    background-image: -webkit-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
    background-image: -moz-linear-gradient(top,rgba(0,0,0,.05) 0,rgba(0,0,0,.1));
    background-image: -o-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
    background-image: linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
}

input {
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    padding: .5em .6em;
    margin: .25em 0;
    width: 100%;
    display: block;
}

.form-inner {
    width: 280px;
    font-size: 16px;
    margin-top: 15px;
    /* //margin-top: 15px; */
    max-width: 280px;
    display: inline-block;
    /* //height: 36px; */
}

.show-modal .topbar,
.show-modal .body-content {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
.show-modal #modal-shade {
    visibility: visible;
    opacity: 0.8;
}
.show-modal #modal-content {
    visibility: visible;
    opacity: 0.7;
}


#agent {
    font-size: 20px;
}

#response {
    float:right;
    font-size: 24px;
}

.fa-exclamation-circle {
    color: #db3236;
    margin-left: 5px;
}