.ovic_ins_options .field-item > * {
    display: inline-block;
    vertical-align: top;
    margin: 15px 0;
    float: left;
}
.dashboard-ovic-ins .field-item > .inner-field {
    width: calc(100% - 300px);
}
.ovic_ins_options .field-item .title {
    width: 300px;
}
/* LOADING */
.ovic_ins_options.loading .group-item {
    position: relative;
}
.ovic_ins_options.loading .group-item::before,
.ovic_ins_options.loading .group-item::after {
    position: absolute;
    content: '';
    z-index: 8;
}
.ovic_ins_options.loading .group-item::before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
}
.ovic_ins_options.loading .group-item::after {
    content: url("/wp-includes/js/tinymce/skins/lightgray/img/loader.gif");
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 8;
}
.dashboard-ovic-ins > .title {
    padding: 15px;
    line-height: 30px;
}
.dashboard-ovic-ins .dashboard-intro > * {
    padding: 0 15px !important;
}
.dashboard-ovic-ins .dashboard-intro {
    position: relative;
    display: table;
}
@media (max-width: 1200px) {
    .ovic_ins_options .field-item .title {
        width: 200px;
    }
    .dashboard-ovic-ins .field-item > .inner-field {
        width: calc(100% - 200px);
    }
}
@media (max-width: 1100px) {
    .dashboard-ovic-ins .dashboard-intro > * {
        display: block;
        width: auto;
    }
}
@media (max-width: 480px) {
    .ovic_ins_options .field-item .title {
        width: 140px;
    }
}
/* CHECKBOX ON OFF */
.ovic_ins_options .vc_checkbox-label {
    position: relative;
    width: 60px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: inline-block;
}
.ovic_ins_options .vc_checkbox-label input {
    display: none;
}
.ovic_ins_options .vc_checkbox-label label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 25px;
    padding: 0;
    line-height: 25px;
    border: 2px solid #E3E3E3;
    border-radius: 25px;
    background-color: #FFFFFF;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.ovic_ins_options .vc_checkbox-label label:before {
    content: "";
    display: block;
    width: 25px;
    margin: 0;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 33px;
    border: 2px solid #E3E3E3;
    border-radius: 25px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.ovic_ins_options .vc_checkbox-label input:checked + label {
    background-color: #5CC659;
}
.ovic_ins_options .vc_checkbox-label input:checked + label,
.ovic_ins_options .vc_checkbox-label input:checked + label:before {
    border-color: #5CC659;
}
.ovic_ins_options .vc_checkbox-label input:checked + label:before {
    right: 0;
}