html, body {
    height: 100%;
    width: 100%;
    color: #313d4f;
    margin: 0px;
    box-sizing: border-box;
}

.main {
    width: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.button:hover {
    cursor:pointer;
}

td {
  text-align: center;
  vertical-align:top;
  border:
}

table {
    border-spacing: 0px;
    border-collapse: 1px;
    border: 1px solid #3b547d;
    border-radius: 5px;
}

body.wait, body.wait *{
    cursor: wait !important;
}

.h2 {
    margin-left: 15px;
    margin-top: 15px;
}

input[type="text"] {
  pointer-events: initial;
}

#card_form {
    position: absolute;
    top: 10px;
    left: 25%;
    width: 50%;
    height: 480px;
    background-color: #ffffff;
    display: block;
    z-index: 999;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #cccccc;
}

.placeholder {
   float:left;
   width: 85%;
   box-sizing: border-box;
   overflow: auto;
   margin-left: 1%;
}

.left-text {
   text-align: left;
}

.data-block {
    border-radius: 5px;
    border: 1px solid #3b547d;
    color: #2f5570;
    padding: 5px;
    margin: 1px;
    background-color: #ffffff;
    display:block;
    overflow: auto;
}

.table {
    background-color: #ffffff;
}

tr:nth-child(even) {
    background-color: #ffffff;
}

tr:nth-child(odd) {
    background-color: #f2f7ff;
}

.t_header {
    background-color: #3b547d;
}

.scripts_text {
    width:100%;
    height:400px;
    overflow:auto;
}

.cards_text {
    width:100%;
    height:400px;
    overflow:auto;
}

.history_text {
    width:100%;
    height:400px;
    overflow-x: hidden;
}

.button {
    background-color: #3b547d;
    border-radius: 4px;
    color: #ffffff;
    padding: 3px 8px;
    margin: 5px;
    cursor: pointer;
}

button:hover {
    cursor: pointer;
}

.button_right {
    float: right;
    background-color: #3b547d;
    border-radius: 4px;
    color: #ffffff;
    padding: 3px 8px;
    margin: 5px;
    cursor: pointer;
}

.button_right:hover, .button_clear:hover, .button_show_messages:hover, .button_refresh:hover, button:hover {
    cursor: pointer
}

.table-header {
    color:white;
    background-color: #3b547d;
}

.margin-obj {
    margin: 10px
}

#script_form {
    position: absolute;
    top: 10px;
    left: 25%;
    width: 50%;
    height: 480px;
    background-color: #ffffff;
    display: block;
    z-index: 999;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #cccccc;
}

#prettyJsonValue {
    overflow-y: scroll;
    height: 330px;
    font-size: 12px;
    padding: 5px;
    border-radius: 15px;
    border: 1px solid #cccccc;
    background-color: #FDFEFF;
}

.bold-text {
    font-weight: bold;
}

.right-error {
   float:left;
   width:auto;
   box-sizing: border-box;
   overflow: auto;
   margin-left: 10px;
}

.error_label {
    color: #870418;
    border: 1px solid #870418;
}

.error_text {
    color: #870418;
}

.error-data-block {
    border-radius: 5px;
    border: 1px solid #870418;
    color: #870418;
    padding: 5px;
    background-color: #ffffff;
    display:block;
    overflow: auto;
    z-index: 999;
}

.left-side {
    float: left
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0px 0px;
  border-top: none;
  width: 85%;
}

.green_strength {
    margin-left: 5px;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    background-color: MediumSeaGreen;
}

.red_strength {
    margin-left: 5px;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    background-color: Crimson;
}

.header-text {
    text-align: center;
    margin-top: 5px;
    color: #2f5570;
}

nav {
	position: relative;
	margin-top: 15px;
	width: 190px;
	max-width: 15%;
    background: #f2f7ff;
    float: left;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul li {
   background: #f2f7ff;
}
nav ul li a {
	display: block;
	padding: 10px 15px;
	color: #2f5570;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
nav ul li a:hover {
	background: #1d4f71;
	color: #fff;
	cursor: pointer;
}
nav ul li a .fa {
	width: 16px;
	text-align: center;
	margin-right: 10px;
	float:right;
	cursor: pointer;
}

nav ul li.active, nav ul li a.active, nav ul.active, nav ul li.sub-menu.active {
	background: #1d4f71;
	color: #fff;
}

nav ul ul {
	background: #f2f7ff;
}
nav ul li ul li a {
	border-left: 6px solid transparent;
	padding: 10px 20px;
}
nav ul li ul li a:hover {
	border-left: 6px solid #3498db;
	cursor: pointer;
}