.yith-plugin-fw span.description {
    display    : block;
    margin-top : 5px;
    font-size  : 12px;
    color      : #777;
    font-style : italic;
    clear      : both;
}

.yith-plugin-fw span.description.inline {
    display : inline-block;
    margin  : 0 0 0 5px;
}

.yith-disabled {
    opacity        : 0.3;
    pointer-events : none;
}

.yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
    display : block;
    width   : 100%;
}

.yith-plugin-fw-field-wrapper span.desc {
    display : block;
    width   : 100%;
}

.yith-plugin-fw-title-field-wrapper h3.title {
    width : 100%;
}

.the-metabox .yith-plugin-fw-title-field-wrapper h3.title {
    float : left;
}

.yith-plugin-fw input[type=email],
.yith-plugin-fw input[type=number],
.yith-plugin-fw input[type=text]:not(.select2-search__field),
.yith-plugin-fw select,
.woocommerce .yith-plugin-fw table.form-table input[type=email],
.woocommerce .yith-plugin-fw table.form-table input[type=number],
.woocommerce .yith-plugin-fw table.form-table input[type=text]:not(.select2-search__field),
.woocommerce .yith-plugin-fw table.form-table select {
    width     : 400px;
    max-width : 100%;
    height    : 30px;
    padding   : 5px;
}

.woocommerce .yith-plugin-fw table.form-table input[type=text].wp-color-picker,
.woocommerce .yith-plugin-fw table.form-table input[type=text].yith-plugin-fw-colorpicker,
.yith-plugin-fw input[type=text].wp-color-picker,
.yith-plugin-fw input[type=text].yith-plugin-fw-colorpicker {
    width     : 6em;
    max-width : none;
    height    : auto;
    padding   : 3px 5px;
}

.woocommerce .yith-plugin-fw table.form-table input[type=text].colorpick,
.yith-plugin-fw input[type=text].colorpick {
    width     : 6em;
    max-width : none;
    height    : auto;
    padding   : 6px;
}

.yith-plugin-fw input.select2-search__field,
.yith-plugin-fw .select2-container .select2-search--inline .select2-search__field,
.woocommerce .yith-plugin-fw input.select2-search__field,
.woocommerce .yith-plugin-fw table.form-table input.select2-search__field {
    padding : 3px;
}

.yith-plugin-fw textarea {
    width     : 400px;
    max-width : 100%;
    padding   : 5px;
}

/* ------------- ICONS ------------- */
.yit-icons-manager-wrapper {
    width     : 100%;
    max-width : 400px;
}

.yit-icons-manager-text {
    width : 100%;
}

.yit-icons-manager-icon-text {
    width  : calc(100% - 35px) !important;
    height : 30px;
    float  : left;
    margin : 0;
}

.yit-icons-manager-icon-preview {
    width        : 30px;
    height       : 30px;
    margin-right : 5px;
    float        : left;
    padding-top  : 6px;
    box-sizing   : border-box;
    text-align   : center;
    background   : #f1f1f1;
}

.yit-icons-manager-list-wrapper {
    margin     : 10px 0;
    box-shadow : 0 0 0 1px #ddd;
}

ul.yit-icons-manager-list {
    width      : 100%;
    height     : 300px;
    overflow-y : scroll;
    margin     : 0;
}

ul.yit-icons-manager-list li {
    float       : left;
    width       : 30px;
    height      : 30px;
    padding-top : 6px;
    box-sizing  : border-box;
    text-align  : center;
    background  : #f1f1f1;
    margin      : 1px;
    cursor      : pointer;
}

ul.yit-icons-manager-list li:hover {
    background : #c5dcf6;
}

ul.yit-icons-manager-list li.active {
    background : #d4f0ff;
}

.yit-icons-manager-action-set-default {
    margin-bottom : 0;
}

.yit-icons-manager-default-icon-preview {
    height       : 100%;
    display      : inline-block;
    padding-left : 10px;
    border-left  : 1px solid #ccc;
    margin-left  : 10px;
}

/* ------- Text Array ------- */
.yith-plugin-fw-text-array-table td {
    padding : 1px;
}

.yith-plugin-fw-text-array-table input[type=text],
.woocommerce table.form-table table.yith-plugin-fw-text-array-table input[type=text] {
    width : 100%;
}

/* ------- Image Gallery ------- */
.yith-plugin-fw .image-gallery ul li {
    display     : inline-block;
    width       : 80px;
    margin-left : 10px;
    position    : relative;
}

.yith-plugin-fw .image-gallery ul li img {
    width  : 80px;
    border : 1px solid #ccc;
}

.yith-plugin-fw .image-gallery ul li ul {
    position : absolute;
    top      : -6px;
    right    : -1px;
    width    : 20px;
    height   : 20px;
}

.yith-plugin-fw .image-gallery ul a.delete {
    background  : url(../images/x.png) no-repeat;
    width       : 20px;
    height      : 20px;
    display     : block;
    text-indent : -99999px;
}

/* ------- OnOff ------- */
.yith-plugin-fw-onoff-container {
    display : inline-block;
}

.yith-plugin-fw-onoff-container input {
    display : none;
}

.yith-plugin-fw-onoff-container input + span {
    cursor: pointer;
    text-indent: -9999px;
    display: block;
    width: 36px;
    height: 20px;
    background: #a4a4a4;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s;
}

.yith-plugin-fw-onoff-container input + span:before {
    content       : '';
    background    : #fff;
    width         : 16px;
    height        : 16px;
    border-radius : 50%;
    position      : absolute;
    top           : 2px;
    left          : 2px;
    transition    : all 0.3s;
}

.yith-plugin-fw-onoff-container input:checked + span,
.yith-plugin-fw-onoff-container input.onoffchecked + span {
    background : #0073aa;
}

.yith-plugin-fw-onoff-container input:checked + span:before,
.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
    left : 18px;
}

/* ------- Preview ------- */
.yith-plugin-fw-preview-field {
    max-height : 200px;
}

/* ------- Radio ------- */
.yith-plugin-fw-radio input[type=radio] {
    margin : 0 3px 0 0;
}

.yith-plugin-fw-radio__row {
    margin-bottom : 8px;
}

/* ------- Sidebar Layout ------- */
.yith-plugin-fw-sidebar-layout input[type="radio"] {
    display : none;
    width   : 0px;
}

.yith-plugin-fw-sidebar-layout input[type="radio"]:first-child {
    margin-right : -2px;
}

.yith-plugin-fw-sidebar-layout input[type="radio"] + img {
    border  : 2px solid #fff;
    padding : 1px;
}

.yith-plugin-fw-sidebar-layout input[type="radio"] + img:hover {
    cursor : pointer;
}

.yith-plugin-fw-sidebar-layout input[checked] + img {
    border  : 2px solid #f2ad35;
    padding : 1px;
}

.yith-plugin-fw-sidebar-layout select {
    vertical-align : 12px;
}

.yit-admin-panel-content-wrap .yith-plugin-fw-sidebar-layout label {
    font-weight : bold;
    width       : 200px;
    float       : left;
    line-height : 23px;
    margin-left : -230px;
}

/* ------- Slider ------- */
.yith-plugin-fw .slider {
    padding-top : 20px;
}

.ui-slider .minCaption {
    position     : absolute;
    right        : 95%;
    top          : -6px;
    margin-right : 11px;
}

.ui-slider .maxCaption {
    position    : absolute;
    left        : 95%;
    top         : -6px;
    margin-left : 20px;
}

.ui-slider-horizontal .ui-slider-handle {
    background    : #fff;
    border        : 0px !important;
    top           : -12px !important;
    border-radius : 50%;
    width         : 27px !important;
    height        : 27px !important;
    box-sizing    : border-box;
    box-shadow    : 0 1px 7px -1px rgba(0, 0, 0, 0.5);
    font-size     : 13px;
    padding       : 6px 0;
    font-weight   : 600;
    color         : #555;
    text-align    : center;
}

.ui-slider.ui-widget-content {
    background    : #ccc;
    border        : none !important;
    height        : 3px !important;
    border-radius : 3px !important;
    width         : 90%;
    margin        : 15px 5% 20px 5%;
}

.iris-slider-offset.ui-slider.ui-widget-content {
    background : transparent !important;
    height     : auto !important;
}

.ui-slider.ui-widget-content .ui-widget-header {
    background            : #4b93ff;
    left                  : 0px !important;
    -webkit-border-radius : 3px;
    -moz-border-radius    : 3px;
    -khtml-border-radius  : 3px;
    border-radius         : 3px;
}

/* ------- Select2 ------- */
.yith-plugin-fw-select2-wrapper {
    width : 400px;
}

/* ------- Textarea ------- */
.yith-plugin-fw-textarea-editor-field-wrapper {
    max-width : 1000px;
    clear     : both;
}

.yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area,
.woocommerce table.form-table .yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area {
    width : 100%;
}

/* ------- Buttons ------- */
.yith-plugin-fw-buttons-field-wrapper {
    margin-top : 7px;
}

/* ------- Select Images ------- */
.yith-plugin-fw-select-images__list {
    margin    : 0;
    display   : flex;
    flex-wrap : wrap;
}

.yith-plugin-fw-select-images__item {
    width           : calc(20% - 10px);
    min-width       : 150px;
    margin          : 0 10px 10px 0;
    padding         : 10px;
    box-sizing      : border-box;
    cursor          : pointer;
    transition      : all .3s;
    border          : 2px solid #eee;
    display         : flex;
    flex-direction  : column;
    justify-content : space-between;
}

.yith-plugin-fw-select-images__item:hover,
.yith-plugin-fw-select-images__item.yith-plugin-fw-select-images__item--selected {
    border-color : #07bcce;
}

.yith-plugin-fw-select-images__item__label {
    text-align    : center;
    font-weight   : 600;
    margin-bottom : 10px;
}

.yith-plugin-fw-select-images__item img {
    display   : block;
    max-width : 100%;
    margin    : 0 auto;
}

/****************
YITH UI
 ****************/
@font-face {
    font-family: 'yith-icon';
    src:  url('../fonts/yith-icon.eot?7ik896');
    src:  url('../fonts/yith-icon.eot?7ik896#iefix') format('embedded-opentype'),
    url('../fonts/yith-icon.ttf?7ik896') format('truetype'),
    url('../fonts/yith-icon.woff?7ik896') format('woff'),
    url('../fonts/yith-icon.svg?7ik896#yith-icon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'yith-icon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-drag:before {
    content: "\e90f";
    color: #d8d8d8;
}
.icon-arrow_down:before {
    content: "\e900";
    color: #d8d8d8;
}
.icon-arrow_left:before {
    content: "\e901";
    color: #d8d8d8;
}
.icon-arrow_right:before {
    content: "\e902";
    color: #d8d8d8;
}
.icon-arrow_up:before {
    content: "\e903";
    color: #d8d8d8;
}
.icon-calendar:before {
    content: "\e904";
    color: #d8d8d8;
}
.icon-check:before {
    content: "\e905";
    color: #d8d8d8;
}
.icon-close:before {
    content: "\e906";
    color: #d8d8d8;
}
.icon-edit:before {
    content: "\e907";
    color: #d8d8d8;
}
.icon-magnifier:before {
    content: "\e908";
    color: #d8d8d8;
}
.icon-pencil:before {
    content: "\e909";
    color: #d8d8d8;
}
.icon-plus:before {
    content: "\e90a";
    color: #d8d8d8;
}
.icon-update:before {
    content: "\e90b";
    color: #d8d8d8;
}
.icon-upload:before {
    content: "\e90c";
    color: #d8d8d8;
}
.icon-trash:before {
    content: "\e90d";
    color: #d8d8d8;
}
.icon-info:before {
    content: "\e90e";
    color: #d8d8d8;
}
.icon-reset:before {
    content: "\e910";
    color: #d8d8d8;
}
.yith-plugin-fw-banner{
    width: 100%;
    height: 75px;
    background: url('../images/banner-premium.png');
}
.yith-plugin-fw-banner.yith-plugin-fw-banner-free{
    height: 290px;
    background: url('../images/banner-free.png') no-repeat;
}
.yith-plugin-fw-banner.yith-plugin-fw-banner-free h1{
    max-width: auto;
    text-align:left;
    margin-left: 110px;
    padding-top: 15px;
    padding-bottom: 8px;
}

.yith-plugin-fw-banner h1{
    text-transform: uppercase;
    color: #0c5777;
    font-size: 15px;
    padding-left: 150px;
    font-weight: 700;
    text-align: left;
    display: inline-block;
    box-sizing: border-box;
}

.yith-plugin-fw-banner span{
    font-style:italic;
    display: block;
    font-size: 15px;
    color:#214249;
    text-transform:none;
    text-align: right;
}

.yith-plugin-fw-banner a,
.yith-plugin-fw-banner a:focus{
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.yith-banners ul{
    list-style: none;
    margin-left: 10px;
}

.yith-banners ul li{
    display: inline-block;
    margin-left: 10px;
}
.yith-plugin-ui a{
    outline: none;
    box-shadow: none;
}

.yith-plugin-ui{
    font-family:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui  #wpbody-content h2.nav-tab-wrapper{
    margin-top:10px;
}

.yith-plugin-ui .nav-tab{
    margin-left: 0px;
    margin-right: 2px;
    background-color: #336374;
    color: #fff;
    font-size: 13px;
    padding: 7px 20px;
    border: 0;
}
.yith-plugin-ui .nav-tab:first-child{
    border-left: 1px solid #d9d9d9;
}

.yith-plugin-ui .nav-tab.yith-premium{
    background-color: #be421c;
}
.yith-plugin-ui .nav-tab-active{
    background-color: #fff;
    color: #336374;
    border-bottom:1px solid #fff;
}
.yith-plugin-ui .nav-tab-active.yith-premium{
    background-color: #fff;
    color: #be421c;
}
.yith-plugin-ui #plugin-fw-wc{
    padding-top: 0px;
}

.yith-plugin-ui .form-table td{
    padding: 15px 20px;
}

.yith-plugin-ui label{
    color: #33373b;
    font-size: 13px;
}

.yith-plugin-ui span.description{
    color: #716269;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    margin-top: 15px;
    margin-left: 0;
}
#wpwrap .yith-plugin-ui  h2.nav-tab-wrapper, #wpbody-content .yith-plugin-ui  h2.nav-tab-wrapper {
    border: 0;
    border-bottom : 1px solid #ccc;
    margin-right: 15px;
    background-color: transparent;
    padding-left: 0;
}
.yith-plugin-ui #plugin-fw-wc table.form-table,
.yith-plugin-ui #yith-plugin-fw-panel table.form-table,
.yith-plugin-ui table.form-table{
    border: 1px solid #d8d8d8;
    border-top: 0;
    margin-bottom: 40px;
}

.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper{
    background-color: transparent;
    border: 0;
    text-transform: none;
    border-bottom: 1px solid #ddd;
}

.yith-plugin-ui h2 {
    color: #2a8db0;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid #d8d8d8;
    border-bottom: 0;
    background-color: #fff;
    padding: 35px 20px;
    margin: 0px;
}
.yith-plugin-ui .yith-plugin-fw-custom-tab h2{
    border: 0px solid #d8d8d8;
    padding-left: 0;
}

.yith-plugin-ui #plugin-fw-wc table.form-table th, #yith-plugin-fw-panel table.form-table th.titledesc, .yith-plugin-ui #plugin-fw-wc table.form-table td, #yith-plugin-fw-panel table.form-table td.forminp  {
    padding: 30px 20px;
}

.yith-plugin-ui #plugin-fw-wc h2 + div {
    background: #fff;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    margin: -20px 0 0 0;
    padding-left: 20px;
    padding-bottom: 5px;
}

.yith-plugin-ui #plugin-fw-wc h2 + div p, .yith-plugin-ui p.info-box{
    background: #f1f1f1;
    font-size: 12px;
    font-weight: 700;
    width: 40%;
    display:block;
    padding: 15px;
    margin-bottom: 0;
}

.yith-plugin-ui #plugin-fw-wc h2 + div p:before, .yith-plugin-ui p.info-box:before{
    content: "\e90e";
    font-family: yith-icon;
    font-size: 30px;
    font-weight: normal;
    display: block;
    margin-top: -5px;
    float: left;
    margin-right: 15px;
}

.yith-plugin-ui h2:first-child{
    border-top: 0;
}

/*** Icon ***/
.yith-plugin-ui span.yith-icon {
    margin-left: -36px;
    line-height: 36px;
    font-size: 20px;
}

/*** General Input Style ***/

.yith-plugin-ui .yith-plugin-fw select,
.yith-plugin-ui textarea,
.yith-plugin-ui input[type=number],
.yith-plugin-ui.metaboxes-tab input[type=number],
.yith-plugin-ui input[type=text],
.yith-plugin-ui input[type=text],
.yith-plugin-ui input[type=email],
.yith-plugin-ui input[type=password],
.yith-plugin-fw.yith-plugin-ui input[type=text]:not(.select2-search__field),
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text]:not(.select2-search__field),
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number],
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text] {
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 8px 10px;
    height: 38px;
    min-width: 90px;
    box-shadow: none;
    color: #716269;
}
.yith-plugin-ui textarea,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea{
    height: auto;
}
.yith-plugin-ui table.form-table input[type=text].wp-color-picker,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].wp-color-picker{
    border: 0;
    height: 30px;
    max-width: 60px;

}

.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].small-text,
.yith-plugin-ui input[type=text].small-text {
    width: 100px;
    height: 25px;
    border: 1px solid #d9d9d9;
}

.yith-plugin-ui textarea {
    height: auto;
    padding: 8px;
}

.yith-plugin-ui select:focus,
.yith-plugin-ui input[type=text]:focus {
    border-color: #a7d9ec;
}

.woocommerce .yith-plugin-ui table.form-table select,
.yith-plugin-ui select{
    -webkit-appearance: none;
    line-height: 1;
    min-height: 35px;
    background: url("../images/arrow_down.svg") no-repeat right center;
    background-size: 35px 13px;
    border-radius: 8px;
}

.yith-plugin-ui .form-table th{
    width: 280px;
    padding-right: 50px;
}

/** BUTTONS **/
.yith-plugin-ui .tablenav .button.action,
.wp-core-ui .yith-plugin-ui .button-primary,
.wp-core-ui .yith-plugin-ui .button-secondary,
.yith-plugin-ui .yith-add-button,
.yith-plugin-ui .yith-save-button,
.yith-plugin-ui .yith-edit-button,
.yith-plugin-ui .yith-update-button,
.yith-plugin-ui .yith-plugin-fw-select-all,
.yith-plugin-ui .yith-plugin-fw-deselect-all,
.yith-plugin-ui .yith-plugin-fw-upload-button,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset {
    border-radius: 3px;
    text-transform: uppercase;
    box-shadow: none;
    border: 0;
    font-weight: 700;
    font-size: 11px;
    padding: 0px 14px;
    outline: none;
    height: auto;
    transition: all ease 0.3s;
    background-color: #d6d6d6;
    color: #656565;
    text-shadow: none;
    vertical-align: middle;
    line-height: 26px;
    display: inline-block;
    text-decoration: none;
}
.wp-core-ui .yith-plugin-ui .button-secondary.yith-plugin-fw-upload-button-reset,
.wp-core-ui .yith-plugin-ui .button-secondary.yith-plugin-fw-upload-button,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset,
.yith-plugin-ui .button-secondary.yith-plugin-fw-upload-button-reset,
.yith-plugin-ui .button-secondary.yith-plugin-fw-upload-button{
    height: 38px;
}

.wp-core-ui .yith-plugin-ui .button:focus,
.wp-core-ui .yith-plugin-ui .button-primary:focus,
.yith-plugin-ui .yith-add-button:focus,
.yith-plugin-ui .yith-save-button:focus,
.yith-plugin-ui .yith-edit-button:focus,
.yith-plugin-ui .yith-update-button:focus,
.wp-core-ui .yith-plugin-ui .button-secondary:focus{
    outline: none;
    box-shadow: none;
}

/** button with inside a span with icon class */
.yith-plugin-ui .button-secondary span.yith-icon{
    margin-left: 0px;
    margin-right: 10px;
    line-height: normal;
}

.yith-plugin-ui .button-secondary span.yith-icon:before{
    color: #656565;
    font-size: 15px;
}

.yith-plugin-ui .tablenav .button.action,
.wp-core-ui .yith-plugin-ui .button:focus,
.wp-core-ui .yith-plugin-ui .button-secondary:focus,
.yith-plugin-ui .yith-save-button:hover,
.wp-core-ui .yith-plugin-ui .button-secondary:hover,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset:hover{
    background-color: #cacaca;
    color: #515151;
}

.wp-core-ui .yith-plugin-ui .button-primary,
.yith-plugin-ui .tablenav .button.action,
.yith-plugin-ui .button-secondary.yith-plugin-fw-select-all,
.yith-plugin-ui  .button-secondary.yith-plugin-fw-upload-button{
    background-color: #007694;
    color: #fff;
}

.yith-plugin-ui .tablenav .button.action:active,
.yith-plugin-ui .tablenav .button.action:focus,
.yith-plugin-ui .tablenav .button.action:hover,
.yith-plugin-ui .yith-add-button,
.wp-core-ui .yith-plugin-ui .button-primary:focus,
.wp-core-ui .yith-plugin-ui .button-primary:hover{
    background-color: #375f6b;
    color: #fff;
}


.yith-plugin-ui .yith-add-button:hover,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button:focus,
.yith-plugin-ui .button-secondary.yith-plugin-fw-select-all:hover,
.yith-plugin-ui .button-secondary.yith-plugin-fw-select-all:focus,
.yith-plugin-ui  .yith-plugin-fw-upload-button:hover{
    border-color: #007694;
    background: #007694;
    color: #fff;
    line-height: 26px;
    margin-left: 0;
}

.yith-plugin-ui .button-primary:before,
.yith-plugin-ui .yith-add-button:before,
.yith-plugin-ui .yith-save-button:before,
.yith-plugin-ui .yith-edit-button:before,
.yith-plugin-ui .yith-update-button:before,
.yith-plugin-ui .button-secondary:before{
    font-family: 'yith-icon';
    font-size: 10px;
    font-weight: 700;
    margin-right: 10px;
    vertical-align: bottom;
    display:inline-block;
}

/** yith-edit-button **/
.yith-plugin-ui .yith-edit-button {
    background-color: #7f9298;
    color: #fff;
}
.yith-plugin-ui .yith-edit-button:focus,
.yith-plugin-ui .yith-edit-button:hover {
    background-color: #718085;
    color: #fff;
}
.yith-plugin-ui .yith-edit-button:before{
    content: "\e907";
}
/** yith-update-button **/
.yith-plugin-ui .yith-update-button {
    background-color: #94aa09;
    color: #fff;
}
.yith-plugin-ui .yith-update-button:focus,
.yith-plugin-ui .yith-update-button:hover {
    background-color: #7a9009;
    color: #fff;
}
.yith-plugin-ui .yith-update-button:before{
    content: "\e90b";
    font-size: 15px;
}

/** yith-save-button **/

.yith-plugin-ui .yith-save-button {
    background-color: #267390;
    color: #fff;
}
.yith-plugin-ui .yith-save-button:focus,
.yith-plugin-ui .yith-save-button:hover {
    background-color: #1c4863;
    color: #fff;
}


/** yith-remove-button **/

.yith-plugin-ui .button-secondary.yith-remove-button:before{
    content: "\e90d";
    font-size: 15px;
}


/** yith-add-button **/

.yith-plugin-ui .yith-add-button:before{
    content: "\e90a";
}

/** yith-plugin-fw-upload-button **/
.yith-plugin-ui  button.yith-plugin-fw-upload-button:before{
    content: "\e90c";
    font-family: 'yith-icon';
    font-size: 19px;
    font-weight: 400;
    margin-right: 10px;
    vertical-align: middle;
    display:inline-block;
}
/** SELECT 2 **/
.yith-plugin-ui .select2-container,
.yith-plugin-ui  .select2-selection--single{
    height: auto;
    padding: 2px;
    outline: none;
}

.yith-plugin-ui  .select2-selection--single{
    margin: 0;
    border: 0;
}

/* old panel*/

.yith-plugin-ui  span.select2.select2-container.select2-container--default{
    border: 1px solid #d8d8d8;
    border-radius:8px;
}
.yith-plugin-ui  span.select2.select2-container.select2-container--default:hover,
.yith-plugin-ui  span.select2.select2-container.select2-container--default:active,
.yith-plugin-ui  span.select2.select2-container.select2-container--default:focus {
    border-color: #a7d9ec;
}
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff;
}
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].select2-search__field,
.yith-plugin-ui .yith-plugin-fw table.form-table input.select2-search__field{
    border: 0;
    padding: 0;
    height: initial;
}
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice,
.yith-plugin-ui .select2-selection__choice{
    color: #fff;
    background-color: #4e8ba2;
    border-radius: 12px;
    padding: 3px 11px;
    border-color: #33937e;
    font-size: 12px;
}

.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow:before{
    content: "\e900";
    font-family: 'yith-icon' !important;
    line-height: 36px;
    color: #d9d9d9;
}

.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}
.yith-plugin-ui .select2-container--open .select2-dropdown--below,
.yith-plugin-ui .select2-container--open .select2-dropdown--above,
.yith-plugin-fw-panel .select2-container--open .select2-dropdown--below,
.yith-plugin-fw-panel .select2-container--open .select2-dropdown--above {
    margin-top: 10px;
    border-radius: 8px;
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.12),0 2px 10px 0 rgba(0,0,0,0.12) !important;
}
.yith-plugin-ui .select2-container--open .select2-dropdown--above,
.yith-plugin-fw-panel .select2-container--open .select2-dropdown--above{
    margin-top: -10px;
}
.yith-plugin-ui .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.yith-plugin-ui .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.yith-plugin-fw-panel .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.yith-plugin-fw-panel .select2-container--default.select2-container--open.select2-container--above .select2-selection--single{
    border-radius: 8px;
}
.yith-plugin-ui .select2-results .select2-results__group, .select2-results .select2-results__option:first-child,
.yith-plugin-fw-panel .select2-results .select2-results__group, .select2-results .select2-results__option:first-child{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.yith-plugin-ui .select2-results .select2-results__group,
.yith-plugin-ui .select2-results .select2-results__option:last-child,
.yith-plugin-fw-panel .select2-results .select2-results__group,
.yith-plugin-fw-panel .select2-results .select2-results__option:last-child{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.yith-plugin-ui .select2-container--default .select2-results__option[data-selected=true],
.yith-plugin-ui .select2-container--default .select2-results__option[aria-selected=true],
.yith-plugin-fw-panel .select2-container--default .select2-results__option[data-selected=true],
.yith-plugin-fw-panel .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
    outline: none;
}
.yith-plugin-ui .select2-container--default .select2-results__option--highlighted[aria-selected],
.yith-plugin-ui .select2-container--default .select2-results__option--highlighted[data-selected],
.yith-plugin-fw-panel .select2-container--default .select2-results__option--highlighted[aria-selected],
.yith-plugin-fw-panel .select2-container--default .select2-results__option--highlighted[data-selected]{
    background-color: #e8eff1;
    color: #4e8ba2;
    outline: none;
}

.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    float: right;
    padding-left: 15px;
    text-indent: -9999px;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after,
.woocommerce .yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after,
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after{
    float: right;
    color: #fff;
    content: "\e906";
    font-family: 'yith-icon' !important;
    font-size: 9px;
    line-height: 21px;
    text-indent: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after{
    color: #000;
}

.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after{
    color: #000;
}
.yith-plugin-ui .select2-container .select2-selection--multiple,
.yith-plugin-ui .select2-container--default.select2-container--focus .select2-selection--multiple{
    border: 0;
}

.yith-plugin-fw  .select2-search input[type=text]{
    border: 0;
    padding: 0;
    height: auto;
}
.yith-plugin-ui .yith-plugin-fw-select-field-wrapper span.yith-icon.icon-magnifier,
.yith-plugin-fw-panel .yith-plugin-fw-select-field-wrapper span.yith-icon.icon-magnifier {
    position: absolute;
    padding-top: 5px;
}

.yith-plugin-ui input[type=text].select2-search__field{
    border: 0;
    padding: 0;
    height: 30px;
}
.yith-plugin-ui .select2-container--default .select2-search--dropdown .select2-search__field,
.yith-plugin-fw-panel  .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    box-shadow: none;
}
.yith-plugin-ui .select2-dropdown,
.yith-plugin-fw-panel  .select2-dropdown{
    border: 1px solid #d9d9d9;
}
/** RADIO BUTTON **/
.yith-plugin-ui  [type="radio"]:checked,
.yith-plugin-ui  [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.yith-plugin-ui [type="radio"]:checked + label,
.yith-plugin-ui [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #716269;
    font-size: 12px;
}
.yith-plugin-ui [type="radio"]:checked + label:before,
.yith-plugin-ui  [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #d8d8d8;
    border-radius: 100%;
    background: #fff;
}
.yith-plugin-ui [type="radio"]:checked + label:after,
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4e8ba2;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.yith-plugin-ui [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/** CHECKBOX **/
.yith-plugin-ui input[type="checkbox"] {
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    box-shadow: none;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}
.yith-plugin-ui input[type="checkbox"]:checked{
    background-color: #4e8ba2;
    border-color: #488197;
}
.yith-plugin-ui .forminp-checkbox span.description.inline {
    margin-left: 10px;
}
.yith-plugin-ui input[type="checkbox"]:checked:before{
    display: none;
}

.yith-plugin-ui input[type="checkbox"]:checked:after {
    content: "\e905";
    font-family: 'yith-icon';
    font-size: 15px;
    position: absolute;
    top: 8px;
    left: 1px;
    color: #fff;
}

/** ONOFF **/
.yith-plugin-ui .yith-plugin-fw-onoff-container input[type="checkbox"] {
    display: none;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span{
    border: 1px solid #d8d8d8;
    background-color: #fff;
    width:50px;
}

.yith-plugin-ui  .yith-plugin-fw-onoff-container input + span:before{
    background-color: #d8d8d8;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
    width: 14px;
    height: 14px;
    top: 3px;
    left: 4px;
    background-color: #d8d8d8;
}
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after{
    content: 'OFF';
    width: 14px;
    height: 14px;
    font-size: 10px;
    padding-left:24px;
    color: #979797;
}
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span,
.yith-plugin-ui .yith-plugin-fw-onoff-container input.onoffchecked + span{
    background-color: #fff;
    border-color: #98aa36;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before,
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before{
    background-color: #98aa36;
    left:32px;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after,
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after{
    content: 'ON';
    color: #98aa36;
    width: 14px;
    height: 14px;
    display: inline-block;
    font-size: 10px;
    padding: 0 10px;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span{
    text-indent: 0;
}


/**
DATEPICKER
 */
.yith-plugin-ui div#ui-datepicker-div,
.yith-plugin-fw-panel  div#ui-datepicker-div {
    border: 0;
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.12),0 2px 10px 0 rgba(0,0,0,0.12) !important;
}

.yith-plugin-ui .ui-datepicker-header.ui-widget-header,
.yith-plugin-fw-panel .ui-datepicker-header.ui-widget-header {
    background:#4e8ba2;
    color: #fff;
    font-size: 11px;
    line-height: 25px;
    border:0;
    min-height: 25px;
}
.yith-plugin-ui .ui-datepicker-title,
.yith-plugin-fw-panel .ui-datepicker-title{
    line-height: 25px;
}
.yith-plugin-ui .ui-datepicker th,
.yith-plugin-fw-panel .ui-datepicker th{
    color: #716269;
}
.yith-plugin-ui .ui-widget-header .ui-icon,
.yith-plugin-ui .ui-widget-header .ui-state-hover,
.yith-plugin-ui .ui-datepicker  .ui-datepicker-prev,
.yith-plugin-ui .ui-datepicker  .ui-datepicker-next,
.yith-plugin-ui .ui-icon.ui-icon-circle-triangle-w,
.yith-plugin-ui .ui-icon.ui-icon-circle-triangle-e,
.yith-plugin-fw-panel .ui-widget-header .ui-icon,
.yith-plugin-fw-panel .ui-widget-header .ui-state-hover,
.yith-plugin-fw-panel .ui-datepicker  .ui-datepicker-prev,
.yith-plugin-fw-panel .ui-datepicker  .ui-datepicker-next,
.yith-plugin-fw-panel .ui-icon.ui-icon-circle-triangle-w,
.yith-plugin-fw-panel .ui-icon.ui-icon-circle-triangle-e{
    background: none;
    content: "";
    border: 0;
    text-indent: 0;
    width:15px;
    height: 20px;
    display:block;
    overflow:hidden;
}

.yith-plugin-ui .ui-icon.ui-icon-circle-triangle-w:before,
.yith-plugin-fw-panel .ui-icon.ui-icon-circle-triangle-w:before {
    content: "\e901";
    color: #fff;
    font-family: 'yith-icon';
    font-size: 12px;
    font-weight: normal;
    width:15px;
    display:block;
}
.yith-plugin-ui .ui-icon.ui-icon-circle-triangle-e:before,
.yith-plugin-fw-panel .ui-icon.ui-icon-circle-triangle-e:before {
    content: "\e902";
    color: #fff;
    text-indent: 0;
    font-family: 'yith-icon';
    font-size: 12px;
    font-weight: normal;
    width:15px;
    display:block;
}

/* arrow */
.yith-plugin-ui .ui-datepicker  .ui-datepicker-prev,
.yith-plugin-ui .ui-datepicker  .ui-datepicker-next,
.yith-plugin-ui .ui-datepicker-prev.ui-datepicker-prev-hover,
.yith-plugin-ui .ui-datepicker-prev.ui-datepicker-next-hover,
.yith-plugin-fw-panel .ui-datepicker  .ui-datepicker-prev,
.yith-plugin-fw-panel .ui-datepicker  .ui-datepicker-next,
.yith-plugin-fw-panel .ui-datepicker-prev.ui-datepicker-prev-hover,
.yith-plugin-fw-panel .ui-datepicker-prev.ui-datepicker-next-hover{
    top: 1px;
    cursor: pointer;
}
.yith-plugin-ui .ui-datepicker-prev.ui-datepicker-prev,
.yith-plugin-ui .ui-datepicker-prev.ui-datepicker-prev-hover,
.yith-plugin-fw-panel .ui-datepicker-prev.ui-datepicker-prev,
.yith-plugin-fw-panel .ui-datepicker-prev.ui-datepicker-prev-hover{
    left: 5px;
}
.yith-plugin-ui .ui-datepicker .ui-datepicker-next,
.yith-plugin-ui .ui-datepicker-next.ui-datepicker-next-hover,
.yith-plugin-fw-panel .ui-datepicker .ui-datepicker-next,
.yith-plugin-fw-panel .ui-datepicker-next.ui-datepicker-next-hover{
    right: 1px;
}

.yith-plugin-ui  .ui-datepicker table,
.yith-plugin-fw-panel .ui-datepicker table{
    font-size: 10px;
}

.yith-plugin-ui .ui-state-default,
.yith-plugin-ui .ui-widget-content .ui-state-default,
.yith-plugin-ui .ui-widget-header .ui-state-default,
.yith-plugin-fw-panel .ui-state-default,
.yith-plugin-fw-panel .ui-widget-content .ui-state-default,
.yith-plugin-fw-panel .ui-widget-header .ui-state-default{
    background:#fff;
    border: 1px solid #d9d9d9;

}
.yith-plugin-ui .ui-state-hover,
.yith-plugin-ui .ui-widget-content .ui-state-hover,
.yith-plugin-ui a.ui-state-default:focus,
.yith-plugin-ui .ui-widget-content .ui-state-focus,
.yith-plugin-ui .ui-widget-header .ui-state-focus,
.yith-plugin-fw-panel .ui-state-hover,
.yith-plugin-fw-panel .ui-widget-content .ui-state-hover,
.yith-plugin-fw-panel a.ui-state-default:focus,
.yith-plugin-fw-panel .ui-widget-content .ui-state-focus,
.yith-plugin-fw-panel .ui-widget-header .ui-state-focus{
    background:#ebf1f3;
    border:1px solid #bfd5dd;
    outline: none;
    box-shadow: none;
}
.yith-plugin-ui .ui-widget-header .ui-state-hover, .woocommerce .yith-plugin-ui .ui-state-focus,
.yith-plugin-fw-panel .ui-widget-header .ui-state-hover, .woocommerce .yith-plugin-ui .ui-state-focus {
    background: none;
    border: 0;
}

/** colorpicker **/
.yith-plugin-ui .yith-plugin-fw-colorpicker-field-wrapper .iris-picker,
.yith-plugin-ui .yith-plugin-fw-colorpicker-field-wrapper .wp-picker-holder {
    display: none !important;
}
.yith-plugin-ui  .yith-plugin-fw-colorpicker-field-wrapper .wp-picker-input-wrap {
    display: inline !important;
}
.yith-plugin-ui .yith-plugin-fw-colorpicker-field-wrapper .wp-picker-active .iris-picker,
.yith-plugin-ui .yith-plugin-fw-colorpicker-field-wrapper .wp-picker-active .wp-picker-holder {
    display: block !important;
}
.woocommerce .yith-plugin-ui .iris-picker{
    border:0;
    margin-top: 20px;
}
.yith-plugin-ui .yith-plugin-fw input[type=text].wp-color-picker {
    border:0;
    padding: 2px 5px;
    height:30px;
}
.yith-plugin-ui .wp-color-result-text{
    display: none;
}

.yith-plugin-ui .wp-picker-container .wp-color-result.button{
    width: 30px;
    height: 30px;
    border: 0;
    box-shadow: none;
    border: 1px solid #d9d9d9;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
}
.yith-plugin-ui .wp-picker-default-custom{
    cursor: pointer;
    width: 25px;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.yith-plugin-ui .wp-picker-default-custom input.button {
    opacity: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.yith-plugin-ui .wp-picker-default-custom:before{
    content: "\e910";
    text-indent: 0;
    font-family: 'yith-icon';
    font-size: 20px;
    color: #d8d8d8;
    font-weight: normal;
    width:15px;
    display:block;
    background: none;
    line-height: 20px;
    margin-left: 8px;
}
.yith-plugin-ui .wp-picker-container{
    width: auto;
    display: inline-block;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 5px;
}

.yith-plugin-ui .iris-picker .iris-square-inner{
    box-shadow: none;
    border: 1px solid #d9d9d9;
}

.yith-plugin-ui .yith-single-colorpicker{
    display: inline-block;
    width: 220px;
}

.yith-plugin-ui .yith-single-colorpicker > label{
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* RANGE SLIDER */
.yith-plugin-ui .ui-slider-horizontal .ui-slider-handle{
    top: -45px!important;
}

.yith-plugin-ui .ui-slider-horizontal .ui-slider-handle {
    position: absolute;
    top: -33px;
    left: 0;
    width: auto !important;
    height: auto !important;
    padding: 2px 8px;
    margin-left: -15px;
    font-size: 12px;
    line-height: 20px;
    color: #4e8ba2;
    text-align: center;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    -webkit-transition: opacity .3s ease-in-out 0s;
    transition: opacity .3s ease-in-out 0s;
    box-shadow: 0px 1px 7px 0px rgba(1, 1, 1, 0.13);
}
.yith-plugin-ui .ui-slider-horizontal .ui-slider-handle:before {
    position: absolute;
    bottom: -3px;
    left: 50%;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    content: "";
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.yith-plugin-ui .ui-slider.ui-widget-content .ui-widget-header{
    background: #4e8ba2 ;
}
.yith-plugin-ui .ui-slider-horizontal .ui-slider-handle:after{
    content: '';
    width: 17px;
    height: 17px;
    display: block;
    position: absolute;
    background: #fff;
    top: 37px;
    border-radius: 50%;
    box-shadow: 0px 1px 6px 0px rgba(1, 1, 1, 0.25);
}
.yith-plugin-ui .ui-slider.ui-widget-content{
    height: 5px !important;
}

.yith-plugin-ui  .ui-slider .minCaption,
.yith-plugin-ui  .ui-slider .maxCaption {
    font-weight: 700;
    font-size: 12px;
}


/* ADD_BOX AND TOGGLE */
.yith-plugin-ui .yith-add-box,
.yith-plugin-ui .yith-toggle-row{
    width:70%;
    border: 1px solid #d9d9d9;
    box-shadow:none;
    border-radius: 4px;
    margin: 20px 0;
    padding: 10px;
    box-sizing: border-box;
    background: white;
}
.yith-plugin-ui .yith-add-box{
    padding: 30px 25px;
    display: none;
}
.yith-plugin-ui .yith-toggle-title{
    position: relative;
}
.yith-plugin-ui #plugin-fw-wc .yith-toggle-title h3,
.yith-plugin-ui .yith-toggle-title h3{
    padding: 0px 20px 0px 25px;
    margin: 0;
    display: inline-block;
    position: relative;
    min-width: 173px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 15px;
}

.yith-plugin-ui .yith-toggle-title .subtitle{
    padding-left: 0;
    padding-top:8px;
    font-size: 12px;
}

.yith-plugin-ui .yith-toggle{
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    left: 0px;
    top: 0;
    bottom: 0;
}
.yith-plugin-ui .yith-toggle > span:before{
    color: #405e69;
}

.yith-plugin-ui .yith-toggle > span{
    position: absolute;
    right: 50%;
    transition: transform .3s;
    line-height: 1;
}


.yith-plugin-ui .yith-toggle-row-opened .yith-toggle span{
    transform:  rotateZ(90deg);
}

.yith-plugin-ui .yith-toggle-content{
    display: none;
    position: relative;
    padding: 30px 25px;
}
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content{
  /*  display: block;*/
}
.yith-plugin-ui .yith-add-box-row,
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content .yith-toggle-content-row{
    display: table;
    margin-bottom: 20px;
}
.yith-plugin-ui .yith-add-box-row label,
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content .yith-toggle-content-row label{
    display: table-cell;
    width: 250px;
    padding-right:40px;
    color: #33373b;
    font-size: 13px;
    vertical-align: top;
    font-weight: 600;
}

.yith-plugin-ui .yith-add-box-row .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper),
.yith-plugin-ui .yith-toggle-row-opened  .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
   /* display: table-cell;*/
    width: auto;
    float: none;
    vertical-align: middle;
    position: relative;
}
.yith-plugin-ui .yith-add-box-row span.yith-icon,
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content .yith-toggle-content-row span.yith-icon{
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
}
.yith-plugin-ui .yith-add-box-buttons,
.yith-plugin-ui  .yith-toggle-content-buttons{
    text-align: right;
}
.yith-plugin-ui .yith-toggle-onoff {
    position: absolute;
    cursor: pointer;
    right: 0;
}
.yith-plugin-ui .ui-sortable .yith-toggle-onoff{
    right: 30px;
}
.yith-plugin-ui .yith-toggle-row .icon-drag{
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 0;
    line-height: 1;
}
.yith-plugin-ui  .yith-toggle-row.with-subtitle .yith-toggle{
   top: auto;
}
.yith-plugin-ui .yith-toggle-row.with-subtitle  .yith-toggle-onoff{
    top: 25%;
}

/** SPINNER **/
.yith-plugin-ui .spinner{
    vertical-align: -5px;
    float: none;
}

.yith-plugin-ui .spinner.show{
    visibility: visible;
}

/* LIST TABLE */
.yith-plugin-ui .form-table .list-table td{
    padding: 15px 0px;
}
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .bulkactions  select{
    border: 1px solid #d8d8d8;
    max-width: 200px;
    max-height: 30px;
    padding: 0 10px;
}
.yith-plugin-ui .form-table .list-table th{
    width: initial;
}

.yith-plugin-ui #plugin-fw-wc table.form-table th.check-column{
    padding-left: 3px;
}
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tbody td{
    padding-left: 20px;
}
.yith-plugin-ui .yith-plugin-fw-list-table h2{
    border: 0;
    padding: 35px 0 15px;
    display: inline-block;
    margin-right: 10px;
}
.yith-plugin-ui .form-table .yith-plugin-fw-list-table  table th{
    vertical-align: middle;
}
.yith-plugin-ui .yith-plugin-fw-list-table-container{
    padding: 0 20px;
}
.yith-plugin-ui  #doaction, .yith-plugin-ui  #doaction2, .yith-plugin-ui #post-query-submit{
    margin-left: 10px;
    height: 33px;
}
.yith-plugin-ui .bulkactions{
    margin: 10px 0;
}
.yith-plugin-ui  .form-table td p.yith-section-description{
    color:#716269;
    margin-bottom: 20px;
}

/** Time picker width*/
.yith-plugin-ui input.ui-timepicker-input {
    width: 100px!important;
}
/** date format **/
.yith-plugin-ui .yith-plugin-fw-date-format code {
    margin-left: 30px;
}

.yith-plugin-ui .yith-plugin-fw-date-format input[type=text].small-text {
    margin-left: 45px;
}

/** checkbox columns **/
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
    width: calc(50% - 20px);
    padding-right: 20px;
    float: left;
}

.yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
    width: calc(33% - 0px);
    padding-right: 0px;
    float: left;
}


.yith-plugin-fw-checkbox-field-wrapper {
    display: inline-block !important;
    width: 19px !important;
    margin-right: 10px;
}
.yith-plugin-fw-checkbox-field-wrapper + span.description {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.yith-plugin-ui span.description {
    margin-top: 10px;
}
.yith-plugin-fw-option-with-description {
    display: table-cell;
    width: auto;
    vertical-align: top;
}
/** YITH PANEL **/
.yith-plugin-ui #yith-plugin-fw-panel{
    margin-top: -10px;
}
.yith-plugin-ui  #plugin-fw-wc, .yith-plugin-ui #yith-plugin-fw-panel{
    padding-top: 0;
}
.yith-plugin-ui .plugin-option tr{
    border: 0;
}

@media screen and (max-width: 1440px){
    .yith-plugin-ui .yith-add-box,
    .yith-plugin-ui .yith-toggle-row{
        width: 80%;
    }
}
@media screen and (max-width: 1024px){
    .yith-plugin-ui .yith-add-box,
    .yith-plugin-ui .yith-toggle-row{
        width: 90%;
    }

    .yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
        width: 100%;
        padding-right: 20px;
        float: left;
    }

    .yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
        width: calc(50% - 0px);
        padding-right: 0px;
        float: left;
    }
}
@media screen and (max-width: 782px){
    .yith-plugin-fw-banner.yith-plugin-fw-banner-free{
        height: auto;
        background-color: #a9c7d3;
    }
    .yith-plugin-fw-banner.yith-plugin-fw-banner-free ul{
        width: 90%;
        text-align: center;
    }
    .yith-plugin-fw-banner.yith-plugin-fw-banner-free li img{
        width: 90%;
        margin: 0 auto;
    }
    .yith-plugin-fw-banner h1{
        line-height: 1.2em;
    }

    .yith-plugin-ui .yith-add-box,
    .yith-plugin-ui .yith-toggle-row{
        width: 100%;
    }

    .yith-plugin-ui td.forminp-checkbox.two-cols fieldset,
    .yith-plugin-ui td.forminp-checkbox.three-cols fieldset{
        width: 100%;
    }

}