/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
div.ets-inspect-http-requests label.ets-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

div.ets-inspect-http-requests label.ets-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

div.ets-inspect-http-requests label.ets-switch span.ets-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

div.ets-inspect-http-requests label.ets-switch span.ets-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

div.ets-inspect-http-requests input:checked + span.ets-slider {
  background-color: #d63638;
}

div.ets-inspect-http-requests input:focus + span.ets-slider {
  box-shadow: 0 0 1px #2196F3;
}

div.ets-inspect-http-requests input:checked + span.ets-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


span.ets-slider.round {
  border-radius: 34px;
}

span.ets-slider.round:before {
  border-radius: 50%;
}
div.ets-inspect-http-requests span.spinner{
    float: none;
}
div.ets-inspect-http-requests span.spinner.ets-is-active{
    visibility: visible;
}
div.ets-inspect-http-requests p.search-box span.spinner{
    float: left;
}
input[name=ets-valid-url]{
    width: 300px;
}
div.ets-inspect-http-requests div.tablenav .ets-red-border-input{
    border: 1px solid #f00;
}
div.ets-inspect-http-requests span.dashicons{
    cursor: pointer
}
div.ets-inspect-http-requests span.dashicons:hover{
    color:#f00;
}
div.ets-pop{
    position:absolute;
    display: none;
    background: #eee;
    padding: 5px 10px;
    border-radius: 8px;
    max-width: 450px;    
    
}
.ets-response-json{
    display: none;
}

/* Notification review */
div.ets-inspect-http-requests-review-notice{
  background-color: #FFF;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
  position: relative;
}

div.ets-inspect-http-requests-review-notice div.ets-inspect-http-requests-notice-icon{
  background-image: url(../images/icon.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 150px;
}
div.ets-inspect-http-requests-review-notice div.ets-inspect-http-requests-notice-content{
  padding: 20px;
}
div.ets-inspect-http-requests-review-notice div.ets-inspect-http-requests-notice-content p.ets-inspect-http-requests-signature {
  display: flex; 
  align-items: center;
}
div.ets-inspect-http-requests-review-notice div.ets-inspect-http-requests-notice-content img{
  width: 45px;
  height: auto;
  border-radius: 50%;
  margin-left: 15px;
}
.ets-doc-links {
  margin-top: 20px;
}

.ets-doc-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ets-doc-links li {
  margin-bottom: 10px;
}

.ets-doc-links a {
  text-decoration: none;
  font-weight: bold;
}