/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

 .wpsd .green{
    color:green;
}

.wpsd .orange{
    color:orange;
    font-weight: bold;
}

.wpsd .red{
    color:red;
    font-weight: bold;
}

 .wpsd .hidden
 {
     display:none;
 }

 .wpsd .postbox-header
 {
     padding-left:12px;
 }

 .wpsd .no-bottom
 {
    margin-bottom: 0px;
    border-bottom: 0px;
 }

 .wpsd .run_button
 {
     text-align: center;
     margin-bottom:15px;
     display:block;
 }

 .wpsd table.wp-list-table th
 {
     font-weight: bold;
 }

/* results table */ 

.quick_test_report_wrap
{
    text-align: center;
}

#quick_test_report
{
    background: white;
    display:inline-block;
    padding: 15px;
    display:none;
    margin-bottom: 15px;
}

#quick_test_report table
{
    border:0px;
    border-collapse: collapse;
    
}

#quick_test_report table tr:not(:first-child)
{
    border-top: 1px solid black;
}

#quick_test_report td
{
    padding:10px;
    border: 0px;
}

/* load indicator */

.lds-ellipsis {
    position: absolute;
    left: 50%;
    top: 50%;
    height:60px;
    width:60px;
    margin:0px auto;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(0,174,239,.15);
    border-top:6px solid rgba(0,174,239,.8);
    border-radius:100%;
 }
 
 @-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
 }
 @-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
 }
 @-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
 }
 @keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
 }
  
/* Labels */
.wpsd .label {
display: inline-block;
}

.wpsd .label.label-success {
background: #E6F4E7;
color: #376637;
margin: 0px 5px 5px 0px;
padding: 5px;
}

.wpsd .label.label-danger {
background: #FFE6DF;
color: #AB3C1B;
margin: 0px 5px 5px 0px;
padding: 5px;
}

.wpsd .label.label-info {
background: #cce5ff;
color: #3d648e;
margin: 0px 5px 5px 0px;
padding: 5px;
}

.wpsd .label.label-warning {
color: #664d03;
background-color: #fff3cd;
border-color: #ffecb5;
margin: 0px 5px 5px 0px;
padding: 5px;
}