/* Minification failed. Returning unminified contents.
(451,34): run-time error CSS1030: Expected identifier, found '['
(451,40): run-time error CSS1031: Expected selector, found '^='
(451,40): run-time error CSS1025: Expected comma or open brace, found '^='
 */
/* Generic css applied to every Button component */

.mlms-button {
}

/* Style buttons in dropdowns to look like standard anchor links */
.dropdown-menu li .mlms-button.btn-link {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    font-size:14px;
    border:0;
}

    .dropdown-menu li .mlms-button.btn-link:hover,
    .dropdown-menu li  .mlms-button.btn-link:focus,
    .dropdown-menu li.active .mlms-button {
        color: #262626;
        outline: none;
        text-decoration: none;
        background-color: #f5f5f5;
    }

.dropdown-menu .disabled .mlms-button.btn-link,
.dropdown-menu .disabled .mlms-button.btn-link:hover,
.dropdown-menu .disabled .mlms-button.btn-link:hover:focus {
    color: #999999;
    pointer-events: none;
}

/* Generic css applied to every ContentPane component */

.mlms-contentpane { }

    .mlms-contentpane .mlms-contentpane-empty,
    .mlms-contentpane .mlms-contentpane-loading,
    .mlms-contentpane .mlms-contentpane-failed {
        padding: 30% 20%;
        text-align: center;
        display: none;
    }

    .mlms-contentpane .mlms-contentpane-content {
        display: inline-block; /* Due to margin inheritence weirdness */
        width: 100%;
        height: 100%;
        padding: 0px 15px 10px;
        box-sizing: border-box;
    }

    .mlms-contentpane.mlms-contentpane-blank > .mlms-contentpane-empty,
    .mlms-contentpane.mlms-contentpane-load > .mlms-contentpane-loading,
    .mlms-contentpane.mlms-contentpane-fail > .mlms-contentpane-failed {
        display: block;
    }

    .mlms-contentpane.mlms-contentpane-blank > .mlms-contentpane-content,
    .mlms-contentpane.mlms-contentpane-load > .mlms-contentpane-content,
    .mlms-contentpane.mlms-contentpane-fail > .mlms-contentpane-content {
        display: none;
    }
/* Generic css applied to every IdleTimer component */

.mlms-idletimer {}

    .mlms-idletimer .mlms-timer {
        font-size: 1.5em;
        font-weight: bold;
        position: absolute;
        right: 30px;
        bottom: 50px;
    }

.mlms-idletimer-modal .mlms-timer {
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    color: #d00;
}
/* Generic css applied to every IFrame component */

.mlms-iframe {
    width: 100%;
    height: 100%;
}

    .mlms-iframe .mlms-iframe-empty,
    .mlms-iframe .mlms-iframe-loading,
    .mlms-iframe .mlms-iframe-failed {
        padding: 30% 20%;
        text-align: center;
        display: none;
    }

    .mlms-iframe > .mlms-iframe-container .mlms-iframe-wrapper {
        position: relative;
        display: block;
        overflow: hidden;
        padding-top: 75%; /* CSS trick sets iframe aspect ratio (4:3) */
    }

        .mlms-iframe > .mlms-iframe-container .mlms-iframe-wrapper .mlms-iframe-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            border: none;
            border-width: 0;
        }

    .mlms-iframe:-webkit-full-screen,
    .mlms-iframe:-moz-full-screen,
    .mlms-iframe:-ms-fullscreen,
    .mlms-iframe:fullscreen {
        height: 100% !important;
    }

    .mlms-iframe.mlms-iframe-blank > .mlms-iframe-empty,
    .mlms-iframe.mlms-iframe-load > .mlms-iframe-loading,
    .mlms-iframe.mlms-iframe-fail > .mlms-iframe-failed {
        display: block;
    }

    .mlms-iframe.mlms-iframe-blank > .mlms-iframe-container,
    .mlms-iframe.mlms-iframe-load > .mlms-iframe-container,
    .mlms-iframe.mlms-iframe-fail > .mlms-iframe-container {
        height: 0;
        overflow: hidden;
    }


/* iFrames in Modals are re-sized to fit within the viewport.
    -80vh because modals have a top:10% and we're allowing for 10% below
    -54px come from the height of modal header (24px from text, 30px in margins)
    -10px come from modal body padding
*/
.mlms-modal-container .mlms-iframe-wrapper {
    padding-top: 0; /* Remove padding hack */
    height: calc(80vh - 64px);
}

/* Generic css applied to every Message component */

.mlms-message { }

    .mlms-message .mlms-message-content {
        white-space: pre-line;
    }

    .mlms-message .mlms-message-extra {
        color: #BC9C9D;
        float: right;
    }

    .mlms-message .mlms-message-extracontent {
        white-space: pre;
        color: #BC9C9D;
        padding-left: 20px;
        padding-right: 15px;
        padding-top: 4px;
    }
/* Generic css applied to every Modal component */

.mlms-modal { display: none; }

.mlms-modal-wrapper {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    overflow: auto;
    z-index: 1045;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

    .mlms-modal-wrapper.mlms-modal-open {
        visibility: visible;
    }

    .mlms-modal-wrapper.mlms-modal-backdrop {
        background-color: rgba(0,0,0,0);
    }

        .mlms-modal-wrapper.mlms-modal-backdrop.mlms-modal-open {
            background-color: rgba(0,0,0,0.8);
        }

    .mlms-modal-wrapper.mlms-modal-open .mlms-modal-container {
        top: 10%;
    }


.mlms-modal-container {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 600px; /* Aligned with margin-left */
    margin-left: -300px; /* Aligned with width */
    margin-bottom: 20px;
    outline: none;
    background-color: #ffffff;
    z-index: 1050;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.3);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition: top 0.4s ease-out;
    -moz-transition: top 0.4s ease-out;
    -o-transition: top 0.4s ease-out;
    transition: top 0.4s ease-out;
}

    .mlms-modal-container.mlms-modal-large {
        width: 70%;
        margin-left: -35%;
    }

    .mlms-modal-container .mlms-modal-body {
        position: relative;
        width: 100%;
    }

        .mlms-modal-container .mlms-modal-body.mlms-modal-body-withfooter {
            padding-bottom: 60px; /* Aligned with .mlms-modal-container .mlms-modal-body .mlms-modal-footer => height */
        }

        .mlms-modal-container .mlms-modal-body .mlms-modal-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            text-align: right;
            padding: 0;
            width: 100%;
            height: 60px; /* Aligned with .mlms-modal-container .mlms-modal-body.mlms-modal-body-withfooter => padding-bottom */
            background-color: #f5f5f5;
            border-top: 1px solid #ddd;
            -webkit-border-radius: 0 0 6px 6px;
            -moz-border-radius: 0 0 6px 6px;
            border-radius: 0 0 6px 6px;
            *zoom: 1;
            -webkit-box-shadow: inset 0 1px 0 #ffffff;
            -moz-box-shadow: inset 0 1px 0 #ffffff;
            box-shadow: inset 0 1px 0 #ffffff;
        }

            .mlms-modal-container .mlms-modal-body .mlms-modal-footer > div {
                padding: 15px 15px 0;
            }

            .mlms-modal-container .mlms-modal-body .mlms-modal-footer .btn {
                float: none; /* Due to bootstrap .btn-toolbar forcing float: left which converts display 'inline-block' to 'block' */
            }

            .mlms-modal-container .mlms-modal-body .mlms-modal-footer .btn + .btn {
                margin-bottom: 0;
                margin-left: 5px;
            }

        .mlms-modal-container .mlms-modal-body .mlms-modal-exit {
            position: absolute;
            top: 10px;
            right: 12px;
            padding: 0;
            background: none;
            border: none;
            color: rgba(0,0,0,0.2);
            font-size: 20px;
            font-weight: bold;
            line-height: 20px;
            text-shadow: 0 1px 0 #fff;
        }

            .mlms-modal-container .mlms-modal-body .mlms-modal-exit:hover,
            .mlms-modal-container .mlms-modal-body .mlms-modal-exit:focus {
                color: rgba(0,0,0,0.4);
                cursor: pointer;
                text-decoration: none;
            }



/*** Sidebar specific overrides ***/

/* Allows interaction with items behind sidebar unless backdrop in use */
/* Sidebar and sidebar backdrop (if used) display behind modals and modal backdrops */
.mlms-modal-wrapper.mlms-sidebar {
    width: 487px; /* Aligned with .mlms-modal-wrapper.mlms-sidebar .mlms-modal-container => width (plus 7px box-shadow) */
    z-index: 1035;
}

    .mlms-modal-wrapper.mlms-sidebar.mlms-modal-backdrop {
        width: auto;
    }

    .mlms-modal-wrapper.mlms-sidebar.mlms-modal-open .mlms-modal-container {
        left: 0;
    }

/* Note: !important required to override media related styles */
.mlms-modal-wrapper.mlms-sidebar .mlms-modal-container {
    top: 0 !important;
    bottom: 0 !important;
    right: initial !important;
    left: -480px; /* Aligned with => width */
    height: 100% !important;
    width: 480px !important; /* Aligned with => left */
    margin: 0 !important;
    z-index: 1040;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: left 0.3s ease-out;
    -moz-transition: left 0.3s ease-out;
    -o-transition: left 0.3s ease-out;
    transition: left 0.3s ease-out;
}

    .mlms-modal-wrapper.mlms-sidebar .mlms-modal-container .mlms-modal-scroll {
        position: static;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
    }

    .mlms-modal-wrapper.mlms-sidebar .mlms-modal-container .mlms-modal-exit {
        display: none;
    }

    .mlms-modal-wrapper.mlms-sidebar .mlms-modal-container .mlms-modal-body {
        position: absolute;
        top: 0;
        bottom: 0;
    }

/*** End sidebar specific overrides ***/


@media (max-width: 979px) {
    .mlms-modal-wrapper.mlms-modal-open .mlms-modal-container {
        top: 1%;
        right: 1%;
        left: 1%;
        bottom: auto;
        width: auto;
        height: auto;
        margin: 0 0 0 1%;
        padding: 0;
    }
}
/* Generic css applied to every Pager component */

.mlms-pager { }

    .mlms-pager.mlms-disabled { }

.mlms-pager-empty,
.mlms-pager-loading,
.mlms-pager-failed {
    padding: 50px 0;
    text-align: center;
    display: none;
}

.mlms-pager-controls {
    margin: 10px 0;
}

.mlms-pager-navigation {
    text-align: center;
    margin: 0;
}

    .mlms-pager-navigation ul {
        margin: 0;
    }

        .mlms-pager-navigation ul * {
            cursor: pointer !important;
        }

        .mlms-pager-navigation ul .disabled * {
            cursor: not-allowed !important;
        }

.mlms-pager-count {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}

    .mlms-pager-count span {
        font-weight: bold;
    }

.mlms-pager-size {
    padding-bottom: 5px;
    text-align: center;
}

    .mlms-pager-size .mlms-selectinput .mlms-selectinput-selected,
    .mlms-pager-size .mlms-selectinput .mlms-selectinput-selectlist {
        min-width: 60px !important;
        width: auto !important;
    }


@media (min-width:991px) {
    .mlms-pager-navigation {
        text-align: left;
    }

    .mlms-pager-size {
        text-align: right;
    }
}

/* Generic css applied to every PasswordInput component */

.mlms-passwordinput {
    position: relative;
    display: inline-block;
    width: 100%;
}

    /* Where a bootstrap input class is used that applies a width, the parent container needs to respect that width so visibility toggle displays in appropriate location */
    .mlms-passwordinput:has(input[class^="input-"]),
    .mlms-passwordinput:has(input[class*=" input-"]) {
        width: max-content;
    }

    /* Apply padding so input text cannot overlay visibility toggle */
    .mlms-passwordinput input.mlms-passwordinput-hasvisibilitytoggle {
        padding-right: 35px;
    }

    /* The i element selector is necessary to increase specifity of this declaration block such that the input[type='text'] + [class*="fa-"] style in site.css doesn't override it */
    .mlms-passwordinput i.mlms-visibility-toggle {
        position: absolute;
        right: 10px;
        height: 24px;
        top: 50%;
        margin-top: -12px;
        line-height: 100%;
        padding: 5px;
        font-size: 12px;
        border-radius: 50%;
    }

        .mlms-passwordinput i.mlms-visibility-toggle:hover {
            cursor: pointer;
            background: #F2F2F2;
        }
/* Generic css applied to every SelectInput component */

.mlms-selectinput {
    position: relative;
}

    .mlms-selectinput.mlms-disabled {
    }

        .mlms-selectinput.mlms-disabled .mlms-selectinput-selected {
            cursor: not-allowed;
            background-color: #eee;
            opacity: 1;
            box-shadow: none;
            border: 1px solid #ccc;
        }

        .mlms-selectinput.mlms-disabled .mlms-selectinput-selectlist {
            display: none !important;
        }

    .mlms-selectinput .mlms-selectinput-selected {
        cursor: default;
        white-space: normal;
        height: auto;
        min-height: 34px;
        min-width: 160px;
        padding: 3px 20px 3px 8px;
    }

        .mlms-selectinput .mlms-selectinput-selected::before {
            position: absolute;
            right: 10px;
            top: 15px;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
        }

        .mlms-selectinput .mlms-selectinput-selected .mlms-selectinput-placeholder {
            display: inline-block;
            padding: 0 5px 0;
            color: #999;
            line-height: 26px;
        }

        .mlms-selectinput .mlms-selectinput-selected .mlms-selectinput-selection {
            display: inline-block;
            padding: 0 5px 1px;
            margin: 2px 4px 2px 0;
            white-space: normal;
            background-color: transparent;
            border: none;
            line-height: 1.35em;
        }

            .mlms-selectinput .mlms-selectinput-selected .mlms-selectinput-selection::after {
                content: ' ';
            }

            .mlms-selectinput .mlms-selectinput-selected .mlms-selectinput-selection.mlms-disabled {
                background-color: rgba(155,155,155, 0.3);
            }

    .mlms-selectinput.mlms-selectinput-multi .mlms-selectinput-selected .mlms-selectinput-selection {
        background-color: rgba(102, 175, 233, 0.2);
        border: 1px solid #ccc;
        border-radius: 0.3em;
    }

    .mlms-selectinput .mlms-selectinput-selectlist {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 300px;
        width: 100%;
        overflow-y: auto;
        padding: 10px 10px 8px;
        text-align: left;
        list-style: none;
        background-color: #fff;
        z-index: 1000;
        box-sizing: border-box;
        border: 1px solid #aaa;
        border-radius: 5px;
    }

        .mlms-selectinput .mlms-selectinput-selectlist li:hover {
            background-color: rgba(102, 175, 233, 0.1);
        }

        .mlms-selectinput .mlms-selectinput-selectlist li.mlms-focused {
            background-color: rgba(102, 175, 233, 0.3);
        }

        .mlms-selectinput .mlms-selectinput-selectlist li.mlms-selectinput-filter.mlms-focused {
            background-color: #fff;
        }

    .mlms-selectinput .mlms-selectinput-item {
        white-space: nowrap;
        border-radius: 2px;
    }

        .mlms-selectinput .mlms-selectinput-item.mlms-disabled {
            color: #ccc;
        }

        .mlms-selectinput .mlms-selectinput-item label {
            display: flex;
            align-items: center;
            width: 100%;
            margin: 0;
            padding: 2px 8px;
            font-weight: 400;
            line-height: 1.4em;
        }

        .mlms-selectinput .mlms-selectinput-item .mlms-selectinput-iteminput {
            margin-right: 6px;
            margin-top: 1px;
            margin-bottom: 1px;
        }

        .mlms-selectinput .mlms-selectinput-item .mlms-selectinput-itemtext { }

    .mlms-selectinput.mlms-selectinput-single .mlms-selectinput-iteminput {
        opacity: 0;
        position: absolute;
    }

    .mlms-selectinput .mlms-selectinput-filter {
        margin-bottom: -8px;
        overflow: hidden;
    }

        .mlms-selectinput .mlms-selectinput-filter input {
            display: block;
            width: 100%;
        }

        /*Overwrite the BS3 removal of a margin when a form-group is rendered inside a form-inline*/
        .form-inline .mlms-selectinput .mlms-selectinput-filter .form-group {
            margin-bottom: 15px;
        }

        /*Remove the padding applied by the child col-md-12 (only necessary for StackedHorizontal LayoutType, bootstrap applies this same style in all other layout types) */
        .mlms-selectinput .mlms-selectinput-filter .form-group {
            margin-left: -15px;
            margin-right: -15px;
        }

    .mlms-selectinput .mlms-selectinput-moreoptions {
        color: #555;
        font-size: 0.8em;
        cursor: pointer;
        margin-top: 5px;
        padding: 0 10px;
    }

/* Generic css applied to every Tabs component */

.mlms-tabs { }

    .mlms-tabs-headers {
        padding: 0;
        border: none;
    }

        .mlms-tabs-headers > .mlms-tabs-header,
        .mlms-tabs-headers.mlms-tabs-stacked > .mlms-tabs-header {
            position: relative;
            display: block;
            width: 100%;
            float: none;
            list-style: none;
            cursor: pointer;
            padding: 10px 15px;
            color: #337ab7;
            border-radius: 4px;
        }

            .mlms-tabs-headers > .mlms-tabs-header + .mlms-tabs-header,
            .mlms-tabs-headers.mlms-tabs-stacked > .mlms-tabs-header + .mlms-tabs-header {
                margin-top: 3px;
                margin-left: 0;
            }

            .mlms-tabs-headers > .mlms-tabs-header:hover,
            .mlms-tabs-headers > .mlms-tabs-header:focus {
                background-color: #eeeeee;
            }

            .mlms-tabs-headers > .mlms-tabs-header.active,
            .mlms-tabs-headers > .mlms-tabs-header.active:hover,
            .mlms-tabs-headers > .mlms-tabs-header.active:focus {
                color: #555555;
                cursor: default;
                background-color: #fff;
                border: 1px solid #ddd;
            }

            .mlms-tabs-headers > .mlms-tabs-header.disabled,
            .mlms-tabs-headers > .mlms-tabs-header.disabled:hover,
            .mlms-tabs-headers > .mlms-tabs-header.disabled:focus {
                color: #777777;
                cursor: not-allowed;
                background-color: transparent;
            }

@media (min-width: 992px) {

    .mlms-tabs-headers > .mlms-tabs-header {
        width: auto;
        float: left;
    }

        .mlms-tabs-headers > .mlms-tabs-header + .mlms-tabs-header {
            margin-left: 2px;
        }


    .mlms-tabs-headers.mlms-tabs-top {
        border-bottom: 1px solid #ddd;
    }

        .mlms-tabs-headers.mlms-tabs-top > .mlms-tabs-header {
            margin-bottom: -1px;
            border-radius: 4px 4px 0 0;
        }

            .mlms-tabs-headers.mlms-tabs-top > .mlms-tabs-header:hover,
            .mlms-tabs-headers.mlms-tabs-top > .mlms-tabs-header:focus {
                border-bottom-color: #ddd;
            }

            .mlms-tabs-headers.mlms-tabs-top > .mlms-tabs-header.active,
            .mlms-tabs-headers.mlms-tabs-top > .mlms-tabs-header.active:hover,
            .mlms-tabs-headers.mlms-tabs-top > .mlms-tabs-header.active:focus {
                border-bottom-color: transparent;
            }

    .mlms-tabs-headers.mlms-tabs-bottom {
        border-top: 1px solid #ddd;
    }

        .mlms-tabs-headers.mlms-tabs-bottom > .mlms-tabs-header {
            margin-top: -1px;
            border-radius: 0 0 4px 4px;
        }

            .mlms-tabs-headers.mlms-tabs-bottom > .mlms-tabs-header:hover,
            .mlms-tabs-headers.mlms-tabs-bottom > .mlms-tabs-header:focus {
                border-top-color: #ddd;
            }

            .mlms-tabs-headers.mlms-tabs-bottom > .mlms-tabs-header.active,
            .mlms-tabs-headers.mlms-tabs-bottom > .mlms-tabs-header.active:hover,
            .mlms-tabs-headers.mlms-tabs-bottom > .mlms-tabs-header.active:focus {
                border-top-color: transparent;
            }

    .mlms-tabs-headers.mlms-tabs-left {
        float: left;
        width: 16%;
        border-right: 1px solid #ddd;
    }

        .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header {
            float: none;
            margin-right: -1px;
            border-radius: 4px 0 0 4px;
        }

            .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header + .mlms-tabs-header {
                margin-top: 3px;
                margin-left: 0px;
            }

            .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header:hover,
            .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header:focus {
                border-right-color: #ddd;
            }

            .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header.active,
            .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header.active:hover,
            .mlms-tabs-headers.mlms-tabs-left > .mlms-tabs-header.active:focus {
                border-right-color: transparent;
            }

    .mlms-tabs-headers.mlms-tabs-right {
        float: left;
        width: 16%;
        border-left: 1px solid #ddd;
    }

        .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header {
            float: none;
            margin-left: -1px;
            border-radius: 0 4px 4px 0;
        }

            .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header + .mlms-tabs-header {
                margin-top: 3px;
                margin-left: -1px;
            }

            .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header:hover,
            .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header:focus {
                border-left-color: #ddd;
            }

            .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header.active,
            .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header.active:hover,
            .mlms-tabs-headers.mlms-tabs-right > .mlms-tabs-header.active:focus {
                border-left-color: transparent;
            }
}

.mlms-tabs-headers.mlms-tabs-pill {
    border: none;
}

    .mlms-tabs-headers.mlms-tabs-pill > .mlms-tabs-header {
        border: none;
        border-radius: 4px;
    }

        .mlms-tabs-headers.mlms-tabs-pill > .mlms-tabs-header.active,
        .mlms-tabs-headers.mlms-tabs-pill > .mlms-tabs-header.active:hover,
        .mlms-tabs-headers.mlms-tabs-pill > .mlms-tabs-header.active:focus {
            color: #fff;
            background-color: #337ab7;
            border: none;
        }

.mlms-tabs-panes > .mlms-tabs-pane {
    display: none;
}

    .mlms-tabs-panes > .mlms-tabs-pane.active {
        display: block;
    }

    .mlms-tabs-panes > .mlms-tabs-pane .mlms-tabs-busy {
        padding: 30px;
    }

@media (min-width: 992px) {
    .mlms-tabs-panes.mlms-tabs-left,
    .mlms-tabs-panes.mlms-tabs-right {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 84%;
    }
}
