img { max-width: 100%; }
.tp_alert{ padding: 5px 10px; margin: 10px 0; }
.tp_alert_success{
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.tp_alert_error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* tabs*/
.wptpsa_tabs { 
  list-style: none; 
  margin:20px 0 10px 0; 
  padding:10px 0 10px 0px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.wptpsa_tabs li { 
  display: inline; 
}
.wptpsa_tabs li a { 
  padding: 10px 10px; 
  text-decoration: none; 
  font-size: 14px;  
  color: #303030;
}

.wptpsa_tabs li.active a {
    color: #000;
    border-bottom: 3px solid #555d66;
}
/* tabs end*/

#email-template-setting-left { width: 53%; float: left; margin-right: 2%; }
#email-template-setting-right { width: 45%; float: left; overflow: hidden; }

/* role management */
.cap_widget { display: inline-block; width: 100%; padding:10px; margin-bottom: 10px; border: 1px solid #ccc; }
.cap_widget h3 { border-bottom: 1px solid #ccc; margin:0 0 10px 0; padding:0 0 10px 0; }
.cap_item { width: 33%; float: left; }
.red { color: red; }

.left_side_50 { width: 50%; float: left; }
.multi_select { min-width: 200px; min-height: 200px; }


/* Switch Checkbox */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* End Switch Checkbox */