/**
 *
 * ---------------------------------------------------------
 * AdminUI CSS MAP
 * ---------------------------------------------------------
 *
 * 01. Base
 *     01. 01. Header
 *     01. 02. Sticky
 *     01. 03. Header Buttons
 *     01. 04. Navigation
 *     01. 05. Wrapper
 *     01. 06. Content
 *     01. 07. Section
 *     01. 08. Footer
 *     01. 09. Copyright
 *     01. 10. Show All Settings
 *     01. 11. Search Input
 *     01. 12. Metabox
 *     01. 13. Comment Metabox
 *     01. 14. Help Tooltip
 * 02. Themes
 *     02. 01. Theme Dark
 *     02. 02. Theme Light
 * 03. Fields
 *     03. 01. Field
 *     03. 05. Field: border, spacing, dimension, column
 *     03. 06. Field: button_set
 *     03. 07. Field: checkbox, radio
 *     03. 08. Field: code_editor
 *     03. 09. Field: color
 *     03. 10. Field: color_group
 *     03. 16. Field: layout_preset
 *     03. 19. Field: media
 *     03. 22. Field: select
 *     03. 23. Field: slider
 *     03. 24. Field: sortable
 *     03. 26. Field: spinner
 *     03. 27. Field: switcher
 *     03. 29. Field: text
 *     03. 31. Field: typography
 *     03. 34. Field: heading
 *     03. 35. Field: subheading
 *     03. 36. Field: submessage
 *     03. 37. Field: notice
 *     03. 38. Field: number
 *     03. 40. Field: others
 * 04. Widget
 * 05. Customizer
 * 06. Taxonomy
 * 07. Profile
 * 08. Nav Menu
 * 09. Modal
 *     09. 01. Shortcode Modal
 *     09. 02. Gutenberg Modal
 *     09. 03. Icon Modal
 * 10. Helper
 * 11. Welcome Page
 * 12. Responsive
 * 13. Others
 *
 * ---------------------------------------------------------
 *
 */
:root {
    --wpnd-mhpro-background-color: #ffffff;
    --wpnd-mhpro-text-light-color: #ffffff;
    --wpnd-mhpro-text-dark-color: #2f3e2e;
    --wpnd-mhpro-text-color: #2f3e2e;
    --wpnd-mhpro-primary-color: #882ce1;
    --wpnd-mhpro-primary-hover-color: #7223be;
    --wpnd-mhpro-primary-soft-bg-color: #fbf8fd;
    --wpnd-mhpro-secondary-color: #2f3e2e;
    --wpnd-mhpro-secondary-hover-color: #263224;
    --wpnd-mhpro-mute-color: #e9e6eb;
    --wpnd-mhpro-mute-text-color: #5f6e5b;
    --wpnd-mhpro-pro-color: #d4af37;
    --wpnd-mhpro-danger-color: #dc3545;
    --wpnd-mhpro-danger-hover-color: #c82333;
}

/**
 * 01. Base
 */
.wpndmhpro {
    position: relative;
}

.wpndmhpro label {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.wpndmhpro-ab-icon {
    top: 2px;
}

#screen-meta-links+.wpndmhpro-options {
    margin-top: 40px;
}

.wpndmhpro-options {
    margin-top: 20px;
    margin-right: 20px;
}

.wpndmhpro-fieldset input:not([type="checkbox"]):not([type="radio"]),
.wpndmhpro-fieldset select {
    min-height: 30px;
    line-height: 2;
}

select,
textarea,
input[type="text"],
.wp-core-ui select,
input[type="password"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"] {
    min-height: 30px;
    border-radius: 2px;
    line-height: 2;
}

/*
** Input field focus.
*/
.wpndmhpro-fieldset input[type="text"]:focus,
.wpndmhpro-fieldset input[type="password"]:focus,
.wpndmhpro-fieldset input[type="color"]:focus,
.wpndmhpro-fieldset input[type="date"]:focus,
.wpndmhpro-fieldset input[type="datetime"]:focus,
.wpndmhpro-fieldset input[type="datetime-local"]:focus,
.wpndmhpro-fieldset input[type="email"]:focus,
.wpndmhpro-fieldset input[type="month"]:focus,
.wpndmhpro-fieldset input[type="number"]:focus,
.wpndmhpro-fieldset input[type="search"]:focus,
.wpndmhpro-fieldset input[type="tel"]:focus,
.wpndmhpro-fieldset input[type="time"]:focus,
.wpndmhpro-fieldset input[type="url"]:focus,
.wpndmhpro-fieldset input[type="week"]:focus,
.wpndmhpro-fieldset input[type="checkbox"]:focus,
.wpndmhpro-fieldset input[type="radio"]:focus,
.wpndmhpro-fieldset select:focus,
.wpndmhpro-fieldset .button:focus,
.wpndmhpro-fieldset .button-secondary:focus,
.wpndmhpro-fieldset textarea:focus {
    border-color: var(--wpnd-mhpro-primary-color);
    box-shadow: 0 0 1px 0 var(--wpnd-mhpro-primary-color);
    outline: none;
}

/**
 * 01. 01. Header
 */
.wpndmhpro-header {
    position: relative;
}

.wpndmhpro-header-inner {
    padding: 20px 25px;
    transition: box-shadow .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wpnd-mhpro-header-logo h1,
.wpndmhpro-header-inner h1 {
    float: left;
    font-size: 1.5em;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
}

.wpnd-mhpro-header-logo h1 small,
.wpndmhpro-header-inner h1 small {
    font-size: 11px;
    font-weight: 500;
}

/**
 * 01. 02. Sticky
 */
.wpndmhpro-sticky .wpndmhpro-header-inner {
    position: fixed;
    z-index: 99;
    top: 32px;
}

.wpndmhpro-header.wpndmhpro-sticky-header {
    margin: -20px -20px 20px -20px;
}

/**
 * 01. 03. Header Buttons
 */
.wpndmhpro-buttons {
    display: flex;
    align-items: center;
}

.wpndmhpro-buttons i {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
    margin-right: -65px;
    z-index: 1;
}

.wpndmhpro-buttons .wpnd-mhpro-clock-clockwise {
    margin-left: 20px;
}

.wpndmhpro-buttons .button {
    margin: 0 2px;
    line-height: 26px;
}

.wpndmhpro-buttons .button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.wpndmhpro-header-left {
    float: left;
}

.wpndmhpro-header-right {
    float: right;
}

/**
 * 01. 04. Navigation
 */
.wpndmhpro-nav {
    display: block;
    position: relative;
    z-index: 10;
    float: left;
}

.wpndmhpro-nav ul {
    clear: left;
    margin: 0;
    list-style-type: none;
}

.wpndmhpro-nav ul li {
    margin-bottom: 0;
}

.wpndmhpro-nav ul li a {
    font-size: 0.8rem;
    position: relative;
    display: block;
    padding: 14px 12px;
    text-decoration: none;
    transition-property: color, background;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.wpndmhpro-nav ul li a:focus {
    outline: none;
    box-shadow: none;
}

.wpndmhpro-nav ul li .wpndmhpro-arrow:after {
    content: "\f054";
    display: inline-block;
    font-family: 'wpnd-mhpro-icons';
    font-weight: 900;
    font-size: 9px;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -4px;
}

.wpndmhpro-nav ul li.wpndmhpro-tab-expanded .wpndmhpro-arrow:after {
    transform: rotate(90deg);
}

.wpndmhpro-nav ul li.wpndmhpro-tab-expanded ul {
    display: block;
}

.wpndmhpro-nav ul ul {
    display: none;
    position: relative;
}

.wpndmhpro-nav ul ul li a {
    font-size: 12px;
    padding: 12px 14px 12px 24px;
}

.wpndmhpro-nav .wpndmhpro-tab-icon {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wpnd-mhpro-primary-color);
    margin-right: 5px;
    text-align: center;
    vertical-align: middle;
}

.wpnd-mhpro-views-metabox-tabs .wpndmhpro-theme-light .wpndmhpro-nav-inline>ul li a.wpndmhpro-active .wpndmhpro-tab-icon {
    color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-nav .wpndmhpro-label-error {
    margin-left: 4px;
    vertical-align: top;
}

.wpndmhpro-nav-normal {
    width: 225px;
}

.wpndmhpro-nav-normal+.wpndmhpro-content {
    margin-left: 225px;
}

.wpndmhpro-nav-inline {
    width: 100%;
}

.wpndmhpro-nav-inline ul li {
    display: inline-block;
    vertical-align: top;
}

.wpndmhpro-nav-background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 225px;
}

/**
 * 01. 05. Wrapper
 */
.wpndmhpro-wrapper {
    position: relative;
    overflow: hidden;
}

/**
 * 01. 06. Content
 */
.wpndmhpro-content {
    position: relative;
    background-color: var(--wpnd-mhpro-text-light-color);
}

/**
 * 01. Icon upload
 */
.wpndmhpro-icon-select {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wpndmhpro-icon-preview {
    width: 35px;
    height: 30px;
    text-align: center;
    padding-top: 6px;
    border: 1px solid var(--wpnd-mhpro-mute-color);
    border-radius: 4px;
}

.wpndmhpro-taxonomy .wpndmhpro-icon-preview {
    padding-top: 0;
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-taxonomy .wpndmhpro-icon-preview i {
    padding-top: 2.5px;
    display: inline-block;
    font-size: 25px;
}

/**
 * 01. 07. Section
 */
.wpndmhpro-sections {
    float: left;
    width: 100%;
}

.wpndmhpro-section-title {
    display: none;
    padding: 20px 30px;
    background: var(--wpnd-mhpro-mute-color);
    border: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-section-title h3 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
}

.wpndmhpro-section-title .wpndmhpro-section-icon {
    margin-right: 5px;
}

/**
 * 01. 08. Footer
 */
.wpndmhpro-footer {
    padding: 20px;
    font-size: 11px;
}

/**
 * 01. 09. Copyright
 */
.wpndmhpro-copyright {
    float: left;
    margin-top: 5px;
}

/**
 * 01. 10. Show All Settings
 */
#wpnd_mhpro_metabox_layouts .wpnd-mhpro-live-preview-header,
#wpnd_mhpro_metabox_layouts .wpndmhpro-options-header,
.wpndmhpro-search-all .wpndmhpro-nav-background,
.wpndmhpro-search-all .wpndmhpro-nav,
.wpndmhpro-show-all .wpndmhpro-nav-background,
.wpndmhpro-show-all .wpndmhpro-nav {
    display: none;
}

.wpndmhpro-search-all .wpndmhpro-content,
.wpndmhpro-show-all .wpndmhpro-content {
    margin-left: 0;
}

.wpndmhpro-search-all .wpndmhpro-section-title,
.wpndmhpro-search-all .wpndmhpro-section,
.wpndmhpro-show-all .wpndmhpro-section-title,
.wpndmhpro-show-all .wpndmhpro-section {
    display: block !important;
}

.wpndmhpro-search-all .wpndmhpro-section-title {
    display: none !important;
}

.wpndmhpro-expand-all {
    float: left;
    padding: 0 8px;
    margin-right: 4px;
    z-index: 1;
    font-size: 13px;
    line-height: 30px;
    cursor: pointer;
    user-select: none;
    border-radius: 2px;
    transition: all .2s;
}

.wpndmhpro-expand-all span {
    font-size: 11px;
    vertical-align: middle;
}

/**
 * 01. 11. Search Input
 */
.wpndmhpro-search {
    float: left;
}

.wpndmhpro-search input {
    margin: 0 2px 0 0;
    border: none;
    font-size: 12px;
    line-height: 30px;
    min-height: 30px;
    text-align: inherit;
    padding: 0 10px;
    border-radius: 2px;
    box-shadow: none;
}

.wpndmhpro-search input:focus {
    box-shadow: none;
}

.wpndmhpro-saving .wpndmhpro-buttons,
.wpndmhpro-saving .wpndmhpro-content {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

/**
 * 01. 12. Metabox
 */
.wpndmhpro-metabox .wpndmhpro-field {
    padding: 20px 20px;
}

.wpnd-mhpro-single-metabox-tabs .wpndmhpro-field-tabbed {
    padding: 0;
}

.wpnd-mhpro-single-metabox-tabs .wpndmhpro-metabox {
    border: 1px solid var(--wpnd-mhpro-mute-color);
    border-radius: 4px;
}

.wpndmhpro-metabox .wpndmhpro-section-title {
    padding: 20px;
}

.wpnd-mhpro-views-layout-metabox .wpndmhpro-field+.wpndmhpro-field.wpnd-mhpro-feed-source,
.wpnd-mhpro-views-layout-metabox .wpnd-mhpro-layout-presets,
.wpnd-mhpro-views-layout-metabox .wpndmhpro-metabox .wpndmhpro-section-title,
.wpnd-mhpro-views-metabox-tabs .wpnd-mhpro-layout-presets,
.wpnd-mhpro-views-metabox-tabs .wpndmhpro-metabox .wpndmhpro-section-title,
.wpnd-mhpro-single-metabox-tabs .wpnd-mhpro-layout-presets,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-metabox .wpndmhpro-section-title {
    padding: 20px;
    border: 0;
}

.wpnd-mhpro-single-metabox-tabs .wpnd-mhpro-layout-presets,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-metabox .wpndmhpro-section-title {
    border-bottom: 0;
}

.block-editor-editor-skeleton__content .wpndmhpro-metabox {
    border-left: 1px solid var(--wpnd-mhpro-mute-color);
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-sections-reset {
    float: left;
    width: 100%;
    text-align: right;
    border-top: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-sections-reset .wpndmhpro-button-cancel,
.wpndmhpro-sections-reset input {
    display: none;
}

.wpndmhpro-sections-reset label {
    padding: 10px;
}

.wpndmhpro-sections-reset span {
    -webkit-user-select: none;
    user-select: none;
}

.wpndmhpro-sections-reset input:checked~.wpndmhpro-button-reset {
    display: none;
}

.wpndmhpro-sections-reset input:checked~.wpndmhpro-button-cancel {
    display: inline-block;
}

#side-sortables .wpndmhpro-section-title {
    padding: 12px;
}

#side-sortables .wpndmhpro-field {
    padding: 10px 15px;
}

#side-sortables .wpndmhpro-field .wpndmhpro-title {
    float: none;
    width: 100%;
    margin-bottom: 6px;
}

#side-sortables .wpndmhpro-field .wpndmhpro-fieldset {
    float: none;
    width: 100%;
}

#side-sortables .wpndmhpro-field-text input {
    width: 100%;
}

#side-sortables .wpndmhpro-notice {
    padding: 10px 15px;
}

.wpnd-mhpro-views-layout-metabox .wpndmhpro-field .wpndmhpro-fieldset {
    float: left;
    margin-top: 10px;
}

/**
 * 01. 13. Comment Metabox
 */
.wpndmhpro-comment-metabox {
    margin: -6px -12px -12px -12px;
}

.wpndmhpro-comment-metabox .wpndmhpro-field {
    padding: 20px;
}

.wpndmhpro-comment-metabox .wpndmhpro-section-title {
    padding: 20px;
}

/**
 * 01. 14. Help Tooltip
 */
.wpnd-mhpro-tooltip {
    position: absolute;
    z-index: 5000001;
    text-align: left;
    text-decoration: none;
    max-width: 250px;
    background-color: var(--wpnd-mhpro-secondary-color);
    border-radius: 5px;
    padding: 15px;
    color: var(--wpnd-mhpro-text-light-color);
    font-size: 14px;
    line-height: 20px;
}

.wpnd-mhpro-tooltip.wpnd-mhpro-short-content {
    margin-top: 8px;
}

.wpnd-mhpro-tooltip .wpnd-mhpro-open-live-demo,
.wpnd-mhpro-tooltip .wpnd-mhpro-open-docs {
    margin-top: 10px;
    display: inline-block;
    line-height: 34px;
    background-color: var(--wpnd-mhpro-primary-color);
    border-radius: 3px;
    padding: 0 12px;
    font-size: 11px;
    text-transform: capitalize;
    text-decoration: none;
    color: var(--wpnd-mhpro-text-light-color);
    margin-bottom: 0px;
    font-weight: 500;
}

.wpnd-mhpro-tooltip .wpnd-mhpro-open-live-demo {
    background-color: transparent;
    border: 2px solid var(--wpnd-mhpro-primary-color);
    line-height: 32px;
    color: var(--wpnd-mhpro-text-dark-color);
}

.wpnd-mhpro-tooltip .wpnd-mhpro-open-docs:hover,
.wpnd-mhpro-tooltip .wpnd-mhpro-open-live-demo:hover {
    background-color: var(--wpnd-mhpro-primary-color);
    border-color: var(--wpnd-mhpro-primary-color);
    color: var(--wpnd-mhpro-text-light-color);
}

.wpnd-mhpro-tooltip .wpnd-mhpro-info-label {
    color: var(--wpnd-mhpro-text-light-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
    text-align: left;
}

.wpnd-mhpro-tooltip .wpnd-mhpro-open-docs {
    margin-top: 10px;
}

.wpnd-mhpro-tooltip .wpnd-mhpro-img-tag {
    margin-bottom: 6px;
    min-width: 240px;
}

.wpnd-mhpro-tooltip .wpnd-mhpro-img-tag img {
    background-color: var(--wpnd-mhpro-mute-color);
    border-radius: 4px;
}

.wpnd-mhpro-field-subheading .wpnd-mhpro-title {
    width: 100%;
}

.wpnd-mhpro-help-text.wpnd-mhpro-support {
    display: none;
}

.wpndmhpro-field-heading.wpndmhpro-options-header::after,
.wpndmhpro-field-heading.wpndmhpro-options-header::before,
.wpndmhpro-options-header .clear,
.wpndmhpro-options-header .wpnd-mhpro-help-text.wpnd-mhpro-support {
    display: none;
}

.wpnd-mhpro-tooltip.support-tooltip {
    max-width: 300px;
    margin-top: 0;
}

.wpnd-mhpro-support-arrow {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--wpnd-mhpro-secondary-color);
    top: -7px;
    right: 25px;
    transform: rotate(-135deg);
}

.wpnd-mhpros-tooltip:not(.support-tooltip):before {
    content: '';
    width: 0;
    position: absolute;
    height: 0;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--wpnd-mhpro-secondary-color);
    left: -10px;
    top: calc(50% - 7px);
}

.wpndmhpro-options-header .support::before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: 80%;
    z-index: 10;
    cursor: pointer;
}

.wpnd-mhpro-tooltip.support-tooltip a.wpnd-mhpro-open-docs {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 8px 8px 8px 8px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 20px;
}

.wpnd-mhpro-tooltip a.wpnd-mhpro-open-docs {
    margin-right: 10px;
}

.wpnd-mhpro-tooltip.support-tooltip a.wpnd-mhpro-open-docs.support {
    background: var(--wpnd-mhpro-text-light-color);
    color: var(--wpnd-mhpro-secondary-color);
    margin-bottom: 10px;
}

.wpnd-mhpro-tooltip.support-tooltip a.wpnd-mhpro-open-docs.support:hover {
    background: var(--wpnd-mhpro-mute-color);
}

.wpnd-mhpro-tooltip.support-tooltip a.wpnd-mhpro-open-docs.feature-request {
    background: transparent;
    color: var(--wpnd-mhpro-primary-color);
    border: 2px solid var(--wpnd-mhpro-primary-color);
    text-transform: none;
    margin-top: 0;
    margin-bottom: 8px;
}

.wpnd-mhpro-tooltip.support-tooltip a.wpnd-mhpro-open-docs.feature-request:hover {
    background: var(--wpnd-mhpro-primary-color);
    color: var(--wpnd-mhpro-text-light-color);
    border: 2px solid var(--wpnd-mhpro-primary-color);
}

.wpnd-mhpro-tooltip.support-tooltip .wpnd-mhpro-info-label {
    text-transform: none;
}

.wpnd-mhpro-tooltip:not(.support-tooltip):before {
    content: '';
    width: 0;
    position: absolute;
    height: 0;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--wpnd-mhpro-secondary-color);
    left: -10px;
    top: calc(50% - 7px);
}

span.tooltip-icon {
    width: 25px;
    display: inline-block;
}

/**
 * 02. Themes
 */
/**
 * 02. 01. Theme Dark
 */
.wpndmhpro-theme-dark .wpndmhpro-header-inner {
    background-color: #050505;
}

.wpndmhpro-theme-dark .wpndmhpro-header-inner h1 {
    color: var(--wpnd-mhpro-text-light-color)
}

.wpndmhpro-theme-dark .wpndmhpro-header-inner h1 small {
    color: var(--wpnd-mhpro-text-color);
}

.wpndmhpro-theme-dark .wpndmhpro-expand-all {
    color: var(--wpnd-mhpro-text-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-expand-all:hover {
    color: var(--wpnd-mhpro-text-light-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-search input {
    color: var(--wpnd-mhpro-text-light-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-search:focus {
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-footer,
.wpndmhpro-theme-dark .wpndmhpro-search::-webkit-input-placeholder {
    color: var(--wpnd-mhpro-text-color);
}

.wpndmhpro-theme-dark .wpndmhpro-nav ul li a {
    color: var(--wpnd-mhpro-text-color);
    border-color: var(--wpnd-mhpro-secondary-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-nav ul li a:hover {
    color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-theme-dark .wpndmhpro-nav ul li .wpndmhpro-active {
    color: var(--wpnd-mhpro-text-light-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-nav ul ul li a {
    border-color: var(--wpnd-mhpro-secondary-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-footer,
.wpndmhpro-theme-dark .wpndmhpro-nav-background,
.wpndmhpro-theme-dark .wpndmhpro-nav-inline,
.wpndmhpro-theme-dark .wpndmhpro-nav ul ul:before,
.wpndmhpro-theme-dark .wpndmhpro-nav ul ul li .wpndmhpro-active {
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-dark .wpndmhpro-nav>ul>li:last-child>a {
    border: none;
}

.wpndmhpro-theme-dark .wpndmhpro-nav-normal ul li a {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.wpndmhpro-theme-dark .wpndmhpro-nav-normal ul li .wpndmhpro-active:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 50%;
    height: 0;
    width: 0;
    pointer-events: none;
    border: solid transparent;
    border-right-color: var(--wpnd-mhpro-text-light-color);
    border-width: 4px;
    margin-top: -4px;
}

.wpndmhpro-theme-dark .wpndmhpro-nav-inline ul li a {
    text-align: center;
    border-right-width: 1px;
    border-right-style: solid;
}

.wpndmhpro-theme-dark .wpndmhpro-nav-inline ul li .wpndmhpro-active:after {
    content: " ";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 0;
    width: 0;
    pointer-events: none;
    border: solid transparent;
    border-bottom-color: var(--wpnd-mhpro-text-light-color);
    border-width: 4px;
    margin-left: -4px;
}

/**
 * 02. 02. Theme Light
 */
.wpndmhpro-options .wpndmhpro-wrapper,
.wpndmhpro-theme-light .wpndmhpro-container {
    border: 1px solid var(--wpnd-mhpro-mute-color);
    box-shadow: 0 0 15 var(--wpnd-mhpro-secondary-color);
    border-radius: 6px;
}

.wpndmhpro-options .wpndmhpro-container {
    border: 0;
}

.wpndmhpro-theme-light .wpndmhpro-header-inner {
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpndmhpro-theme-light .wpndmhpro-header-inner h1 small {
    color: var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-theme-light .wpndmhpro-expand-all {
    color: var(--wpnd-mhpro-mute-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-light .wpndmhpro-search input::-webkit-input-placeholder,
.wpndmhpro-theme-light .wpndmhpro-search input,
.wpndmhpro-theme-light .wpndmhpro-expand-all:hover {
    color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav ul ul li a,
.wpndmhpro-theme-light .wpndmhpro-search input {
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav ul li a {
    font-weight: 600;
    color: var(--wpnd-mhpro-text-dark-color);
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav ul li .wpndmhpro-active,
.wpndmhpro-theme-light .wpndmhpro-nav ul li a:hover {
    color: var(--wpnd-mhpro-text-dark-color);
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav-normal>ul {
    margin-right: -1px;
    margin-bottom: -1px;
}

.wpndmhpro-theme-light .wpndmhpro-nav-normal>ul li a {
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav-normal>ul li .wpndmhpro-active {
    border-right-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-options.wpnd-mhpro-global-style .wpndmhpro-nav-normal,
.wpndmhpro-options.wpnd-mhpro-global-style .wpndmhpro-nav-background,
.wpndmhpro-options.wpnd-mhpro-tools .wpndmhpro-nav-normal,
.wpndmhpro-options.wpnd-mhpro-tools .wpndmhpro-nav-background,
.wpndmhpro-options.wpnd-mhpro-settings .wpndmhpro-nav-background,
.wpndmhpro-options.wpnd-mhpro-settings .wpndmhpro-nav-normal {
    width: 248px;
}

.wpndmhpro-options.wpnd-mhpro-global-style .wpndmhpro-nav-normal+.wpndmhpro-content,
.wpndmhpro-options.wpnd-mhpro-tools .wpndmhpro-nav-normal+.wpndmhpro-content,
.wpndmhpro-options.wpnd-mhpro-settings .wpndmhpro-nav-normal+.wpndmhpro-content {
    margin-left: 248px;
}

.wpndmhpro-options.wpnd-mhpro-global-style .wpndmhpro-nav ul li a,
.wpndmhpro-options.wpnd-mhpro-tools .wpndmhpro-nav ul li a,
.wpndmhpro-options.wpnd-mhpro-settings .wpndmhpro-nav ul li a {
    padding: 14px 10px;
}

.wpndmhpro-options.wpnd-mhpro-global-style .wpndmhpro-tab-expanded ul {
    padding-left: 0;
    border-left: 3px solid var(--wpnd-mhpro-primary-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav-inline {
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.wpndmhpro-theme-light .wpndmhpro-nav-inline>ul li a {
    text-align: center;
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-theme-light .wpndmhpro-nav-inline>ul ul {
    display: none !important;
}

.wpndmhpro-theme-light .wpndmhpro-nav-inline .wpndmhpro-arrow:after {
    display: none;
}

.wpndmhpro-theme-light .wpndmhpro-nav-background {
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-theme-light .wpndmhpro-footer {
    color: #555;
    border-top: 1px solid var(--wpnd-mhpro-mute-color);
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    background: linear-gradient(var(--wpnd-mhpro-mute-color), var(--wpnd-mhpro-mute-color));
}

/**
 * 03. Fields
 */
.wpndmhpro-field,
.wpnd-mhpro-tools .wpndmhpro-field-tabbed .wpndmhpro-tabbed-content>.wpndmhpro-field,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed .wpndmhpro-tabbed-content>.wpndmhpro-field,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed .wpndmhpro-tabbed-content>.wpndmhpro-field {
    position: relative;
    padding: 20px 30px;
}

.wpnd-mhpro-tools .wpndmhpro-field.wpnd-mhpro-view-tab-section,
.wpnd-mhpro-global-style .wpndmhpro-field.wpnd-mhpro-view-tab-section,
.wpnd-mhpro-settings .wpndmhpro-field.wpnd-mhpro-view-tab-section {
    padding: 0;
}

.wpndmhpro-field p:first-child {
    margin-top: 0;
}

.wpndmhpro-field:after,
.wpndmhpro-field:before {
    content: " ";
    display: table;
}

.wpndmhpro-field:after {
    clear: both;
}

.wpndmhpro-field h4 {
    margin-top: 0;
}

.wpndmhpro-field .wpndmhpro-title {
    position: relative;
    width: 20%;
    float: left;
}

.wpndmhpro-field.wpnd-mhpro-feed-source .wpndmhpro-title,
.wpndmhpro-field.wpnd-mhpro-feed-source .wpndmhpro-fieldset,
.wpndmhpro-field.wpnd-mhpro-layout-presets .wpndmhpro-title,
.wpndmhpro-field.wpnd-mhpro-layout-presets .wpndmhpro-fieldset {
    width: 100%;
    margin-bottom: 10px;
}

.wpndmhpro-field .wpndmhpro-title h4 {
    margin: 0;
    color: #23282d;
}

.wpndmhpro-field .wpndmhpro-fieldset {
    float: right;
    width: calc(80% - 20px);
}

.wpndmhpro-field .wpndmhpro-fieldset textarea {
    width: 100%;
}

.wpndmhpro-pseudo-field {
    padding: 0 5px 0 0 !important;
    display: inline-block;
}

.wpndmhpro-pseudo-field+.wpndmhpro-pseudo-field {
    border: 0;
}

.wpndmhpro-pseudo-field pre {
    display: none;
}

/**
 * 03. 05. Field: border, spacing, dimensions, column, dimensions_advanced
 */
.wpndmhpro-field-border .wpndmhpro--inputs,
.wpndmhpro-field-column .wpndmhpro--inputs,
.wpndmhpro-field-spacing .wpndmhpro--inputs,
.wpndmhpro-field-box_shadow .wpndmhpro--inputs,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--inputs,
.wpndmhpro-field-dimensions .wpndmhpro--inputs {
    float: left;
    display: flex;
    flex-wrap: wrap;
}

.wpndmhpro-field-border .wpndmhpro--input,
.wpndmhpro-field-column .wpndmhpro--input,
.wpndmhpro-field-spacing .wpndmhpro--input,
.wpndmhpro-field-box_shadow .wpndmhpro--input,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--input,
.wpndmhpro-field-dimensions .wpndmhpro--input {
    display: flex;
    padding-right: 6px;
    padding-bottom: 4px;
    box-sizing: border-box;
}

.wpndmhpro-field-border .wpndmhpro--input select,
.wpndmhpro-field-column .wpndmhpro--input select,
.wpndmhpro-field-spacing .wpndmhpro--input select,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--input select,
.wpndmhpro-field-dimensions .wpndmhpro--input select {
    margin: 0;
}

.wpnd-mhpro-typography .wpnd-mhpro-spacing-pixel select,
.wpndmhpro-options .wpndmhpro--border .wpnd-mhpro-spacing-pixel select {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.wpndmhpro-options .wpndmhpro--border .wpnd-mhpro-spacing-pixel select {
    margin-left: -1px;
}

.wpndmhpro-field-border .wpndmhpro--input input,
.wpndmhpro-field-column .wpndmhpro--input input,
.wpndmhpro-field-spacing .wpndmhpro--input input,
.wpndmhpro-field-box_shadow .wpndmhpro--input input,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--input input,
.wpndmhpro-field-dimensions .wpndmhpro--input input {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 56px;
    max-width: 100%;
    text-align: center;
    padding: 0;
}

.wpndmhpro-field-border .wpndmhpro--color,
.wpndmhpro-field-column .wpndmhpro--color,
.wpndmhpro-field-spacing .wpndmhpro--color,
.wpndmhpro-field-box_shadow .wpndmhpro--color,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--color,
.wpndmhpro-field-dimensions .wpndmhpro--color {
    float: left;
}

.wpndmhpro-field-border .wpndmhpro--label,
.wpndmhpro-field-column .wpndmhpro--label,
.wpndmhpro-field-spacing .wpndmhpro--label,
.wpndmhpro-field-box_shadow .wpndmhpro--label,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--label,
.wpndmhpro-field-dimensions .wpndmhpro--label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    user-select: none;
    min-width: 20px;
    max-width: 100%;
    padding: 0 4px;
    font-size: 12px;
    text-align: center;
    color: #555;
    border: 1px solid #7B776C;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpndmhpro-field-border .wpndmhpro--icon,
.wpndmhpro-field-column .wpndmhpro--icon,
.wpndmhpro-field-spacing .wpndmhpro--icon,
.wpndmhpro-field-box_shadow .wpndmhpro--icon,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--icon,
.wpndmhpro-field-dimensions .wpndmhpro--icon {
    border-right: 0;
    border-radius: 2px 0 0 2px;
}

.wpndmhpro-field-border .wpndmhpro--icon+input,
.wpndmhpro-field-column .wpndmhpro--icon+input,
.wpndmhpro-field-spacing .wpndmhpro--icon+input,
.wpndmhpro-field-box_shadow .wpndmhpro--icon+input,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--icon+input,
.wpndmhpro-field-dimensions .wpndmhpro--icon+input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.wpndmhpro-field-border .wpndmhpro--unit,
.wpndmhpro-field-spacing .wpndmhpro--unit,
.wpndmhpro-field-box_shadow .wpndmhpro--unit,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--unit,
.wpndmhpro-field-dimensions .wpndmhpro--unit {
    border-left: 0;
    border-radius: 0 2px 2px 0;
}

.wpndmhpro-field-border .wpndmhpro--is-unit,
.wpndmhpro-field-spacing .wpndmhpro--is-unit,
.wpndmhpro-field-box_shadow .wpndmhpro--is-unit,
.wpndmhpro-field-dimensions_advanced .wpndmhpro--is-unit,
.wpndmhpro-field-dimensions .wpndmhpro--is-unit {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/**
 * 03. 06. Field: button_set
 */
.wpndmhpro-field-button_set .wpndmhpro--buttons {
    display: inline-block;
}

.wpndmhpro-field-button_set .wpndmhpro--button {
    position: relative;
    z-index: 1;
    float: left;
    cursor: pointer;
    padding: 7px 14px;
    min-width: 16px;
    text-align: center;
    color: var(--wpnd-mhpro-text-color);
    border: 1px solid var(--wpnd-mhpro-mute-color);
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    user-select: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpndmhpro-field-button_set .wpndmhpro--button {
    border-radius: 4px;
    margin-right: 6px;
}

.wpndmhpro-field-button_set .wpndmhpro--button:not(:first-child) {
    margin-left: -1px;
}

.wpndmhpro-field-button_set .wpndmhpro--button:hover {
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-field-button_set .wpndmhpro--active:hover,
.wpndmhpro-field-button_set .wpndmhpro--active {
    z-index: 2;
    color: var(--wpnd-mhpro-text-light-color);
    border-color: var(--wpnd-mhpro-secondary-color);
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-field-button_set input {
    display: none;
}

/**
 * 03. 07. Field: checkbox, radio
 */
.wpndmhpro-field-checkbox ul,
.wpndmhpro-field-radio ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow-y: auto;
    max-height: 305px;
}

.wpndmhpro-field-checkbox ul li,
.wpndmhpro-field-radio ul li {
    margin-bottom: 6px;
}

.wpndmhpro-field-checkbox ul ul,
.wpndmhpro-field-radio ul ul {
    max-height: none;
}

.wpndmhpro-field-checkbox ul ul li,
.wpndmhpro-field-radio ul ul li {
    margin-left: 8px;
}

.wpndmhpro-field-checkbox ul ul li:first-child,
.wpndmhpro-field-radio ul ul li:first-child {
    margin-left: 0;
}

.wpndmhpro-field-checkbox input,
.wpndmhpro-field-radio input {
    margin: 0 1px;
}

.wpndmhpro-field-checkbox .wpndmhpro--inline-list li,
.wpndmhpro-field-radio .wpndmhpro--inline-list li {
    display: inline-block;
    margin-right: 15px;
}

.wpndmhpro-field-checkbox .wpndmhpro--text,
.wpndmhpro-field-radio .wpndmhpro--text {
    margin-left: 5px;
    vertical-align: middle;
}

.wpndmhpro-field-checkbox .wpndmhpro-checker,
.wpndmhpro-field-radio .wpndmhpro-checker {
    cursor: pointer;
}

/**
 * 03. 08. Field: code_editor
 */
.wpndmhpro-field-code_editor .CodeMirror {
    width: 100%;
    height: 400px;
}

.wpndmhpro-field-code_editor .cm-s-default {
    border: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-field-code_editor textarea {
    width: 100%;
    height: 400px;
}

/**
 * 03. 09. Field: color
 */
.wpndmhpro-field-color>input {
    opacity: 0.75;
    width: 115px;
    max-width: 100%;
}

.wpndmhpro-field-color .button.wp-picker-clear {
    padding: 0 8px;
    margin-left: 6px;
    line-height: 2.54545455;
    min-height: 30px;
}

/**
 * 03. 10. Field: color_group
 */
.wpndmhpro-field-color_group .wpndmhpro--left {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
}

.wpndmhpro-field-color_group .wpndmhpro--title {
    color: rgba(64, 64, 64, 0.5);
    margin-bottom: 5px;
}

/**
 * 03. 16. Field: image_select
 */
.wpndmhpro-field-image_select .wpndmhpro--image,
.wpndmhpro-field-layout_preset .wpndmhpro--image {
    display: inline-block;
    margin: 0 10px 5px 0;
}

.wpndmhpro-field-image_select figure,
.wpndmhpro-field-layout_preset figure {
    cursor: pointer;
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 0;
    vertical-align: bottom;
    border: 2px solid #E6DFEB;
    border-radius: 4px;
    user-select: none;
    transition: all .2s;
}

.wpndmhpro-field-layout_preset.wpndmhpro-video-source figure {
    border: 0;
    outline: 0;
}

.wpndmhpro-field-image_select:not(.wpndmhpro-no-presets-bg) .wpndmhpro--active figure,
.wpndmhpro-field-layout_preset:not(.wpndmhpro-no-presets-bg) .wpndmhpro--active figure {
    border: 2px solid var(--wpnd-mhpro-primary-color);
    background: var(--wpnd-mhpro-primary-color);
    color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-field-layout_preset.wpndmhpro-video-source .wpndmhpro--active figure img {
    border: 2px solid var(--wpnd-mhpro-primary-color);
}

.wpndmhpro-field-image_select .wpndmhpro--active figure:before,
.wpndmhpro-field-layout_preset .wpndmhpro--active figure:before {
    opacity: 1;
}

.wpndmhpro-field-image_select img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.wpndmhpro-field-layout_preset.wpnd-mhpro-layout-presets img {
    cursor: pointer;
    width: 100px;
    margin: 5px;
    border-radius: 4px;
    background: #faf5fd;
}

.wpndmhpro-field-image_select input,
.wpndmhpro-field-layout_preset input {
    display: none;
}

.wpndmhpro-field-layout_preset .wpndmhpro-layout-type {
    margin: 0 0 5px 0;
    font-weight: 500;
    text-align: center;
    display: block;
    font-size: 13px;
}

/**
 * 03. 19. Field: media
 */
.wpndmhpro-field-media .wpndmhpro--placeholder {
    display: flex;
    align-items: flex-start;
}

.wpndmhpro-field-media .wpndmhpro--placeholder input {
    width: 100%;
    margin: 0;
}

.wpndmhpro-field-media .button {
    margin-left: 5px;
}

.wpndmhpro-field-media .hidden+.button {
    margin-left: 0;
}

.wpndmhpro-field-media .wpndmhpro--preview {
    position: relative;
}

/**
 * 03. 22. Field: select
 */
.wpndmhpro-field-select .wpndmhpro-fieldset {
    min-height: 30px;
}

.wpndmhpro-field-select .wpndmhpro-chosen {
    display: none;
}

.wpndmhpro-field-select select {
    max-width: 100%;
    margin: 0;
}

.wpndmhpro-field-select .wpndmhpro-hide-select {
    display: none !important;
}

/**
 * 03. 26. Field: spinner
 */
.wpndmhpro-field-spinner .wpndmhpro--spin {
    display: flex;
}

.wpndmhpro-field-spinner .ui-spinner {
    display: flex;
}

.wpndmhpro-field-spinner .ui-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-width: 20px;
    padding: 0 4px;
    color: #555;
    border: 1px solid #7e8993;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpndmhpro-field-spinner .ui-spinner-button {
    cursor: pointer;
}

.wpndmhpro-field-spinner .ui-spinner-button:hover {
    background-color: #e7e7e7;
}

.wpndmhpro-field-spinner .ui-spinner-button:active {
    background-color: #ddd;
}

.wpndmhpro-field-spinner .ui-spinner-button:before {
    font-family: 'wpnd-mhpro-icons';
    font-weight: 900;
    font-size: 14px;
    line-height: 14px;
}

.wpndmhpro-field-spinner .ui-spinner-down {
    order: 1;
    border-right: 0;
    border-radius: 2px 0 0 2px;
}

.wpndmhpro-field-spinner .ui-spinner-down:before {
    content: "\e906";
}

.wpndmhpro-field-spinner .ui-spinner-input {
    order: 2;
}

.wpndmhpro-field-spinner .wpndmhpro--unit {
    order: 3;
    border-left: 0;
    user-select: none;
}

.wpndmhpro-field-spinner .ui-spinner-up {
    order: 4;
    border-left: 0;
    border-radius: 0 2px 2px 0;
}

.wpndmhpro-field-spinner .ui-spinner-up:before {
    content: "\e901";
}

.wpndmhpro-field-spinner input {
    position: relative;
    z-index: 1;
    width: 50px;
    text-align: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.wpnd-mhpro-views-metabox-tabs .wpndmhpro-field-spinner input,
.wpnd-mhpro-views-layout-metabox .wpndmhpro-field-spinner input,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-field-spinner input {
    width: 60px;
}

.wpndmhpro-field-spinner .ui-button-text,
.wpndmhpro-field-spinner .ui-button-icon,
.wpndmhpro-field-spinner .ui-button-icon-space {
    display: none;
}

/**
 * 03. 23. Field: slider
 */
.wpndmhpro-field-slider .wpndmhpro--wrap {
    display: flex;
    align-items: center;
}

.wpndmhpro-field-slider .wpndmhpro--input {
    display: flex;
    position: relative;
}

.wpndmhpro-field-slider .wpndmhpro--unit {
    display: flex;
    justify-content: center;
    flex-direction: column;
    user-select: none;
    padding: 0 6px;
    font-size: 11px;
    line-height: 1;
    border-radius: 0 2px 2px 0;
    color: #555;
    border: 1px solid #7e8993;
    border-left: 0;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpnd-mhpros_shortcode_header_support,
.wpndmhpro-field-slider .wpndmhpro-slider-ui {
    margin-right: 15px;
}

.wpndmhpro-field-slider input[type="number"] {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 62px;
    padding: 0;
    padding-left: 2px;
    text-align: center;
}

.wpndmhpro-field-slider.brand_carousel_auto_play_ranger input[type="number"] {
    width: 60px;
}

.wpndmhpro-field-slider .wpndmhpro--is-unit {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.wpndmhpro-field-slider .ui-slider {
    position: relative;
    width: 100%;
    height: 3px;
    border: none;
    background: #ddd;
    border-radius: 3px;
}

.wpndmhpro-field-slider .ui-slider {
    position: relative;
    max-width: 400px;
    width: 100%;
    height: 10px;
    margin-right: 15px;
    border: 1px solid #c5c5c5;
    background: var(--wpnd-mhpro-text-light-color);
    border-radius: 3px;
}

.wpndmhpro-field-slider .ui-slider-range {
    height: 10px;
    border: none;
    background: var(--wpnd-mhpro-secondary-color);
    border-radius: 2px;
}

.wpndmhpro-field-slider .ui-slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    top: -5px;
    margin-left: -8px;
    border: 1px solid #c5c5c5;
    background: var(--wpnd-mhpro-text-light-color);
    border-radius: 2px;
}

.wpndmhpro-field-slider .ui-state-active,
.wpndmhpro-field-slider .ui-slider-handle:hover {
    cursor: pointer;
}

/**
 * 03. 22. Field: repeater
 */
.wpndmhpro-field-repeater .wpndmhpro-field-text input {
    width: 100%;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-hidden {
    display: none !important;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-wrapper .wpndmhpro-repeater-item {
    display: table;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #eee;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-wrapper .wpndmhpro-repeater-item h4 {
    font-size: 1em;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-content {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    background-color: #fff;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-content>.wpndmhpro-field {
    padding: 15px;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-helper {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    border-left: 1px solid #eee;
    background-color: #f7f7f7;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-helper i {
    display: inline-block;
    cursor: pointer;
    color: #999;
    padding: 5px;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-helper i:hover {
    color: #555;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-helper-inner {
    width: 75px;
}

.wpndmhpro-field-repeater .wpndmhpro-repeater-alert {
    display: none;
    margin-bottom: 5px;
    padding: 10px 20px;
    color: #a94442;
    border: 1px solid #ebccd1;
    background-color: #f2dede;
}

.wpndmhpro-field-repeater .widget-placeholder {
    height: 50px;
    margin-bottom: 3px;
    border: 1px dashed #f1c40f;
    background-color: #fffae4;
}

.wpndmhpro-field-repeater .ui-sortable-helper {
    height: 50px !important;
    overflow: hidden !important;
    border-color: #ccc !important;
    background-color: #eee !important;
    opacity: 0.5;
}

.wpndmhpro-field-repeater .ui-sortable-helper .wpndmhpro-repeater-helper,
.wpndmhpro-field-repeater .ui-sortable-helper .wpndmhpro-repeater-content {
    display: none;
}

/**
 * 03. 25. Field: sortable
 */
.wpndmhpro-field-sortable .wpndmhpro-field-text input {
    width: 100%;
    max-width: 100%;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable .wpndmhpro-sortable-item {
    display: table;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #eee;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable .wpndmhpro-sortable-item h4 {
    font-size: 1em;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-content {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-content>.wpndmhpro-field {
    padding: 15px;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-helper {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    border-left: 1px solid #eee;
    background-color: #f7f7f7;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-helper i {
    display: inline-block;
    cursor: pointer;
    width: 50px;
    color: #555;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-helper i:hover {
    opacity: 0.5;
}

.wpndmhpro-field-sortable .widget-placeholder {
    /* position: absolute; */
    height: 50px;
    margin-bottom: 3px;
    border: 1px dashed #f1c40f;
    background-color: var(--wpnd-mhpro-text-light-color)ae4;
}

.wpndmhpro-field-sortable .ui-sortable-helper {
    height: 50px !important;
    overflow: hidden !important;
    border-color: #ccc !important;
    background-color: #eee !important;
    opacity: 0.5;
}

.mhpro_video_page_wpnd-mhpro-settings #screen-meta-links,
.mhpro_video_page_wpnd-mhpro-global-style #screen-meta-links,
.mhpro_video_page_wpnd-mhpro-tools #screen-meta-links,
.wpndmhpro-field-sortable .ui-sortable-helper .wpndmhpro-sortable-helper,
.wpndmhpro-field-sortable .ui-sortable-helper .wpndmhpro-sortable-content {
    display: none;
}

.style_sortable_content_tab .wpndmhpro-sortable-item.ui-sortable-handle {
    width: 556px;
}


.style_sortable_content_tab .wpndmhpro-sortable-content>.wpndmhpro-field.wpndmhpro-field-switcher {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-content .wpndmhpro-field.wpndmhpro-field-switcher>.wpndmhpro-fieldset {
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.wpndmhpro-field-sortable .wpndmhpro-sortable-content .wpndmhpro-field.wpndmhpro-field-switcher>.wpndmhpro-title {
    width: 50%;
}

/**
 * 03. 27. Field: switcher
 */
.wpndmhpro-field-switcher .wpndmhpro--switcher {
    float: left;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 28px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    border: 1px solid var(--wpnd-mhpro-mute-color);
    user-select: none;
    -webkit-user-select: none;
}

.wpndmhpro-field-switcher .wpndmhpro--ball {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 18px;
    background-color: var(--wpnd-mhpro-primary-color);
    border-radius: 15px;
    transition: all .1s;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.wpndmhpro-options .wpndmhpro-field-switcher .wpndmhpro--ball {
    top: 4.5px;
}

.wpndmhpro-field-switcher .wpndmhpro--on,
.wpndmhpro-field-switcher .wpndmhpro--off {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 11px;
    line-height: 26px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    padding-right: 28px;
    opacity: 0;
    transition: all .1s;
    color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-field-switcher .wpndmhpro--off {
    padding-right: 0;
    padding-left: 28px;
    opacity: 1;
    color: var(--wpnd-mhpro-text-color);
}

.wpndmhpro-field-switcher .wpndmhpro--active {
    background: var(--wpnd-mhpro-primary-color);
}

.wpndmhpro-field-switcher .wpndmhpro--active .wpndmhpro--on {
    opacity: 1;
}

.wpndmhpro-field-switcher .wpndmhpro--active .wpndmhpro--off {
    opacity: 0;
}

.wpndmhpro-field-switcher .wpndmhpro--active .wpndmhpro--ball {
    left: 100%;
    margin-left: -28px;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpndmhpro-field-switcher .wpndmhpro--label {
    float: left;
    margin-top: 4px;
    margin-left: 8px;
    font-weight: 400;
    color: rgba(64, 64, 64, 0.5);
}

/**
 * 03. 27. Field: tabbed
 */
.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav {
    width: 280px;
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav i {
    margin-right: 7px;
    vertical-align: middle;
}

.wpnd-mhpro-tools .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav {
    width: 100%;
    background: var(--wpnd-mhpro-primary-soft-bg-color);
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    line-height: 0;
}

.wpndmhpro-field-tabbed.wpndmhpro-field {
    display: flex;
    margin: 25px;
}

.wpnd-mhpro-tools .wpndmhpro-field-tabbed.wpndmhpro-field,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed.wpndmhpro-field,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed.wpndmhpro-field {
    display: block;
    margin: 0;
}

.wpnd-mhpro-views-metabox-tabs .wpndmhpro-field-tabbed.wpndmhpro-field,
.wpnd-mhpro-views-layout-metabox .wpndmhpro-field-tabbed.wpndmhpro-field,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-field-tabbed.wpndmhpro-field {
    margin: 0;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-contents {
    float: left;
    width: 100%;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-content {
    border: none;
    background: var(--wpnd-mhpro-text-light-color);
    border-top: 1px solid var(--wpnd-mhpro-mute-color);
    border-bottom-left-radius: 4px;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a:first-child {
    border-top: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpnd-mhpro-views-layout-metabox .wpndmhpro-field-tabbed.wpndmhpro-field:not(.hidden),
.wpnd-mhpro-views-metabox-tabs .wpndmhpro-field-tabbed.wpndmhpro-field:not(.hidden),
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-field-tabbed.wpndmhpro-field:not(.hidden) {
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-content>.wpndmhpro-field {
    padding: 20px;
}

.wpndmhpro-field.wpndmhpro-field-fieldset.wpnd-mhpro-typography {
    padding: 0;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav .wpndmhpro--icon {
    padding-right: 5px;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a {
    display: block;
    padding: 12px 15px;
    margin-top: 0;
    position: relative;
    text-decoration: none;
    color: #343434;
    font-weight: 600;
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
    background: var(--wpnd-mhpro-primary-soft-bg-color);
    font-size: 14px;
}

.wpnd-mhpro-tools .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a {
    display: inline-block;
    padding: 14px 30px;
    line-height: 18px;
    border-bottom: 0;
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a:last-child,
.wpnd-mhpro-views-layout-metabox .wpnd-mhpro-feed-source .wpndmhpro-layout-type {
    margin-bottom: 0px;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a:focus {
    box-shadow: none;
    outline: none;
}

.wpndmhpro-field-tabbed .wpndmhpro-pros-tabbed-nav a:focus,
.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a.wpndmhpro-tabbed-active {
    background-color: var(--wpnd-mhpro-text-light-color);
    -webkit-box-shadow: inset 3px 0 var(--wpnd-mhpro-primary-color);
    box-shadow: inset 3px 0 var(--wpnd-mhpro-primary-color);
    color: var(--wpnd-mhpro-primary-color);
    border-right-color: var(--wpnd-mhpro-text-light-color);
    margin-right: -1px;
    border-right: none;
}

.wpnd-mhpro-tools .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a.wpndmhpro-tabbed-active,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a.wpndmhpro-tabbed-active,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a.wpndmhpro-tabbed-active {
    -webkit-box-shadow: inset 0 3px var(--wpnd-mhpro-primary-color);
    box-shadow: inset 0 3px var(--wpnd-mhpro-primary-color);
    border-right: 1px solid var(--wpnd-mhpro-mute-color);
    margin-bottom: -1px;
    margin-right: 0;
    padding-top: 15px;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a.wpndmhpro-tabbed-active svg path,
.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a.wpndmhpro-tabbed-active svg {
    fill: #1B73E8;
}

.wpndmhpro-tabbed-nav a span {
    margin-right: 6px;
}

.wpndmhpro-tabbed-nav a span svg {
    vertical-align: text-bottom;
}

.lcp-display-tabs .wpndmhpro-tabbed-nav a:nth-last-child(1) span svg {
    vertical-align: middle;
}

.wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav i.wpndmhpro--icon {
    padding-right: 5px;
}

/**
 * 03. 29. Field: text
 */
.wpndmhpro-field-text input {
    width: 30%;
    max-width: 100%;
    margin: 0;
}

/**
 * 03. 31. Field: typography
 */
.wpndmhpro-field-typography textarea,
.wpndmhpro-field-typography select {
    margin: 0;
    min-width: 100%;
    max-width: 100%;
}

.wpndmhpro-field-typography .wpndmhpro--title {
    color: #777;
    margin: 0 0 2px 0;
    font-size: 12px;
}

.wpndmhpro-field-typography .wpndmhpro--title small {
    vertical-align: top;
}

.wpndmhpro-field-typography .wpndmhpro--blocks {
    display: flex;
    flex-wrap: wrap;
}

.wpndmhpro--blocks.wpndmhpro--blocks-brand-color {
    display: inline-flex;
}

.wpndmhpro-field-typography .wpndmhpro--block {
    flex: 1;
    max-width: 100%;
    padding-right: 6px;
    padding-bottom: 6px;
}

.wpndmhpro-field-typography .wpndmhpro--color-blocks .wpndmhpro--block {
    flex: 0 0 auto;
}

.wpndmhpro-field-typography .wpndmhpro--input {
    margin: 0;
    min-width: 100%;
    max-width: 130px;
    padding-right: 0;
}

.wpndmhpro-field-typography .wpndmhpro--input-wrap {
    position: relative;
}

.wpndmhpro-field-typography .wpndmhpro--unit {
    position: absolute;
    z-index: 1;
    right: 15px;
    top: 4px;
    bottom: 4px;
    padding: 2px 6px;
    color: var(--wpnd-mhpro-mute-text-color);
    font-size: 11px;
    line-height: 1;
    border-radius: 2px;
    user-select: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.wpndmhpro-field-typography .wpndmhpro--preview {
    font-size: 16px;
    line-height: 20px;
    padding: 20px;
    color: #222;
    border: 1px solid #eee;
    background-color: var(--wpnd-mhpro-text-light-color);
    border-radius: 2.5px;
    user-select: none;
    -webkit-user-select: none;
    transition: background-color .2s, border-color .2s;
}

.wpndmhpro-field-typography .wpndmhpro--block-preview {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    max-width: 100%;
}

.wpndmhpro-field-typography .wpndmhpro--black-background {
    border-color: #000000;
    background-color: #000000;
}

.wpndmhpro-field-typography .wpndmhpro--toggle {
    position: absolute;
    top: 5px;
    right: 10px;
    color: rgba(64, 64, 64, 0.5);
}

.wpndmhpro-field-typography .wpndmhpro--block-extra-styles {
    margin-top: 5px;
}

/**
 * 03. 34. Field: heading
 */
.wpndmhpro-field-heading {
    font-size: 1.5em;
    font-weight: bold;
    color: #23282d;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

/**
 * 03. 35. Field: subheading
 */
.wpndmhpro-field-subheading {
    font-size: 14px;
    font-weight: bold;
    padding-top: 17px;
    padding-bottom: 17px;
    color: #23282d;
    background-color: #eaecee;
    text-transform: uppercase;
}

/**
 * 03. 37. Field: notice
 */
.wpndmhpro-field-notice {
    background-color: transparent;
}

.wpndmhpro-notice {
    padding: 12px;
    background-color: var(--wpnd-mhpro-text-light-color);
    border-left-style: solid;
    border-left-width: 0;
    padding-left: 0;
    font-size: 14px;
    /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); */
}

.typography-normal-notice .wpndmhpro-notice {
    padding: 0;
}

.wpndmhpro-notice-success {
    border-color: #46b450;
}

.wpndmhpro-notice-info {
    border-color: #339fd4;
}

.wpndmhpro-notice-danger {
    border-color: #dc3232;
}

.wpndmhpro-notice-normal {
    border-color: #222;
}

.wpndmhpro-field.wpndmhpro-field-notice {
    padding: 20px 0 10px 10px;
    border: 0;
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-field.wpndmhpro-field-notice.layout-notice {
    padding: 0px 0 10px 10px;
}

.wpndmhpro-field.wpndmhpro-field-notice .wpndmhpro-notice {
    border: none;
    box-shadow: unset;
}

.wpndmhpro-field.wpndmhpro-field-notice.layout-notice .wpndmhpro-notice {
    padding: 0 12px 12px 12px;
}

/**
 * 03. 36. Field: submessage
 */
.wpndmhpro-field-submessage {
    padding: 0;
    border: 0;
}

.wpndmhpro-field-submessage+.wpndmhpro-field {
    border-top: 0 !important;
}

.wpndmhpro-submessage {
    font-size: 12px;
    padding: 17px 30px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.wpndmhpro-submessage-success {
    color: #3c763d;
    border-color: #d6e9c6;
    background-color: #dff0d8;
}

.wpndmhpro-submessage-info {
    color: #31708f;
    border-color: #bce8f1;
    background-color: #d9edf7;
}

.wpndmhpro-submessage-warning {
    color: #8a6d3b;
    border-color: #faebcc;
    background-color: #fcf8e3;
}

.wpndmhpro-submessage-danger {
    color: #a94442;
    border-color: #ebccd1;
    background-color: #f2dede;
}

.wpndmhpro-field-submessage {
    color: #23282d;
    border-color: #eee;
    padding-top: 0 !important;
    background-color: var(--wpnd-mhpro-text-light-color);
    font-size: 14px;
    padding: 0px 0px 15px 15px;
}

/**
 * 03. 37. Field: notice
 */
.wpndmhpro-field-notice {
    background-color: #f7f7f7;
}

.wpndmhpro-notice {
    padding: 12px;
    background-color: var(--wpnd-mhpro-text-light-color);
    border-left-style: solid;
    border-left-width: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wpndmhpro-notice-success {
    border-color: #46b450;
}

.wpndmhpro-notice-info {
    border-color: #339fd4;
}

.wpndmhpro-notice-warning {
    border-color: #ffbc00;
}

.wpndmhpro-notice-danger {
    border-color: #dc3232;
}

.wpndmhpro-notice-normal {
    border-color: #222;
}

/**
 * 03. 38. Field: number
 */
.wpndmhpro-field-number input {
    width: 100%;
    margin: 0;
}

.wpndmhpro-field-number .wpndmhpro--wrap {
    position: relative;
    float: left;
    width: 100px;
}

.wpndmhpro-field-number .wpndmhpro--unit {
    position: absolute;
    z-index: 1;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 2px 6px;
    color: #666;
    font-size: 11px;
    line-height: 1;
    border-radius: 2px;
    background: #eee;
    user-select: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/**
 * 03. 40. others
 */
.wpndmhpro-help {
    cursor: help;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    font-size: 13px;
    color: #aaa;
}

.wpnd-mhpros_shortcode_header_support .wpndmhpro-help-text,
.wpndmhpro-help .wpndmhpro-help-text {
    display: none;
}

.wpndmhpro--preview {
    max-width: 100%;
}

.wpndmhpro-image-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 6px;
    max-width: 120px;
    max-height: 120px;
    min-width: 40px;
    min-height: 40px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.wpndmhpro-image-preview i {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: 4px;
    top: 4px;
    font-size: 14px;
    width: 22px;
    height: 22px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--wpnd-mhpro-text-light-color);
    background-color: #dd3333;
    opacity: 0.75;
    border-radius: 2px;
    transition: all .2s;
}

.wpndmhpro-image-preview i:hover {
    opacity: 1;
}

.wpndmhpro-image-preview i:focus {
    box-shadow: none;
}

.wpndmhpro-image-preview span {
    position: relative;
    overflow: hidden;
    display: flex;
    height: 100%;
    width: 100%;
}

.wpndmhpro-image-preview img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.wpndmhpro-field-custom .wpndmhpro-field {
    padding: 0;
}

.wpndmhpro-field .chosen-container-single .chosen-single {
    height: 28px;
    line-height: 26px;
}

.wpndmhpro-field .chosen-container-single .chosen-single abbr {
    top: 0;
    right: 20px;
    font-family: 'wpnd-mhpro-icons';
    font-weight: 900;
    font-size: 12px;
    height: 100%;
    width: 18px;
    color: #aaa;
    text-align: center;
    background: none;
}

.wpndmhpro-field .chosen-container-single .chosen-single abbr:before {
    content: "\e962";
}

.wpndmhpro-field .chosen-container-single .chosen-single abbr:hover {
    color: #555;
}

.wpndmhpro-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    font-family: 'wpnd-mhpro-icons';
    font-weight: 900;
    font-size: 12px;
    height: 100%;
    width: 18px;
    color: #aaa;
    text-align: center;
    background: none;
}

.wpndmhpro-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
    content: "\e962";
    display: inline-block;
    padding-top: 3px;
}

.wpndmhpro-field .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    color: #555;
}

.wpndmhpro-field .chosen-container-single .chosen-single div b {
    font-family: 'wpnd-mhpro-icons';
    font-weight: 900;
    font-size: 14px;
    color: #aaa;
    background: none;
    /* font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome"; */
}

.wpndmhpro-field .chosen-container-single .chosen-single div b:before {
    content: "\e91b";
}

.wpndmhpro-field .chosen-container-single .chosen-single div b:hover {
    color: #555;
}

.wpndmhpro-field .chosen-container-multi .chosen-choices li.search-choice-placeholder {
    border: 1px dashed #aaa;
    margin: 3px 5px 3px 0;
}

.wpndmhpro-field .chosen-container-multi .ui-sortable li.search-choice span {
    cursor: move;
}

.wpndmhpro-field .chosen-container-active.chosen-with-drop .chosen-single div b:before {
    content: "\f106";
}

.wpndmhpro-field .chosen-container-single .chosen-single-with-deselect span {
    margin-right: 40px;
}

.wpndmhpro-field .chosen-container-single .chosen-search input[type="text"] {
    background: none;
}

.wpndmhpro-field .chosen-container-single .chosen-search:before {
    font-family: 'wpnd-mhpro-icons';
    font-weight: 900;
    font-size: 11px;
    content: "\f002";
    position: absolute;
    right: 12px;
    top: 10px;
    color: #aaa;
}

.wpndmhpro-field .wp-picker-container {
    display: inline-block;
}

.wpndmhpro-field .wp-picker-container .wp-color-result.button {
    margin-bottom: 0;
}

.wpndmhpro-field .wpndmhpro--transparent-wrap {
    display: none;
    position: relative;
    top: -1px;
    width: 235px;
    padding: 9px 10px;
    border: 1px solid #dfdfdf;
    border-top: none;
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-field .wp-picker-active .wpndmhpro--transparent-wrap {
    display: block;
}

.wpndmhpro-field .wpndmhpro--transparent-slider {
    position: absolute;
    width: 190px;
    margin-left: 2px;
    height: 18px;
}

.wpndmhpro-field .wpndmhpro--transparent-slider .ui-slider-handle {
    position: absolute;
    top: -3px;
    bottom: -3px;
    z-index: 5;
    border-color: #aaa;
    border-style: solid;
    border-width: 4px 3px;
    width: 10px;
    height: 16px;
    margin: 0 -5px;
    background: none;
    cursor: ew-resize;
    opacity: 0.9;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wpndmhpro-field .wpndmhpro--transparent-slider .ui-slider-handle:before {
    content: " ";
    position: absolute;
    left: -2px;
    right: -2px;
    top: -3px;
    bottom: -3px;
    border: 2px solid var(--wpnd-mhpro-text-light-color);
    border-radius: 3px;
}

.wpndmhpro-field .wpndmhpro--transparent-offset {
    height: 18px;
    width: 200px;
    background: url(../images/checkerboard.png) repeat-y center left scroll var(--wpnd-mhpro-text-light-color);
    border-radius: 2px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
}

.wpndmhpro-field .wpndmhpro--transparent-text {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 30px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: rgba(64, 64, 64, 0.5);
}

.wpndmhpro-field .wpndmhpro--transparent-button {
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
    font-size: 11px;
    text-align: center;
    border-radius: 2px;
    padding: 3px 7px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    letter-spacing: 0.2px;
    color: #777;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    transition: background-color .2s, border-color .2s, color .2s;
}

.wpndmhpro-field .wpndmhpro--transparent-active .wp-color-result {
    background-image: url(../images/checkerboard.png);
    background-size: 135px;
    background-position: center left;
    background-color: transparent !important;
}

.wpndmhpro-field .wpndmhpro--transparent-active .wpndmhpro--transparent-button {
    color: var(--wpnd-mhpro-text-light-color);
    border-color: #3ea032;
    background-color: var(--wpnd-mhpro-secondary-color);
}

.wpndmhpro-field .wpndmhpro--transparent-active .fa:before {
    content: "\f205";
}

.wpnd-mhpros_shortcode_header_support .support {
    cursor: pointer;
    position: relative;
}

/**
 * 04. Widget
 */
.wpndmhpro-widgets>.wpndmhpro-field {
    position: relative;
    top: -1px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 12px 15px;
}

.wpndmhpro-widgets>.wpndmhpro-field .wpndmhpro-title {
    float: none;
    width: 100%;
    margin-bottom: 5px;
}

.wpndmhpro-widgets>.wpndmhpro-field .wpndmhpro-fieldset {
    float: none;
    width: 100%;
}

.wpndmhpro-widgets .wpndmhpro-field-text input {
    width: 100%;
}

.wpndmhpro-widgets .wpndmhpro-field-notice .wpndmhpro-notice {
    padding: 15px;
}

.control-section .wpndmhpro-widgets>.wpndmhpro-field {
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px 12px;
}

.wp-block .wpndmhpro-widgets {
    font-size: 13px;
}

.wp-block .wpndmhpro-widgets>.wpndmhpro-field {
    margin-left: -10px;
    margin-right: -10px;
}

.wp-block .wpndmhpro-widgets>.wpndmhpro-field .button-primary {
    color: var(--wpnd-mhpro-text-light-color);
}

.wp-block .wpndmhpro-widgets>.wpndmhpro-field>.wpndmhpro-title>h4 {
    font-size: 13px;
}

/**
 * 05. Widget
 */
.control-section .wpndmhpro-field {
    padding: 0;
}

.control-section .wpndmhpro-field .wpndmhpro-title {
    float: none;
    width: 100%;
    margin-bottom: 6px;
}

.control-section .wpndmhpro-field .wpndmhpro-title h4 {
    display: block;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: inherit;
}

.control-section .wpndmhpro-field .wpndmhpro-fieldset {
    float: none;
    width: 100%;
}

.control-section .wpndmhpro-help {
    top: -5px;
    right: -5px;
}

.control-section .wpndmhpro-field-select select {
    width: 100%;
}

.control-section .wpndmhpro-field-heading {
    color: inherit;
    font-size: 14px;
    line-height: 1em;
    margin-right: -15px;
    margin-left: -15px;
    padding: 15px;
}

.control-section .wpndmhpro-field-subheading {
    color: inherit;
    font-size: 11px;
    margin-right: -15px;
    margin-left: -15px;
    padding: 10px 15px;
}

.control-section .wpndmhpro-subtitle-text {
    margin-top: 4px;
    font-size: 12px;
}

.control-section .wpndmhpro-field-submessage .wpndmhpro-submessage {
    margin-right: -15px;
    margin-left: -15px;
    padding: 15px;
}

.control-section .wpndmhpro-fieldset .wpndmhpro-field-submessage .wpndmhpro-submessage,
.control-section .wpndmhpro-fieldset .wpndmhpro-field-heading,
.control-section .wpndmhpro-fieldset .wpndmhpro-field-subheading {
    margin-left: 0;
    margin-right: 0;
}

.control-section .wpndmhpro-field-date .wpndmhpro--to {
    margin-left: 0;
}

.control-section .wpndmhpro-field-sorter ul li {
    padding: 5px;
}

.control-section .wpndmhpro-field-sorter .wpndmhpro-modules {
    float: none;
    width: 100%;
}

.control-section .wpndmhpro-field-sorter .wpndmhpro-modules:first-child {
    padding-right: 0;
    padding-bottom: 15px;
}

.control-section .wpndmhpro-field-background .wpndmhpro--background-attributes {
    flex-direction: column;
}

.control-section .wpndmhpro-field-spacing input {
    width: 90px;
}

.control-section .wpndmhpro-field-border .wpndmhpro--input {
    flex: 1 50%;
}

.control-section .wpndmhpro-field-border input,
.control-section .wpndmhpro-field-border select {
    width: 100%;
}

.control-section .wpndmhpro-field-spinner input {
    width: 50px;
}

.control-section .wpndmhpro-field-number .wpndmhpro--wrap {
    width: 100%;
}

.control-section .wpndmhpro-field-backup .wpndmhpro-export-data {
    display: none;
}

.control-section .wpndmhpro-field-fieldset .wpndmhpro-fieldset-content {
    border-color: #e5e5e5;
}

.control-section .wpndmhpro-tabbed-content>.wpndmhpro-field,
.control-section .wpndmhpro-sortable-content>.wpndmhpro-field,
.control-section .wpndmhpro-repeater-content>.wpndmhpro-field,
.control-section .wpndmhpro-fieldset-content>.wpndmhpro-field,
.control-section .wpndmhpro-cloneable-content>.wpndmhpro-field,
.control-section .wpndmhpro-accordion-content>.wpndmhpro-field {
    padding: 10px;
}

.control-section .wpndmhpro-tabbed-content>.wpndmhpro-field .wpndmhpro-title,
.control-section .wpndmhpro-sortable-content>.wpndmhpro-field .wpndmhpro-title,
.control-section .wpndmhpro-repeater-content>.wpndmhpro-field .wpndmhpro-title,
.control-section .wpndmhpro-fieldset-content>.wpndmhpro-field .wpndmhpro-title,
.control-section .wpndmhpro-cloneable-content>.wpndmhpro-field .wpndmhpro-title,
.control-section .wpndmhpro-accordion-content>.wpndmhpro-field .wpndmhpro-title {
    margin-bottom: 5px;
}

.control-section .wpndmhpro-tabbed-content>.wpndmhpro-field h4,
.control-section .wpndmhpro-sortable-content>.wpndmhpro-field h4,
.control-section .wpndmhpro-repeater-content>.wpndmhpro-field h4,
.control-section .wpndmhpro-fieldset-content>.wpndmhpro-field h4,
.control-section .wpndmhpro-cloneable-content>.wpndmhpro-field h4,
.control-section .wpndmhpro-accordion-content>.wpndmhpro-field h4 {
    font-size: 12px;
}

.control-section .wpndmhpro-depend-hidden.wpndmhpro-depend-on {
    display: none !important;
}

.control-section .wpndmhpro-depend-visible.wpndmhpro-depend-on {
    border-top: 0 !important;
}

/**
 * 06. Taxonomy
 */
.wpndmhpro-taxonomy {
    max-width: 95%;
}

.wpndmhpro-taxonomy>.wpndmhpro-field {
    border-top: none !important;
}

.wpndmhpro-taxonomy>.wpndmhpro-field-heading {
    font-size: 1.1em;
    padding: 20px !important;
    border: 1px solid #ddd;
}

.wpndmhpro-taxonomy>.wpndmhpro-field-subheading {
    font-size: 12px;
    padding: 15px !important;
    border: 1px solid #ddd;
}

.wpndmhpro-taxonomy>.wpndmhpro-field-submessage .wpndmhpro-submessage {
    padding: 15px;
    border-left-width: 1px;
    border-left-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
}

.wpndmhpro-taxonomy>.wpndmhpro-field-notice {
    background-color: transparent;
}

.wpndmhpro-taxonomy .wpndmhpro-section-title {
    display: block;
    padding: 20px 0 20px 0;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-taxonomy-add-fields>.wpndmhpro-field {
    padding: 8px 0;
}

.wpndmhpro-taxonomy-add-fields>.wpndmhpro-field>.wpndmhpro-title {
    float: none;
    width: 100%;
    padding: 2px 2px 4px 0;
}

.wpndmhpro-taxonomy-add-fields>.wpndmhpro-field>.wpndmhpro-title h4 {
    font-weight: normal;
}

.wpndmhpro-taxonomy-add-fields>.wpndmhpro-field>.wpndmhpro-fieldset {
    float: none;
    width: 100%;
}

.wpndmhpro-taxonomy-add-fields>.wpndmhpro-field>.wpndmhpro-fieldset>.wpndmhpro-help {
    right: -5px;
}

.wpndmhpro-taxonomy-add-fields+p.submit {
    margin-top: 0;
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field {
    padding: 20px 0;
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field>.wpndmhpro-title {
    width: 200px;
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field>.wpndmhpro-title h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    vertical-align: middle;
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field>.wpndmhpro-fieldset {
    width: calc(100% - 220px);
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field>.wpndmhpro-fieldset>.wpndmhpro-help {
    top: -5px;
    right: -5px;
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field-submessage {
    margin: 20px 0;
}

.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field-subheading,
.wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field-heading {
    margin: 20px 0;
    border: 1px solid #ddd;
}

.wpndmhpro-taxonomy .wpndmhpro-field-border .wpndmhpro-fieldset {
    display: flex;
    flex-wrap: wrap;
}

.wpndmhpro-taxonomy .wpndmhpro-field-border .wpnd-mhpro-spacing-pixel select {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/**
 * 08. Nav Menu
 */
.wpndmhpro-nav-menu-options {
    clear: both;
    float: left;
    width: 100%;
}

.wpndmhpro-nav-menu-options>.wpndmhpro-fields {
    margin-left: -10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.wpndmhpro-nav-menu-options>.wpndmhpro-fields>.wpndmhpro-field {
    padding: 12px 14px 12px 12px;
}

.wpndmhpro-nav-menu-options>.wpndmhpro-fields>.wpndmhpro-field .wpndmhpro-title {
    float: none;
    width: 100%;
    margin-bottom: 5px;
}

.wpndmhpro-nav-menu-options>.wpndmhpro-fields>.wpndmhpro-field .wpndmhpro-fieldset {
    float: none;
    width: 100%;
}

.wpndmhpro-nav-menu-options .wpndmhpro-field-text input {
    width: 100%;
}

.wpndmhpro-nav-menu-options .wpndmhpro-field-notice .wpndmhpro-notice {
    padding: 15px;
}

.wpndmhpro-nav-menu-title {
    padding: 12px 14px 12px 12px;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.wpnd-mhpro-tools .wpndmhpro-field-tabbed .wpndmhpro-tabbed-content,
.wpnd-mhpro-tools .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a:first-child,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed .wpndmhpro-tabbed-content,
.wpnd-mhpro-global-style .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a:first-child,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed .wpndmhpro-tabbed-content,
.wpnd-mhpro-settings .wpndmhpro-field-tabbed .wpndmhpro-tabbed-nav a:first-child,
.wpndmhpro-nav-menu-title:first-child {
    border-top: 0;
}

.wpndmhpro-nav-menu-title h4 {
    margin: 0;
    padding: 0;
    color: #23282d;
}

.wpndmhpro-nav-menu-icon {
    margin-right: 5px;
}

/**
 * 06. Profile
 */
.wpndmhpro-profile-options>h2>.fa {
    padding-right: 7px;
}

.wpndmhpro-profile-options>.wpndmhpro-field {
    max-width: 750px;
    padding: 15px 0;
    border-top: none !important;
}

.wpndmhpro-profile-options>.wpndmhpro-field>.wpndmhpro-title {
    width: 200px;
}

.wpndmhpro-profile-options>.wpndmhpro-field>.wpndmhpro-title h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    vertical-align: middle;
}

.wpndmhpro-profile-options>.wpndmhpro-field>.wpndmhpro-fieldset {
    width: calc(100% - 220px);
}

.wpndmhpro-profile-options>.wpndmhpro-field>.wpndmhpro-fieldset>.wpndmhpro-help {
    top: -15px;
    right: -5px;
}

.wpndmhpro-profile-options>.wpndmhpro-field-heading {
    font-size: 1.1em;
}

.wpndmhpro-profile-options>.wpndmhpro-field-subheading {
    font-size: 12px;
}

.wpndmhpro-profile-options>.wpndmhpro-field-subheading,
.wpndmhpro-profile-options>.wpndmhpro-field-heading {
    margin: 10px 0;
    padding: 15px !important;
    border: 1px solid #ddd;
}

.wpndmhpro-profile-options>.wpndmhpro-field-submessage {
    margin: 20px 0;
}

.wpndmhpro-profile-options>.wpndmhpro-field-submessage .wpndmhpro-submessage {
    padding: 10px;
    border-left-width: 1px;
    border-left-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
}

.wpndmhpro-profile-options>.wpndmhpro-field-notice {
    background-color: transparent;
}

/**
 * 09. Modal
 */
.wpndmhpro-modal {
    position: fixed;
    z-index: 100101;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wpndmhpro-modal.hidden {
    display: none;
}

.wpndmhpro-modal-icon {
    z-index: 100102;
}

.wpndmhpro-modal-table {
    display: table;
    width: 100%;
    height: 100%;
}

.wpndmhpro-modal-table-cell {
    display: table-cell;
    vertical-align: middle;
    margin: 100px 0;
}

.wpndmhpro-modal-inner {
    background-color: var(--wpnd-mhpro-text-light-color);
    position: relative;
    z-index: 10;
    width: 760px;
    height: 750px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.wpndmhpro-modal-content {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 595px;
}

.wpndmhpro-modal-content .wpndmhpro-shortcode-button {
    display: none;
}

.wpndmhpro-modal-content .wpndmhpro-field {
    padding: 15px 30px 15px 15px;
}

.wpndmhpro-modal-content a:active,
.wpndmhpro-modal-content a:focus {
    outline: none;
    box-shadow: none;
}

.wpndmhpro-modal-content h4 {
    font-size: 13px;
}

.wpndmhpro-modal-content h4 small {
    font-style: italic;
    font-weight: 400;
    color: #aaa;
}

.wpndmhpro-modal-title {
    position: relative;
    background-color: #fcfcfc;
    border-bottom: 1px solid #ddd;
    height: 36px;
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
    padding: 0 36px 0 16px;
}

.wpndmhpro-modal-header {
    width: 100%;
    padding: 14px 0;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    border-bottom: 1px solid #ddd;
}

.wpndmhpro-modal-header select {
    display: block;
    width: 250px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1;
    height: 30px;
    min-height: 30px;
    background-color: var(--wpnd-mhpro-text-light-color);
}

.wpndmhpro-modal-close {
    color: #666;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
}

.wpndmhpro-modal-close:before {
    font: normal 20px/36px dashicons;
    content: "\f158";
    vertical-align: top;
    width: 36px;
    height: 36px;
}

.wpndmhpro-modal-close:hover {
    opacity: 0.5;
}

.wpndmhpro-modal-insert-wrapper {
    text-align: center;
    width: 100%;
    padding: 15px 0;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    border-top: 1px solid #ddd;
}

.wpndmhpro-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

/**
 * 09. 01. Shortcode Modal
 */
.wpndmhpro--repeatable {
    padding: 15px 15px 0 15px;
}

.wpndmhpro--repeat-button-block {
    text-align: center;
    padding-bottom: 15px;
}

.wpndmhpro--repeat-shortcode {
    position: relative;
    margin-bottom: 15px;
    border: 1px dashed #ddd;
}

.wpndmhpro--repeat-shortcode:first-child .wpndmhpro-repeat-remove {
    display: none;
}

.wpndmhpro--repeat-shortcode .wpndmhpro-repeat-remove {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    font-size: 11px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 2px;
    color: var(--wpnd-mhpro-text-light-color);
    background-color: #e14d43;
    opacity: 0.5;
}

.wpndmhpro--repeat-shortcode .wpndmhpro-repeat-remove:hover {
    opacity: 0.5;
}

.wpndmhpro-shortcode-single .wpndmhpro-modal-inner {
    height: 750px;
}

.wpndmhpro-shortcode-single .wpndmhpro-modal-content {
    height: 652px;
}

.elementor-editor-active .wpndmhpro-shortcode-button {
    margin-left: 5px;
}

.elementor-editor-active .wpndmhpro-modal .hidden {
    display: none !important;
}

/**
 * 09. 02. Gutenberg Modal
 */
.wpndmhpro-shortcode-block {
    text-align: center;
    padding: 14px;
    font-size: 13px;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wpndmhpro-shortcode-block .components-button {
    margin-bottom: 10px;
}

/**
 * 09. 03. Icon Modal
 */
.wpndmhpro-modal-icon .wpndmhpro-icon-title {
    padding: 15px 0;
    margin: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #eee;
    background-color: #f7f7f7;
}

.wpndmhpro-modal-icon .wpndmhpro-modal-header {
    text-align: center;
}

.wpndmhpro-modal-icon .wpndmhpro-icon-search {
    width: 50%;
    height: 40px;
    line-height: 40px;
}

.wpndmhpro-modal-icon i {
    cursor: pointer;
    display: inline-block;
    margin: 4px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    color: #555;
    text-align: center;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    border-radius: 2px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.wpndmhpro-modal-icon i:hover {
    color: var(--wpnd-mhpro-text-light-color);
    border-color: #222;
    background-color: #222;
}

.wpndmhpro-modal-icon .wpndmhpro-modal-content {
    padding: 10px;
    height: 618px;
}

.wpndmhpro-modal-icon .wpndmhpro-error-text {
    padding: 10px;
}

.wpndmhpro-modal-loading {
    display: none;
    position: absolute;
    left: 15px;
    top: 15px;
}

.wpndmhpro-loading {
    position: relative;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
}

.wpndmhpro-loading:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    content: "";
    margin-top: -2px;
    margin-left: -2px;
    background-color: white;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: wpndmhproLoader;
    border-radius: 4px;
}

@keyframes wpndmhproLoader {
    0% {
        transform: rotate(0deg) translateX(-6px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(-6px) rotate(-360deg);
    }
}

/**
 * 10. Helper
 */
.wpndmhpro-subtitle-text {
    margin-top: 6px;
    font-weight: 400;
    color: rgba(64, 64, 64, 0.5);
    font-style: italic;
}

.wpndmhpro-desc-text {
    clear: both;
    float: left;
    width: 100%;
    margin-top: 6px;
    font-weight: 400;
    font-size: 14px;
    color: var(--wpnd-mhpro-mute-text-color);
}

.wpndmhpro-error-text {
    margin-top: 6px;
    color: #d02c21;
}

.wpndmhpro-before-text {
    margin-bottom: 6px;
}

.wpndmhpro-after-text {
    margin-top: 6px;
}

.wpndmhpro-metabox-hide {
    display: none !important;
}

.wpndmhpro-metabox-show {
    display: block !important;
}

.wpndmhpro-depend-hidden.wpndmhpro-depend-on {
    display: none;
}

.wpndmhpro-depend-visible.wpndmhpro-depend-on {
    display: block;
    opacity: 0.75;
    filter: grayscale(1);
    user-select: none;
    border-top: 1px solid #eee;
}

.wpndmhpro-depend-visible.wpndmhpro-depend-on .clear:before {
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: #eee;
    opacity: 0.25;
    z-index: 10;
}

.wpnd-mhpro-tools .wpndmhpro-buttons input.button.wpndmhpro-reset-section,
.wpnd-mhpro-tools .wpndmhpro-buttons input.button.wpndmhpro-warning-primary,
.wpnd-mhpro-global-style .wpndmhpro-buttons input.button.wpndmhpro-reset-section,
.wpnd-mhpro-global-style .wpndmhpro-buttons input.button.wpndmhpro-warning-primary,
.wpnd-mhpro-settings .wpndmhpro-buttons input.button.wpndmhpro-reset-section,
.wpnd-mhpro-settings .wpndmhpro-buttons input.button.wpndmhpro-warning-primary {
    color: var(--wpnd-mhpro-text-light-color);
    border-width: 0;
    background: var(--wpnd-mhpro-danger-color);

}

.wpnd-mhpro-tools .wpndmhpro-buttons input.button.wpndmhpro-reset-section:hover,
.wpnd-mhpro-tools .wpndmhpro-buttons .wpndmhpro-warning-primary:hover,
.wpnd-mhpro-tools .wpndmhpro-buttons input.button.wpndmhpro-warning-primary:focus,
.wpnd-mhpro-global-style .wpndmhpro-buttons input.button.wpndmhpro-reset-section:hover,
.wpnd-mhpro-global-style .wpndmhpro-buttons .wpndmhpro-warning-primary:hover,
.wpnd-mhpro-global-style .wpndmhpro-buttons input.button.wpndmhpro-warning-primary:focus,
.wpnd-mhpro-settings .wpndmhpro-buttons input.button.wpndmhpro-reset-section:hover,
.wpnd-mhpro-settings .wpndmhpro-buttons .wpndmhpro-warning-primary:hover,
.wpnd-mhpro-settings .wpndmhpro-buttons input.button.wpndmhpro-warning-primary:focus {
    border-color: var(--wpnd-mhpro-danger-hover-color);
    background: var(--wpnd-mhpro-danger-hover-color);
}

.wpnd-mhpro-tools .wpndmhpro-buttons .wpndmhpro-warning-primary:focus,
.wpnd-mhpro-global-style .wpndmhpro-buttons .wpndmhpro-warning-primary:focus,
.wpnd-mhpro-settings .wpndmhpro-buttons .wpndmhpro-warning-primary:focus {
    box-shadow: 0 0 0 1px var(--wpnd-mhpro-text-light-color), 0 0 0 3px #bd2130 !important;
}

.wpnd-mhpro-tools .wpndmhpro-buttons .wpndmhpro-warning-primary:active,
.wpnd-mhpro-global-style .wpndmhpro-buttons .wpndmhpro-warning-primary:active,
.wpnd-mhpro-settings .wpndmhpro-buttons .wpndmhpro-warning-primary:active {
    border-color: #bd2130;
    background: #bd2130;
}

.wpndmhpro-form-result {
    display: none;
    float: left;
    padding: 0 8px;
    margin-right: 4px;
    font-size: 11px;
    line-height: 30px;
    user-select: none;
    border-radius: 2px;
}

.wpndmhpro-form-show {
    display: block;
}

.wpndmhpro-form-success {
    color: var(--wpnd-mhpro-text-light-color);
    background-color: #46b450;
}

.wpndmhpro-form-warning {
    color: #8a6d3b;
    background-color: #faebcc;
}

.wpndmhpro-label-error {
    position: relative;
    top: -2px;
    display: inline-block;
    font-size: 10px;
    line-height: 10px;
    height: 10px;
    width: 10px;
    padding: 1px;
    font-style: normal;
    text-align: center;
    color: var(--wpnd-mhpro-text-light-color);
    vertical-align: middle;
    background-color: #e10000;
    border-radius: 2px;
}

.wpndmhpro-no-option {
    padding: 30px;
}

.wpndmhpro-input-number {
    -moz-appearance: textfield;
}

.wpndmhpro-fa5-shims .wpndmhpro .fas,
.wpndmhpro-fa5-shims .wpndmhpro .far,
.wpndmhpro-fa5-shims .wpndmhpro .fab {
    font-family: "FontAwesome";
    font-style: normal;
}

/**
 * 11. Welcome Page
 */
.wpndmhpro-welcome-wrap {
    position: relative;
    margin: 25px 40px 0 20px;
    font-size: 15px;
    max-width: 1200px;
}

.wpndmhpro-welcome-wrap p {
    font-size: 14px;
    line-height: 1.5;
}

.wpndmhpro-welcome-wrap h1 {
    margin: 0.2em 200px 0 0;
    padding: 0;
    color: #32373c;
    line-height: 1.2em;
    font-size: 2.8em;
    font-weight: 400;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    height: 160px;
    width: 140px;
    background-image: linear-gradient(45deg, #2d67cb, #ad19f3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25), inset 0 0 0 4px rgba(0, 0, 0, 0.25);
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--effects i {
    position: absolute;
    width: 200px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.15);
    transform: rotate(-45deg);
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--effects i:nth-child(1) {
    bottom: -20px;
    right: -70px;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--effects i:nth-child(2) {
    bottom: -35px;
    right: -80px;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--effects i:nth-child(3) {
    bottom: -50px;
    right: -90px;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--effects i:nth-child(4) {
    bottom: -65px;
    right: -100px;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--wp-logos {
    position: relative;
    padding-top: 25px;
    text-align: center;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--wp-logo {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/wp-logo.svg);
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--wp-plugin-logo {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid var(--wpnd-mhpro-text-light-color);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/wp-plugin-logo.svg);
    border-radius: 100%;
    vertical-align: middle;
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--text {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    color: var(--wpnd-mhpro-text-light-color);
    font-size: 13px;
    line-height: 1.2em;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.wpndmhpro-welcome-wrap .wpndmhpro-logo .wpndmhpro--version {
    top: auto;
    left: auto;
    right: 8px;
    bottom: 4px;
    font-size: 11px;
    text-transform: lowercase;
}

.wpndmhpro-welcome-wrap .wpndmhpro-about-text {
    font-weight: 400;
    line-height: 1.6em;
    font-size: 19px;
    margin: 1em 200px 1em 0;
    color: #555d66;
}

.wpndmhpro-welcome-wrap .wpndmhpro-demo-button {
    margin: 1em 200px 2em 0;
}

#delete-action,
.wpndmhpro-welcome-wrap .nav-tab-wrapper {
    margin-bottom: 20px;
}

.wpndmhpro-welcome-wrap ul {
    list-style-type: disc;
    padding-left: 15px;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col {
    float: left;
    padding-right: 20px;
    box-sizing: border-box;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col-2 {
    width: 50%;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col-3 {
    width: 33.333%;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col-4 {
    width: 25%;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col-5 {
    width: 20%;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col-last {
    padding-right: 0;
}

.wpndmhpro-welcome-wrap .wpndmhpro--col-upgrade {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.wpndmhpro--table-compare thead td,
.wpndmhpro--table-compare tfoot td {
    text-align: center;
}

.wpndmhpro--table-compare td {
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
}

.wpndmhpro--table-compare td:first-child {
    text-align: left;
}

.wpndmhpro--table-compare tfoot td {
    padding: 15px 0;
}

.wpndmhpro--table-compare .fa {
    font-size: 18px;
}

.wpndmhpro--table-compare .wpnd-mhpro-check-circle {
    color: #46b450;
}

.wpndmhpro--table-compare .fa-times-circle {
    color: #dc3232;
}

.wpndmhpro-welcome-cols {
    clear: both;
    margin: 20px 0;
    background-color: var(--wpnd-mhpro-text-light-color);
    padding: 0 0;
    border-radius: 2px;
    border: 1px solid #e5e5e5;
}

.wpndmhpro-welcome-cols .wpndmhpro--col {
    width: 33.333%;
    float: left;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    min-height: 200px;
    border-right: 1px solid #e5e5e5;
}

.wpndmhpro-welcome-cols .wpndmhpro--left,
.wpndmhpro-welcome-cols .wpndmhpro--block {
    float: left;
    width: 20%;
    padding: 0 30px;
    text-align: center;
    box-sizing: border-box;
}

.wpndmhpro-welcome-cols .wpndmhpro--block {
    width: 80%;
}

.wpnd-mhpro-field-divider,
#wpnd_mhpro_metabox_layouts .wpndmhpro-field.wpnd-mhpro-field-divider,
#wpnd_mhpro_views_metaboxes .wpndmhpro-field.wpnd-mhpro-field-divider,
.wpndmhpro-welcome-cols .wpndmhpro--col-first {
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
}

.wpndmhpro-field.wpndmhpro-field-notice.wpnd-mhpro-youtube-api-notice {
    margin-top: -15px;
    padding-top: 0;
}

.wpndmhpro-welcome-cols .wpndmhpro--last {
    border-right: none;
}

.wpndmhpro-welcome-cols .wpndmhpro--space {
    height: 20px;
}

.wpndmhpro-welcome-cols .wpndmhpro--icon {
    display: inline-block;
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--wpnd-mhpro-text-light-color);
    background-color: #555;
    border-radius: 30px;
}

.wpndmhpro-welcome-cols .wpndmhpro--active {
    background-color: #5cb85c;
}

.wpndmhpro-welcome-cols .wpndmhpro--deactive {
    background-color: #e14d43;
}

.wpndmhpro-welcome-cols .wpndmhpro--title {
    font-weight: bold;
    display: block;
}

.wpndmhpro-welcome-cols p:last-child {
    margin-bottom: 0;
}

.wpndmhpro-features-cols .wpndmhpro--key-features {
    width: 30%;
}

.wpndmhpro-features-cols .wpndmhpro--available-fields {
    width: 70%;
}

.wpndmhpro-code-block {
    margin: 20px 0;
    padding: 5px 20px;
    background-color: var(--wpnd-mhpro-text-light-color);
    border-radius: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.wpndmhpro-code-block pre {
    font-size: 13px;
    color: #0073aa;
}

.wpndmhpro-code-block pre span {
    color: rgba(64, 64, 64, 0.5);
}

.wpndmhpro--table-fields td {
    font-size: 14px;
}

.wpndmhpro--upgrade a {
    color: #5cb85c;
    font-weight: bold;
}

.wpndmhpro--upgrade a:focus,
.wpndmhpro--upgrade a:hover {
    color: #4aa14a;
    outline: none;
    box-shadow: none;
}

@media only screen and (max-width: 782px) {
    .wpndmhpro-welcome-cols .wpndmhpro--col {
        width: 100%;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .wpndmhpro-features-cols .wpndmhpro--key-features {
        width: 100%;
    }

    .wpndmhpro-features-cols .wpndmhpro--available-fields {
        width: 100%;
    }
}

/**
 * 12. Responsive
 */
@media only screen and (max-width: 1200px) {
    .wpndmhpro-metabox .wpndmhpro-field .wpndmhpro-title {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .wpndmhpro-metabox .wpndmhpro-field .wpndmhpro-fieldset {
        float: none;
        width: 100%;
    }
}

@media only screen and (max-width: 782px) {
    .wpndmhpro-header-inner {
        text-align: center;
    }

    .wpndmhpro-header-inner h1 {
        width: 100%;
        margin-bottom: 10px;
    }

    .wpndmhpro-form-result {
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .wpndmhpro-search,
    .wpndmhpro-header-right,
    .wpndmhpro-header-left {
        width: 100%;
    }

    .wpndmhpro-search {
        text-align: center;
        margin-bottom: 15px;
    }

    .wpndmhpro-footer {
        text-align: center;
    }

    .wpndmhpro-buttons {
        float: none;
    }

    .wpndmhpro-copyright {
        float: none;
        margin-top: 10px;
    }

    .wpndmhpro-nav,
    .wpndmhpro-expand-all,
    .wpndmhpro-reset-section,
    .wpndmhpro-nav-background {
        display: none !important;
    }

    .wpndmhpro-nav-normal+.wpndmhpro-content {
        margin-left: 0;
    }

    .wpndmhpro-section-title,
    .wpndmhpro-section {
        display: block !important;
    }

    .wpndmhpro-field .wpndmhpro-title {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .wpndmhpro-field .wpndmhpro-fieldset {
        float: none;
        width: 100%;
    }

    .wpndmhpro-field-color .button.wp-picker-clear {
        padding: 0 8px;
        line-height: 2.14285714;
        min-height: 32px;
    }

    .wpndmhpro-profile-options>.wpndmhpro-field>.wpndmhpro-title,
    .wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field>.wpndmhpro-title {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .wpndmhpro-profile-options>.wpndmhpro-field>.wpndmhpro-fieldset,
    .wpndmhpro-taxonomy-edit-fields>.wpndmhpro-field>.wpndmhpro-fieldset {
        float: none;
        width: 100%;
    }

    .wpndmhpro-nav-menu-options>.wpndmhpro-fields {
        margin-left: -10px;
        margin-right: -10px;
    }

    .wpndmhpro-nav-menu-options>.wpndmhpro-fields>.wpndmhpro-field {
        padding: 10px;
    }
}

@media only screen and (max-width: 782px) {
    .wpndmhpro-modal .wpndmhpro-modal-inner {
        width: 90%;
    }
}

@media only screen and (max-height: 750px) {
    .wpndmhpro-modal .wpndmhpro-modal-inner {
        height: auto;
    }

    .wpndmhpro-modal .wpndmhpro-modal-content {
        height: calc(100vh - 200px);
    }
}

/**
 * Chosen JS Styles
 */
.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    user-select: none;
}

.chosen-container * {
    box-sizing: border-box;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    z-index: 1010;
    width: 100%;
    max-width: 390px;
    border: 1px solid var(--wpnd-mhpro-primary-color);
    margin-top: 5px;
    border-radius: 4px;
    background: var(--wpnd-mhpro-primary-soft-bg-color);
    box-shadow: 0 4px 5px rgba(136, 44, 225, 0.15);
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
    clip: auto;
    clip-path: none;
}

.chosen-container a {
    cursor: pointer;
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
    margin-right: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    color: rgba(64, 64, 64, 0.5)999;
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
    content: ":";
    padding-left: 2px;
    vertical-align: top;
}

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 25px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: var(--wpnd-mhpro-text-light-color);
    background: linear-gradient(var(--wpnd-mhpro-text-light-color) 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background-clip: padding-box;
    box-shadow: 0 0 3px var(--wpnd-mhpro-text-light-color) inset, 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px;
}

.chosen-container-single .chosen-default {
    color: rgba(64, 64, 64, 0.5);
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 1px;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
}

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 2px 2px;
    background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
    color: var(--wpnd-mhpro-text-dark-color);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    border-radius: 4px;
    -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container .chosen-results li.highlighted {
    background-color: var(--wpnd-mhpro-primary-color);
    background-image: linear-gradient(var(--wpnd-mhpro-primary-color) 20%, var(--wpnd-mhpro-primary-hover-color) 90%);
    color: var(--wpnd-mhpro-text-light-color);
}

.chosen-container .chosen-results li.no-results {
    color: #777;
    display: list-item;
    background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: bold;
    cursor: default;
}

.chosen-container .chosen-results li.group-option {
    padding-left: 15px;
}

.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #aaa;
    /* background-color: var(--wpnd-mhpro-primary-soft-bg-color); */
    cursor: text;
}

.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    margin: 1px 0;
    padding: 0;
    outline: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none;
    color: rgba(64, 64, 64, 0.5);
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
    width: 25px;
    height: 25px;
    min-height: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 6px;
    border: 1px solid #aaa;
    max-width: 100%;
    border-radius: 3px;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    background-image: linear-gradient( var(--wpnd-mhpro-primary-soft-bg-color) 20%, var(--wpnd-mhpro-primary-soft-bg-color) 50%, var(--wpnd-mhpro-primary-soft-bg-color) 52%, var(--wpnd-mhpro-primary-soft-bg-color) 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    box-shadow: 0 0 2px var(--wpnd-mhpro-text-light-color) inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 13px;
    cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
    word-wrap: break-word;
    white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    background-image: linear-gradient(#f4f4f4 20%, var(--wpnd-mhpro-mute-color) 50%, var(--wpnd-mhpro-mute-color) 52%, #eee 100%);
    color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4;
}

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container-active .chosen-single {
    border: 1px solid var(--wpnd-mhpro-primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #aaa;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-image: linear-gradient(#eee 20%, var(--wpnd-mhpro-text-light-color) 80%);
    box-shadow: 0 1px 0 var(--wpnd-mhpro-text-light-color) inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: transparent;
}

.chosen-container-active .chosen-choices {
    border: 1px solid var(--wpnd-mhpro-primary-color);
    box-shadow: 0 0 5px rgba(136, 44, 225, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
    color: var(--wpnd-mhpro-text-color) !important;
}

.chosen-disabled {
    opacity: 0.5 !important;
    cursor: default;
}

.chosen-disabled .chosen-single {
    cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default;
}

.chosen-rtl {
    text-align: right;
}

.chosen-rtl .chosen-single {
    overflow: visible;
    padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
    margin-right: 0;
    margin-left: 26px;
    direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
    margin-left: 38px;
}

.chosen-rtl .chosen-single div {
    right: auto;
    left: 3px;
}

.chosen-rtl .chosen-single abbr {
    right: auto;
    left: 26px;
}

.chosen-rtl .chosen-choices li {
    float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
    direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
    margin: 3px 5px 3px 0;
    padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
    right: auto;
    left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
    padding-right: 15px;
    padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
    padding: 4px 5px 4px 20px;
    direction: rtl;
}

/* Custom scrollbar for Chrome, Edge, Safari */
.chosen-container .chosen-results::-webkit-scrollbar {
    width: 6px; /* Scrollbar width */
    border-radius: 4px;
}

.chosen-container .chosen-results::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track background */
    border-radius: 4px;
}

.chosen-container .chosen-results::-webkit-scrollbar-thumb {
    background: #888; /* Scroll thumb color */
    border-radius: 4px;
}

.chosen-container .chosen-results::-webkit-scrollbar-thumb:hover {
    background: #555; /* Hover effect */
}

/* Firefox scrollbar */
.chosen-container .chosen-results {
    scrollbar-width: thin; /* thin | auto | none */
    scrollbar-color: var(--wpnd-mhpro-primary-color) var(--wpnd-mhpro-primary-soft-bg-color); /* thumb color | track color */
}

/**
 * Admin Style.
 */
.post-type-mhpro_views #astra_settings_meta_box,
.post-type-mhpro_views.post-php h1.wp-heading-inline,
.post-type-mhpro_views.post-php .page-title-action,
.post-type-mhpro_views.post-new-php .wp-heading-inline,
.post-type-mhpro_views #edit-slug-box,
.post-type-mhpro_views #submitdiv .handle-actions,
.post-type-mhpro_views #submitdiv #minor-publishing-actions,
#wpnd_mhpro_copy_views_shortcode .handle-actions,
.wpnd-mhpro-views-metabox-tabs .handle-actions,
.wpnd-mhpro-views-layout-metabox .handle-actions,
.wpnd-mhpro-views-metabox-tabs .handle-actions,
.wpnd-mhpro-views-layout-metabox .handle-actions,
.wpnd-mhpro-views-layout-metabox .handlediv,
.wpnd-mhpro-views-metabox-tabs .handlediv,
.wpnd-mhpro-views-layout-metabox .handlediv,
.wpnd-mhpro-views-layout-metabox .hndle,
.wpnd-mhpro-views-metabox-tabs .hndle,
.wpnd-mhpro-views-layout-metabox .hndle,
.wpnd-mhpro-views-layout-metabox .postbox-header,
.post-type-sp_logo_carousel .postbox-header,
.wpnd-mhpro-views-metabox-tabs .postbox-header,
.wpnd-mhpro-views-layout-metabox .postbox-header,
.wpnd-mhpro-single-metabox-tabs .postbox-header {
    display: none;
}

.post-type-mhpro_views #submitdiv .postbox-header,
#wpnd_mhpro_copy_views_shortcode .postbox-header {
    pointer-events: none;
}

.wpndmhpro-nav-inline ul li:first-child a {
    border-top-left-radius: 4px;
}

.wpnd-mhpro-views-layout-metabox .wpndmhpro-theme-light .wpndmhpro-nav ul li a,
.wpnd-mhpro-views-metabox-tabs .wpndmhpro-theme-light .wpndmhpro-nav ul li a,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-theme-light .wpndmhpro-nav ul li a {
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpnd-mhpro-views-metabox-tabs .wpndmhpro-theme-light .wpndmhpro-nav-inline>ul li .wpndmhpro-active,
.wpnd-mhpro-views-layout-metabox .wpndmhpro-theme-light .wpndmhpro-nav-inline>ul li .wpndmhpro-active,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-theme-light .wpndmhpro-nav-inline>ul li .wpndmhpro-active {
    color: var(--wpnd-mhpro-text-light-color);
    background-color: var(--wpnd-mhpro-primary-color);
    font-weight: 600;
}

.wpndmhpro-video-source figure img {
    border: 2px solid var(--wpnd-mhpro-mute-color);
    border-radius: 4px;
    padding: 12px;
}

.wpnd-mhpro-taxonomy-style.wpndmhpro-video-source figure img {
    padding: 7px;
    width: 90px;
}

.wpnd-mhpro-views-layout-metabox .wpndmhpro-field+.wpndmhpro-field,
.wpnd-mhpro-views-metabox-tabs .wpndmhpro-field+.wpndmhpro-field,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-field+.wpndmhpro-field {
    border: none;
}

.wpnd-mhpro-views-layout-metabox.postbox {
    margin-bottom: 0;
    border-bottom: none;
}

.wpnd-mhpro-views-layout-metabox .wpndmhpro-field-border .wpnd-mhpro-spacing-pixel>select,
.wpnd-mhpro-views-metabox-tabs .wpndmhpro-field-border .wpnd-mhpro-spacing-pixel>select,
.wpnd-mhpro-single-metabox-tabs .wpndmhpro-field-border .wpnd-mhpro-spacing-pixel>select {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/**
* Header style.
*/
.wpndmhpro-field.wpndmhpro-field-heading.wpndmhpro-options-header {
    background: var(--wpnd-mhpro-text-light-color);
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    display: flex;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    margin-left: -20px;
    top: 32px;
    position: sticky;
    z-index: 9999;
}

.wpndmhpro-layouts-header img {
    padding-left: 3px;
}

.wpndmhpro-field.wpndmhpro-field-heading.wpndmhpro-options-header .heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpnd-mhpro-pro-version,
.wpndmhpro-field.wpndmhpro-field-heading.wpndmhpro-options-header .wpnd-mhpro-pro-version {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    border: 1px solid var(--wpnd-mhpro-mute-color);
    padding: 3px 10px;
    border-radius: 15px;
    margin: 0 10px;
}

.wpndmhpro-options-header>img {
    max-width: 180px;
    vertical-align: middle;
}

.wpndmhpro-options-header>i {
    margin-right: 10px;
}

.wpndmhpro-options-header>.support {
    float: right;
}

.wpndmhpro-options-header>.support a {
    text-decoration: none;
    color: var(--wpnd-mhpro-text-light-color);
    font-size: 15px;
    font-weight: 500;
}

/*
 * Generator shortcode style.
*/
.column-shortcode input[type="text"] {
    cursor: pointer;
}

#wpnd_mhpro_copy_views_shortcode .wpndmhpro-field.wpndmhpro-field-shortcode {
    margin: 0;
    padding: 20px;
}

.wpnd-mhpro-shortcode-wrapper {
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.wpnd-mhpro-shortcode-wrapper i {
    font-size: 15px;
}

.wpnd-mhpro-shortcode-wrapper .wcsp-shortcode-title {
    font-weight: 500;
    font-size: 17px;
    padding-top: 0;
    color: #5b6571;
}

.wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-shortcode-content p {
    margin-top: 2px;
    color: #4c5158;
}

.wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-title {
    font-weight: 500 !important;
    font-size: 17px !important;
    padding-top: 0 !important;
    color: #4c5158;
}

table .wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-shortcode-selectable {
    width: auto;
    padding: 8px 12px
}

.wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-shortcode-selectable {
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
    padding: 10px 5px;
    display: inline-flex;
    gap: 3px;
    user-select: all;
    border: 1px solid var(--wpnd-mhpro-mute-color);
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    width: 100%;
}

.column-mhpro_shortcodes .wpnd-mhpro-after-copy-text,
.wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-after-copy-text {
    top: 0;
    opacity: 0;
    z-index: 9999999;
    position: fixed;
    width: 245px;
    left: calc(50% - 90px);
    text-align: center;
    padding: 15px 15px;
    line-height: 15px;
    color: var(--wpnd-mhpro-text-light-color);
    border-radius: 4px;
    background: var(--wpnd-mhpro-secondary-color);
    border: 1px solid var(--wpnd-mhpro-secondary-color);
}

.column-mhpro_shortcodes .wpnd-mhpro-after-copy-text {
    width: 215px;
    display: inline-flex;
    gap: 5px;
}

.column-shortcode .wpnd-mhpro-after-copy-text,
.post-type-mhpro_views .column-shortcode .wpnd-mhpro-check-circle,
.wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-after-copy-text .wpnd-mhpro-check-circle {
    font-weight: 700;
    color: var(--wpnd-mhpro-pro-color);
}

.wpnd-mhpro-shortcode-wrapper .wpnd-mhpro-shortcode-content p {
    margin-top: 2px;
    color: var(--wpnd-mhpro-text-dark-color);
    text-align: left;
}

/* 
 * Settings page style.
*/
.wpnd-mhpro-tools .wpndmhpro-container .wpndmhpro-header-left img,
.wpnd-mhpro-global-style .wpndmhpro-container .wpndmhpro-header-left img,
.wpnd-mhpro-settings .wpndmhpro-container .wpndmhpro-header-left img {
    height: 50px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -3px;
}

.mhpro_views_page_wpnd-mhpro-tools .wpndmhpro-theme-light .wpndmhpro-nav ul li a.wpndmhpro-active,
.mhpro_views_page_wpnd-mhpro-global-style .wpndmhpro-theme-light .wpndmhpro-nav ul li a.wpndmhpro-active,
.mhpro_views_page_wpnd-mhpro-settings .wpndmhpro-theme-light .wpndmhpro-nav ul li a.wpndmhpro-active {
    box-shadow: inset 3px 0 var(--wpnd-mhpro-primary-color);
}

.mhpro_views_page_wpnd-mhpro-tools .wpndmhpro-theme-light .wpndmhpro-nav ul li a.wpndmhpro-active,
.mhpro_views_page_wpnd-mhpro-global-style .wpndmhpro-theme-light .wpndmhpro-nav ul li a.wpndmhpro-active,
.mhpro_views_page_wpnd-mhpro-settings .wpndmhpro-theme-light .wpndmhpro-nav ul li a.wpndmhpro-active {
    color: var(--wpnd-mhpro-primary-color) !important;
}

.mhpro_views_page_wpnd-mhpro-tools .wpnd-mhpro-tools .wpndmhpro-field+.wpndmhpro-field,
.mhpro_views_page_wpnd-mhpro-global-style .wpnd-mhpro-tools .wpndmhpro-field+.wpndmhpro-field,
.mhpro_views_page_wpnd-mhpro-settings .wpnd-mhpro-settings .wpndmhpro-field+.wpndmhpro-field {
    border: none;
}

.mhpro_views_page_wpnd-mhpro-tools li.wpndmhpro-tab-item a,
.mhpro_views_page_wpnd-mhpro-global-style li.wpndmhpro-tab-item a,
.mhpro_views_page_wpnd-mhpro-settings li.wpndmhpro-tab-item a {
    text-transform: uppercase;
}

.wpnd-mhpro-tools input.button.wpndmhpro-reset-section,
.wpnd-mhpro-tools input.button.button-primary.wpndmhpro-save,
.wpnd-mhpro-global-style input.button.wpndmhpro-reset-section,
.wpnd-mhpro-global-style input.button.button-primary.wpndmhpro-save,
.wpnd-mhpro-settings input.button.wpndmhpro-reset-section,
.wpnd-mhpro-settings input.button.button-primary.wpndmhpro-save {
    background-color: #C5C5C6;
    border-width: 0;
    color: var(--wpnd-mhpro-text-light-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    border-radius: 4px;
    font-weight: 600;
    margin: 0 0 0 35px;
    padding: 7px 15px 7px 35px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wpnd-mhpro-tools input.button.button-primary.wpndmhpro-save:hover,
.wpnd-mhpro-global-style input.button.button-primary.wpndmhpro-save:hover,
.wpnd-mhpro-settings input.button.button-primary.wpndmhpro-save:hover {
    background-color: var(--wpnd-mhpro-primary-color);
}

.wpnd-mhpro-tools input.button.button-primary.wpndmhpro-save:focus,
.wpnd-mhpro-global-style input.button.button-primary.wpndmhpro-save:focus,
.wpnd-mhpro-settings input.button.button-primary.wpndmhpro-save:focus {
    color: var(--wpnd-mhpro-text-light-color);
}

.wpnd-mhpro-tools .wpndmhpro-buttons input.button.button-primary.wpndmhpro-save[disabled],
.wpnd-mhpro-global-style .wpndmhpro-buttons input.button.button-primary.wpndmhpro-save[disabled],
.wpnd-mhpro-settings .wpndmhpro-buttons input.button.button-primary.wpndmhpro-save[disabled] {
    background-color: #c5c5c6 !important;
    color: var(--wpnd-mhpro-text-light-color) !important;
    border: none;
}

.wpnd-mhpro-tools .wpndmhpro-field-text input,
.wpnd-mhpro-global-style .wpndmhpro-field-text input,
.wpnd-mhpro-settings .wpndmhpro-field-text input {
    width: 30%;
}

.wpnd-mhpro-settings .wpnd-mhpro-youtube-feed-repeater-api input {
    width: 100%;
}

.wpndmhpro-field.wpndmhpro-field-preview {
    margin: 0;
    padding: 0;
}

#wpnd_mhpro_copy_views_shortcode .inside,
#wpnd_mhpro_metabox_layouts .inside,
#wpnd_mhpro_views_metaboxes .inside {
    margin: 0;
    padding: 0;
}

.wpndmhpro-field.wpndmhpro-field-border .wpndmhpro--title,
.wpndmhpro-field.wpndmhpro-field-spacing .wpndmhpro--title {
    margin-bottom: 5px;
    color: rgba(64, 64, 64, 0.5);
}

/* styles of PRO options */
.wpndmhpro-field.wpndmhpro-field-button_set .wpndmhpro--button.wpndmhpro-pro-only,
.wpndmhpro-field.wpndmhpro-field-layout_preset .wpndmhpro--image.wpndmhpro-pro-only {
    position: relative;
}

/* 'PRO' text of button set and layout preset options */
.wpndmhpro-field.wpndmhpro-field-button_set .wpndmhpro--button.wpndmhpro-pro-only:after,
.wpndmhpro-field.wpndmhpro-field-layout_preset .wpndmhpro--image.wpndmhpro-pro-only:after {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #6d7989;
    background-color: #cbd6df;
    font-weight: 600;
    padding: 0 4px;
    content: "PRO";
    text-align: center;
    font-size: 8px;
    line-height: 11px;
    opacity: 1;
    border-radius: 0 2px 0 2px;
}

.wpndmhpro-field.wpndmhpro-field-layout_preset .wpndmhpro--image.wpndmhpro-pro-only:after,
.wpndmhpro-field.wpndmhpro-field-button_set .wpndmhpro--image.wpndmhpro-pro-only:after {
    top: 3px;
    right: 3px;
}

/* Style of Pro options with Button Set */
.wpnd-mhpro-only-pro-switcher .wpndmhpro--switcher {
    pointer-events: none;
}

/* 'PRO' text of Switcher button */
.wpnd-mhpro-only-pro-switcher .wpndmhpro--switcher .wpndmhpro--ball::after {
    content: "PRO";
    position: relative;
    text-align: center;
    width: 24px;
    float: right;
    font-weight: 600;
    font-size: 8px;
    color: var(--wpnd-mhpro-text-light-color);
    opacity: 1;
    line-height: 18px;
}

.wpnd-mhpro-pro-feature-api-repeater .wpndmhpro-repeater-helper-inner i:nth-child(1),
.wpnd-mhpro-pro-feature-api-repeater .wpndmhpro-repeater-helper-inner i:nth-child(2),
.wpnd-mhpro-main-video-repeater-subtitle .wpndmhpro-repeater-helper-inner i:nth-child(1),
.wpnd-mhpro-main-video-repeater-subtitle .wpndmhpro-repeater-helper-inner i:nth-child(2),
.wpndmhpro-field.wpndmhpro_pro_option>.wpndmhpro-fieldset .wpndmhpro-pro-only,
.wpndmhpro_pro_option .wpndmhpro-fieldset,
.wpndmhpro_typo_pro_option .wpndmhpro-fieldset .wpndmhpro--blocks,
.wpndmhpro_typo_pro_option .wpndmhpro-fieldset .wpndmhpro--block,
.wpnd-mhpro-only-pro-switcher .wpndmhpro-field {
    opacity: .7;
    pointer-events: none;
}

.wpnd-mhpro-buttons-pro-feature .wpndmhpro--sibling:nth-child(2),
.wpnd-mhpro-presets-pro-feature .wpndmhpro--sibling:nth-child(2) img,
.wpndmhpro-field.wpndmhpro-field-layout_preset>.wpndmhpro-fieldset .wpndmhpro-pro-only img {
    opacity: .7;
    cursor: default;
}

.wpndmhpro--image p a:active,
.wpndmhpro--image p a:focus,
.wpndmhpro--image.wpndmhpro-pro-only p a:active,
.wpndmhpro--image.wpndmhpro-pro-only p a:focus {
    outline: none;
    box-shadow: none;
}

.wpndmhpro--image.wpndmhpro-pro-only:hover p a,
.wpndmhpro--image.wpndmhpro--active p a,
.wpndmhpro--sibling.wpndmhpro--image:hover p a {
    opacity: 1;
    pointer-events: painted;
    transition: all 0.2s linear;
}

.wpndmhpro-field.style_sortable_content_tab.wpndmhpro_pro_option .wpndmhpro-sortable-item:first-child::after,
.wpndmhpro-field.wpndmhpro-field-column.wpndmhpro_pro_option .wpndmhpro--input:last-child::after {
    content: "PRO";
    background-color: #cbd6df;
    padding: 2px 4px;
    font-size: 8px;
    border-radius: 2px;
    height: 11px;
    font-weight: 600;
    letter-spacing: .25px;
    line-height: 12px;
    margin-left: 5px;
    margin-top: 7px;
    color: #6d7989;
}

.wpndmhpro-field.style_sortable_content_tab.wpndmhpro_pro_option .wpndmhpro-sortable-item:first-child::after {
    position: absolute;
    margin-left: 8px;
    top: 23px;
}

/* Title Help */
.wpndmhpro-help.wpndmhpro-title-help {
    position: static;
    line-height: 28px;
    padding-left: 5px;
    cursor: help;
    padding: 5px;
    font-size: 14px;
    color: #aaa;
    line-height: 20px;
    float: none;
    display: inline-block;
}

.wpndmhpro-help.wpndmhpro-title-help i {
    font-size: 1rem;
    vertical-align: middle;
}

/* Layout present demo link */
.wpndmhpro-live-demo,
.wpndmhpro-field-layout_preset figure:hover .wpndmhpro-layout-type span {
    display: none;
}

.wpndmhpro-field-layout_preset figure:hover .wpndmhpro-live-demo {
    display: block;
    text-decoration: none;
}

.wpndmhpro-field-layout_preset .wpndmhpro--active figure:hover .wpndmhpro-live-demo {
    color: var(--wpnd-mhpro-text-light-color);
}

/* Custom styles for the Typography. */
.wpndmhpro-field-typography.advanced .wpndmhpro--margin-bottom {
    width: 110px;
    position: absolute;
}

.wpndmhpro-field-typography.advanced .wpndmhpro--margin-bottom,
.wpndmhpro-field-typography.advanced .wpndmhpro--block.wpndmhpro--block-font-color {
    display: inline-block;
}

.wpndmhpro-field-typography.advanced .wpndmhpro--margin-bottom .wpndmhpro--unit {
    right: -16px !important;
    left: auto;
}

.wpndmhpro-field-select.wpnd-mhpro-carousel-nav-position .wpndmhpro-fieldset img {
    border: none;
    width: 190px;
    margin-top: 20px;
    display: block;
}

.wpndmhpro-field-select.wpnd-mhpro-carousel-nav-position .wpndmhpro-fieldset .wpnd-mhpro-pro-notice {
    margin-top: 6px;
    font-weight: 400;
    color: rgba(64, 64, 64, 0.5);
    font-style: italic;
}

.wpndmhpro-field-select.wpnd-mhpro-carousel-nav-position .wpndmhpro-fieldset .wpnd-mhpro-pro-notice a {
    font-weight: 600;
}

.wpnd-mhpro-views-layout-metabox.postbox #wpnd-mhpro_live_preview .postbox-preview-header .handle,
.wpnd-mhpro-views-layout-metabox.postbox #wpnd-mhpro_live_preview .postbox-preview-header .hndle,
.wpnd-mhpro-views-layout-metabox.postbox #wpnd-mhpro_live_preview .postbox-preview-header {
    display: block;
}

.wpnd-mhpro-preview-box {
    padding: 30px 10px;
}

.wpnd-mhpro-live-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.wpnd-mhpro-live-preview-header-left {
    line-height: 0;
}

.wpnd-mhpro-live-preview-red,
.wpnd-mhpro-live-preview-yellow,
.wpnd-mhpro-live-preview-green {
    width: 12px;
    height: 12px;
    background: #ff5f57;
    border-radius: 25px;
    display: inline-block;
    margin-right: 3px;
}

.wpnd-mhpro-live-preview-yellow {
    background-color: #ffbd2e;
}

.wpnd-mhpro-live-preview-green {
    background-color: #28c840;
}

.post-type-mhpro_views #titlediv #title,
.post-type-mhpro_views #submitdiv,
#wpnd_mhpro_copy_views_shortcode,
.wpnd-mhpro-views-metabox-tabs,
.wpnd-mhpro-views-layout-metabox {
    border: 1px solid var(--wpnd-mhpro-mute-color);
    border-radius: 4px;
}

.post-type-mhpro_views #titlediv #title-prompt-text,
.post-type-mhpro_views #titlediv #title {
    height: 50px;
    font-weight: 700;
    padding: 15px;
}

.wpnd-mhpro-views-layout-metabox.postbox {
    margin-bottom: 20px;
    border-bottom: none;
}

.post-type-mhpro_views #misc-publishing-actions,
.post-type-mhpro_views #submitdiv #major-publishing-actions {
    background: none;
    padding: 20px;
    flex-direction: column;
    justify-content: left;
    align-items: self-start;
}

.post-type-mhpro_views #misc-publishing-actions {
    padding: 10px;
}

.post-type-mhpro_views #publishing-action {
    position: relative !important;
    right: unset !important;
    bottom: unset !important;
    width: 100%;
}

.post-type-mhpro_views #publishing-action .spinner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
}

.post-type-mhpro_views #minor-publishing-actions input,
.post-type-mhpro_views #major-publishing-actions input,
.post-type-mhpro_views #minor-publishing-actions .preview {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    background: var(--wpnd-mhpro-secondary-color);
    border: var(--wpnd-mhpro-secondary-color);
    padding: 5px;
    outline: none;
}

.post-type-mhpro_views #minor-publishing-actions input:hover,
.post-type-mhpro_views #major-publishing-actions input:hover,
.post-type-mhpro_views #minor-publishing-actions .preview:hover {
    background: var(--wpnd-mhpro-secondary-hover-color);
}

.post-type-mhpro_views #wpwrap {
    background-color: var(--wpnd-mhpro-primary-soft-bg-color);
}

.wpnd-mhpro-admin-menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
}

.wpnd-mhpro-admin-menu li {
    margin-bottom: 0;
}

#wpnd-mhpro_live_preview {
    border: 1px solid var(--wpnd-mhpro-mute-color);
    background: var(--wpnd-mhpro-text-light-color);
    border-radius: 4px;
}

.post-type-mhpro_views #submitdiv .postbox-header,
#wpnd_mhpro_copy_views_shortcode .postbox-header,
#wpnd-mhpro_live_preview .postbox-preview-header {
    border-bottom: 1px solid var(--wpnd-mhpro-mute-color);
    padding: 5px 8px;
}

#wpnd-mhpro_live_preview .postbox-preview-header h2 {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}

.wpndmhpro-field-spacing .wpnd-mhpro-spacing-pixel {
    margin-top: 23px;
}

.wpndmhpro-field-spacing .wpndmhpro-each-field-unit .wpnd-mhpro-spacing-pixel {
    margin-top: 0;
}

.wpndmhpro-field-spacing .wpndmhpro-each-field-unit  .wpnd-mhpro-spacing-pixel select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}

.wpndmhpro-field-spacing .wpndmhpro-each-field-unit .wpndmhpro--icon+input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/**
 * Drag & Drop field style.
 */
.wpndmhpro-upload-area {
    border: 2px dashed #ccd0d4;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.2s ease-in-out;
}

.wpndmhpro-upload-area:hover {
    background: #f1f1f1;
}

.wpndmhpro-upload-area.dragover {
    background: #e0f7ff;
    border-color: #007cba;
}

.wpndmhpro-upload-browse {
    color: #007cba;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.wpndmhpro-file-name {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

#wpnd-mhpro-export-status,
#wpnd-mhpro-import-status {
    font-weight: 700;
    margin-top: 1rem;
}

/**
 * PRO feature style.
 */
.wpnd-mhpro-typography-pro-feature .wpndmhpro--blocks-selects div,
.wpnd-mhpro-checkbox-pro-feature .wpndmhpro-checkbox,
.wpnd-mhpro-pro-feature .wpndmhpro--switcher,
.wpnd-mhpro-term-pro-feature .wpndmhpro-fieldset div,
.wpnd-mhpro-pro-feature.wpnd-mhpro-spinner-field .wpndmhpro--spin span,
.wpnd-mhpro-fieldset-pro-feature .wpndmhpro-fieldset div,
.wpnd-mhpro-layout-presets-pro .wpndmhpro--siblings div,
.wpnd-mhpro-pro-feature .wp-picker-container div,
.wpnd-mhpro-pro-feature .wpndmhpro-icon-select a,
.wpnd-mhpro-pro-feature .wpndmhpro--inputs div {
    opacity: 0.8;
    pointer-events: none;
    cursor: not-allowed;
}

.wpndmhpro-field-media a.button,
.wpndmhpro-field  .wpndmhpro-icon-select a,
.wpnd-mhpro-pro-feature .wpndmhpro-icon-select a {
    min-height: 30px;
    line-height: 2;
}

.wpnd-mhpro-pro-feature .wp-picker-container,
.wpnd-mhpro-pro-feature .wpndmhpro-icon-select,
.wpnd-mhpro-fieldset-pro-feature .wpndmhpro-fieldset,
.wpnd-mhpro-checkbox-pro-feature .wpndmhpro-checkbox,
.wpnd-mhpro-layout-presets-pro .wpndmhpro--sibling,
.wpnd-mhpro-pro-feature .wpndmhpro--switcher,
.wpnd-mhpro-term-pro-feature .wpndmhpro-fieldset,
.wpnd-mhpro-buttons-pro-feature .wpndmhpro--sibling:nth-child(2),
.wpnd-mhpro-presets-pro-feature .wpndmhpro--sibling:nth-child(2),
.wpnd-mhpro-pro-feature.wpnd-mhpro-spinner-field .wpndmhpro--spin,
.wpnd-mhpro-pro-feature .wpndmhpro-fieldset .wpndmhpro--inputs {
    position: relative
}

.wpnd-mhpro-pro-feature .wp-picker-container::after,
.wpnd-mhpro-pro-feature .wpndmhpro-icon-select::after,
.wpnd-mhpro-pro-feature .wpndmhpro--switcher::after,
.wpnd-mhpro-fieldset-pro-feature .wpndmhpro-fieldset::after,
.wpnd-mhpro-term-pro-feature .wpndmhpro-fieldset::after,
.wpnd-mhpro-checkbox-pro-feature .wpndmhpro-checkbox::after,
.wpnd-mhpro-layout-presets-pro .wpndmhpro--sibling::after,
.wpnd-mhpro-buttons-pro-feature .wpndmhpro--sibling:nth-child(2)::after,
.wpnd-mhpro-presets-pro-feature .wpndmhpro--sibling:nth-child(2)::after,
.wpnd-mhpro-pro-feature.wpnd-mhpro-spinner-field .wpndmhpro--spin::after,
.wpnd-mhpro-pro-feature .wpndmhpro-fieldset .wpndmhpro--inputs::after {
    position: absolute;
    top: 27px;
    left: 3px;
    width: 21px;
    height: auto;
    content: "\e964";
    font-family: 'wpnd-mhpro-icons';
    background: var(--wpnd-mhpro-background-color);
    color: var(--wpnd-mhpro-pro-color);
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    padding: 2px;   
}

.wpnd-mhpro-pro-feature .wpndmhpro-icon-select::after,
.wpnd-mhpro-pro-feature.wpnd-mhpro-spinner-field .wpndmhpro--spin::after {
    top: 3px;
    left: 7px;
    padding: 0;
}

.wpnd-mhpro-fieldset-pro-feature .wpndmhpro-fieldset::after {
    top: 2px;
    padding: 0 3px;
}

.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-slider-fieldset .wpndmhpro-fieldset::after {
    top: 2px;
    left: 0;
    width: 25px;
}

.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-progress-bar .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-volume .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-control-button .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-control-bar .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-big-play-button-border .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-big-play-button .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-border-hover-fieldset .wpndmhpro-fieldset::after,
.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-border-fieldset .wpndmhpro-fieldset::after,
.wpnd-mhpro-pro-feature .wpndmhpro-fieldset .wpndmhpro--inputs::after {
    top: 26px;
    padding: 0 3px;
    width: 25px;
}

.wpnd-mhpro-pro-feature .wpndmhpro--switcher::after {
    top: 0.4px;
    left: 0;
    border-radius: 20px;
    width: 29px;
}

.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-box-shadow-fieldset .wpndmhpro-fieldset::after {
    top: 20px;
}

.wpnd-mhpro-pro-feature.wpnd-mhpro-single-field .wp-picker-container::after, .wpnd-mhpro-pro-feature.wpnd-mhpro-single-field .wpndmhpro--inputs::after {
    left: 3px;
    top: 2.4px;
    padding: 0;
    width: 25px;
}

.wpnd-mhpro-checkbox-pro-feature .wpndmhpro-checkbox::after {
    top: -2px;
    left: -3px
}

.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-text-fieldset .wpndmhpro-fieldset::after {
    top: 3px;
    left: 2px;
    padding: 0 2px;
}

.wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-video-resolution .wpndmhpro-fieldset::after {
    top: -3px;
    left: -3px;
}

/**
 * Settings options style.
 */
.wpndmhpro-options .wpnd-mhpro-pro-feature .wpndmhpro--switcher::after {
    padding: 5px 2px;
}

.wpndmhpro-options .wpnd-mhpro-fieldset-pro-feature.wpnd-mhpro-slider-fieldset .wpndmhpro-fieldset::after {
    top: 2px;
}

.wpndmhpro-options .wpnd-mhpro-pro-feature .wp-picker-container::after,
.wpndmhpro-options .wpnd-mhpro-fieldset-pro-feature .wpndmhpro-fieldset::after,
.wpndmhpro-options .wpnd-mhpro-pro-feature .wpndmhpro-fieldset .wpndmhpro--inputs::after {
    padding: 3px 0;
}

.wpndmhpro-options .wpnd-mhpro-regenerate-video-lookup-table.wpnd-mhpro-fieldset-pro-feature .wpndmhpro-fieldset::after {
    top: 10px;
    left: 10px;
    width: 25px;
}

.wpndmhpro-options .wpnd-mhpro-pro-feature.wpnd-mhpro-single-field .wp-picker-container::after,
.wpndmhpro-options .wpnd-mhpro-pro-feature.wpnd-mhpro-single-field .wpndmhpro--inputs::after {
    top: 3px;
}

/**
 * Modal style.
 */
#TB_window {
    border-radius: 8px;
    max-height: 320px;
    max-width: 500px;
}

#TB_title {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 40px;
}

#TB_ajaxWindowTitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    padding: 10px 30px 0 15px;
    display: block;
    color: var(--wpnd-mhpro-text-dark-color);
}

#TB_closeWindowButton {
    top: 6px;
    right: 5px;
}

#TB_closeWindowButton:hover .tb-close-icon,
#TB_closeWindowButton:focus .tb-close-icon {
    color: var(--wpnd-mhpro-danger-color);
    box-shadow: none !important;
}

#TB_ajaxContent {
    text-align: center;
    margin: auto;
    overflow: hidden;
}

.post-type-mhpro_video #TB_ajaxContent {
    display: block;
    overflow: hidden;
    box-sizing: border-box;
}

#TB_ajaxContent h2 {
    font-size: 35px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: block;
}

#TB_ajaxContent p {
    padding: 0 15px 5px 15px;
}

#TB_ajaxContent .wpnd-mhpro-crown-icon {
    color: var(--wpnd-mhpro-pro-color);
    font-weight: 700;
    font-size: 45px;
    margin: 15px auto 0 auto;
    display: block;
}
