/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196f3;
}

input:checked + .slider:before {
    transform: translateX(14px);
}

.min-h-3\/5 {
    min-height: 60vh;
}
.angle {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.rot-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.rot-left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.rot-up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.rot-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.border-table td, .border-table th{
  padding: .25rem;
  border: 1px solid #000;
}

.border-left{
  border-left: 1px solid;
}
.border-right{
  border-right: 1px solid;
}

.wpbody-content .notice{
  display: none;
}

.testing-message-label {
  display: inline-block;
  width: 100px;
  margin-right: 10px;
}