/*
Theme Name:     Stratus - Child Theme
Theme URI:      http://themovation.com/stratus
Template:       stratusx
Author:         Themovation
Author URI:     http://themovation.com
Version:        3.0
Text Domain:    stratus
Domain Path:    /languages/
*/


/* = Theme customization starts here
-------------------------------------------------------------- */

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
}

/* Style the buttons inside the tab */
.tab button{
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  line-height: 20px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #534d4d;
}

.tab button:disabled {
  background-color: #ccc;
}
/* Style the tab content */


/* New styles 10 Aug */

textarea.text-processing {
  border: 1px solid #909590;
  width: 100%;
  min-height: 100px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; 
  padding: 10px 15px;
  margin-bottom: 15px; 
  display: block;
  color: #545454;
  border-radius: 3px;
  max-width: 100%;
}

input[type="submit"].process-submit { 
  border-radius: 3px;
  font-weight: 500;
} 

hr {
  margin: 15px 0;
}

.tab {
    float: unset; 
    border: 1px solid #ccc;
    border-bottom: 0;
    background-color: #f1f1f1;
    width: auto;
    display: block;
}

.tab button {
    display: inline-block;
    background-color: inherit;
    color: black;
    padding: 13px 16px;
    width: auto;
}

.tab button.active {     
    background-color: #534d4d;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

table, td {
  float: unset;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-top: none;
  width: auto;
  border: 1px solid #ccc;
  border-top: none;
  height: auto;
  padding-top:  10px;
}

.wrap .table.container{
  min-width: 600px;
  padding: 0;

}

table {
  width: 100%;
  max-width: 100%;
}

.json.container {
  max-height: 600px;
  overflow: auto;
  background: #f4f5f4;
  border: none;
  border-radius: 5px;
}

.wrap .container {
  min-width: 400px;
  overflow: auto;
  margin-bottom: 15px;
}

#JSONcontainer{
  border: none;
  border-radius: 0;
  margin-left: 15px;
  margin-right: 15px; 
  white-space: pre-wrap;
  display: none;
}

#JSONcontainer.active{
	display: initial;
        line-height: 20px;

}
.result-table.active td {
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.result-table.active tr:first-child td {
    font-weight: bold;
}

.preloader {
    position: absolute;
    left: 49%;
    bottom: 20px;
    height: 30px;
    width: 30px;
    border: 3px solid #eee;
    border-top: 3px solid #fc500078;
    border-radius: 50%;
    animation: rotate 2s infinite ease-in-out;
}

.show-json {
    background: #545454;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 10px 0;
}

.show-json:hover {
    background: #3A3B74;
}
.show-json:focus{
   outline:none
}

.textarea {
   padding-bottom: 15px;
}

.unloaded{
  display:none;
}

@keyframes rotate {
    from{transform:rotate(0deg)}
    to {transform:rotate(360deg)}
}