.isv-form label {
    display: inline-block;
    width: 150px;
}

.isv-form select {
    width: 200px;
}

.isv-tabs > ul {
    border-bottom: 1px solid #ccc;
}

.isv-tabs > ul > li {
    display: inline-block;
    margin-bottom: 0;
    position: relative;
    top: -2px;
}

.isv-tabs > ul > li > a {
    border: 1px solid #ccc;
    border-bottom: none;
    margin-left: .5em;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 24px;
    background: #e5e5e5;
    text-decoration: none;
    color: #555;
}

.isv-tabs > ul > li.ui-tabs-active a {
    border-bottom: 1px solid #f1f1f1;
    background: #f1f1f1;
    color: #000;
}

.isv-saved {
    color: green;
}

.isv-textarea {
    width: 600px;
    max-width: 100%;
    height: 200px;
}

.isv-input {
    width: 600px;
    max-width: 100%;
}

.switch-field {
    margin: 0 0 20px 0;
    overflow: hidden;
}

.switch-title {
    margin-bottom: 6px;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    float: left;
}

.switch-field label {
    display: inline-block;
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    width: 80px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition:    all 0.1s ease-in-out;
    -ms-transition:     all 0.1s ease-in-out;
    -o-transition:      all 0.1s ease-in-out;
    transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #A5DC86;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.switch-field input:checked + label:last-of-type {
    background-color: #ff5656;
}