/*

INVERTED TRIANGLE CSS (ITCSS):
------------------------------

This CSS file attemts to follow the Inverted Triangle CSS (ITCSS) standard by Harry Roberts:
- Towards the top we place more far-reaching rules, affecting a wider portion of the DOM
- Towards the botttom we place more explicit rules, affecting a narrower portion of the DOM
- Rules should preferably be ordered by specificity rank within each layer


LAYERS:
-------

1.  Generic
    - Normalizing
    - Resets

2.  Base
    - Unclassed HTML elements (AKA Type Selectors)

3.  Objects
    - Non-cosmetic design patterns
    - Agnostically named

4.  Components
    - Distinct design components
    - UI chunks

5.  Theme
    - Alternative color schemes and typography to suit accessibility needs or lighting conditions
    - Alternative branding/cosmetic color schemes and typography

6.  Trumps
    - Helpers
    - Overrides
    - Anything using !important


THOU SHALL NOT:
---------------

- Make rules containing #id selectors
- Use !important without writing a comment explaining why
- Define :hover without also defining :focus
- Give classes names which describe presentation instead of content/purpose
- Use shorthand background, font or similar properties

*/



/*
 *
 *
 *
 *
 *
 *
 *   1.  Generic Rules
 *
 * * * */

body,
.default-font {
    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
}

ul {
    padding-left: 15px;
}

code,
pre,
input[type="text"].code-snippet,
.code-snippet,
.numeric,
.date,
.iprange,
.url,
.data-import {
    font-family: 'Roboto Mono', Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/*
 *
 *
 *
 *
 *
 *
 *   2.  Base Rules
 *
 * * * */

/*h3,
h4,
h5,
h6 {
    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
}*/

textarea {
    resize: vertical; /* Only allow textareas to be resized vertically */
}

p {
    max-width: 60em; /* lock paragraphs at a comfortable line-length */
}

hr {
    border: 0;
    height: 1px;
    background-color: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
    width: 80%;
    margin: 30px;
}

dl {
    margin: 0;
}

    dl div + div {
        margin-top: 5px;
    }

    dt {
        display: inline;
        /*margin-right: 5px;*/
    }

    dd {
        display: inline;
    }

p {
    margin-top: 0;
    margin-bottom: 1em;
}
    /*p + p {
        margin-top: 1em;
    }*/


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}
    h1 {
        font-size: 30px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    h2 {
        font-size: 24px;
        /*text-transform: uppercase;
        letter-spacing: 0.03em;*/
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
        /*font-weight: 700;*/
    }

    h6 {
        font-size: 13px;
        font-weight: 700;
    }

    p + h1,
    p + h2,
    p + h3,
    p + h4,
    p + h5,
    p + h6 {
        margin-top: 30px;
    }






















/*
 *
 *
 *
 *
 *
 *
 *   3.  Objects Rules (Rules which are used freely in many views)
 *
 * * * */

.sticky-right-anchor {
    padding-right: 45px;
    position: relative;
}
    .sticky-right-item {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
    }

.sticky-left-anchor {
    padding-left: 45px;
    position: relative;
}
    .sticky-left-item {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
    }

/*.flexcontainer {
    display: flex;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}*/
    .flexcolumn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: -15px;
        margin-right: -15px;
    }

    .flexrow {
        display: flex;
        flex-direction: row;
        align-content: space-between;
        margin-left: -15px;
        margin-right: -15px;
    }
        .flexrow > * {
            margin-left: 15px;
        }
            .flexrow > *:first-child {
                margin-left: 0;
            }

        .flexitem {
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {

            .flexcolumns-sm-6 {
                display: flex;
                /*flex-direction: row;
                justify-content: space-between;*/
                margin-left: -15px;
                margin-right: -15px;
            }
                .flexcolumns-sm-6 > * {
                    width: 50%;
                    margin-left: 15px;
                    margin-right: 15px;
                }
        }

        @media (min-width: 768px) {

            .flexcolumns-md-6 {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                margin-left: -15px;
                margin-right: -15px;
            }
                .flexcolumns-md-6 > * {
                    width: 50%;
                    margin-left: 15px;
                    margin-right: 15px;
                }
        }

        @media (min-width: 992px) {

            .flexcolumns-lg-6 {
                display: flex;
                /*flex-direction: row;
                justify-content: space-between;*/
                margin-left: -15px;
                margin-right: -15px;
            }
                .flexcolumns-lg-6 > * {
                    width: 50%;
                    margin-left: 15px;
                    margin-right: 15px;
                }
        }

.clip-radio + .clip-radio,
.clip-check + .clip-check {
    margin-top: 15px;
}

.radio-options {
    height: 0;
    overflow: hidden;
    display: none;
}
    .clip-radio input[type="radio"]:checked + label .radio-options {
        height: auto;
        display: block;
        transition-property: height;
        transition-duration: 0.3s;
        transition-timing-function: ease-in;
    }


/*  Creatives assignment (e.g. ads/banners/pushads in Campaign Creator)  */

.creative-tab {
    width: 125px;
    text-align: center;
}

.assigner-info {
    overflow: hidden;
}

.assigner-unassigned {
    padding-left: 15px;
}

.assigner-pool {
    max-height: 500px;
    min-height: 300px;
    overflow: auto;

}
    .assigner-slot {
        margin-bottom: 10px;
    }
        .assigner-item {
            position: relative;
            min-height: 75px;
            padding: 5px 60px 15px 110px;
        }

            .assigner-preview {
                height: 100%;
                width: 100px;
                position: absolute;
                left: 0;
                top: 0;
                background-color: #000000;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: 33% 33%;
            }

                .assigner-preview-content {
                    display: none;
                }

                .assigner-preview:hover .assigner-preview-content,
                .assigner-preview:focus .assigner-preview-content {
                    pointer-events: none;
                    z-index: 3;
                    display: block;
                    position: fixed;
                    top: 15%;
                    left: 5px;
                }

                .assigner-assigned .assigner-preview:hover .assigner-preview-content,
                .assigner-assigned .assigner-preview:focus .assigner-preview-content {
                    pointer-events: none;
                    z-index: 1;
                    display: block;
                    position: absolute;
                    top: 8px;
                    left: 8px;
                }

                .assigner-preview img {
                    padding: 1px;
                }

                .assigner-preview .slug {
                    display: flex;
                    flex-wrap: wrap;
                    padding: 10px 15px;
                }

                    .assigner-preview .slug .slug-item {
                        flex-basis: 100%;
                    }

            .assigner-name {
                font-weight: 700;
                line-height: 1.9; /* match height for entries with labels */
            }

            .assigner-action {
                cursor: pointer;
                position: absolute;
                width: 45px;
                height: 100%;
                top: 0;
                right: 0;
            }

                .assigner-action i {
                    font-size: 15px;
                    line-height: 15px;
                    width: 15px;
                    height: 15px;
                    position: absolute;
                    margin-top: -7px;
                    top: 50%;
                    right: 15px;
                }

    .assigner-sorting {
        clear: both;
        padding-right: 15px;
    }

    .assigner-controls {
        overflow: hidden;
        padding: 15px;
    }

    .assigner-controls > .assigner-pagelength {
        float: left;
    }

    .assigner-controls > .assigner-pagination {
        float: right;
    }

    .assigner-pagination .pagination-button {
        border-radius: 5px;
        cursor: pointer;
        margin-left: 5px;
        padding: 5px 10px;
        background: #ebedee;
        border: none !important;
        color: #8b91a0;
        display: inline-block;
        margin-right: 1px;
    }

    .assigner-pagination .pagination-button.active {
        background: #5f8295 !important;
        border: medium none !important;
        color: white !important;
        cursor: default !important;
        opacity: 1;
    }

.crossroads {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}
    .crossroads li + li {
        margin-top: 10px;
        padding-top: 10px;
    }

.frame-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
    padding: 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.introduction-message {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
}


.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.inline {
    display: inline !important;
}

.no-radius {
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0;
    border-radius: 0 !important;
}

.no-border {
    border: none !important;
}

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.no-display {
    display: none !important;
}

.display-table {
    display: table !important;
}

.display-table-cell {
    display: table-cell !important;
}

.fullwidth {
    width: 100%;
}

.fullheight {
    height: 100%;
}

.contain {
    object-fit: contain;
}

.example {
    margin: 15px 0;
    padding: 14px 19px;
}

.space5 {
    display: block;
    margin-bottom: 5px !important;
    clear: both;
}

.space7 {
    margin-bottom: 7px !important;
    clear: both;
}

.space10 {
    margin-bottom: 10px !important;
    clear: both;
}

.space12 {
    margin-bottom: 12px !important;
    clear: both;
}

.space15 {
    margin-bottom: 15px !important;
    clear: both;
}

.space20 {
    margin-bottom: 20px !important;
    clear: both;
}

.padding-0 {
    padding: 0px !important;
}

.padding-5 {
    padding: 5px !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-15 {
    padding: 15px !important;
}

.padding-20 {
    padding: 20px !important;
}

.padding-25 {
    padding: 25px !important;
}

.padding-30 {
    padding: 30px !important;
}

.padding-35 {
    padding: 35px !important;
}

.padding-40 {
    padding: 40px !important;
}

.padding-horizontal-5 {
    padding: 0 5px !important;
}

.padding-horizontal-10 {
    padding: 0 10px !important;
}

.padding-horizontal-15 {
    padding: 0 15px !important;
}

.padding-horizontal-20 {
    padding: 0 20px !important;
}

.padding-vertical-10 {
    padding: 10px 0 !important;
}

.padding-vertical-15 {
    padding: 15px 0 !important;
}

.padding-vertical-20 {
    padding: 20px 0 !important;
}

.padding-bottom-0 {
    padding-bottom: 0px !important;
}

.padding-bottom-5 {
    padding-bottom: 5px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-bottom-25 {
    padding-bottom: 25px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.padding-bottom-175 {
    padding-bottom: 175px !important;
}

.padding-top-0 {
    padding-top: 0px !important;
}

.padding-top-5 {
    padding-top: 5px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-top-25 {
    padding-top: 25px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-left-0 {
    padding-left: 0px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.padding-left-25 {
    padding-left: 25px !important;
}

.padding-left-30 {
    padding-left: 30px !important;
}

.padding-right-0 {
    padding-right: 0px !important;
}

.padding-right-5 {
    padding-right: 5px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

.padding-right-15 {
    padding-right: 15px !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

.padding-right-25 {
    padding-right: 25px !important;
}

.padding-right-30 {
    padding-right: 30px !important;
}

.margin-0 {
    margin: 0px !important;
}

.margin-5 {
    margin: 5px !important;
}

.margin-10 {
    margin: 10px !important;
}

.margin-15 {
    margin: 15px !important;
}

.margin-20 {
    margin: 20px !important;
}

.margin-25 {
    margin: 25px !important;
}

.margin-30 {
    margin: 30px !important;
}

.margin-35 {
    margin: 35px !important;
}

.margin-40 {
    margin: 40px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-top-0 {
    margin-top: 0px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-right-0 {
    margin-right: 0px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-right-25 {
    margin-right: 25px !important;
}

.margin-right-30 {
    margin-right: 30px !important;
}

.margin-left-0 {
    margin-left: 0px !important;
}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-left-25 {
    margin-left: 25px !important;
}

.margin-left-30 {
    margin-left: 30px !important;
}

.min-height-155 {
    min-height: 155px !important;
}

.min-height-180 {
    min-height: 180px !important;
}

.min-height-200 {
    min-height: 200px !important;
}

.min-height-230 {
    min-height: 230px !important;
}

.min-height-250 {
    min-height: 250px !important;
}

.min-height-270 {
    min-height: 270px !important;
}

.min-height-280 {
    min-height: 280px !important;
}

.min-height-300 {
    min-height: 300px !important;
}

.min-height-350 {
    min-height: 350px !important;
}

.height-155 {
    height: 155px !important;
}

.height-180 {
    height: 180px !important;
}

.height-200 {
    height: 200px !important;
}

.height-230 {
    height: 230px !important;
}

.height-250 {
    height: 250px !important;
}

.height-270 {
    height: 270px !important;
}

.height-300 {
    height: 300px !important;
}

.height-330 {
    height: 330px !important;
}

.height-350 {
    height: 350px !important;
}

.width-200 {
    width: 200px !important;
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.vertical-align-bottom {
    vertical-align: bottom !important;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

.vertical-align-top {
    vertical-align: top !important;
}

.text-bold {
    font-weight: bold !important;
}

.text-extra-small {
    font-size: 11px !important;
}

.text-small {
    font-size: 12px !important;
}

.text-medium {
    font-size: 14px !important;
}

.text-large {
    font-size: 16px !important;
}

.text-extra-large {
    font-size: 20px !important;
}

h1.text-extra-large {
    font-size: 50px !important;
}

.center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.circle-100 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
}

.circle-50 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 55px;
    text-align: center;
    display: inline-block;
}

.rate .value {
    font-size: 30px;
    font-weight: 600;
}

.rate i {
    vertical-align: middle;
    padding-bottom: 15px;
}

.rate .percentage {
    vertical-align: middle;
    font-size: 15px;
    padding-bottom: 15px;
}

.rate img {
    display: block;
    position: relative;
    width: 100%;
}

.overlayer {
    display: block;
    position: absolute;
    z-index: 101;
    opacity: 1;
}

.overlayer.fullwidth {
    width: 100%;
}

.overlayer .overlayer-wrapper {
    display: block;
    position: relative;
    z-index: 100;
}

.bottom-left {
    bottom: 0;
    left: 0;
    position: absolute;
}

.tags {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    margin: 0 0 10px 18px;
    padding: 2px 10px 1px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    position: relative;
    transition: all .25s linear;
    white-space: nowrap;
    line-height: 21px;
}
.tags:before {
    content: "";
    position: absolute;
    left: -13px;
    top: 0;
    transition: all .25s linear;
}
.tags:after {
    border-radius: 50% 50% 50% 50%;
    content: "";
    height: 5px;
    left: -1px;
    position: absolute;
    top: 10px;
    width: 5px;
}

.tooltip-inner {
    white-space: normal;
}

.tooltip-notification {
    cursor: pointer;
    right: 0;
    margin-top: 3px;
    padding: 5px 0;
    position: absolute;
    top: 25px;
    z-index: 10000;
}
.toolbar .tooltip-notification {
    top: 60px;
    right: 20px;
}
.tooltip-notification .tooltip-notification-arrow {
    left: 80%;
    margin-left: -5px;
    top: 0;
    height: 0;
    position: absolute;
    width: 0;
}
.tooltip-notification .tooltip-notification-inner {
    border-radius: 4px;
    font-size: 12px;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    line-height: normal;
}
.tooltip-notification .tooltip-notification-inner .message {
    font-size: 11px;
    margin-top: -4px;
}
.tooltip-notification .tooltip-notification-inner > div {
    width: 100px;
}

.float-none {
    float: none;
}

.radius-3 {
    border-radius: 3px;
}

.radius-5 {
    border-radius: 5px;
}

.radius-10 {
    border-radius: 10px;
}

.stack-right-bottom {
    left: auto !important;
    right: -0.5em !important;
    top: auto !important;
    bottom: -0.5em !important;
}

.noTransform {
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.vertical-bottom {
    vertical-align: bottom;
}

.vertical-middle {
    vertical-align: middle;
}

.vertical-top {
    vertical-align: top;
}

.show-grid {
    margin-bottom: 15px;
}

.show-grid [class^="col-"] {
    padding-bottom: 10px;
    padding-top: 10px;
}

.no-wrap {
    white-space: nowrap;
}

.display-none {
    display: none; /* Mainly used by form-wizard to hide proceeding steps while script is loading. Not to be confused with bootstrap's .no-display, which would override the script. */
}

.display-inline {
    display: inline !important;
}

.display-inline-block {
    display: inline-block !important;
}

.panel-body {
    position: relative; /* helps position datatables' processing indicator overlay */
}

p.text-center {
    margin-left: auto;
    margin-right: auto;
}

.bg-transparent {
    background-color: transparent;
}

.bg-white {
    background-color: rgb(255, 255, 255);
}

.lazy {
    background-image: none !important;
    background-color: #f1f1fa;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tooltip {
    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
}

.date {
    white-space: nowrap;
}

.max-width-480 {
    max-width: 480px;
    padding: 30px 15px;
    margin: 0 auto;
}

.fixed-width {
    width: 600px;
    float: none;
    margin: 0 auto;
}

.max-width-none {
    max-width: none !important;
}

/* fixed-width for icons, to align adjacent content in a list */
.fa-fw {
    width: 1.28571429em;
    text-align: center;
}


.main-icon,
.secondary-icon {
    display: block;
    font-size: 50px;
    width: 100px;
    border-radius: 50%;
    margin: 30px auto;
}

    .main-icon i,
    .secondary-icon i {
        line-height: 100px;
    }

.onboarding {
    padding-top: 50px;
    text-align: center;
}
    .onboarding .heading {
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .onboarding .calltoaction {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .onboarding .extrasteps {
        border-top: 1px solid #ccc;
        padding-top: 15px;
        margin-top: 15px;
    }

    .introduction-message h2 {
        display: inline-block;
    }

    @media (min-width: 1200px) {

        .onboarding > .columns-lg > .row > .column:first-child:nth-last-child(2),
        .onboarding > .columns-lg > .row > .column:last-child:nth-child(2) {
            width: 50%;
        }

        .onboarding > .columns-lg > .row > .column:first-child:nth-last-child(2) .introduction-message {
            float: right;
            padding-right: 30px;
        }

        .onboarding > .columns-lg > .row > .column:last-child:nth-child(2) .introduction-message {
            float: left;
            padding-left: 30px;
        }
    }

    @media (max-width: 1200px) {

        .onboarding {
            text-align: left; /* fallback for older browsers */
            text-align: start; /* supports rtl and ltr reading order */
        }

        .onboarding .column {
            margin-top: 30px;
            margin-bottom: 30px;
        }
            .onboarding .introduction-message {
                padding-left: 120px;
                position: relative;
                max-width: 100%;
            }
                .onboarding .main-icon,
                .onboarding .secondary-icon {
                    position: absolute;
                    left: 0;
                    top: 0;
                    margin: 0;
                    width: 90px;
                    font-size: 45px;
                    text-align: center;
                }
                    .onboarding .main-icon i,
                    .onboarding .secondary-icon i {
                        line-height: 90px;
                    }
    }
.suspended {
    padding-top: 50px;
}

.suspended i {
    font-size: 50px;
    color: #cc6666;
}

.unverified {
    padding-top: 100px;
}

.unverified i {
    font-size: 50px;
    color: #FFBF00;
}


/* prcommon - editable - togglebutton */
.top-label {
    display: block;
    margin: 10px 0 2px 0;
}

.alert {
    padding: 0;
}
    .alert-item {
        padding: 7px 15px;
    }
        .alert-item + .alert-item {
            border-top-style: solid;
            border-top-width: 1px;
        }



/* iframe effect for mini-lists */
/* NOTE: dropdowns and tooltips inside .list-pool will get clipped by the overflow */
.list-pool {
    height: 300px;
    overflow-y: auto;
    resize: vertical;
    margin-top: 15px;
    margin-bottom: 15px;
    outline-style: none;
}

    .list-pool-lg {
        max-height: 500px;
        height: auto;
    }

    .list-pool-xl {
        max-height: 750px;
        height: auto;
    }

.list-pool-danger {
    background-color: #f2dede;
}

.list-pool-success {
    background-color: #dff0d8;
}

.list-pool-muted {
    background-color: #efefef;
}

    /* prevent double border when list-pool stretches to container edges */
    .no-padding > .list-pool {
        margin: 0;
    }

/* Faux-tables for arranging content in dynamically-sized columns */

.column {
    vertical-align: top;
                padding-bottom: 15px;
}

@media (max-width: 768px) {

    .columns-xs {
        width: 100%;
        display: table;
        border-collapse: collapse;
    }
        .columns-xs > .row {
            width: 100%;
            display: table-row;
            margin: 0;
        }
            .columns-xs > .row > .column {
                display: table-cell;
                padding-left: 15px;
                padding-right: 15px;
            }
                .columns-xs > .row > .column:first-child {
                    padding-left: 0;
                }

                .columns-xs > .row > .column:last-child {
                    padding-right: 0;
                }

            .columns-xs > .row > .narrow {
                width: 1%;
            }

            .columns-xs > .row > .semi-narrow {
                width: 5%;
            }

            .columns-xs > .row > .medium-wide {
                width: 40%;
            }

            .columns-xs > .row > .wide {
                width: 99%;
            }
}

@media (min-width: 768px) {

    .columns-sm {
        width: 100%;
        display: table;
        border-collapse: collapse;
    }
        .columns-sm > .row {
            width: 100%;
            display: table-row;
            margin: 0;
        }
            .columns-sm > .row > .column {
                display: table-cell;
                padding-left: 15px;
                padding-right: 15px;
            }
                .columns-sm > .row > .column:first-child {
                    padding-left: 0;
                }

                .columns-sm > .row > .column:last-child {
                    padding-right: 0;
                }

            .columns-sm > .row > .narrow {
                width: 1%;
            }

            .columns-sm > .row > .semi-narrow {
                width: 5%;
            }

            .columns-sm > .row > .medium-wide {
                width: 40%;
            }

            .columns-sm > .row > .wide {
                width: 99%;
            }
}

@media (min-width: 992px) {

    .columns-md {
        width: 100%;
        display: table;
        border-collapse: collapse;
    }
        .columns-md > .row {
            width: 100%;
            display: table-row;
            margin: 0;
        }
            .columns-md > .row > .column {
                display: table-cell;
                padding-left: 15px;
                padding-right: 15px;
            }
                .columns-md > .row > .column:first-child {
                    padding-left: 0;
                }

                .columns-md > .row > .column:last-child {
                    padding-right: 0;
                }

            .columns-md > .row > .narrow {
                width: 1%;
            }

            .columns-md > .row > .semi-narrow {
                width: 5%;
            }

            .columns-md > .row > .medium-wide {
                width: 40%;
            }

            .columns-md > .row > .wide {
                width: 99%;
            }
}

@media (min-width: 1200px) {

    .columns-lg {
        width: 100%;
        display: table;
        border-collapse: collapse;
    }
        .columns-lg > .row {
            width: 100%;
            display: table-row;
            margin: 0;
        }
            .columns-lg > .row > .column {
                display: table-cell;
                padding-left: 15px;
                padding-right: 15px;
            }
                .columns-lg > .row > .column:first-child {
                    padding-left: 0;
                }

                .columns-lg > .row > .column:last-child {
                    padding-right: 0;
                }

            .columns-lg > .row > .narrow {
                width: 1%;
            }

            .columns-lg > .row > .semi-narrow {
                width: 5%;
            }

            .columns-lg > .row > .medium-wide {
                width: 40%;
            }

            .columns-lg > .row > .wide {
                width: 99%;
            }
}

@media (min-width: 1600px) {

    .columns-xl {
        width: 100%;
        display: table;
        border-collapse: collapse;
    }
        .columns-xl > .row {
            width: 100%;
            display: table-row;
            margin: 0;
        }
            .columns-xl > .row > .column {
                display: table-cell;
                padding-left: 15px;
                padding-right: 15px;
            }
                .columns-xl > .row > .column:first-child {
                    padding-left: 0;
                }

                .columns-xl > .row > .column:last-child {
                    padding-right: 0;
                }

            .columns-xl > .row > .narrow {
                width: 1%;
            }

            .columns-xl > .row > .semi-narrow {
                width: 5%;
            }

            .columns-xl > .row > .medium-wide {
                width: 40%;
            }

            .columns-xl > .row > .wide {
                width: 99%;
            }
}

.columns-xs > .row,
.columns-sm > .row,
.columns-md > .row,
.columns-lg > .row,
.columns-xl > .row {
    margin: 0;
}

.columns-xs.columns-compact,
.columns-sm.columns-compact,
.columns-md.columns-compact,
.columns-lg.columns-compact,
.columns-xl.columns-compact {
    width: auto;
}

/* Allow elements to be displayed depending on screen size (use on decorative elements only) */
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block,
.visible-xl {
    display: none !important;
}
    @media (min-width: 1600px) {

        .visible-xl {
            display: block !important;
        }

        table.visible-xl {
            display: table;
        }

        tr.visible-xl {
            display: table-row !important;
        }

        th.visible-xl, td.visible-xl {
            display: table-cell !important;
        }

        .visible-xl-block {
            display: block !important;
        }

        .visible-xl-inline {
            display: inline !important;
        }

        .visible-xl-inline-block {
            display: inline-block !important;
        }

        .hidden-xl {
            display: none !important;
        }
    }


/*
 * supplement bootstrap's grid breakpoints
 */

.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
    @media (min-width: 1600px) {
        .container {
            width: 1570px;
        }

        .col-xl-1,
        .col-xl-2,
        .col-xl-3,
        .col-xl-4,
        .col-xl-5,
        .col-xl-6,
        .col-xl-7,
        .col-xl-8,
        .col-xl-9,
        .col-xl-10,
        .col-xl-11,
        .col-xl-12 {
            float: left;
            padding-left: 15px;
            padding-right: 15px;
            min-height: 1px;
        }

        .col-xl-12 {
            width: 100%;
        }

        .col-xl-11 {
            width: 91.66666667%;
        }

        .col-xl-10 {
            width: 83.33333333%;
        }

        .col-xl-9 {
            width: 75%;
        }

        .col-xl-8 {
            width: 66.66666667%;
        }

        .col-xl-7 {
            width: 58.33333333%;
        }

        .col-xl-6 {
            width: 50%;
        }

        .col-xl-5 {
            width: 41.66666667%;
        }

        .col-xl-4 {
            width: 33.33333333%;
        }

        .col-xl-3 {
            width: 25%;
        }

        .col-xl-2 {
            width: 16.66666667%;
        }

        .col-xl-1 {
            width: 8.33333333%;
        }

        .col-xl-pull-12 {
            right: 100%;
        }

        .col-xl-pull-11 {
            right: 91.66666667%;
        }

        .col-xl-pull-10 {
            right: 83.33333333%;
        }

        .col-xl-pull-9 {
            right: 75%;
        }

        .col-xl-pull-8 {
            right: 66.66666667%;
        }

        .col-xl-pull-7 {
            right: 58.33333333%;
        }

        .col-xl-pull-6 {
            right: 50%;
        }

        .col-xl-pull-5 {
            right: 41.66666667%;
        }

        .col-xl-pull-4 {
            right: 33.33333333%;
        }

        .col-xl-pull-3 {
            right: 25%;
        }

        .col-xl-pull-2 {
            right: 16.66666667%;
        }

        .col-xl-pull-1 {
            right: 8.33333333%;
        }

        .col-xl-pull-0 {
            right: auto;
        }

        .col-xl-push-12 {
            left: 100%;
        }

        .col-xl-push-11 {
            left: 91.66666667%;
        }

        .col-xl-push-10 {
            left: 83.33333333%;
        }

        .col-xl-push-9 {
            left: 75%;
        }

        .col-xl-push-8 {
            left: 66.66666667%;
        }

        .col-xl-push-7 {
            left: 58.33333333%;
        }

        .col-xl-push-6 {
            left: 50%;
        }

        .col-xl-push-5 {
            left: 41.66666667%;
        }

        .col-xl-push-4 {
            left: 33.33333333%;
        }

        .col-xl-push-3 {
            left: 25%;
        }

        .col-xl-push-2 {
            left: 16.66666667%;
        }

        .col-xl-push-1 {
            left: 8.33333333%;
        }

        .col-xl-push-0 {
            left: auto;
        }

        .col-xl-offset-12 {
            margin-left: 100%;
        }

        .col-xl-offset-11 {
            margin-left: 91.66666667%;
        }

        .col-xl-offset-10 {
            margin-left: 83.33333333%;
        }

        .col-xl-offset-9 {
            margin-left: 75%;
        }

        .col-xl-offset-8 {
            margin-left: 66.66666667%;
        }

        .col-xl-offset-7 {
            margin-left: 58.33333333%;
        }

        .col-xl-offset-6 {
            margin-left: 50%;
        }

        .col-xl-offset-5 {
            margin-left: 41.66666667%;
        }

        .col-xl-offset-4 {
            margin-left: 33.33333333%;
        }

        .col-xl-offset-3 {
            margin-left: 25%;
        }

        .col-xl-offset-2 {
            margin-left: 16.66666667%;
        }

        .col-xl-offset-1 {
            margin-left: 8.33333333%;
        }

        .col-xl-offset-0 {
            margin-left: 0;
        }
    }

.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
@media (min-width: 2000px) {
    .container {
        width: 1970px;
    }

    .col-xxl-1,
    .col-xxl-2,
    .col-xxl-3,
    .col-xxl-4,
    .col-xxl-5,
    .col-xxl-6,
    .col-xxl-7,
    .col-xxl-8,
    .col-xxl-9,
    .col-xxl-10,
    .col-xxl-11,
    .col-xxl-12 {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
        min-height: 1px;
    }

    .col-xxl-12 {
        width: 100%;
    }

    .col-xxl-11 {
        width: 91.66666667%;
    }

    .col-xxl-10 {
        width: 83.33333333%;
    }

    .col-xxl-9 {
        width: 75%;
    }

    .col-xxl-8 {
        width: 66.66666667%;
    }

    .col-xxl-7 {
        width: 58.33333333%;
    }

    .col-xxl-6 {
        width: 50%;
    }

    .col-xxl-5 {
        width: 41.66666667%;
    }

    .col-xxl-4 {
        width: 33.33333333%;
    }

    .col-xxl-3 {
        width: 25%;
    }

    .col-xxl-2 {
        width: 16.66666667%;
    }

    .col-xxl-1 {
        width: 8.33333333%;
    }

    .col-xxl-pull-12 {
        right: 100%;
    }

    .col-xxl-pull-11 {
        right: 91.66666667%;
    }

    .col-xxl-pull-10 {
        right: 83.33333333%;
    }

    .col-xxl-pull-9 {
        right: 75%;
    }

    .col-xxl-pull-8 {
        right: 66.66666667%;
    }

    .col-xxl-pull-7 {
        right: 58.33333333%;
    }

    .col-xxl-pull-6 {
        right: 50%;
    }

    .col-xxl-pull-5 {
        right: 41.66666667%;
    }

    .col-xxl-pull-4 {
        right: 33.33333333%;
    }

    .col-xxl-pull-3 {
        right: 25%;
    }

    .col-xxl-pull-2 {
        right: 16.66666667%;
    }

    .col-xxl-pull-1 {
        right: 8.33333333%;
    }

    .col-xxl-pull-0 {
        right: auto;
    }

    .col-xxl-push-12 {
        left: 100%;
    }

    .col-xxl-push-11 {
        left: 91.66666667%;
    }

    .col-xxl-push-10 {
        left: 83.33333333%;
    }

    .col-xxl-push-9 {
        left: 75%;
    }

    .col-xxl-push-8 {
        left: 66.66666667%;
    }

    .col-xxl-push-7 {
        left: 58.33333333%;
    }

    .col-xxl-push-6 {
        left: 50%;
    }

    .col-xxl-push-5 {
        left: 41.66666667%;
    }

    .col-xxl-push-4 {
        left: 33.33333333%;
    }

    .col-xxl-push-3 {
        left: 25%;
    }

    .col-xxl-push-2 {
        left: 16.66666667%;
    }

    .col-xxl-push-1 {
        left: 8.33333333%;
    }

    .col-xxl-push-0 {
        left: auto;
    }

    .col-xxl-offset-12 {
        margin-left: 100%;
    }

    .col-xxl-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xxl-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xxl-offset-9 {
        margin-left: 75%;
    }

    .col-xxl-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xxl-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xxl-offset-6 {
        margin-left: 50%;
    }

    .col-xxl-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xxl-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xxl-offset-3 {
        margin-left: 25%;
    }

    .col-xxl-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xxl-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xxl-offset-0 {
        margin-left: 0;
    }
}

/* non-grid splitter */

@media (max-width: 768px) {
    .split-xs-2 > * {
        width: 50%;
    }
    .split-xs-3 > * {
        width: 33.333%;
    }
    .split-xs-4 > * {
        width: 25%;
    }
    .split-xs-5 > * {
        width: 20%;
    }
    .split-xs-6 > * {
        width: 16.666%;
    }
    .split-xs-7 > * {
        width: 14.285%;
    }
}

@media (min-width: 768px) {
    .split-sm-2 > * {
        width: 50%;
    }
    .split-sm-3 > * {
        width: 33.333%;
    }
    .split-sm-4 > * {
        width: 25%;
    }
    .split-sm-5 > * {
        width: 20%;
    }
    .split-sm-6 > * {
        width: 16.666%;
    }
    .split-sm-7 > * {
        width: 14.285%;
    }
}

@media (min-width: 992px) {
    .split-md-2 > * {
        width: 50%;
    }
    .split-md-3 > * {
        width: 33.333%;
    }
    .split-md-4 > * {
        width: 25%;
    }
    .split-md-5 > * {
        width: 20%;
    }
    .split-md-6 > * {
        width: 16.666%;
    }
    .split-md-7 > * {
        width: 14.285%;
    }
}

@media (min-width: 1600px) {
    .modal-xl {
        width: 1200px;
    }
}


/*
 *   Dropdown Menu
 */

.dropdown-menu {
    z-index: 10000;
}

.dropdown-menu.dropdown-square {
    border-radius: 0 !important;
}

.dropdown.menu.dropdown-square li {
    border-radius: 0 !important;
}

.dropdown-menu.dropdown-no-arrow:before,
.dropdown-menu.dropdown-no-arrow:after {
    display: none !important;
}

.dropdown-menu.dropdown-dark {
    border-radius: 0;
    list-style: none outside none;
    max-width: 300px;
    min-width: 166px;
    padding: 0;
    position: absolute;
    text-shadow: none;
    z-index: 1000;
}
.dropdown-menu.dropdown-dark:after {
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    content: " ";
    top: -9px;
    left: 10px;
}
.dropdown-menu.dropdown-dark.pull-right:after {
    left: auto;
    right: 10px;
}
.dropdown-menu.dropdown-dark .dropdown-header {
    padding: 8px 8px 6px;
    font-size: 11px;
}
.dropdown-menu.dropdown-dark li p, .dropdown-menu.dropdown-dark li a, .dropdown-menu.dropdown-dark .drop-down-wrapper li p, .dropdown-menu.dropdown-dark .drop-down-wrapper li a {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    padding: 8px 8px 6px;
    white-space: normal !important;
    display: block;
}
.dropdown-menu.dropdown-dark li:last-child a {
    border-radius: 0 0 6px 6px;
}

.dropdown-menu.dropdown-dark.dropdown-menu-square li:last-child a {
    border-radius: 0;
}

.dropdown-menu.dropdown-light {
    max-width: 300px;
    min-width: 166px;
    border-radius: 7px;
    padding: 0;
}
.dropdown-menu.dropdown-light:before, .dropdown-menu.dropdown-light:after {
    display: block;
    height: 0;
    position: absolute;
    width: 0;
}
.dropdown-menu.dropdown-light:before {
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    content: " ";
    top: -11px;
    left: 10px;
}
.dropdown-menu.dropdown-light:after {
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    content: " ";
    top: -9px;
    left: 11px;
}
.dropdown-menu.dropdown-light.pull-right:after {
    left: auto;
    right: 11px;
}
.dropdown-menu.dropdown-light.pull-right:before {
    left: auto;
    right: 10px;
}
.dropdown-menu.dropdown-light li a {
    font-size: 14px;
    line-height: 35px;
}
.dropdown-menu.dropdown-light li:first-child a {
    border-radius: 7px 7px 0 0;
}
.dropdown-menu.dropdown-light li:last-child a {
    border-radius: 0 0 7px 7px;
}

.dropdown-menu > li > strong {
    display: block;
    padding: 3px 20px;
    line-height: 35px;
}

.drop-down-wrapper .list-group-item {
    margin-top: 0;
}
.drop-down-wrapper .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.drop-down-wrapper .list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-header {
    padding: 5px 10px;
}

.dropdown-menu.dropdown-light.spaced {
    margin-top: 10px;
    min-width: 200px;
    left: auto;
}

.dropdown-menu li > a > i {
    color: #006BD6;
}


/*
 * General Tables
 */

.table-simple th,
.table-simple td {
    padding: 5px 10px;
    border-bottom: 1px solid #DDE3E0;
    vertical-align: top;
}
    .table-simple tr:last-child th,
    .table-simple tr:last-child td {
        border-bottom-style: none;
    }

    .table-simple th:first-child,
    .table-simple td:first-child {
        padding-left: 0;
    }

    .table-simple th:last-child,
    .table-simple td:last-child {
        padding-right: 0;
    }

.table-content {
    background-color: #fff;
    padding: 1px;
    border: 1px solid #E9EDEB
}

table .wide {
    width: 99%; /* mainly used for table cells */
}

table .narrow {
    width: 1%; /* mainly used for table cells */
}

table .semi-narrow {
    width: 5%; /* mainly used for table cells */
}

table .semi-wide {
    width: 15% !important; /* mainly used for table cells */
}

table .width-200 {
    max-width: 200px; /* mainly used for table cells */
}

table .width-300 {
    max-width: 300px; /* mainly used for table cells */
}

table .medium-wide {
    width: 40% !important; /* mainly used for table cells */
}

tr.no-padding th {
    padding: 1px !important; /* mainly used for table cells */
}

/* muted text in column headers doesnt't need to be bold */
th .text-muted {
    font-weight: normal;
}

.table td.text-right {
    padding-right: 20px; /* offset for sort order marker in right-aligned columns (until we fix inline markers) */
}

.table th.text-right {
    padding-right: 20px;
}

/* common styling of action columns */
td.action,
td.column-action {
    padding: 0;
    width: 40px;
    border-left-style: solid;
    border-left-width: 1px;
}
td.column-action:hover {
    background-color: #006BD6;
}

    .action .dropdown-toggle,
    .column-action .dropdown-toggle,
    .action-direct {
        display: block;
        width: 40px;
        line-height: 40px;
        font-size: 20px;
        padding: 0;
        text-align: center;
        border-style: none;
        cursor: pointer;
    }

    .action .dropdown-toggle:hover, .column-action .dropdown-toggle:hover, .column-action:hover .dropdown-toggle, .action-direct:hover {
        color: #fff !important;
    }

    .table-row-action-disabled {
        color: grey !important;
        pointer-events:none !important;
    }

/* common styling of date columns */
td.date {
    padding-left: 15px;
    padding-right: 15px;
    border-left-style: solid;
    border-left-width: 1px;
    text-align: right;
}

th > input.table-input,
td > input.table-input {
    width: 100%;
    border: none;
    line-height: 41px;
    padding: 0 0 0 10px;
}

/* Thumbnail cells in tables, with preview on :hover and :focus */
.table-thumbnail-column {
    padding: 0 !important;
}

.table-thumbnail {
    margin: auto;
    position: relative; /* make anchor for .table-thumbnail-viewer */
    width: 61px;
    min-width: 61px;
    height: 40px;
    border-right-style: solid;
    border-right-width: 1px;
    background-position: 50% 33%;
    background-size: cover;
}

    .table-thumbnail-lg {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .table-thumbnail-md {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .table-thumbnail-viewer {
        display: none; /* make invisible until hover */
        opacity: 0;
        position: fixed;
        left: 8px;
        bottom: 40%;
    }

    .table-thumbnail-viewer-sm {
        left: 60px;
        bottom: 0px;
    }

    .table-thumbnail-selected:before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #000000;
        opacity: 0.4;
    }

    .table-thumbnail-selected:after {
        content: "\f058";
        font: normal normal normal 14px/1 FontAwesome;
        color: #fff;
        font-size: 30px;
        position: absolute;
        top: 35%;
        left: 35%;
        bottom: 0;
        right: 0;
    }

    .table-thumbnail-selected-sm:after {
        font-size: 25px;
        top: 20%;
        left: 5%;
    }

    .table-thumbnail-disabled:after {
        content: "\f057";
    }

    @media (max-width: 1300px) and (min-width: 992px) {
        .table-thumbnail-viewer {
            position: fixed;
            bottom: 40%;
        }
    }

        .table-thumbnail:hover .table-thumbnail-viewer,
        .table-thumbnail:focus .table-thumbnail-viewer {
            display: block;
            opacity: 1;
            pointer-events: none;
        }
            .table-thumbnail:hover .table-thumbnail-viewer {
                z-index: 3;
            }

            .table-thumbnail:focus .table-thumbnail-viewer {
                z-index: 2;
            }

        .table-thumbnail img {
            max-width: 480px;
            max-width: 50vw;
            max-height: 480px;
            max-height: 50vh;
            border-style: solid ;
            border-width: 1px;
        }

        .table-thumbnail-text {
            position: absolute; /* place text overlay in bottom corner */
            bottom: 23px;
            left: 1px;
            z-index: 3;
            margin-right: 1px;
        }
            .plug-title,
            .plug-description {
                float: left; /* adapt text wrapper width to content */
                clear: both; /* split into seperate lines */
                padding-left: 10px;
                padding-right: 10px;
                line-height: 1.75; /* This needs some adjustment to improve multi-line text appearance */
            }
                .plug-title {
                    font-weight: bold;
                    margin-bottom: 1px;
                }

    thead .table-thumbnail-column {
        border-right: none;
        background-color: transparent;
    }

th.table-thumbnail-column.fa {
    display: table-cell;
}

/*
 * Index toolbar
 */

 /* temporary styles */
 .index-toolbar {
     background-color: #FFFFFF;
     justify-content: space-between;
     align-items: stretch;
 }
     .index-toolbar__group {
         display: inline-block;
         align-items: stretch;
         border-left: 1px solid #F4F5F6;
         border-right: 1px solid #F4F5F6;
     }

     .index-toolbar__group:first-child {
        border-left: none;
     }
     .index-toolbar__group:last-child {
        border-right: none;
     }
         .index-toolbar__group + .index-toolbar__group {
             border-left-style: none;
         }

         .index-toolbar__item--label {
             display: inline-block;
             margin: 0 2em;
             font-size: 1em;
             color: #788591;
             align-self: center;
         }

         .index-toolbar__item {
             position: relative;
             display: inline-block;
             align-items: stretch;
         }
             .index-toolbar__item + .index-toolbar__item {
                 border-left: 1px solid #F4F5F6;
             }

             .index-toolbar__link {
                padding: 1em;
                outline-style: none;
                border-radius: 0 !important;
             }

             .index-toolbar__dropdown-trigger {
                 padding: 1em;
                 color: #6085A9;
                 outline-style: none;
             }

                 .index-toolbar__dropdown-trigger:hover,
                 .index-toolbar__dropdown-trigger:focus,
                 .index-toolbar__item:hover .index-toolbar__dropdown-trigger {
                     background-color: #6085A9;
                     color: #FFFFFF;
                 }

                 .index-toolbar__dropdown-trigger__label {
                     margin: 0 0.5em;
                 }

                 .index-toolbar__counter {
                     opacity: 0.5;
                     /*margin-right: 0.5em;*/
                     /*display: none;*/
                 }

             .index-toolbar__dropdown-content {
                 min-width: 24em;
                 max-width: 100vw;
                 max-height: 0;
                 opacity: 0;
                 visibility: hidden;
                 overflow: hidden;
                 position: absolute;
                 top: 100%;
                 left: -1px;
                 background-color: #FFFFFF;
                 border: 1px solid #E9EBED;
                 border-radius: 0 0 5px 5px;
                 -webkit-box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.15);
                 -moz-box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.15);
                 box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.15);
                 transition: 0.6s 0s max-height, visibility ease-in;
             }
                 .index-toolbar__dropdown-content:hover,
                 .index-toolbar__dropdown-trigger:hover + .index-toolbar__dropdown-content,
                 .index-toolbar__dropdown-trigger:focus + .index-toolbar__dropdown-content{
                     max-height: 100vh;
                     opacity: 1;
                     visibility: visible;
                     z-index: 10000;
                     overflow: auto;
                 }

                 .index-toolbar__dropdown-content-pool {
                     max-height: 60vh;
                 }

                 .index-toolbar__dropdown-item {
                     margin: 0;
                 }

                     .index-toolbar__dropdown-item-wrapper + .index-toolbar__dropdown-item-wrapper {
                         border-top: 1px solid #E9EBED;
                         margin: 0;
                     }
                         /*.index-toolbar__dropdown-item + .index-toolbar__dropdown-item--separator {*/
                             /*border-top: 1px solid #D2D6DA;*/
                             /*border-width: 3px;*/
                         /*}*/

                     .index-toolbar__sub-header {
                        position: relative;
                        display: block;
                        padding: 1em 2em 1em 1em;
                        background-color: #F2F5F8;
                        color: #6085A9;
                     }

                     .index-toolbar__menu-option {
                         position: relative;
                         display: block;
                         padding: 1em 2em 1em 1em;
                         border-left: 3em solid #F2F5F8;
                         color: #6085A9;
                     }
                         .index-toolbar__menu-option:hover,
                         .index-toolbar__menu-option:focus {
                             background-color: #6085A9;
                             color: #FFFFFF;
                             border-left-color: #6D8FB0;
                         }

                         .index-toolbar__menu-option-no-hover:hover,
                         .index-toolbar__menu-option-no-hover:focus {
                             border-left: 3em solid #F2F5F8;
                             color: #6085A9;
                             background-color: transparent;
                         }

                         .index-toolbar__menu-option i {
                             font-size: 2em;
                             line-height: 1.692em;
                             position: absolute;
                             top: 0;
                             left: -1.5em;
                             width: 1.5em;
                             text-align: center;
                             display: block;
                         }

                         .index-toolbar__menu-option--action {
                             color: #006BD6;
                             border-color: #EBF5FF;
                         }
                             .index-toolbar__menu-option--action:hover,
                             .index-toolbar__menu-option--action:focus {
                                 background-color: #006BD6;
                                 border-color: #007af5;
                             }

                         .index-toolbar__menu-option--unavailable,
                         .index-toolbar__menu-option--unavailable:hover,
                         .index-toolbar__menu-option--unavailable:focus {
                             cursor: not-allowed;
                             background-color: #F4F5F6; /* todo: diagonal stripe pattern */
                             color: #789185;
                             border-color: #E9EBED;
                         }
                             .index-toolbar__menu-option--unavailable + .index-toolbar__menu-option--unavailable {
                                 border-color: #E9EBED;
                             }

                     .index-toolbar__menu-mass-select {
                         display: flex;
                         align-items: stretch;
                         /*flex-wrap: wrap;*/
                         /*background-color: #E9EBED;*/
                         background-color: #F2F5F8;
                         /*border-bottom: 1px solid #E9EBED;*/
                         border-bottom: 3px solid #E4EBF1;
                     }
                         .index-toolbar__menu-mass-select__label {
                             flex-grow: 1;
                             padding: 1em;
                             color: #788591;
                             display: none;
                         }
                         .index-toolbar__menu-mass-select__option {
                             /*flex: 0 0 33%;*/
                             color: #6085A9;
                             /*padding: 0.66666666em;*/
                             padding: 1em;
                             text-align: center;
                             /*vertical-align: middle;*/
                             display: flex;
                             align-items: center;
                             /*line-height: 1;*/
                             /*min-width: 2.308em;*/
                             /*flex-basis: 20%;*/
                             /*border-left: 1px solid #E9EBED;*/
                         }
                             .index-toolbar__menu-mass-select__icon {
                                 font-size: 150%;
                                 /*display: none;*/
                             }

                             .index-toolbar__menu-mass-select__option:hover,
                             .index-toolbar__menu-mass-select__option:focus {
                                 /*background-color: #6085A9;*/
                                 background-color: #E4EBF1;
                                 /*color: #FFFFFF;*/
                                 color: #567A9F;
                             }
                         .index-toolbar__menu-mass-select__search {
                             /*flex-basis: 100%;*/
                             /*padding: 1em 1em 0 1em;*/
                             padding: 1em;
                         }


                     .index-toolbar__dropdown-item--checkbox input[type="checkbox"] {
                         display: none;
                     }

                     .index-toolbar__dropdown-item--checkbox label {
                         cursor: pointer;
                         position: relative;
                         display: block;
                         line-height: inherit;
                         margin: 0;
                         color: #6085A9;
                         padding: 1em 2em 1em 1em;
                         border-left: 3em solid #F2F5F8;
                     }

                     .index-toolbar__dropdown-item--checkbox.index-toolbar__dropdown-item--custom label {
                        display: inline-block;
                     }

                     .index-toolbar__dropdown-item--custom label {
                        width: 80%;
                     }
                        .index-toolbar__dropdown-item--custom span {
                           cursor: pointer;
                           padding: 1em 0.55em;
                           display: inline-block;
                           color: #6085A9;
                           line-height: 1.5em;
                        }

                        .index-toolbar__dropdown-item--custom span.filter-edit:hover,
                        .index-toolbar__dropdown-item--custom span.filter-edit:focus {
                           background-color: #6085A9;
                           color: #FFFFFF;
                        }

                        .index-toolbar__dropdown-item--custom span.filter-delete:hover,
                        .index-toolbar__dropdown-item--custom span.filter-delete:focus {
                           background-color: #D43F3A;
                           color: #FFFFFF;
                        }

                         .index-toolbar__dropdown-item--checkbox label:hover,
                         .index-toolbar__dropdown-item--checkbox label:focus {
                             background-color: #6085A9;
                             color: #FFFFFF;
                             border-left-color: #6D8FB0;
                         }

                         .index-toolbar__dropdown-item--checkbox label:before {
                             border-radius: 0;
                             content: '';
                             display: block;
                             height: 1.5em;
                             left: -2.20em;
                             position: absolute;
                             top: 1em;
                             transition: border-width 0.15s linear 0s;
                             width: 1.5em;
                             border: 1px solid #6085A9;
                         }
                             .index-toolbar__dropdown-item--checkbox label:hover:before,
                             .index-toolbar__dropdown-item--checkbox label:focus:before {
                                 border-color: #FFFFFF;
                             }

                             .index-toolbar__dropdown-item--checkbox input[type="checkbox"]:checked + label:before {
                                 border-right-width: 19px;
                             }
                                 .index-toolbar__dropdown-item--checkbox input[type="checkbox"]:checked + label:hover:before,
                                 .index-toolbar__dropdown-item--checkbox input[type="checkbox"]:checked + label:focus:before {
                                     border-color: #FFFFFF;
                                 }

                             .index-toolbar__dropdown-item--checkbox label:after {
                                 display: block;
                                 height: 1.5em;
                                 left: -2em;
                                 position: absolute;
                                 top: 1.1em;
                                 width: 1.5em;
                                 color: #FFFFFF;
                                 content: '\f00c';
                                 font-family: 'FontAwesome';
                                 visibility: hidden;
                                 opacity: 0;
                                 transition-property: visibility, opacity;
                                 transition-duration: 0.15s;
                                 transition-timing-function: linear;
                             }
                                 .index-toolbar__dropdown-item--checkbox input[type="checkbox"]:checked + label:after {
                                     visibility: visible;
                                     opacity: 1;
                                 }
                                     .index-toolbar__dropdown-item--checkbox input[type="checkbox"]:checked + label:hover:after,
                                     .index-toolbar__dropdown-item--checkbox input[type="checkbox"]:checked + label:focus:after {
                                         color: #6085A9;
                                     }

                     .index-toolbar__dropdown-item--radio input[type="radio"] {
                         display: none;
                     }

                     .index-toolbar__dropdown-item--radio label {
                         cursor: pointer;
                         position: relative;
                         display: block;
                         line-height: inherit;
                         margin: 0;
                         color: #6085A9;
                         padding: 1em 2em 1em 1em;
                         border-left: 3em solid #F2F5F8;
                     }
                         .index-toolbar__dropdown-item--radio label:hover,
                         .index-toolbar__dropdown-item--radio label:focus {
                             background-color: #6085A9;
                             color: #FFFFFF;
                             border-left-color: #6D8FB0;
                         }

                         .index-toolbar__dropdown-item--radio label:before {
                             content: '';
                             display: block;
                             width: 2em;
                             height: 2em;
                             position: absolute;
                             top: 0.7em;
                             left: -2.5em;
                             /*transition: border-width 0.15s linear 0s;*/
                             transition: border-width 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
                             border: 0.2em solid #6085A9;
                             border-radius: 50%;
                         }

                         .index-toolbar__dropdown-item--radio label:after {
                                     display: block;
                                     width: 0.8em;
                                     height: 0.8em;
                                     position: absolute;
                                     top: 1.3em;
                                     left: -1.9em;
                                     background-color: #6085A9;
                                     border-radius: 50%;
                                     content: '';
                                     opacity: 0;
                                     visibility: hidden;
                                     transition-property: opacity, visibility;
                                     transition-duration: 0.3s;
                         }

                             .index-toolbar__dropdown-item--radio label:hover:before,
                             .index-toolbar__dropdown-item--radio label:focus:before {
                                 border-color: #FFFFFF;
                             }

                             .index-toolbar__dropdown-item--radio input[type="radio"]:checked + label:before {
                                 /*border-width: 0.5em;*/
                             }
                                 .index-toolbar__dropdown-item--radio input[type="radio"]:checked + label:hover:before,
                                 .index-toolbar__dropdown-item--radio input[type="radio"]:checked + label:focus:before {
                                     border-color: #FFFFFF;
                                 }

                             /*.index-toolbar__dropdown-item--radio label:after {
                                 display: block;
                                 height: 1.5em;
                                 left: -2em;
                                 position: absolute;
                                 top: 1.1em;
                                 width: 1.5em;
                                 padding: 0.75em;
                                 content: '';
                                 border-radius: 50%;
                                 border: 1px solid red;
                             }*/
                                 .index-toolbar__dropdown-item--radio input[type="radio"]:checked + label:after {
                                     opacity: 1;
                                     visibility: visible;
                                 }
                                     .index-toolbar__dropdown-item--radio input[type="radio"]:checked + label:hover:after,
                                     .index-toolbar__dropdown-item--radio input[type="radio"]:checked + label:focus:after {
                                         background-color: #FFFFFF;
                                     }

         .index-toolbar__group--filters {
             flex-grow: 1;
             justify-content: flex-end;
         }

         .index-toolbar__group--filters:last-child {
            flex: 0 0 auto;
         }

         @media (max-width: 1200px) {
            .index-toolbar__group--filters:last-child {
                flex: 1 1 auto;
            }
         }

         .index-toolbar__group--filters:last-child .index-toolbar__item:first-child {
            flex: 1 1 auto;
         }

         /*.index-toolbar__group-search {
             padding: 0 2em;
             align-items: center;
         }*/
             .index-toolbar__search-button,
             .index-toolbar__search-field,
             .index-toolbar__search-field[type="text"] {
                 /*background-color: #F2F5F8;*/
                 /*border-style: none;*/
                 padding: 0.5em 1em;
                 font-size: 1em;
                 line-height: 1.5em
             }

             .index-toolbar__search-field,
             .index-toolbar__search-field[type="text"] {
                 /*background-color: #F4F5F6;*/
                 width: 100%;
                 background-color: transparent;
                 border-style: none solid none none;
                 border-color: #F4F5F6;
                 border-width: 1px;
                 /*position: relative;*/
                 padding-left: 4em;
             }
                 .index-toolbar__search-field:hover,
                 .index-toolbar__search-field:focus,
                 .index-toolbar__search-field[type="text"]:hover,
                 .index-toolbar__search-field[type="text"]:focus {
                     background-color: #F4F5F6;
                     border-color: #F4F5F6;
                     /*background-color: #F0F5FA;
                     border-color: #E0EBF5;*/
                 }

                 .index-toolbar__search-icon
                 /*.index-toolbar__search-field:after*/ {
                     display: block;
                     /*content: '\f002';
                     font-family: 'FontAwesome';
                     font-size: 1em;
                     text-rendering: auto;
                     -webkit-font-smoothing: antialiased;
                     -moz-osx-font-smoothing: grayscale;
                     transform: translate(0, 0);*/
                     color: #AFC2D4;
                     /*font-size: 2em;*/
                     width: 1em;
                     line-height: 1em;
                     position: absolute;
                     left: 2em;
                     top: 50%;
                     margin-top: -0.5em;
                     text-align: center;
                 }

             .index-toolbar__search-button {
                 border-left-style: none;
                 color: #6085A9;
             }
                 .index-toolbar__search-button:hover,
                 .index-toolbar__search-button:focus {
                     background-color: #6085A9;
                     border-color: #6085A9;
                     color: #FFFFFF;
                 }
         .index-toolbar__button {
             align-self: stretch;
             font-size: 2em;
             padding: 0 0.5em;
             outline-style: none;
             /*border-left: 1px solid #F4F5F6;
             border-right: 1px solid #F4F5F6;*/
         }
             .index-toolbar__button + .index-toolbar__button {
                 border-left: 1px solid #F4F5F6;
             }
             .index-toolbar__button--apply {
                 color: #00A854;
             }
                 .index-toolbar__button--apply:hover,
                 .index-toolbar__button--apply:focus {
                     background-color: #00A854;
                     color: #FFFFFF;
                 }

             .index-toolbar__button--clear {
                 color: #6085A9;
             }
                 .index-toolbar__button--clear:hover,
                 .index-toolbar__button--clear:focus {
                     background-color: #6085A9;
                     color: #FFFFFF;
                 }

 .index-toolbar__preset-selectors {
     border-top: 1px solid #F4F5F6;
     /*margin-right: -1px;*/
     flex-wrap: wrap;
 }
     .index-toolbar__preset-selector {
         flex-grow: 1;
         flex-basis: 50%;
         display: block;
         padding: 1em;
         border-style: none solid solid none;
         border-width: 1px;
         border-color: #F4F5F6;
         color: #6085A9;
     }
         .index-toolbar__preset-selector:hover,
         .index-toolbar__preset-selector:focus {
             background-color: #6085A9;
             color: #FFFFFF;
         }

 .index-toolbar__mass-select {
     display: flex;
     border-bottom: 1px solid #F4F5F6;
     align-content: center;
     /*flex-wrap: wrap;
     position: absolute;
     right: 100%;
     top: 100%;
     opacity: 0;
     visibility: hidden;*/
 }
     /*.index-toolbar__mass-select:hover,
     .index-toolbar__dropdown-trigger:hover ~ .index-toolbar__mass-select,
     .index-toolbar__dropdown-trigger:focus ~ .index-toolbar__mass-select,
     .index-toolbar__dropdown-content:hover ~ .index-toolbar__mass-select {
         opacity: 1;
         visibility: visible;
         z-index: 1;
     }*/

     .index-toolbar__mass-select__option {
         /*flex-grow: 1;*/
         flex-basis: 33%;
         padding: 0.5em 1em;
         color: #6085A9;
         text-align: center;
         background-color: #FFFFFF;
     }
         .index-toolbar__mass-select__option + .index-toolbar__mass-select__option {
             border-left: 1px solid #F4F5F6;
         }

         .index-toolbar__mass-select__option:hover,
         .index-toolbar__mass-select__option:focus {
             background-color: #6085A9;
             color: #FFFFFF;
         }
             .index-toolbar__mass-select__icon {
                 font-size: 1.5em;
                 /*margin: 0 0.5em;*/
             }

     /*.index-toolbar__mass-select__option--none {
         position: absolute;
         left: 100%;
         top: -1px;
     }

     .index-toolbar__mass-select__option--all {
         position: absolute;
         right: 100%;
         top: -1px;
     }
 */

 @supports(display: flex) {

     .index-toolbar {
         display: flex;
         flex-wrap: wrap;
     }
         .index-toolbar__group {
             display: flex;
             flex-wrap: wrap;
         }
             .index-toolbar__item {
                 display: flex;
             }

             /*.index-toolbar__group-search {
                 display: flex;
                 flex-wrap: wrap;
             }*/
     .index-toolbar__preset-selectors {
         display: flex;
         flex-wrap: wrap;
     }

 }

/*
 * Datatables general
 */

#filterByType {
    width: calc(100% - 210px);
}

/* row count selector */
.dataTables_length {
    padding: 10px;
    float: left;
}
        div.dataTables_length select {
            width: auto;
            margin-right: 5px;
        }

/* row count overflow pagination */
div.dataTables_paginate {
    padding: 10px;
}

/* Search box modifications */
div.datatables-search {
    display: none;
}

div.datatables-search-loaded {
    display: block;
}

input.datatables-searchbox {
    padding-left: 15px;
    width: 100%;
    background-color: transparent;
    border-style: none;
    border-color: #F4F5F6;
    border-width: 1px;
    position: relative;
}

div.dataTables_filter label {
    width: 200px;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    div.dataTables_filter label {
        width: 100%;
    }

    #filterByType {
        width: 100%;
    }
}

@media (max-width: 768px) {
    div.dataTables_filter label {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    div.datatables-search {
        display: block;
    }
}

.panel-body .datatables-search, .panel-body .datatables-search-loaded {
    position: absolute; /* global fix for datatables searchfield when they appear inside a panel */
    right: 50px;
    top: -40px;
}

.tabbable .datatables-search, .tabbable .datatables-search-loaded {
    position: absolute; /* global fix for datatables searchfield when they appear inside tabs */
    right: 0px;
    top: -40px;
}
    @media (max-width: 1200px) {
        .tabbable .datatables-search, .panel-body .datatables-search {
            position: static; /* temporary fix for datatables search field overlapping on campaign list tabs */

        }
    }

/* Search box modifications end */

tbody .column-title {
    max-width: 0;
    width: 30%;
    overflow: hidden;
    text-overflow: ellipsis;
}

tbody .column-codesnippet {
    padding: 0 !important;
}

tr.inactive {
    background-color: #E9EDEB !important;
}
tr.inactive > td {
    color: #789185;
}
    tr.inactive .targeting-label {
        color: #789185;
    }



/* Simple toggle buttons */
.flat-btn {
    width: 32px;
    height: 32px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px 5px 0;
    background-color: #ececec;
    border: solid 1px #b8b8b9;
    border-radius: 0;
    box-shadow: none;
    font-weight: bold;
    text-align: center;
}

.flat-btn:hover {
    color: #333;
    background-color: #efeeee;
}

.flat-btn-sm {
    width: 28px;
    height: 28px;
}

.flat-btn-lg {
    width: 36px;
    height: 36px;
}

.flat-btn.active {
    background: #cecece;
    outline: none;
    -webkit-box-shadow: inset 0px 0px 4px #ccc;
    -moz-box-shadow: inset 0px 0px 4px #ccc;
    box-shadow: inset 0px 0px 4px #ccc;
}

.flat-btn.padded {
    padding-top: 7px;
}
.flat-btn.font-lg {
    font-size: 18px;
}

/* Zendesk button */
.btn-zendesk {
    background-color: #c0d42f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999rem;
    border: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .6;
    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
}

    .btn-zendesk:hover {
        background-color: rgb(177, 195, 40) !important;
    }



/* Checkbox group filters/tools */
.tools {
    position: relative;
    display: table;
}

.tools .tool-item {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.input-group.rounded > input {
    border-radius: 4px 0px 0px 4px;
}

/*
 * Timeline
 */

 @import url('https://fonts.googleapis.com/css?family=Droid+Serif');

 /* -------------------------------- 

 Primary style

 -------------------------------- */
 html * {
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }

 *, *:after, *:before {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
 }

 .timeline-container a {
   color: #acb7c0;
   text-decoration: none;
   font-family: "Open Sans", sans-serif;
 }

 .timeline-container h2 {
   font-family: "Open Sans", sans-serif;
   font-weight: bold;
 }

 .timeline-container p {
   font-family: "Droid Serif", serif;
   color: #7f8c97;
 }

 .timeline-container .timeline-date {
   font-family: "Droid Serif", serif;
 }

 /* -------------------------------- 

 Modules - reusable parts of our design

 -------------------------------- */
 .timeline-container {
   /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
   margin: 0 auto;
 }
 .timeline-container::after {
   /* clearfix */
   content: '';
   display: table;
   clear: both;
 }

 /* -------------------------------- 

 Main components 

 -------------------------------- */

 #timeline {
   position: relative;
   margin-top: 5em;
   margin-bottom: 2em;
 }
 #timeline::before {
   /* this is the vertical line */
   content: '';
   position: absolute;
   top: 0;
   left: 18px;
   height: calc(100% - 75px);
   width: 5px;
   background: #d7e4ed;
 }
 @media only screen and (min-width: 1170px) {
   #timeline {
     margin-top: 3em;
     margin-bottom: 3em;
   }
   #timeline::before {
     left: 50%;
     margin-left: -2px;
   }
 }

 .timeline-block {
   position: relative;
   margin: 2em 0;
 }
 .timeline-block::after {
   clear: both;
   content: "";
   display: table;
 }
 .timeline-block:first-child {
   margin-top: 0;
 }
 .timeline-block:last-child {
   margin-bottom: 0;
 }
 @media only screen and (min-width: 1170px) {
   .timeline-block {
     margin: 2em 0;
   }
   .timeline-block:first-child {
     margin-top: 0;
   }
   .timeline-block:last-child {
     margin-bottom: 0;
   }
 }

 .timeline-icon {
   position: absolute;
   top: 0;
   left: 0;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
 }
 .timeline-icon i {
   display: block;
   width: 24px;
   height: 24px;
   left: 51%;
   top: 50%;
   margin-top: 18px;
   margin-left: 18px;
   font-size: 2.25em;
   color: #fff;
   text-align: center;
 }
 .timeline-icon i.fa-play {
   left: 55% !important;
 }
 .timeline-icon i.fa-shopping-cart {
   left: 46% !important;
 }
 .timeline-icon i.fa-plus {
   left: 52% !important;
 }
 .timeline-icon i.fa-cog {
   left: 50% !important;
 }
 .timeline-icon.green {
   background: #75ce66;
 }
 .timeline-icon.red {
   background: #c03b44;
 }
 .timeline-icon.yellow {
   background: #f0ca45;
 }
 .timeline-icon.blue {
   background: #303e49;
 }
 .timeline-icon.now {
   background: #fff;
 }
 @media only screen and (min-width: 1170px) {
   .timeline-icon {
     width: 60px;
     height: 60px;
     left: 50%;
     margin-left: -30px;
     /* Force Hardware Acceleration in WebKit */
     -webkit-transform: translateZ(0);
     -webkit-backface-visibility: hidden;
   }
   .cssanimations .timeline-icon.is-hidden {
     visibility: hidden;
   }
   .cssanimations .timeline-icon.bounce-in {
     visibility: visible;
     -webkit-animation: cd-bounce-1 0.6s;
     -moz-animation: cd-bounce-1 0.6s;
     animation: cd-bounce-1 0.6s;
   }
 }

 @-webkit-keyframes cd-bounce-1 {
   0% {
     opacity: 0;
     -webkit-transform: scale(0.5);
   }
   60% {
     opacity: 1;
     -webkit-transform: scale(1.2);
   }
   100% {
     -webkit-transform: scale(1);
   }
 }
 @-moz-keyframes cd-bounce-1 {
   0% {
     opacity: 0;
     -moz-transform: scale(0.5);
   }
   60% {
     opacity: 1;
     -moz-transform: scale(1.2);
   }
   100% {
     -moz-transform: scale(1);
   }
 }
 @keyframes cd-bounce-1 {
   0% {
     opacity: 0;
     -webkit-transform: scale(0.5);
     -moz-transform: scale(0.5);
     -ms-transform: scale(0.5);
     -o-transform: scale(0.5);
     transform: scale(0.5);
   }
   60% {
     opacity: 1;
     -webkit-transform: scale(1.2);
     -moz-transform: scale(1.2);
     -ms-transform: scale(1.2);
     -o-transform: scale(1.2);
     transform: scale(1.2);
   }
   100% {
     -webkit-transform: scale(1);
     -moz-transform: scale(1);
     -ms-transform: scale(1);
     -o-transform: scale(1);
     transform: scale(1);
   }
 }
 .timeline-content {
   position: relative;
   margin-left: 60px;
   background: #ffffff;
   border-radius: 0.25em;
   padding: 1em;
   box-shadow: 0 3px 0 #d7e4ed;
 }
 .timeline-content::after {
   clear: both;
   content: "";
   display: table;
 }
 .timeline-content h2 {
   color: #303e49;
 }
 .timeline-content p, .timeline-content .timeline-read-more, .timeline-content .timeline-date {
   font-size: 13px;
   font-size: 0.8125rem;
 }
 .timeline-content .timeline-read-more, .timeline-content .timeline-date {
   display: inline-block;
 }
 .timeline-content p {
   margin: 1em 0;
   line-height: 1.6;
 }
 .timeline-content .timeline-read-more {
   float: right;
   padding: .8em 1em;
   background: #acb7c0;
   color: #ffffff;
   border-radius: 0.25em;
 }
 .no-touch .timeline-content .timeline-read-more:hover {
   background-color: #bac4cb;
 }
 .timeline-content .timeline-date {
   float: left;
   padding: .8em 0;
   opacity: .7;
 }
 .timeline-content::before {
   content: '';
   position: absolute;
   top: 16px;
   right: 100%;
   height: 0;
   width: 0;
   border: 7px solid transparent;
   border-right: 7px solid #ffffff;
 }
 @media only screen and (min-width: 768px) {
   .timeline-content h2 {
     font-size: 20px;
     font-size: 1.25rem;
   }
   .timeline-content p {
     font-size: 16px;
     font-size: 1rem;
   }
   .timeline-content .timeline-read-more, .timeline-content .timeline-date {
     font-size: 14px;
     font-size: 0.875rem;
   }
   .timeline-icon i {
     font-size: 1.75em;
     left: 52%;
     top: 54%;
   }
 }
 @media only screen and (min-width: 1170px) {
   .timeline-content {
     margin-left: 0;
     padding: 1.6em;
     width: 45%;
   }
   .timeline-content::before {
     top: 24px;
     left: 100%;
     border-color: transparent;
     border-left-color: #ffffff;
   }
   .timeline-content .timeline-read-more {
     float: left;
   }
   .timeline-content .timeline-date {
     position: absolute;
     width: 100%;
     left: 122%;
     top: 6px;
     font-size: 16px;
     font-size: 1rem;
   }
   .timeline-icon i {
     font-size: 2.25em;
     top: 48%;
     left: 50%;
   }
   .timeline-block:nth-child(even) .timeline-content {
     float: right;
   }
   .timeline-block:nth-child(even) .timeline-content::before {
     top: 24px;
     left: auto;
     right: 100%;
     border-color: transparent;
     border-right-color: #ffffff;
   }
   .timeline-block:nth-child(even) .timeline-content .timeline-read-more {
     float: right;
   }
   .timeline-block:nth-child(even) .timeline-content .timeline-date {
     left: auto;
     right: 122%;
     text-align: right;
   }
   .cssanimations .timeline-content.is-hidden {
     visibility: hidden;
   }
   .cssanimations .timeline-content.bounce-in {
     visibility: visible;
     -webkit-animation: cd-bounce-2 0.6s;
     -moz-animation: cd-bounce-2 0.6s;
     animation: cd-bounce-2 0.6s;
   }
 }

 @media only screen and (min-width: 1170px) {
   /* inverse bounce effect on even content blocks */
   .cssanimations .timeline-block:nth-child(even) .timeline-content.bounce-in {
     -webkit-animation: cd-bounce-2-inverse 0.6s;
     -moz-animation: cd-bounce-2-inverse 0.6s;
     animation: cd-bounce-2-inverse 0.6s;
   }
 }
 @-webkit-keyframes cd-bounce-2 {
   0% {
     opacity: 0;
     -webkit-transform: translateX(-100px);
   }
   60% {
     opacity: 1;
     -webkit-transform: translateX(20px);
   }
   100% {
     -webkit-transform: translateX(0);
   }
 }
 @-moz-keyframes cd-bounce-2 {
   0% {
     opacity: 0;
     -moz-transform: translateX(-100px);
   }
   60% {
     opacity: 1;
     -moz-transform: translateX(20px);
   }
   100% {
     -moz-transform: translateX(0);
   }
 }
 @keyframes cd-bounce-2 {
   0% {
     opacity: 0;
     -webkit-transform: translateX(-100px);
     -moz-transform: translateX(-100px);
     -ms-transform: translateX(-100px);
     -o-transform: translateX(-100px);
     transform: translateX(-100px);
   }
   60% {
     opacity: 1;
     -webkit-transform: translateX(20px);
     -moz-transform: translateX(20px);
     -ms-transform: translateX(20px);
     -o-transform: translateX(20px);
     transform: translateX(20px);
   }
   100% {
     -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
     -ms-transform: translateX(0);
     -o-transform: translateX(0);
     transform: translateX(0);
   }
 }
 @-webkit-keyframes cd-bounce-2-inverse {
   0% {
     opacity: 0;
     -webkit-transform: translateX(100px);
   }
   60% {
     opacity: 1;
     -webkit-transform: translateX(-20px);
   }
   100% {
     -webkit-transform: translateX(0);
   }
 }
 @-moz-keyframes cd-bounce-2-inverse {
   0% {
     opacity: 0;
     -moz-transform: translateX(100px);
   }
   60% {
     opacity: 1;
     -moz-transform: translateX(-20px);
   }
   100% {
     -moz-transform: translateX(0);
   }
 }
 @keyframes cd-bounce-2-inverse {
   0% {
     opacity: 0;
     -webkit-transform: translateX(100px);
     -moz-transform: translateX(100px);
     -ms-transform: translateX(100px);
     -o-transform: translateX(100px);
     transform: translateX(100px);
   }
   60% {
     opacity: 1;
     -webkit-transform: translateX(-20px);
     -moz-transform: translateX(-20px);
     -ms-transform: translateX(-20px);
     -o-transform: translateX(-20px);
     transform: translateX(-20px);
   }
   100% {
     -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
     -ms-transform: translateX(0);
     -o-transform: translateX(0);
     transform: translateX(0);
   }
 }


/*
 * Early version of table-to-block conversion for small screensizes. Currently used in widgets list under Manage Widgets

todo:
- support for more breakpoints
- support for strip format
- support for different card/strip sizes
- support for image thumbnails
- context menu card flip transition?
- integrate progress bar in strips
- support more content positions
- support text-overflow: ellipsis;
- implement sort menu (table header)
- implement table summary (table footer)

*/

/*
 * card/strip layouts (WIP)
 */

@media (max-width: 991px) {

    .tabbable.table-sm-card,
    .tabbable.table-sm-strip {
        padding: 0 1px;
    }
        .tabbable.table-sm-card .nav-tabs > li,
        .tabbable.table-sm-strip .nav-tabs > li,
        .tabbable.table-sm-card .nav-tabs > li > a,
        .tabbable.table-sm-strip .nav-tabs > li > a {
            margin: 0;
        }

    .table-sm-card.tabbable .datatables-search,
    .table-sm-strip.tabbable .datatables-search {
        position: static;
    }

    .table-sm-card,
    .table-sm-card thead,
    .table-sm-card tbody,
    .table-sm-card tbody > tr > td,
    .table-sm-strip,
    .table-sm-strip thead,
    .table-sm-strip tbody,
    .table-sm-strip tbody > tr > td {
        display: block;
        border-style: none;
    }

    .table-sm-card tbody > tr > td,
    .table-sm-strip tbody > tr > td {
        padding: 0 0 5px 0;
    }
        .flexbox .table-sm-card tbody {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        /* organize column headers */
        .table-sm-card thead > tr > th,
        .table-sm-strip thead > tr > th {
            display: inline-block;
            padding: 15px 3em 15px 15px;
            border-style: none;
        }
            /* hide non-sortable column headers */
            .table-sm-card .nosort,
            .table-sm-strip .nosort {
                display: none;
            }

            .table-sm-card tbody tr,
            .table-sm-strip tbody tr {
                position: relative;
                border-style: solid;
                border-width: 1px;
            }

            .table-sm-card tbody tr,
            .table-sm-strip tbody tr {
                padding: 15px 15px 45px 15px;
            }

            .table-sm-card tbody tr {
                display: inline-block;
                vertical-align: top;
                width: 50%;
            }

            .table-sm-strip tbody tr {
                display: block;
                padding: 15px 15px 45px 15px;
            }

                .table-sm-card .wide,
                .table-sm-card .narrow,
                .table-sm-strip .wide,
                .table-sm-strip .narrow {
                    width: auto;
                }

                .table-sm-card .numeric,
                .table-sm-card .date,
                .table-sm-card .url,
                .table-sm-strip .numeric,
                .table-sm-strip .date,
                .table-sm-strip .url {
                    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
                }

                /* default content positions */
                .table-sm-card tbody .card-top-left,
                .table-sm-strip tbody .strip-top-left {
                    max-width: 50%;
                    position: absolute;
                    top: 15px;
                    left: 15px;
                }

                .table-sm-card tbody .card-top-right,
                .table-sm-strip tbody .strip-top-right {
                    max-width: 50%;
                    position: absolute;
                    top: 15px;
                    right: 15px;
                }

                .table-sm-card tbody .column-values,
                .table-sm-card tbody .card-bottom-left,
                .table-sm-strip tbody .column-values,
                .table-sm-strip tbody .strip-bottom-left {
                    max-width: 50%;
                    position: absolute;
                    bottom: 15px;
                    left: 14px;
                    padding: 0;
                }

                .table-sm-card tbody .column-date,
                .table-sm-card tbody .card-bottom-right,
                .table-sm-strip tbody .column-date,
                .table-sm-strip tbody .strip-bottom-right {
                    position: absolute;
                    bottom: 10px;
                    right: 15px;
                    padding-bottom: 0;
                    /*padding-left: 50px;*/
                    text-align: right;
                }

                .table-sm-card .column-id,
                .table-sm-strip .column-id {
                    display: none;
                }

                .table-sm-card tbody .column-title,
                .table-sm-strip tbody .column-title {
                    max-width: 100%;
                    width: 100%;
                    padding: 0 30px 10px 0;
                    margin-bottom: 10px;
                }

                .table-sm-card tbody .action,
                .table-sm-card tbody .column-action,
                .table-sm-strip tbody .action,
                .table-sm-strip tbody .column-action {
                    position: absolute;
                    top: 0;
                    right: 0;
                }

        /* table footer styling not implemented yet */
        .table-sm-card tfoot,
        .table-sm-strip tfoot {
            display: none;
        }

    @media (max-width: 450px) {
        .table-sm-card tbody tr,
        .table-sm-strip tbody tr {
            width: 100%;
            max-width: 100%;
        }
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .tabbable.table-md-card,
    .tabbable.table-md-strip {
        padding: 0 1px;
    }
    .tabbable.table-md-card .nav-tabs > li,
    .tabbable.table-md-strip .nav-tabs > li,
    .tabbable.table-md-card .nav-tabs > li > a,
    .tabbable.table-md-strip .nav-tabs > li > a {
        margin: 0;
    }

    .table-md-card.tabbable .datatables-search,
    .table-md-strip.tabbable .datatables-search {
        position: static;
    }

    .table-md-card,
    .table-md-card thead,
    .table-md-card tbody,
    .table-md-card tbody > tr > td,
    .table-md-strip,
    .table-md-strip thead,
    .table-md-strip tbody,
    .table-md-strip tbody > tr > td {
        display: block;
        border-style: none;
    }

    .table-md-card tbody > tr > td,
    .table-md-strip tbody > tr > td {
        padding: 0 0 5px 0;
    }
        .flexbox .table-md-card tbody {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        /* organize column headers */
        .table-md-card thead > tr > th,
        .table-md-strip thead > tr > th {
            display: inline-block;
            padding: 15px 3em 15px 15px;
            border-style: none;
        }
            /* hide non-sortable column headers */
            .table-md-card .nosort,
            .table-md-strip .nosort {
                display: none;
            }

            .table-md-card tbody tr,
            .table-md-strip tbody tr {
                position: relative;
                border-style: solid;
                border-width: 1px;
            }

            .table-md-card tbody tr,
            .table-md-strip tbody tr {
                padding: 15px 15px 45px 15px;
                margin-bottom: 15px;
            }

            .table-md-card tbody tr {
                display: inline-block;
                vertical-align: top;
                width: 33%;
                margin: 0 auto;
            }

            .table-md-strip tbody tr {
                display: block;
                padding: 15px 15px 45px 15px;
            }

                .table-md-card .wide,
                .table-md-card .narrow,
                .table-md-strip .wide,
                .table-md-strip .narrow {
                    width: auto;
                }

                .table-md-card .numeric,
                .table-md-card .date,
                .table-md-card .url,
                .table-md-strip .numeric,
                .table-md-strip .date,
                .table-md-strip .url {
                    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
                }

                /* default content positions */
                .table-md-card tbody .card-top-left,
                .table-md-strip tbody .strip-top-left {
                    max-width: 50%;
                    position: absolute;
                    top: 15px;
                    left: 15px;
                }

                .table-md-card tbody .card-top-right,
                .table-md-strip tbody .strip-top-right {
                    max-width: 50%;
                    position: absolute;
                    top: 15px;
                    right: 15px;
                }

                .table-md-card tbody .column-values,
                .table-md-card tbody .card-bottom-left,
                .table-md-strip tbody .column-values,
                .table-md-strip tbody .strip-bottom-left {
                    max-width: 50%;
                    position: absolute;
                    bottom: 15px;
                    left: 14px;
                    padding: 0;
                }

                .table-md-card tbody .column-date,
                .table-md-card tbody .card-bottom-right,
                .table-md-strip tbody .column-date,
                .table-md-strip tbody .strip-bottom-right {
                    position: absolute;
                    bottom: 10px;
                    right: 15px;
                    padding-bottom: 0;
                    /*padding-left: 50px;*/
                    text-align: right;
                }

                .table-md-card .column-id,
                .table-md-strip .column-id {
                    display: none;
                }

                .table-md-card tbody .column-title,
                .table-md-strip tbody .column-title {
                    max-width: 100%;
                    width: 100%;
                    padding: 0 30px 10px 0;
                    margin-bottom: 10px;
                }

                .table-md-card tbody .action,
                .table-md-card tbody .column-action,
                .table-md-strip tbody .action,
                .table-md-strip tbody .column-action {
                    position: absolute;
                    top: 0;
                    right: 0;
                }

        /* table footer styling not implemented yet */
        .table-md-card tfoot,
        .table-md-strip tfoot {
            display: none;
        }
}



/*
 * .panel general
 */

.panel {
    margin-bottom: 15px;
    border-radius: 0;
}

.panel-disabled {
    opacity: 0.5;
    background-color: #eee;
    color: #555;
    padding: 15px;
    font-size: 16px;
    border-top: 0;
    min-height: 0px;
    border-bottom: 0;
}

.panel-body.panel-disabled {
    padding: 10px 15px !important;
}

.panel-title {
    display: inline;
}

ul.panel-title {
    list-style: none;
}

.panel-heading {
    outline-style: none;
    display: block;
    width: 100%;
    text-align: left;
    text-align: start;
}


/*   panel collapse & expand indicator/toggler   */

.panel-collapse {
    cursor: pointer;
}

.panel-heading.panel-collapse {
    padding-right: 50px;
}
    .panel-toggle {
        display: block;
        width: 50px;
        line-height: 50px;
        text-align: center;
        font-size: 20px;
    }

.panelception {
    /*border-top: none;*/
}

.panelception .panel {
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin-bottom: 10px;
}

.panelception .panel-heading {
    border-bottom: none;
}

.panelception .panel-body {
    padding: 5px 15px;
}

/*
 *   Accordions
 */

.accordion .panel + .panel {
    margin-top: 3px;
    border-top-style: solid;
    border-top-width: 1px;
}
    .accordion .accordion-toggle {
        display: block;
        position: relative;
        font-size: 16px;
        padding-top: 15px;
        padding-right: 26px;
    }

    .accordion .panel-heading {
        padding-right: 41px;
    }
        .accordion .panel .panel-heading,
        .accordion .panel-white .panel-heading {
            border-bottom-style: solid;
            border-bottom-width: 1px;
        }


/*   Expand/collapse indicator   */
.accordion .accordion-toggle:after {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 53px;
    content: "\e64a";
    font-family: themify;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
    /* Offset position to accomodate panel-heading padding */
    .accordion .panel-heading:after {
        right: 15px;
    }

    .accordion .collapsed:after {
        content: "\e64b";
    }

    .accordion .accordion-toggle.guide:after {
        line-height: 20px;
    }


/* Override Bootstrap's excessive specificity */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border-style: none;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-warning .panel-heading {
    background-color: #FFBF00;
    font-weight: 700;
    border-left-style: solid;
    color: #000;
    border-left-width: 48px;
    border-color: #232524;
    border-bottom: none;
}

.panel-warning > .panel-heading > .panel-title,
.panel-warning > .panel-heading > .panel-tools >.panel-toggle {
    color: #000;
}

.panel-warning > .panel-heading:before {
    content: "\f071";
    color: #FFBF00;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 24px;
    position: absolute;
    left: -48px;
    top: 12px;
    width: 48px;
    text-align: center;
}

/*
 * Actions/Options
 */

/* dropdown icon spacing */
.dropdown-menu i {
    width: 1.28571429em;
    text-align: center;
    margin-right: 15px;
}

.btn.btn-wide {
    min-width: 15em;
}

.btn-group.btn-wide > .btn:first-child {
    min-width: 12.5em;
}

/* step button logic for mobile devices */
@media (max-width: 599px) {
    .stepContainer .btn.btn-wide {
        min-width: 100%;
        margin-bottom: 15px;
    }
}

[id*='-batch-actions'] .action-btn {
    height: 27px;
    width: 125px;
    padding-top: 4px;
    padding-right: 0;
    margin-right:5px;
}

[id*='-batch-actions'] .action-btn .button-name {
    font-size: 14px;
    margin-right: 5px;
}

/* button icon spacing */
.btn i {
    margin-right: 5px;
}
    .btn i.fa-arrow-right,
    .btn i.fa-arrow-circle-right,
    .btn i.fa-chevron-right,
    .btn i.fa-chevron-circle-right {
        margin-left: 10px;
        margin-right: 0;
    }

/* experimental fix for keeping pill buttons on the same line */
/* width offset for right half of pill */
.btn-group {
    padding-right: 35px;
}
.btn-group-lg {
    padding-right: 45px;
}
.btn-group-sm,
.btn-group-xs {
    padding-right: 30px;
}
    .btn-group > .btn:nth-child(2) {
        position: absolute;
        right: 0;
    }
        .btn-group > .btn:nth-child(2) i {
            margin: 0;
        }


.btn-tile {
    white-space: normal;
    width: 150px;
    min-height: 150px;
    padding-top: 30px;
    vertical-align: bottom;
}
    .btn-tile i {
        display: block;
        font-size: 300%;
        margin-right: 0;
    }

    .btn-tile + .btn-tile {
        margin-left: 15px;
    }

/* tab icon spacing */
.nav-tabs i {
    margin-right: 5px;
}

/* label icon spacing */
.label i {
    margin-right: 5px;
}

/* inform user that they don't have any items yet (used in plugs, ads, banners, wblist[copy] ) */
.placeholder-heading {
    margin-top: 30px;
    opacity: 0.4;
}

/* align url to buttons in nag boxes (e.g. unverified websites) */
.alert-item .url {
    margin-top: 7px;
}

.dropdown-menu .checkbox {
    margin-left: 10px;
}

/* styling for disabled <a> elements in the action dropdown for batch-action-buttons */
a.action-link.disabled {
    text-decoration:line-through;
    pointer-events: none;
    cursor: default;
}


/* styling of integration libarary code snippet */
.code-snippet,
textarea.code-snippet,
input[type="text"].code-snippet {
    width: 100%;
    padding: 6px;
    white-space: pre-wrap;
    font-size: 10px;
}
    textarea.code-snippet {
        min-height: 96px;
        /*max-width: 790px;*/
    }

    input[type="text"].code-snippet {
        height: 22px;
    }

.code-snippet-short {
    padding: 15px 10px!important;
    margin: 15px 0;
    min-height: 50px!important;
}

.urlparameters {
    margin-bottom: 15px;
}

dt.url {
    display: inline-block!important;
    min-width: 200px;
}

.image-method-box {
    background-color: #f4f6f5;
    color: #6f6f6f;
    position: relative;
    padding: 40px 20px;
    border-radius: 5px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    outline-offset: -10px;
}

/* Browse stored images */
.img-gallery {
    padding: 5px;
    margin-bottom: 15px;
    margin-right: 11px;
    border-style: solid;
    border-width: 1px;
    max-width: 198px;
    width: 100%;
    vertical-align: top;
}

.img-preview > img {
    display: inline-block;
    margin-bottom: 15px;
    border-style: solid;
    border-width: 1px;
    max-width: 100%;
    border: 1px solid black;
}

.gallery-image {
    display: inline-block;
    padding: 2px;
    border: 1px solid #D9D9D9;
    vertical-align: top;
}

.gallery-lazy-loader {
    height: 50px;
    padding: 10px;
    line-height: 30px;
}

.view-document {
    text-align: center;
    min-height: 150px;
}

.striped > *:nth-child(even) {
    border-top-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
}

.container-fullw {
    padding-top: 0;
}

.page-header-ribbon {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}
    .page-header-ribbon .column:first-child {
        width: 1%;
        padding-right: 0;
        white-space: nowrap;
    }
        .page-header-ribbon .column:first-child i {
            margin-right: 5px;
        }

    .page-header-ribbon .column:last-child {
        text-align: right;
    }


/* sub-navigation ribbon */
.ribbon {
    overflow: hidden;
}
    .ribbon > * {
        float: left;
        display: block;
        padding: 30px 0;
        text-align: center;
    }
        .ribbon i {
            display: block;
            font-size: 32px;
        }

        .ribbon .heading {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (max-width: 767px) {
            .ribbon {
                padding-top: 65px;
            }
        }

        /* Due to insufficient support of flex in MSIE 10 and older, we'll solve ribbon segementing with psuedo-classes instead (just beccause we can!) */

        /* multi-row split */
        /* less than 8 (150px) items, but up to 4 per row */
        /* if item is 8th from last child and also first child, this means its the first of 8 total items */
        /* if this child is a sibling of the above, it means its also one of these 8 items */
        @media (min-width: 600px) and (max-width: 1200px) {
            .ribbon > :first-child:nth-last-child(8),
            .ribbon > :first-child:nth-last-child(8) ~ * {
                width: 25%;
                border-style: none solid solid none;
            }
        }

        /* less than 7 (150px) items, but up to 4 per row */
        @media (min-width: 600px) and (max-width: 1050px) {
            .ribbon > :first-child:nth-last-child(7),
            .ribbon > :first-child:nth-last-child(7) ~ * {
                width: 25%;
                border-style: none solid solid none;
            }
        }

        /* less than 6 (150px) items, but up to 3 per row */
        @media (min-width: 600px) and (max-width: 900px) {
            .ribbon > :first-child:nth-last-child(6),
            .ribbon > :first-child:nth-last-child(6) ~ * {
                width: 33.33333%;
                border-style: none solid solid none;
            }
        }

        /* less than 5 (150px) items, but up to 3 per row */
        @media (min-width: 600px) and (max-width: 750px) {
            .ribbon > :first-child:nth-last-child(5),
            .ribbon > :first-child:nth-last-child(5) ~ * {
                width: 33.33333%;
                border-style: none solid solid none;
            }
        }

        /* less than 4 (150px) items per row */
        @media (min-width: 450px) and (max-width: 600px) {

            .ribbon > :first-child:nth-last-child(8),
            .ribbon > :first-child:nth-last-child(8) ~ *,
            .ribbon > :first-child:nth-last-child(7),
            .ribbon > :first-child:nth-last-child(7) ~ * {
                width: 33.33333%;
                border-style: none solid solid none;
            }

            .ribbon > :first-child:nth-last-child(6),
            .ribbon > :first-child:nth-last-child(6) ~ *,
            .ribbon > :first-child:nth-last-child(5),
            .ribbon > :first-child:nth-last-child(5) ~ * {
                width: 50%;
                border-style: none solid solid none;
            }

            .ribbon > :first-child:nth-last-child(4),
            .ribbon > :first-child:nth-last-child(4) ~ *,
            .ribbon > :first-child:nth-last-child(3),
            .ribbon > :first-child:nth-last-child(3) ~ * {
                width: 25%;
                border-style: none solid solid none;
            }
        }

        /* less than 3 (150px) items per row */
        @media (min-width: 300px) and (max-width: 450px) {

            .ribbon > :first-child:nth-last-child(8),
            .ribbon > :first-child:nth-last-child(8) ~ *,
            .ribbon > :first-child:nth-last-child(7),
            .ribbon > :first-child:nth-last-child(7) ~ *,
            .ribbon > :first-child:nth-last-child(6),
            .ribbon > :first-child:nth-last-child(6) ~ *,
            .ribbon > :first-child:nth-last-child(5),
            .ribbon > :first-child:nth-last-child(5) ~ *,
            .ribbon > :first-child:nth-last-child(4),
            .ribbon > :first-child:nth-last-child(4) ~ *,
            .ribbon > :first-child:nth-last-child(3),
            .ribbon > :first-child:nth-last-child(3) ~ * {
                width: 50%;
                border-style: none solid solid none;
            }
        }

        /* One item per row */
        @media (max-width: 300px) {

            .ribbon > * {
                width: 100%;
                text-align: left;
                padding: 10px 15px;
                border-style: solid none none none;
            }
                .ribbon > *:first-child {
                    border-style: none;
                }

            .ribbon i,
            .ribbon .heading {
                vertical-align: middle;
                font-size: 16px;
            }

            .ribbon i {
                display: inline-block;
                width: 24px;
                text-align: center;
            }

            .ribbon .heading {
                display: inline;
            }
        }

        /* single-row split */
        @media (min-width: 300px) {

            .ribbon > :first-child:nth-last-child(2),
            .ribbon > :first-child:nth-last-child(2) ~ * {
                width: 50%;
            }

            .ribbon > :first-child:nth-last-child(2) ~ * {
                border-left: 1px solid rgba(0, 0, 0, 0.07);
            }
        }

        @media (min-width: 450px) {

            .ribbon > :first-child:nth-last-child(3),
            .ribbon > :first-child:nth-last-child(3) ~ * {
                width: 33.33333%;
            }

            .ribbon > :first-child:nth-last-child(3) ~ * {
                border-style: none none none solid;
            }
        }

        @media (min-width: 600px) {

            .ribbon > :first-child:nth-last-child(4),
            .ribbon > :first-child:nth-last-child(4) ~ * {
                width: 25%;
            }

            .ribbon > :first-child:nth-last-child(4) ~ * {
                border-style: none none none solid;
            }
        }

        @media (min-width: 750px) {
            .ribbon > :first-child:nth-last-child(5),
            .ribbon > :first-child:nth-last-child(5) ~ * {
                width: 20%;
            }

            .ribbon > :first-child:nth-last-child(5) ~ * {
                border-style: none none none solid;
            }
        }

        @media (min-width: 900px) {
            .ribbon > :first-child:nth-last-child(6),
            .ribbon > :first-child:nth-last-child(6) ~ * {
                width: 16.66666%;
            }

            .ribbon > :first-child:nth-last-child(6) ~ * {
                border-style: none none none solid;
            }
        }

        @media (min-width: 1050px) {
            .ribbon > :first-child:nth-last-child(7),
            .ribbon > :first-child:nth-last-child(7) ~ * {
                width: 14.28557%;
            }

            .ribbon > :first-child:nth-last-child(7) ~ * {
                border-style: none none none solid;
            }
        }

        @media (min-width: 1200px) {
            .ribbon > :first-child:nth-last-child(8),
            .ribbon > :first-child:nth-last-child(8) ~ * {
                width: 12.5%;
            }

            .ribbon > :first-child:nth-last-child(8) ~ * {
                border-style: none none none solid;
            }
        }



/* Ensure the page covers the window height (so footer sticks to bottom) */
.stretch {
    height: 100%;
    height: 100vh;
    min-height: 100%;
    min-height: 100vh;
}



/*
 *   Alerts
 */

.warning,
.danger,
.critical,
.success,
.info {
    display: inline-block;
    margin-bottom: 15px;
    padding: 15px;
    position: relative;
    font-weight: 700;
    border-left-style: solid;
}
    .warning:before,
    .danger:before,
    .critical:before,
    .success:before,
    .info:before {
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 24px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        position: absolute;
        left: -48px;
        top: 12px;
        width: 48px;
        text-align: center;
    }
        .warning .text-muted,
        .danger .text-muted,
        .critical .text-muted,
        .success .text-muted,
        .info .text-muted {
            font-weight: 400;
        }

        .warning:before {
            content: "\f071";
        }

        .danger:before,
        .critical:before {
            content: "\f057";
            color: #bd362f;
        }

        .success:before {
            content: "\f058";
        }

        .info:before {
            content: "\f05a";
        }

        @media (max-width: 300px) {

            .warning,
            .danger,
            .critical,
            .success,
            .info {
                border-left-style: none;
                border-top-style: solid;
            }

            .warning:before,
            .danger:before,
            .critical:before,
            .success:before,
            .info:before {
                left: 0;
                top: -36px;
            }
        }

.danger,
.critical {
    background-color: #bd362f;
}

/*
 *   Recaptcha
 */

.recaptcha-container {
    min-height: 78px; /* prevent the submit button moving once recaptcha element finsihes rendering */
    margin-bottom: 30px;
}






































/*
 *
 *
 *
 *
 *
 *
 *  4.  Components (These rules affect a specific view or a specific portion of the UI, and are not suited for reuse)
 *
 * * * */

/*
 *   Beta stamp
 */

.navbar-brand,
.brand {
    position: relative;
}

    .label-beta {
        position: absolute;
        left: 184px;
        top: 50%;
        line-height: 1 !important;
        padding: 0.1em 0.2em !important;
        background-color: transparent !important;
        border: 2px solid #FF0000;
        color: #FF0000;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        font-size: 12px !important;
        /*margin-top: -6px;*/
    }
        .navbar-brand .label-beta,
        .brand .label-beta {
            transform: rotate(-30deg);
        }

        .brand .label-beta {
            right: -20px;
            left: auto;
        }





/*
 *   Top bar
 */

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1059;
    height: 65px;
}
    .navbar-header {
        z-index: 10;
        position: relative;
    }
        .sidebar-mobile-toggler,
        .navbar-brand,
        .navbar-header .menu-toggler,
        .navbar-right > li > a {
            height: 65px;
            min-height: 30px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -moz-flex;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: center;
        }
            .sidebar-mobile-toggler {
                text-transform: uppercase;
                letter-spacing: 0.03em;
                font-size: 12px;
            }

            .menu-toggler,
            .sidebar-toggler {
                font-size: 17px;
            }

            .navbar-brand {
                padding: 0 15px;
            }
                .navbar-brand img,
                .navbar-brand svg {
                    width: 178px;
                }

    .navbar-nav {
        margin: 0;
        list-style: none;
    }

    .navbar-collapse {
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
    }
        .navbar-collapse.in {
            overflow-y: visible;
        }

        .navbar-right > li > a {
            text-transform: uppercase;
            letter-spacing: 0.03em;
            padding: 0 15px;
        }

        @media (max-width: 1200px) and (min-width: 767px) {
            .navbar-right > li {
                max-width: 121px;
            }
            .navbar-right > li > a {
                font-size: 11px;
                padding: 0 5px;
            }
        }

            .navbar-right > li > a i {
                width: 100%;
                font-size: 17px;
                position: absolute;
                bottom: 5px;
                left: 0;
                text-align: center;
            }

        .navbar-right .dropdown-menu,
        .navbar-right .dropdown-menu:after,
        .navbar-right .dropdown-menu:before {
            left: 0;
            right: 0;
            margin-left: auto;
            margin-right: auto;
        }
            .navbar-right .dropdown-menu li:first-child a {
                border-radius: 0;
            }

        .navbar-collapse .close-handle {
            position: absolute;
            left: 0;
            width: 100%;
            text-align: center;
        }

    /* Is this currently used? */
    .navbar .loading-bar-wrapper {
        position: absolute;
        bottom: 0;
        height: 3px;
        left: 0;
        right: 0;
        z-index: 999;
    }

@media (max-width: 767px) {

    .navbar,
    .navbar-header {
        height: 65px;
        max-height: 15vh;
        min-height: 30px;
    }
        .navbar-header {
            border-bottom: 1px solid #E4EBE8;
        }
            .sidebar-mobile-toggler,
            .navbar-brand,
            .navbar-header .menu-toggler {
                max-height: 15vh;
            }
                .sidebar-mobile-toggler {
                    min-width: 65px;
                    position: absolute;
                    top: 0;
                    left: 0;
                    padding: 0 15px;
                    text-transform: uppercase;
                    letter-spacing: 0.03em;
                    font-size: 12px;
                }

                .navbar-brand {
                    float: none;
                    padding: 0;
                    position: absolute;
                    top: 0;
                    left: 90px;
                    right: 90px;
                }
                    .navbar-brand img,
                    .navbar-brand svg {
                        max-width: 100%;
                        max-height: 10vh;
                        min-height: 15px;
                    }

                    .label-beta {
                        left: auto;
                        right: 0;
                    }

                .navbar-header .menu-toggler {
                    min-width: 65px;
                    position: absolute;
                    top: 0;
                    right: 0;
                    padding: 0 15px;
                }

    .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
        .navbar-right {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            margin-right: 0;
        }
            .navbar-right > li {
                border-bottom: 1px solid #f0f7f5;
                float: left;
                width: 100%;
            }

        .navbar-right .dropdown-menu {
            position: relative;
            width: 100%;
            max-width: 100%;
            box-shadow: none;
            border-right: none;
            border-left: none;
            border-bottom: none;
            margin: 0;
        }
            .navbar-right .dropdown-menu:before {
                left: 50%;
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            .navbar-right .dropdown-menu:after {
                left: 50%;
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            /* Bootstrap override */
            .navbar-nav .open .dropdown-menu {
                width: 100%;
            }
}
@media (min-width: 768px) {

    .navbar-header {
        min-width: 260px;
    }
        .app-sidebar-closed .navbar-header {
            min-width: 70px;
        }

        .navbar-brand {
            float: left;
        }

        .navbar-header .menu-toggler {
            display: none;
        }

    .navbar-right {
        /* override pointless javascript inline style */
        height: auto !important;
        margin-right: 15px;
    }
        .navbar-right > li {
            float: left;
        }
            .navbar-right .no-wrap {
                display: block;
                max-width: 136px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
}

@media (max-width: 991px) {

    .navbar {
        left: 0;
        margin: 0;
        position: fixed;
        right: 0;
        width: 100%;
    }

    .sidebar-mobile-toggler {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -moz-flex;
        display: -webkit-flex;
        display: flex;
        height: 65px;
        align-items: center;
        justify-content: center;
        min-width: 65px;
        float: left;
        padding: 0 15px;
    }
}

@media (min-width: 992px) {

    .sidebar-mobile-toggler {
        display: none;
    }

    .sidebar-toggler {
        display: block;
        line-height: 65px;
        padding: 0 15px;
        text-align: center;
    }

    .app-navbar-fixed .navbar-collapse,
    .app-navbar-fixed .navbar-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .app-sidebar-closed .navbar-header {
        width: 70px;
    }
        .app-sidebar-closed .navbar-brand {
            display: none;
        }

        .app-sidebar-closed .sidebar-toggler {
            float: none !important;
            display: block;
            margin: 0;
            padding: 0;
            text-align: center;
        }

    .app-sidebar-closed .navbar-collapse {
        margin-left: 70px;
    }

    .app-sidebar-fixed .navbar-header {
        position: fixed;
        top: 0;
    }

    .navbar-right {
        position: relative;
    }
}

@media (max-width: 991px) and (min-width: 767px) {

    .navbar-right {
        position: relative;
    }
}



/*
 *   Side bar
 */

.sidebar {
    /* Prevent sidebar from having a width greater than the viewport */
    max-width: 75%;
    width: 260px;
    float: left;
    left: 0;
    bottom: 0;
    overflow: visible;
    z-index: 1051;
}
    .sidebar a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .sidebar-container {
        height: 100%;
    }
        .app-sidebar-fixed .sidebar-container {
            overflow-y: hidden;
            overflow-x: visible;
            position: relative;
        }

    .app-mobile .sidebar {
        overflow: auto;
    }

    .sidebar .wrapper {
        padding: 20px 15px;
    }

    .app-navbar-fixed.app-sidebar-fixed .sidebar {
        top: 0;
    }

    .sidebar nav {
        min-height: 100%;
    }

    .sidebar > div nav > ul {
        margin: 0;
    }

    @media (min-width: 992px) {

        .sidebar {
            margin-top: 65px;
        }

        .app-navbar-fixed .sidebar {
            margin-top: 0;
        }

        .app-sidebar-fixed .sidebar {
            position: fixed;
            top: 65px !important;
            margin-top: 0;
        }

        .app-sidebar-closed .sidebar {
            width: 70px;
        }

        .sidebar:before {
            bottom: 0;
            content: "";
            position: absolute;
            top: 0;
            width: inherit;
            z-index: -1;
        }
    }

    @media (max-width: 991px) {

        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
            float: none;
            -webkit-transform: translate3d(-260px, 0, 0);
            transform: translate3d(-260px, 0, 0);
            -moz-transition: -moz-transform 300ms ease 0s;
            -o-transition: -o-transform 300ms ease 0s;
            -webkit-transition: -webkit-transform 300ms ease;
            -webkit-transition-delay: 0s;
            transition: transform 300ms ease 0s;
        }

        .app-slide-off .sidebar {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            -moz-transition: -moz-transform 300ms ease 0s;
            -o-transition: -o-transform 300ms ease 0s;
            -webkit-transition: -webkit-transform 300ms ease;
            -webkit-transition-delay: 0s;
            transition: transform 300ms ease 0s;
        }

        .sidebar > .sidebar-container {
            overflow-y: hidden;
            overflow-x: visible;
            position: relative;
        }
    }

    /* Match content to sidebar when viewport is narrower */
    @media (max-width: 347px) {

        #app.app-slide-off > .app-content {
            transform: translate3d(75%, 0, 0);
        }
    }

    .app-sidebar-closed .sidebar-toggler .ti-angle-double-left:before {
        /* Override double-left-arrow glyph when sidebar is closed */
        content: "\e661";
    }

    .app-sidebar-closed .navbar-status {
        display: none;
    }
    .app-sidebar-closed .main-navigation-menu > li {
        border-style: none;
    }

    .app-sidebar-closed .navbar-info {
        display: none;
    }
        .app-sidebar-closed .main-navigation-menu > li {
            border-style: none;
        }

.item-content {
    display: table-row;
}
    .item-content .item-media {
        display: table-cell;
        padding-left: 20px;
        padding-right: 15px;
        text-align: center;
    }

    .item-content .item-inner {
        display: table-cell;
        padding-right: 20px;
        width: 99%;
    }
        .no-touch .item-content .item-inner {
          -moz-transition: border 300ms linear;
          -o-transition: border 300ms linear;
          -webkit-transition: border 300ms linear;
          transition: border 300ms linear;
        }

.sidebar > div nav > ul {
    list-style: none;
    padding: 0;
}
    .sidebar > div nav > ul li {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
    }
        .sidebar > div nav > ul > li > a {
            display: table;
        }
            .sidebar > div nav > ul > li a i {
                font-weight: normal;
            }

        .no-touch .sidebar > div nav > ul li {
            -moz-transition: background-color 300ms linear;
            -o-transition: background-color 300ms linear;
            -webkit-transition: background-color 300ms linear;
            transition: background-color 300ms linear;
        }

@media (min-width: 992px) {

    .app-sidebar-closed .sidebar > div nav > ul li ul.sub-menu {
        display: none !important;
    }
}

.sidebar > div nav > ul li.active > ul.sub-menu {
    display: block;
    padding: 0;
}

.sidebar > div nav > ul li > a {
    font-size: 14px;
}

.sidebar > div nav > ul li a {
    margin: 0;
    position: relative;
    text-decoration: none;
}

.sidebar > div nav > ul li a i[class*="ti-"] {
    display: inline-block;
    font-size: 17px;
    position: relative;
    top: 2px;
}
#sidebar > div nav > ul li a .icon-arrow {
    float: right;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
}
#sidebar > div nav > ul li a .icon-arrow:before {
    content: "\e64b";
    font-family: themify;
}
#sidebar > div nav > ul li.open > a .icon-arrow {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
}
#sidebar > div nav > ul li.open > a .icon-arrow:before {
    content: "\e64a";
}

ul.sub-menu {
    clear: both;
    list-style: none;
    padding: 0;
    display: none;
    margin: 0;
}
ul.sub-menu li {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1px !important;
    padding: 0;
}

ul.sub-menu li a {
    display: block;
    font-size: 13px !important;
    font-weight: 300;
    margin: 0;
    padding-left: 52px;
    padding-right: 15px;
    text-decoration: none;
}

ul li.sub-menu-dual {
    display: flex !important;
}
ul.sub-menu li a.sub-menu-item-primary {
    flex: 1;
}
ul.sub-menu li a.sub-menu-item-secondary {
    width: 50px;
    padding-left: 20px;
    border-left: 1px solid #D2D6DA;
    display: inline-flex;
}

ul.sub-menu li a .icon-arrow {
    margin-right: 22px;
}
ul.sub-menu li.dropdown-header {
    padding-left: 40px !important;
}
ul.sub-menu li.divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    margin-left: 40px !important;
}
ul.sub-menu li ul.sub-menu li a {
    padding-left: 60px !important;
}
ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
    padding-left: 80px !important;
}
@media (min-width: 992px) {
    .app-sidebar-closed ul.sub-menu {
        left: 70px;
        position: absolute;
        overflow-y: auto;
        overflow-x: visible;
        height: auto;
        bottom: auto;
        width: 260px;
        z-index: 1050;
        display: none;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .app-sidebar-closed ul.sub-menu > li a {
        padding-left: 20px !important;
        padding-right: 5px;
    }
    .app-sidebar-closed ul.sub-menu > li ul.sub-menu {
        position: relative;
        left: 0;
        width: 100%;
    }
    .app-sidebar-closed ul.sub-menu > li ul.sub-menu li a {
        padding-left: 30px !important;
    }
    .app-sidebar-closed ul.sub-menu > li ul.sub-menu li ul.sub-menu li a {
        padding-left: 50px !important;
    }
}

@media (min-width: 992px) {
    .app-sidebar-closed .app-aside {
        overflow: visible !important;
    }
    .app-sidebar-closed .app-aside .search-form > a {
        height: 45px;
        display: block;
        padding: 13px 15px;
        text-align: center;
        font-size: 17px;
    }
    .app-sidebar-closed .app-aside li a .icon-arrow {
        float: right;
        margin-right: 6px !important;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
    }
    .app-sidebar-closed .app-aside li a .icon-arrow:before {
        content: "\e64a";
        font-family: themify;
    }
    .app-sidebar-closed .app-aside li.open > a .icon-arrow {
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
    }
    .app-sidebar-closed .app-aside li.open > a .icon-arrow:before {
        content: "\e64b";
    }
    .app-sidebar-closed .app-aside > .item-inner {
        width: 260px;
        left: 70px;
        top: 0;
        width: 260px;
        margin-left: 0;
        z-index: 1051;
        line-height: 52px;
    }
    .app-sidebar-closed .app-aside > .item-inner:before {
        content: "";
        display: block;
        float: right;
        height: 0;
        position: absolute;
        left: 0;
        top: 11px;
        width: 0;
        z-index: 1;
    }
    .app-sidebar-closed .app-aside > .item-inner:after {
        content: "";
        display: block;
        float: right;
        height: 0;
        position: absolute;
        left: -1px;
        top: 13px;
        width: 0;
        z-index: 1;
    }
    .app-sidebar-closed .app-aside > .item-inner .title {
        margin-left: 20px;
        font-size: 14px;
    }
    .app-sidebar-closed .app-aside > .item-inner .icon-arrow {
        display: none;
    }
    .app-sidebar-closed .app-aside > ul.sub-menu {
        width: 260px;
        display: block !important;
        overflow: auto;
        left: 70px;
    }
    .app-sidebar-closed .app-aside > ul.sub-menu > li a {
        font-size: 14px;
    }
}
@media (min-width: 992px) and (min-width: 992px) {

    .no-touch .app-sidebar-closed #sidebar > div nav > ul li {
        -moz-transition: background-color 0ms linear;
        -o-transition: background-color 0ms linear;
        -webkit-transition: background-color 0ms linear;
        transition: background-color 0ms linear;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li.active a {
        margin: 0 !important;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a {
        height: 52px;
        display: block;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a i:not([class*="fa-stack"]) {
        font-size: 17px;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a .item-content {
        display: block;
        padding-left: 0;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a .item-media {
        display: block;
        text-align: center;
        /*padding: 13px 15px;*/
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a .item-inner {
        display: none;
        position: absolute;
        left: 70px;
        top: 0;
        padding: 13px 0;
        bottom: 0;
        width: 260px;
        margin-left: 0;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a .item-inner .title {
        margin-left: 20px;
    }
    .app-sidebar-closed #sidebar > div nav > ul > li > a .item-inner .icon-arrow {
        display: none;
    }
}

.navbar-status {
    line-height: 1;
    position: relative;
}
    .navbar-status .navbar-info-item {
        display: block;
        margin-top: 5px;
        padding: 10px 20px;
        position: relative;
    }

.navbar-info {
    min-height: 143px;
    line-height: 1;
    position: relative;
}
    .navbar-info-panel {
        position: relative;
        padding-top: 13px;
        padding-bottom: 23px;
        width: 100%;
    }
        .navbar-info-panel .navbar-info-item {
            display: block;
            margin-top: 1px;
            padding: 10px 20px;
            position: relative;
        }
            .navbar-info-value {
                position: absolute;
                bottom: 9px;
                right: 20px;
                font-size: 125%;
            }

/*
 * SweetAlert Toast Notifications
 */


/*
 *   Page header
 */

.page-title {
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
    padding-top: 95px;
    padding-bottom: 30px;
    min-width: 50%;
    overflow: visible;
}

.page-title-no-menu {
    padding-top: 95px;
    padding-left: 15px;
}
    @media (max-width: 767px) {
        .page-title {
            text-align: center;
        }
    }

    @media (min-width: 768px) {

        /* match page title to sidebar info panel */
        .page-title {
            padding-top: 125px;
            /*min-height: 208px;
            padding-top: 65px;
            padding-right: 30px;
            padding-bottom: 30px;
            padding-left: 30px;
            display: flex;
            align-content: flex-end;
            justify-content: flex-end;
            flex-direction: column;*/
        }
        .page-title-no-menu {
            padding-top: 60px;
        }
    }

    .page-title .row {
        margin: 0 15px;
    }
        .page-title h1 {
            /*font-size: 28px;*/
            line-height: 1;
            margin: 0;
        }
            @media (max-width: 767px) {

                .page-title h1 {
                    font-size: 24px;
                }
            }

        .mainDescription,
        .main-description {
            display: block;
            margin-top: 5px;
        }
            .mainDescription small,
            .main-description small {
                font-size: 60%;
                margin-top: 10px;
                display: block;
            }

        .breadcrumb {
            font-size: 12px;
            padding: 0;
        }
            @media (max-width: 767px) {

                .breadcrumb {
                    margin: 15px 0 0 0;
                }
            }

            @media (min-width: 768px) {

                .breadcrumb {
                    position: absolute;
                    right: 30px;
                    top: 95px;
                }
            }

            .breadcrumb > li + li:before {
                content: "\f054";
                font: normal normal normal 14px/1 FontAwesome;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                transform: translate(0, 0);
                font-size: 8px;
                display: inline-block;
                vertical-align: middle;
            }



/*
 *   Main content
 */

.main-content {
    min-height: 100%;
    position: relative;
}
    .main-content .container {
        width: 100% ;
        display: inline-block;
        padding-bottom: 50px;
    }

@media (min-width: 992px) {

    .main-content {
        margin-left: 260px;
    }
        .app-navbar-fixed .main-content {
            margin-top: 0;
        }

        .app-sidebar-closed .main-content {
            margin-left: 70px;
        }
            .app-navbar-fixed .main-content:before,
            .app-navbar-fixed .main-content:after {
                content: " ";
                display: table;
            }
                .app-navbar-fixed .main-content:after {
                    clear: both;
                }
}



/*
 * Page Footer
 */

.site-footer {
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    font-size: 10px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* z-index: 1088; */
}
    .site-footer .footer-inner {
        padding: 0 30px;
        line-height: 50px;
    }

    @media (min-width: 992px) {

        .site-footer {
            margin-left: 260px;
        }

        .app-sidebar-closed .site-footer {
            margin-left: 70px;
        }

        .app-footer-fixed .site-footer {
            position: fixed;
        }
    }

    @media (max-width: 991px) {

        .app-slide-off .site-footer,
        .app-offsidebar-open .site-footer {
            display: none;
        }
    }

    .go-top {
        cursor: pointer;
        font-size: 16px;
        margin-bottom: 0;
        margin-right: 0;
        text-decoration: none;
        line-height: 50px;
        text-align: center;
        display: block;
    }



/*
 * Index: Dashboard
 */

.dashboard {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 50px;
    overflow: hidden;
}
    .gauge {
        display: block;
        overflow: hidden;
        padding: 95px 15px 30px 15px;
        text-align: center;
    }
        .gauge + .gauge {
            border-left-style: solid;
            border-left-width: 1px;
        }

        .gauge-title {
            font-size: 30px;
            margin-bottom: 10px;
            white-space: nowrap;
            font-weight: 700;
        }

        .gauge-status {
            border-radius: 50%;
            width: 70px;
            margin: 0 auto;
        }
            .gauge-status i {
                margin: 0;
                padding: 0;
                line-height: 70px;
                font-size: 35px;
            }

        .gauge-value {
            display: inline-block;
            margin-bottom: 10px;
            border-bottom-style: solid;
            border-bottom-width: 1px;
            white-space: nowrap;
            font-size: 30px;
            font-weight: 700;
        }

        @media (max-width: 600px) {

            .gauge-status {
                width: 40px;
            }
                .gauge-status i {
                    line-height: 40px;
                    font-size: 20px;
                }

            .gauge-value {
                font-size: 20px;
            }
        }

        @media (max-width: 767px) {
            .gauge {
                padding: 30px 15px;
            }
        }

        @media (max-width: 450px) {
            .gauge {
                min-height: 175px;
                padding: 20px;
            }
        }

.campaign-btn-group {
    padding-top: 10px;
}

@media (min-width: 992px) {
    .campaign-btn-group {
        float: right;
        padding-top: 0;
    }
}

.date-filters {
    float: right;
}

@media (max-width: 1200px) {
    .date-filters {
        float: none;
    }

    .chart-filters {
        margin-top: 10px;
    }
}

.chart-title {
    font-size: 24px;
}

.chart-description {
    min-width: 240px;
    float: right;
}
    .chart-legend-panel {
        min-width: 120px;
        float: left;
        text-align: center;
    }
        .chart-legend {
            height: 28px;
            width: 30px;
            line-height: 26px;
            margin-right: -3px;
            margin-top: 1px;
            text-align: center;
            display: inline-block;
        }

/* Explanation message if Dashboard charts are unavailable */
.availability-message {
    display: none;
    position: absolute;
    top: 10%;
    /* margin-top: -120px; position message vertically; this should be slightly more than half the rendered height of .availability-message */
    z-index: 2;
    width: 100%;
    text-align: center;
}
    .availability-message > .availability-container {
        max-width: 480px;
        margin: 0 auto;
        padding: 30px;
    }

        .availability-message i {
            border-radius: 50%;
            display: block;
            margin: 0 auto;
            width: 60px;
            line-height: 60px;
            font-size: 30px;
        }

        .availability-message h2 {
            display: inline;
            line-height: 2;
            padding-bottom: 10px;
            border-bottom-style: solid;
            border-bottom-width: 1px;
        }

        .availability-message p {
            margin-top: 15px;
        }

/* Dim Dashboard charts when insufficient data is available */
.unavailable {
    position: relative;
}
        .unavailable > .availability-message {
            display: block;
        }

        .unavailable > .availability-dimmer {
            opacity: 0.15;
            pointer-events: none;
        }

.unavailable.availability-dimmer {
    opacity: 0.05;
    pointer-events: none;
}

/*
 * Index: Stats
 */

.stats-graph {
    height: 200px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding-top: 10px;
}

.stats-graph-loader {
    width: 75px;
    position: absolute;
    top: 30%;
}


/*
 * Index: Websites
 */

@media (max-width: 767px) {

    .table-sm-card .table-websites tbody tr {
        padding-right: 100px;
        min-height: 140px;
    }
        .table-sm-card .table-websites tbody .column-widgets {
            position: absolute;
            right: 15px;
            bottom: 60px;
        }

        .table-sm-card .table-websites tbody .column-plugs {
            position: absolute;
            right: 15px;
            bottom: 34px;
        }

    .table-sm-strip .table-websites tbody tr {
        min-height: 11em;
    }
        .table-sm-strip .table-websites tbody .column-widgets {
            position: absolute;
            right: 15px;
            bottom: 3em;
            text-align: right;
        }

        .table-sm-strip .table-websites tbody .column-plugs {
            position: absolute;
            right: 15px;
            bottom: 5em;
            text-align: right;
        }
}

@media (min-width: 768px) and (max-width: 991px) {

    .table-md-card .table-websites tbody tr {
        padding-right: 100px;
        min-height: 140px;
    }
        .table-md-card .table-websites tbody .column-widgets {
            position: absolute;
            right: 15px;
            bottom: 60px;
        }

        .table-md-card .table-websites tbody .column-plugs {
            position: absolute;
            right: 15px;
            bottom: 34px;
        }

    .table-md-strip .table-websites tbody tr {
        min-height: 11em;
    }
        .table-md-strip .table-websites tbody .column-widgets {
            position: absolute;
            right: 15px;
            bottom: 3em;
            text-align: right;
        }

        .table-md-strip .table-websites tbody .column-plugs {
            position: absolute;
            right: 15px;
            bottom: 5em;
            text-align: right;
        }
}



/*
 * Settings: Websites
 */

/* Site formats options */
.site-formats .column-description {
    padding-bottom: 30px;
}

.table-widgets .code-snippet {
    max-width: 485px;
}
    @media (max-width: 991px) {
        .table-widgets tbody {
            padding-left: 15px;
            padding-right: 15px;
        }
    }

    @media (min-width: 991px) {
        .table-widgets .column-title {
            padding-left: 15px;
        }
    }
    /* Site format options for table style */
    @media (min-width: 1200px) {

        .site-formats .column-title {
            width: 1%;
            white-space: nowrap;
        }
            .site-formats .radio {
                margin-bottom: 0;
            }

        .site-formats .column-description {
            padding-top: 13px;
        }
    }

    /* Site format options for block style */
    @media (max-width: 1200px) {

        .site-formats > .row > .column-title {
            padding-bottom: 0;
        }

        .site-formats > .row > .column-description {
            padding-left: 25px;
        }
    }

/* Targeting Options indicator */
.mini-bars {
    display: block;
    width: 80px; /* this is the total width of all the possible targeting bars for a row (6bars * 10px) */
    margin: 0 auto;
}
    .mini-bar {
        display: block;
        position: relative;
        width: 8px;
        margin-left: 1px;
        height: 20px;
        float: left;
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }
        .mini-bar-value {
            position: absolute;
            width: 100%;
            bottom: 0;
        }

            .mini-bars .mini-bar-full {
                height: 20px;
            }

            .mini-bars .mini-bar-empty {
                height: 20px;
            }

.column-order {
    text-align: right;
}

.column-budget {
    text-align: right;
}




/* table to cards/strips conversion */
@media (max-width: 767px) {

    .table-sm-card .table-campaigns tbody .column-order,
    .table-sm-strip .table-campaigns tbody .column-order {
        text-align: left;
        position: relative;
        bottom: -43px;
        padding-bottom: 0;
    }

    .table-sm-card .table-campaigns tbody .column-budget,
    .table-sm-strip .table-campaigns tbody .column-budget {
        padding-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .table-md-card .table-campaigns tbody .column-order,
    .table-md-strip .table-campaigns tbody .column-order {
        text-align: left;
        position: relative;
        bottom: -43px;
        padding-bottom: 0;
    }

    .table-md-card .table-campaigns tbody .column-budget,
    .table-md-strip .table-campaigns tbody .column-budget {
        padding-bottom: 10px;
    }
}

/*
 * Index: Campaigns
 */

.targeting-summary-dropdown.dropdown-menu.dropdown-dark {
    min-width: 400px;
    padding: 15px 0 0 15px;
    margin-top: 30px;
    margin-left: 5px;
}
    .targeting-summary-option {
        padding: 0 15px 15px 0;
    }
        .targeting-summary-option-label {
            font-weight: 700;
            color: #707070;
        }
    @media (max-width: 500px) {
        .targeting-summary-dropdown.dropdown-menu.dropdown-dark {
            min-width: 0;
        }
    }

    .popover-wide {
        max-width: 800px;
    }

    .targeting-popover:focus {
        outline: 0;
    }

    .targeting-summary {
        min-width: 400px;
        /*max-width: 100%;
        width: 100%;*/
        padding: 5px;
        margin-left: 5px;
    }
        .targeting-summary .targeting-summary-option {
            padding: 0 15px 15px 0;
        }
            .targeting-summary .targeting-summary-option-label {
                font-weight: 700;
                color: #707070;
            }
        @media (max-width: 500px) {
            .targeting-summary {
                min-width: 0;
            }
        }

/*
 * Settings: Campaigns
 */


    /*.banner-assigner .assigner-item {
        min-height: 75px;
        padding: 15px 65px 15px 90px;
    }
        .banner-assigner .assigner-preview {
            height: 73px;
            width: 73px;
        }*/



/* this is the damage that Bootstrap has wrought */
@media(max-width: 768px) {

    .deliverymethods.columns-sm .clip-radio {
        margin-bottom: 0;
    }

    .deliverymethods.columns-sm .border-top:last-child {
        border-top-style: none;
        padding-left: 40px;
    }

    .deliverymethods.columns-sm .margin-top-15 {
        margin-top: 0 !important;
    }
}

.columns-md > .row > .timetable-weekday {
    vertical-align: middle;
    width: 5%;
    padding-bottom: 0;
}
.timepicker.inactive {
    opacity: 0.3;
    pointer-events: none;
}
.input-group.clockpicker {
    width: 10em;
    float: left;
    margin-right: 10px;
}
input.clockpickerInput {
    border-radius: 4px 0 0 4px;
    padding: 6px 4px;
    width: 100%;
}
.clockpicker .input-group-addon {
    border-left: 0 !important;
}
.clockpicker-dropdown,
.clockpicker-dropdown + .clockpicker-dropdown,
.addTimesPerDay {
    margin: 0 10px 10px 0;
}
div.clockpicker-dropdown input.btn + button.btn {
    margin-left: -1px;
}
.timesPerDay {
    display: inline;
}
.addTimesPerDay i {
    pointer-events: none;
}
div.popover.bottom {
    margin-top: 9px;
    margin-left: -4px;
}

.timezone-select {
    padding: 6px 12px;
}

@media (max-width: 991px) {

    .columns-md > .row > .timetable-weekday {
        border-style: none;
        width: auto;
        padding-top: 15px;
    }
}

/* Optimize spacing in rules panel */
.campaign-rules ul {
    padding-left: 15px;
}
    .campaign-rules li + li {
        margin-top: 10px;
    }

/* style ad selection interface */
.plug-preview-container {
    height: 90px;
    /*background-color: #f0f0f0;*/
    margin: 15px 0;
}

.plug-preview {
    position: relative;
    padding-left: 135px;
    padding-right: 15px;
    height: 90px;
    overflow: hidden;
    cursor: pointer;
}

    .plug-preview-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        width: 120px;
        height: 90px;
    }
        .plug-preview-thumbnail-title {
            padding: 0.25em;
            position: absolute;
            bottom: 15px;
            left: 0;
        }

    .plug-preview-info {
        padding-top: 15px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }



/*
 *   Index: Media
 *   Index: Plugs
 */


@media (max-width: 991px) {

    .table-sm-card .table-media tbody tr,
    .table-sm-card .table-plugs tbody tr {
        padding-top: 16em;
        padding-bottom: 48px;
    }
        .table-sm-card .table-media tbody .column-title {
            width: 100%;
            max-width: 100%;
            padding: 0;
            position: static;
            background-color: transparent;
        }

    .table-sm-card .table-media .table-thumbnail {
        width: 100%;
        height: 200px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .table-sm-card .table-media tbody .column-impressions {
        position: absolute;
        right: 15px;
        top: 105px;
        padding: 0.5em;
        line-height: 1;
    }

    .table-sm-card .table-media tbody .column-clicks {
        position: absolute;
        right: 15px;
        top: 132px;
        padding: 0.5em;
        line-height: 1;
    }

    .table-sm-card .table-media tbody .column-ctr {
        position: absolute;
        right: 15px;
        top: 159px;
        text-align: right;
        padding: 0.5em;
        line-height: 1;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .table-md-card .table-media tbody tr {
        padding-top: 16em;
        padding-bottom: 48px;
    }
        .table-md-card .table-media tbody .column-title,
        .table-md-card .table-media tbody .column-domain,
        .table-md-card .table-media tbody .plug_domain_column {
            width: 100% !important;
            max-width: 100%;
            padding: 0 0 10px 0;
            position: static;
            background-color: transparent;
        }

    .table-md-card .table-media .table-thumbnail {
        width: 100%;
        height: 200px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .table-md-card .table-media tbody .column-impressions {
        position: absolute;
        right: 15px;
        top: 105px;
        padding: 0.5em;
        line-height: 1;
    }

    .table-md-card .table-media tbody .column-clicks {
        position: absolute;
        right: 15px;
        top: 132px;
        padding: 0.5em;
        line-height: 1;
    }

    .table-md-card .table-media tbody .column-ctr {
        position: absolute;
        right: 15px;
        top: 159px;
        text-align: right;
        padding: 0.5em;
        line-height: 1;
    }
}

/* ---------------------------------------------------------------------- */
/*  Feedback
/* ---------------------------------------------------------------------- */

#feedback-wrapper {
    width: 100%;
}

.feedback {
    margin-left: 15px;
    margin-top: 10px;
}

.feedback-header {
    text-align: center;
    background: #C0D42F !important;
    color: #4F561E;
    padding-top: 10px;
    padding-bottom: 5px;
}

.feedback-content {
    border: none;
    background: transparent;
    transform: translateZ(0px);
    position: absolute;
    opacity: 1;
    max-height: 565px;
    min-height: 150px;
    left: 260px;
    top: 65px;
    width: -moz-calc(100% - 260px);  /* WebKit */
    width: -webkit-calc(100% - 260px);  /* Opera */
    width: -o-calc(100% - 260px);  /* Standard */
    width: calc(100% - 260px);
    z-index: 100;
}

.feedback > .btn {
    background: #c0d42f !important;
    padding: 10px 15px;
    border-color: #c8c7cc !important;
    border-radius: 999rem;
    font-size: 1rem;
    color: #4F561E !important;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1000;
}

.feedback-content .btn-primary {
    background: #c0d42f !important;
    border-color: #c0d42f !important;
    color: #4F561E !important;
}

.feedback > .panel {
    background: #ffffff;
}

.feedback > .panel > .panel-heading {
    border-top-width: 1px;
    border-top-style: solid;
    padding: 15px;
    border-color: #c8c7cc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    letter-spacing: .02143rem;
    line-height: 1.2;
    padding-left: 2.14286rem;
    padding-right: 2.14286rem;
    font-size: 1.07143rem;
    font-weight: 700;
}

.feedback-content.panel-body {
    padding: 30px;
}

.feedback-content textarea {
    width: 100%;
    border-radius: 2px;
}

/* Overwrite inexplicable custom setting of button width */
.feedback-content > .panel-body > .btn-group > .btn {
    position: relative;
    right: auto;
}

/* ---------------------------------------------------------------------- */
/*  Performance Monitor
/* ---------------------------------------------------------------------- */

#performance-monitor-wrapper {
    width: 100%;
}

.performance-monitor {
    margin-left: 15px;
    margin-top: 10px;
}

.performance-monitor-header {
    text-align: center;
    background: #C0D42F !important;
    color: #4F561E;
    padding-top: 10px;
    padding-bottom: 5px;
}

.performance-monitor-content {
    border: none;
    background: transparent;
    transform: translateZ(0px);
    position: absolute;
    opacity: 1;
    max-height: 565px;
    left: 260px;
    top: 65px;
    width: -moz-calc(100% - 260px);  /* WebKit */
    width: -webkit-calc(100% - 260px);  /* Opera */
    width: -o-calc(100% - 260px);  /* Standard */
    width: calc(100% - 260px);
    z-index: 100;
}

.performance-monitor > .btn {
    background: #c0d42f !important;
    padding: 10px 15px;
    border-color: #c8c7cc !important;
    border-radius: 999rem;
    font-size: 1rem;
    color: #4F561E !important;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1000;
}

.performance-monitor-content > .panel-body > .btn-primary {
    background: #c0d42f !important;
    border-color: #c0d42f !important;
    color: #4F561E !important;
}

.performance-monitor-content > .nav-tabs {
    width: 200px;
}

.performance-monitor > .panel {
    background: #ffffff;
}

.performance-monitor > .panel > .panel-heading {
    border-top-width: 1px;
    border-top-style: solid;
    padding: 15px;
    border-color: #c8c7cc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    letter-spacing: .02143rem;
    line-height: 1.2;
    padding-left: 2.14286rem;
    padding-right: 2.14286rem;
    font-size: 1.07143rem;
    font-weight: 700;
}

.performance-monitor-content.panel-body {
    padding: 30px;
}

.performance-monitor .toggle-tab:before  {
    margin-top: 10px;
}

.performance-monitor-content textarea {
    width: 100%;
    border-radius: 2px;
}

/* Overwrite inexplicable custom setting of button width */
.performance-monitor-content > .panel-body > .btn-group > .btn {
    position: relative;
    right: auto;
}

.performance-monitor-content > .nav-tabs > li > a {
    color: #000;
}

.performance-monitor-content > .tab-content {
    border-bottom: none;
}

.performance-monitor-event {
    border-bottom: 1px solid #EFEFF4;
    padding: 10px 15px;
}

.performance-monitor-link > small:hover {
    color: #006BD6;
}

.performance-monitor-action {
    font-size: 15px;
    padding: 5px;
    text-align: center;
    border-style: none;
    cursor: pointer;
}

/*
 * Settings: Banners
 */

.bannersize {
    display: inline-block;
    width: 100%;
    margin: 0 15px 15px 0;
    text-align: center;
}
    .bannersize > div {
        margin-bottom: 10px;
    }

    .bannersize.wideskyscraper {
        max-width: 80px;
    }
        .bannersize.wideskyscraper > div {
            line-height: 298px;
        }

    .bannersize.halfpage {
        max-width: 150px;
    }
        .bannersize.halfpage > div {
            line-height: 298px;
        }

    .bannersize.rectangle {
        max-width: 125px;
    }
        .bannersize.rectangle > div {
            line-height: 123px;
        }

    .bannersize.leaderboard {
        max-width: 364px;
    }
        .bannersize.leaderboard > div {
            line-height: 43px;
        }

    .bannersize.square {
        max-width: 125px;
    }
        .bannersize.square > div {
            line-height: 123px;
        }

    .bannersize.smallsquare {
        max-width: 100px;
    }
        .bannersize.smallsquare > div {
            line-height: 98px;
        }

    .bannersize.largerectangle {
        max-width: 168px;
    }
        .bannersize.largerectangle > div {
            line-height: 138px;
        }

    .bannersize.skyscraper {
        max-width: 80px;
    }
        .bannersize.skyscraper > div {
            line-height: 298px;
        }

    .bannersize.largeleaderboard {
        max-width: 485px;
    }
        .bannersize.largeleaderboard > div {
            line-height: 43px;
        }

    .bannersize.banner {
        max-width: 234px;
    }
        .bannersize.banner > div {
            line-height: 28px;
        }

    .bannersize.mobilebanner {
        max-width: 160px;
    }
        .bannersize.mobilebanner > div {
            line-height: 23px;
        }

    .bannersize.largemobilebanner {
        max-width: 160px;
    }
        .bannersize.largemobilebanner > div {
            line-height: 48px;
        }

    .bannersize.rectanglemobilebanner {
        max-width: 150px;
    }
        .bannersize.rectanglemobilebanner > div {
            line-height: 48px;
        }

/*
 * Settings: WB Lists
 */




/*
 * Index: Funds
 */

.balance {
    font-size: 34px;
}

.select2 {
    display: block;
}

.select2-container--default .select2-selection--single {
    border-radius: 0;
    border: 1px solid #c8c7cc;
}

.payment-method .clip-radio label {
    line-height: 26px;
}
.payment-method {
    max-height: 500px;
    /*overflow-y: scroll;*/
}

.a-element-disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.3;
}

.payment-btn {
    min-width: 230px;
    max-width: 230px;
}

.payment-btn-text {
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.payment-sprite:before {
    content: ' ';
    display: inline-block;
    width: 40px;
    height: 26px;
    margin-right: 5px;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,0.15);
    background-image: url('/assets/images/plugrushpaymentmethods_sprites.png');
}
    .payment-sprite-paypal:before {
        background-position: 0 0;
    }

    .payment-sprite-firstchoicepay:before {
        background-position: 40px 0;
    }

    .payment-sprite-paxum:before {
        background-position: 80px 0;
    }

    .payment-sprite-voucher:before {
        background-position: -1px 36px;
    }

    .payment-sprite-epese:before {
        background-position: 0px 58px;
    }

    .payment-sprite-wiretransfer:before {
        background-position: 40px 57px;
    }

    .payment-sprite-webmoney:before {
        background-position: 80px 57px;
    }

    .payment-sprite-creditcard:before {
        background-position: 0 84px;
    }

    .payment-sprite-payze:before {
        background-position: 39px 82px;
    }

    .payment-sprite-coinsnap:before {
        background-position: 80px 84px;
    }

#save-paymentaccount-paypal .preview img {
    max-height: 25em;
}

.load-accounts {
    text-align: center;
    margin-bottom: 30px;
}

.alternative-withdraw {
    display: inline-block !important;
}

.withdrawal-accounts {
    text-align: right;
    float: right;
}

@media (min-width: 768px) {
    .load-accounts {
        text-align: left;
    }
    .alternative-withdraw {
        float: right;
    }
}

@media (min-width: 1600px) {
    .load-accounts {
        margin-bottom: inherit;
    }
    .alternative-withdraw {
        display: none !important;
    }
}

/*
    Creatives Uploader
 */

.uploader {}

.uploader-methods {
    margin-bottom: 0;
}

.upload-success,
.upload-danger {
    margin-bottom: 0;
    color: #fff;
}

.upload-success > span > h4,
.upload-danger > span > h4 {
    color: #fff;
}

.uploader-action {
    color: #223F35;
    display: block;
    width: 40px;
    line-height: 40px;
    font-size: 20px;
    padding: 0;
    text-align: center;
    border-style: none;
    cursor: pointer;
}

.uploader-action.locked {
    background-color: #f7f7f8;
}

td.table-thumbnail > .popover {
    color: #000;
    min-width: 300px;
}


/*
 *
 *
 *
 *
 *
 *
 *   5.  Themes (Alternative colour schemes and typography for accessibility and branding purposes)
 *
 * * * */









/*
 *
 *
 *
 *
 *
 *
 *   6.  Trump Rules (Rules which specifically override other rules, mainly in vendor stylesheets)
 *
 * * * */

.btn-danger {
    background-color: #bd362f;
    border-color: #bd362f;
}

.btn-danger:hover {
    background-color: #dd6864 !important;
    border-color: #dd6864;
    color: #ffffff;
}

.text-muted {
    font-weight: 400;
}

/* remove space reserved for datatables' sort indicator images */
table.table thead .sorting,
table.table thead .sorting_asc,
table.table thead .sorting_desc,
table.table thead .sorting_asc_disabled,
table.table thead .sorting_desc_disabled {
    padding-right: 8px;
}

/* fix gap in outlined bootstrap button groups */
.btn-group .btn-o + .btn-o {
    border-left-style: none;
}


/* fix DataTables' column header sort indicators */
table.table thead .sorting,
table.table thead .sorting_desc,
table.table thead .sorting_asc {
    background-image: none;
}
    .sort-indicator:after {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        -webkit-font-smoothing: antialiased;
        /*display: inline-block;*/
        font: normal normal normal 14px/1 FontAwesome;
        /*margin-right: 10px;*/
        margin-left: 5px;
        /*text-align: right;*/
        text-rendering: auto;
        transform: translate(0, 0);
        width: 1em;
    }
        .sorting .sort-indicator:after {
            content: "\f0dc";
        }

        .sorting_desc .sort-indicator:after {
            content: "\f0dd";
        }

        .sorting_asc .sort-indicator:after {
            content: "\f0de";
        }

/* improve stackability of bootstrap labels in Clip-Two */
.label {
    line-height: 2.2;
}

    .label-compact {
        line-height: 1;
    }
    .label-removable, .label-addable {
        position: relative;
        border-right-width: 22px;
        border-right-style: solid;
        border-right-color: #8FA399;
    }

    .label-removable:after, .label-addable:after {
        display: inline-block;
        width: 22px;
        position: absolute;
        right: -22px;
        top: 5px;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        font-stretch: normal;
        font-family: FontAwesome;
        font-size: inherit;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
        text-rendering: auto;
        line-height: 1;
        transform: translate(0, 0);
    }
        .label-removable:after {
            content: "\f00d";
        }

        .label-addable:after {
            content: "\271A";
        }

    .label-stackable {
        display: inline-block;
        line-height: 1.2;
        margin-bottom: 5px;
        margin-right: 5px;
    }

    .label-unselectable {
        -webkit-user-select: none; /* webkit (safari, chrome) browsers */
        -moz-user-select: none; /* mozilla browsers */
        -khtml-user-select: none; /* webkit (konqueror) browsers */
        -ms-user-select: none; /* IE10+ */
    }

    .label-disabled {
        opacity: 0.3;
    }

    .label-info-inverse, .label-info-inverse:hover, a:hover .label-info-inverse {
        color: #6699CC;
        background-color: #fff;
    }

/* Override bootstrap's default text-alignment for horizontal-form labels */
@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: left;
        text-align: start;
    }
}

/* override Bootstraps weird specificity for table.table margin */
table.no-margin {
    margin: 0 !important;
}

.list-pool > table,
.list-pool > table.table {
    margin: 0 !important;
}



/* override bootstrap's bizarre specificity for action menu table cell padding */

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-top-style: none;
}

.table > thead > tr > th {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table>thead>tr>th.border-left,
.table>tbody>tr>td.border-left,
.table>tfoot>tr>th.border-left
 {
    padding-left: 20px;
}

.table>tbody>tr>td.progressbar,
.table>tbody>tr>td.input,
.table>tbody>tr>td.action,
.table>tbody>tr>td.column-action {
    padding: 0;
}

.table>tbody>tr.has-error>td.table-thumbnail {
    background-color: #bd362f;
    color: #fff;
}

.table>tbody>tr>td.progressbar>div.progress {
    margin: 0;
    border-radius: 0;
    height: 41px;
}

.table > tbody > tr > td > span > i.has-error,
.table > tbody > tr > td.input > input.has-error,
.table > tbody > tr > td.input > input.has-error::placeholder {
    color: #bd362f;
}

input.has-error,
input.has-error::placeholder,
i.has-error {
    color: #bd362f !important;
}

.datepicker-dropdown {
    z-index: 5415801 !important;
}

.search-bottom {
    position: absolute;
    bottom: 0;
    left: 200px;
}

#cropDiv {
    min-height: 270px;
}

@media (min-width: 1600px) {
    .apply-filters {
        min-width: 15em;
    }
}

#refresh-icon {
    display: block !important;
}

#emailNotifications .clip-check label {
    white-space: normal;
}

#selectedEmails li {
    list-style: none;
}
.pr-progress-text {
    padding: 0 10px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.label-movable {
    border-left-width: 22px;
    border-left-style: solid;
}

.label-movable::before {
    display: inline-block;
    width: 22px;
    position: absolute;
    left: -22px;
    cursor: move;
    top: 5px;
    content: "\f047";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-stretch: normal;
    font-family: FontAwesome;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    text-rendering: auto;
    line-height: 1;
    transform: translate(0, 0);
}

.prLoader {
    position: absolute;
    cursor: default;
    z-index: 9997;
    text-align: center;
    background-color: rgba(255,255,255,0.5);
    background-image: radial-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.3));
    color: #555;
    cursor: progress;
}

.content-loading::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.5);
    background-image: radial-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.3));
    z-index: 9999;
}

.content-loading::before {
    display: inline-block;
    width: 5%;
    height: 100%;
    content: "";
    background: url('/assets/images/loading-bars.svg') no-repeat 0 0;
    background-size: 100%;
    position: absolute;
    top: 35%;
    z-index: 10000;
    left: 48%;
}

input.prInputLoader {
    background-image: url('/assets/images/loading-bars.svg');
    background-repeat: no-repeat;
    background-position: 50%;
}

.compact-select {
    min-height: 25px!important;
}

.system-message {
    position: absolute;
    z-index: 1100;
}

.system-message .warning .panel {
    background-color: #FFBF00;
    border-color: #FFBF00;
}

.system-message .warning {
    border-width: 65px;
    padding: 30px;
    margin: -1px;
}

.system-message .warning:before {
    left: -58px;
}

@media (min-width: 768px) {
    .system-message {
        top: 65px;
        min-width: 375px;
    }
}

@media (min-width: 992px) {
    .system-message {
      left: 260px;
    }
}

@media (min-width: 1600px) {
    .system-message {
        position: relative;
        float: left;
        left: 0;
        top: 0;
        height: 65px;
        overflow: hidden;
        width: 885px;
    }

    .system-message .warning:before {
        left: -48px;
        top: 20px;
    }

    .system-message .warning {
        min-height: 64px;
        border-width: 48px;
        padding: 5px;
    }

    .system-message .panel {
        margin: 0;
    }

    .system-message .warning h4 {
        display: block;
        margin-bottom: 3px;
        background-color: #FFBF00;
    }

    .system-message .warning p {
        margin-bottom: 0;
    }
}

.clickable,
.sortable {
    cursor: pointer;
}

.unclickable {
    cursor: default;
}

.croppable {
    cursor: url('/assets/images/crop-cursor.png'), auto !important;
}

.invisible {
    opacity: 0;
}

label.toggleButton {
    cursor: pointer;
}
    label.toggleButton.toggleHidden {
        text-decoration: underline;
    }

.has-error span.error-message {
    display: block;
}

.fa-percentage {
    margin-top: -2px;
    font-weight: bolder;
}

.fa-percentage:before {
    content: "\0025";
}

/*
This is not currently in use, but will be in a future version
 */
.alert-style-error {
    color: #bd362f;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/* Override has-error behaviour in some panels */
.form-error .help-block {
    margin-top: 0;
    padding: 5px 10px;
    background-color: #FF0040;
    color: #FFFFFF;
    font-weight: 700;
}

.panel.form-error {
    border: 2px solid #FF0040;
}

.panel.panel-selected {
    border: 5px solid #6699CC;
}

.select2-dropdown {
    z-index: 10592;
}

.sweet-alert fieldset {
    margin: 0;
    padding: 0;
}

.toastr-deutsch {
    background-position: center!important;
    opacity: 1!important;
    height: 160px!important;
    background-image: url('/assets/images/toastr-nein.png')!important;
}

.btn-ledelsesansvar {
    width: 60%;
    background-repeat: no-repeat;
    min-height: 80px;
    border: 1px solid #A5B6AD;
    background-color: #fbfbfb;
    color: #5f5f5f;
    font-size: 20px;
    font-family: 'Roboto', -apple-system, Helvetica, Arial, sans-serif;
}

.btn-jorgen {
    background-image: url('/assets/images/jorgen-icon-speech.png')!important;
}

.btn-alex {
    background-image: url('/assets/images/alex-icon-speech.png')!important;
}

.jorgen-text {
    color: #5f5f5f;
    margin: 5px 0 0 110px;
}

.alex-text {
    color: #5f5f5f;
    font-size: 14px;
    margin: 5px 0 0 10px;
}

.btn-jorgen:hover {
    color: #8e8e93;
}

#paysitecash-iframe {
    width: 500px;
    height: 650px;
    border: none;
    text-align: left;
    margin-left: 50px;
    border-radius: 5px;
}

@media print {
    #sidebar {
        display: none !important;
    }
}

tr.disabled, tr.disabled {
    opacity: 0.3;
}

.link-disabled {
    display: block;
    width: 40px;
    color: #d3d3d3;
    font-size: 20px;
    text-align: center;
}

.sidescroll {
    overflow-x: auto;
}

.downscroll {
    overflow-y: auto;
}

.scrollable-menu {
    height: auto;
    max-height: 500px;
    overflow-x: hidden;
}

.overflow-cell {
    max-width: 0;
    white-space: nowrap;
}

.nowrap {
    white-space: nowrap;
}

/*
 * Advertiser stats status dots
 */
.status-dot {
    font-size: 80%;
    text-align: center;
}

.status-dot-addendum {
    font-size: 100%;
    margin-left: 3px;
    vertical-align: text-bottom;
    text-align: center;
}

.status-dot.status-dot-deleted,
.status-dot.status-dot-red,
.status-dot-addendum.status-dot-addendum-red {
    color: #FF0040;
}

.status-dot.status-dot-yellow,
.status-dot-addendum.status-dot-addendum-yellow {
    color: #FFBF00;
}

.status-dot.status-dot-green,
.status-dot-addendum.status-dot-addendum-green {
    color: #52cc52;
}

.status-dot.status-dot-deleted:before {
    content: "\f05e";
}

.status-dot.status-dot-disabled {
    color: #dadada;
}
.status-dot-blue {
    color: #6699CC;
}

.progress-bar-active {
    background-color: #6699CC;
}

.status-dot-lightgreen,
.status-dot-budget {
    color: #CAE2D6;
}

/*
 * Wblist counts on advertiser stats.
 */
.whitelist-count-badge {
    background: #ffffff;
    color: #006bd6;
    border: #006bd6 1px solid
}

.blacklist-count-badge {
    background: #5b5b60;
    color: #ffffff;
    border: #5b5b60 1px solid
}


/* Help toggle button */
.btn.btn-o.toggle-help:hover, .btn.btn-o.toggle-help:active, .btn.btn-o.toggle-help:focus {
    background-color: transparent;
    border-color: #789185;
    color: #789185;
}

.btn.btn-secondary.toggle-help:hover, .btn.btn-secondary.toggle-help:active, .btn.btn-secondary.toggle-help:focus {
    background-color: #6699CC;
    border-color: #6699CC;
    color: #FFFFFF;
}

.statistics-input-group-addon {
    color: #000;
}

.checkbox-slider--b-flat .checkbox-slider-warning input:checked + span:before {
    background: #FFBF00;
}

.checkbox-slider--b-flat .checkbox-slider-danger input:checked + span:before {
    background: #d9534f;
}

.checkbox-dropdown:hover {
    background-color: #F2F2F2;
}

.editable-surface {
    background-color: #9fbedc;
}

.see-through {
    opacity: 0.6;
}

.see-through.somewhat {
    opacity: 0.8;
}

.see-through.very {
    opacity: 0.4;
}

.see-through.extremely {
    opacity: 0.2;
}
