
        .clearfix,
        .cf {
            *zoom: 1;
        }

            .clearfix:before,
            .cf:before,
            .clearfix:after,
            .cf:after {
                display: table;
                content: "";
            }

            .clearfix:after,
            .cf:after {
                clear: both;
            }

        .hide-text {
            overflow: hidden;
            text-indent: 100%;
            white-space: nowrap;
        }

        .input-block-level {
            display: block;
            width: 100%;
            min-height: 28px;
            /* Make inputs at least the height of their button counterpart */
            /* Makes inputs behave like true block-level elements */
            -webkit-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box;
        }
     
 

        .section-box .button-kit.wide {
            border-radius: 0 0 2px 2px;
        }

        .section-box .padding-10 {
            padding: 0 10px;
        }

            .section-box .padding-10 .button-kit.wide {
                margin: 5px -11px -1px -11px;
                -webkit-box-sizing: content-box;
                box-sizing: content-box;
                -moz-box-sizing: content-box;
                width: 100%;
                padding-left: 10px;
                padding-right: 10px;
            }

        .accordian {
            border-radius: 2px;
            border: 1px solid #BBB;
            background: #FFF;
        }

            .accordian .section,
            .accordian section {
                border-top: 1px solid #DDD;
            }

                .accordian .section:first-child,
                .accordian section:first-child {
                    border-radius: 2px 2px 0 0;
                    border-top: none;
                }

                    .accordian .section:first-child .header,
                    .accordian section:first-child .header,
                    .accordian .section:first-child header,
                    .accordian section:first-child header {
                        border-radius: 1px 1px 0 0;
                    }

                .accordian .section .header,
                .accordian section .header {
                    border-top: 1px solid #FBFBFB;
                    border-bottom: 1px solid #DDD;
                    background: #EEE;
                    font-size: 11px;
                    text-transform: uppercase;
                    font-weight: bold;
                    color: #333;
                    padding: 6px 0 6px 18px;
                }

                .accordian .section .content,
                .accordian section .content {
                    padding: 9px;
                }
        /** Table & List Styles **/
        .list li {
            list-style: none;
            margin: 0;
        }

            .list li.placeholder {
                padding: 30px 10px;
                text-align: center;
                color: #999;
                font-size: 16px;
                font-weight: 600;
                display: block;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
            }

                .list li.placeholder a {
                    text-decoration: underline;
                }

            .list li .status-tag {
                margin-right: 5px;
                opacity: 0.7;
                -webkit-transition: all 0.1s ease-in-out;
                transition: all 0.1s ease-in-out;
            }

            .list li:hover .status-tag {
                opacity: 1;
            }

            .list li.title {
                height: 30px;
                min-height: 0;
                overflow: hidden;
                background: #eee;
                border-bottom: 1px solid #CCC;
                /* Table Column styles */
                /* Used for creating columns within a title for Scheduling! (STYLE ONLY, does not do formatting) */
                /* Small equally spaced columns, usually with a time or date */
            }

                .list li.title > div {
                    font-weight: bold;
                    font-size: 11px;
                    vertical-align: middle;
                    color: #666;
                    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
                    text-transform: uppercase;
                    border-bottom: 1px solid #CCCCCC;
                    padding: 4px 8px;
                }

                .list li.title .small-col,
                .list li.title .first-col {
                    float: left;
                    min-height: 0;
                    border-right: 1px solid #c3c3c3;
                    color: #666;
                    text-shadow: 0 1px 0 #FFF;
                    text-transform: uppercase;
                }

                .list li.title .first-col {
                    line-height: 20px;
                    height: 20px;
                    padding: 5px 0 5px 5px;
                }

                .list li.title .small-col {
                    line-height: 30px;
                    height: 30px;
                    text-align: center;
                }

                    .list li.title .small-col:last-child {
                        border-right: 0;
                    }

                .list li.title .data-col {
                    float: left;
                    padding: 0;
                }
        /* STYLES FOR MESSAGE LISTS in the ACTIVITY SECTION */
        .activity-section .footer {
            padding-left: 10px;
            padding-right: 10px;
        }

            .activity-section .footer .avatar {
                width: 42px;
            }

                .activity-section .footer .avatar img {
                    border: 1px solid #FFF;
                    display: block;
                }

                .activity-section .footer .avatar strong {
                    border: 1px solid #cdcdcd;
                    float: left;
                    margin-top: 1px;
                }

            .activity-section .footer .post-button {
                width: 95px;
                padding-left: 10px;
                padding-top: 2px;
            }

        .messages-list {
            background: #e5e5e5;
            padding-top: 10px;
        }

            .messages-list > li {
                margin-bottom: 10px;
                display: table;
                width: 100%;
            }

                .messages-list > li.placeholder {
                    padding: 20px 10px;
                    text-align: center;
                    color: #999;
                    font-size: 16px;
                    font-weight: bold;
                }

                .messages-list > li .flexible {
                    padding-right: 10px;
                }

                .messages-list > li .message-block {
                    border-radius: 3px;
                    border: #BBB solid 1px;
                    padding: 16px 10px;
                    color: #444;
                    background: #FFF;
                    font-size: 12px;
                }

                    .messages-list > li .message-block.type-success {
                        color: #95B656;
                        border-color: #95B656;
                        background-color: #f1ffd5;
                    }

                    .messages-list > li .message-block.type-error {
                        color: #da7f7f;
                        border-color: #da7f7f;
                        background-color: #ffebeb;
                    }

                    .messages-list > li .message-block h4 {
                        border-bottom: 1px #BBB dotted;
                        padding-bottom: 5px;
                        margin-bottom: 5px;
                        font-weight: normal;
                    }

                    .messages-list > li .message-block h6 {
                        float: right;
                        font-weight: normal;
                        color: #999;
                        color: rgba(0, 0, 0, 0.35);
                        font-size: 11px;
                        font-style: italic;
                    }

                .messages-list > li .avatar {
                    width: 42px;
                    padding-left: 10px;
                    display: table-cell;
                }

                    .messages-list > li .avatar img {
                        border: 1px solid #FFF;
                        display: block;
                    }

                    .messages-list > li .avatar strong {
                        border: 1px solid #cdcdcd;
                        float: left;
                        margin-top: 8px;
                    }

        .table-list {
            display: table;
            width: 100%;
            table-layout: fixed;
        }

            .table-list > li {
                display: table-row;
                width: 100%;
            }

                .table-list > li .column {
                    display: table-cell;
                    vertical-align: middle;
                    color: #444;
                    font-size: 12px;
                    padding: 10px 8px;
                    border-bottom: 1px solid #CCC;
                    -webkit-box-sizing: border-box;
                    -ms-box-sizing: border-box;
                    box-sizing: border-box;
                    /** ACTION ICON DEFINITIONS **/
                    /** END ACTIONS **/
                }

                    .table-list > li .column.checkbox {
                        text-align: center;
                    }

                    .table-list > li .column.handle {
                        background: #f4f4f4 url(../images/backgrounds/drag-handle.png) no-repeat 1px center;
                        width: 8px;
                        border-right: 1px solid #d9d9d9;
                        padding: 0 !important;
                        cursor: url("../images/openhand.cur"), move;
                    }

                    .table-list > li .column.actions {
                        width: 66px;
                        text-align: right;
                        padding-right: 15px;
                    }

                        .table-list > li .column.actions a {
                            display: block;
                            float: right;
                            width: 16px;
                            height: 16px;
                            overflow: hidden;
                            font-size: 14px;
                            color: #333;
                            margin: 2px 0 0 4px;
                            opacity: 0.08;
                            filter: alpha(opacity=8);
                            -webkit-transition: all 0.25s ease-in-out;
                            transition: all 0.25s ease-in-out;
                        }

                            .table-list > li .column.actions a.edit {
                                opacity: 0.5;
                                filter: alpha(opacity=50);
                            }

                    .table-list > li .column.chevron {
                        width: 30px;
                        background: url(../images/backgrounds/chevron.gif) no-repeat 5px;
                    }

                        .table-list > li .column.chevron img {
                            display: none;
                        }

                .table-list > li:hover .column.actions > a {
                    opacity: 1;
                    filter: alpha(opacity=100);
                }

                .table-list > li.ui-sortable-helper .column {
                    border-top: 1px solid #CCC;
                    background-color: #FFF;
                }

                    .table-list > li.ui-sortable-helper .column.handle {
                        background-color: #F4F4F4;
                        cursor: url("../images/closedhand.cur"), move;
                    }

                    .table-list > li.ui-sortable-helper .column.actions {
                        display: none;
                    }

                .table-list > li.ui-sortable-placeholder + li .column {
                    border-top: 1px solid #CCC;
                }

                .table-list > li.title .column.handle {
                    background: inherit;
                    border-right: none;
                    cursor: default;
                }

                .table-list > li:last-of-type .column {
                    border-bottom: none;
                }
        /******************************************************
 * AUTO COMPLETE STYLES
 */
        .ui-helper-hidden-accessible {
            display: none;
        }

        .ui-autocomplete {
            position: absolute;
            cursor: default;
            background: #eee;
            border: 1px solid #ccc;
            padding: 1px;
            border-radius: 0 0 3px 3px;
            -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
            z-index: 202;
        }

            .ui-autocomplete li {
                margin-bottom: 1px;
                display: block;
                color: #333;
                padding: 4px 8px;
            }

                .ui-autocomplete li:hover,
                .ui-autocomplete li.ui-state-focus {
                    background: #51a33d;
                    color: #FFF;
                }

            .ui-autocomplete #ui-active-menuitem {
                background: #51a33d;
                color: #FFF;
            }
        /** PopUp Kit for Showing Popup Dialogs and Menu Overlays **/
        .loading-dialog {
            background: #FFF;
            padding: 10px 20px;
            border-radius: 3px;
            -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
            box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
            display: none;
            width: auto;
            position: absolute;
            z-index: 400;
        }

            .loading-dialog.visible {
                display: block;
            }

            .loading-dialog .loading-text {
                font-size: 14px;
                color: #BBB;
                text-align: center;
            }

            .loading-dialog .loading-icon {
                text-align: center;
                color: #999;
            }

                .loading-dialog .loading-icon .fa-spin {
                    font-size: 28px;
                }

        .overlay-kit {
            z-index: 500;
            display: none;
            background: #666;
            position: absolute;
            border-radius: 3px;
            border: 1px solid #555;
            -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        }

            .overlay-kit.visible {
                display: block;
            }

            .overlay-kit .arrow,
            .overlay-kit .arrow-border {
                width: 0;
                height: 0;
                position: absolute;
            }

            .overlay-kit .arrow {
                z-index: 5;
                border: 9px solid transparent;
            }

            .overlay-kit .arrow-border {
                z-index: 1;
                border: 10px solid transparent;
            }

            .overlay-kit.arrowTopLeft .arrow {
                border-bottom-color: #666;
                top: -18px;
                left: 10px;
            }

            .overlay-kit.arrowTopLeft .arrow-border {
                border-bottom-color: #222;
                top: -20px;
                left: 9px;
            }

            .overlay-kit.arrowTopRight .arrow {
                border-bottom-color: #666;
                top: -18px;
                right: 10px;
            }

            .overlay-kit.arrowTopRight .arrow-border {
                border-bottom-color: #222;
                top: -20px;
                right: 9px;
            }

            .overlay-kit.arrowLeftTop .arrow {
                border-right-color: #666;
                left: -18px;
                top: 10px;
            }

            .overlay-kit.arrowLeftTop .arrow-border {
                border-right-color: #222;
                left: -20px;
                top: 9px;
            }

            .overlay-kit.arrowRightTop .arrow {
                border-left-color: #666;
                right: -18px;
                top: 10px;
            }

            .overlay-kit.arrowRightTop .arrow-border {
                border-left-color: #222;
                right: -20px;
                top: 9px;
            }

            .overlay-kit.arrowBottomLeft .arrow {
                border-top-color: #666;
                bottom: -18px;
                left: 10px;
            }

            .overlay-kit.arrowBottomLeft .arrow-border {
                border-top-color: #222;
                bottom: -20px;
                left: 9px;
            }

            .overlay-kit.arrowBottomRight .arrow {
                border-top-color: #666;
                bottom: -18px;
                right: 10px;
            }

            .overlay-kit.arrowBottomRight .arrow-border {
                border-top-color: #222;
                bottom: -20px;
                right: 9px;
            }

            .overlay-kit .button-kit.wide {
                margin: 0;
                width: 100%;
                padding-left: 0;
                padding-right: 0;
                -webkit-box-sizing: content-box;
                box-sizing: content-box;
                border-width: 1px 0 0 0;
                border-radius: 0 0 3px 3px;
            }
        /** FOR GENERIC MENUS **/
        .menu-overlay {
            min-width: 170px;
            font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
        }

            .menu-overlay li {
                color: #ccc;
                cursor: pointer;
                font-size: 14px;
                padding: 17px 20px;
                border-bottom: 1px solid #555;
            }

                .menu-overlay li:first-child {
                    border-top: none;
                }

                .menu-overlay li:hover {
                    color: #fff;
                    background: #5a5a5a;
                }

                .menu-overlay li.apply {
                    margin: 17px 20px;
                }

        .popup-kit {
            display: none;
            position: absolute;
            border-radius: 5px;
            width: 300px;
            border: 1px solid #222;
            background: #eee;
            background-clip: padding-box;
            z-index: 200;
            -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        }

            .popup-kit.visible {
                display: block;
            }

            .popup-kit .popup-header {
                position: relative;
                top: 0;
                left: 0;
                right: 0;
                height: 33px;
                width: 100%;
                background: #333 url(../images/backgrounds/gradient-sprite.png) repeat-x 0 -240px;
                border-bottom: 1px solid #000;
                border-radius: 4px 4px 0 0;
                -webkit-user-select: none;
                -moz-user-select: none;
                -o-user-select: none;
                -ms-user-select: none;
                user-select: none;
                background-clip: padding-box;
            }

                .popup-kit .popup-header .button-kit.black {
                    padding: 0;
                    text-align: center;
                    width: 50px;
                    border-radius: 3px;
                    font-weight: normal;
                    opacity: 0.8;
                }

                    .popup-kit .popup-header .button-kit.black.right {
                        margin: 6px 6px 0 0;
                    }

                    .popup-kit .popup-header .button-kit.black.left {
                        margin: 6px 0 0 6px;
                    }

                    .popup-kit .popup-header .button-kit.black span {
                        float: left;
                        border-radius: 4px;
                        border-top: 1px solid #696969;
                        padding: 0 8px;
                    }

                .popup-kit .popup-header h2 {
                    line-height: 33px;
                    color: #fff;
                    text-align: center;
                    font-weight: bold;
                    font-size: 13px;
                    text-shadow: #000 0 1px 0;
                    -webkit-font-smoothing: antialiased;
                    padding: 0 56px;
                }

            .popup-kit .popup-content {
                padding: 0;
            }

                .popup-kit .popup-content .form-item.flexible {
                    padding: 0 10px 15px;
                }

                    .popup-kit .popup-content .form-item.flexible.wide-gutter {
                        padding-left: 20px;
                        padding-right: 20px;
                    }

                    .popup-kit .popup-content .form-item.flexible .form-item {
                        padding: 0 0 15px;
                    }

                .popup-kit .popup-content .form-text,
                .popup-kit .popup-content .form-select {
                    border-color: #CCC;
                }

                .popup-kit .popup-content > label {
                    font-size: 12px;
                    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
                    color: #333;
                    margin: 10px 0 4px;
                    display: block;
                }

                    .popup-kit .popup-content > label:first-child {
                        margin-top: 0;
                    }

                .popup-kit .popup-content > h3 {
                    padding: 8px 10px;
                    background: #eee;
                    border-bottom: 1px solid #D6D6D6;
                    font-size: 11px;
                    text-transform: uppercase;
                }

                .popup-kit .popup-content section {
                    padding: 20px 0 5px;
                    margin: 0 20px;
                    border-bottom: 1px solid #bbb;
                }

                    .popup-kit .popup-content section:last-child {
                        border-bottom: 0;
                    }

                    .popup-kit .popup-content section.white {
                        background: #FFF;
                        padding: 10px !important;
                        margin-left: 0;
                        margin-right: 0;
                    }

                    .popup-kit .popup-content section h2 {
                        font-size: 18px;
                        color: #333;
                        text-shadow: 0 1px 0 #FFF;
                    }

                        .popup-kit .popup-content section h2.center {
                            text-align: center;
                        }

            .popup-kit.popup-minimal .popup-content section {
                padding: 15px 10px 0;
                border-width: 1px 0;
                border-color: #FFF #FFF #BBB #BBB;
                border-style: solid;
                margin: 0;
            }

                .popup-kit.popup-minimal .popup-content section:first-child {
                    border-top: none;
                }

                .popup-kit.popup-minimal .popup-content section .form-item {
                    padding: 0;
                }

                    .popup-kit.popup-minimal .popup-content section .form-item.flexible {
                        padding: 0 5px 15px;
                    }

            .popup-kit .popup-footer {
                padding: 15px 10px;
                background: #DDD url(../images/backgrounds/footer-hash.png) repeat-x top center;
                border-radius: 0 0 4px 4px;
                border-top: 1px solid #BBB;
                margin-top: -1px;
            }

            .popup-kit .popup-alt-content {
                background: #CCC;
                border-top: 1px solid #AAA;
                padding: 10px;
                border-radius: 0 0 4px 4px;
            }

            .popup-kit .popup-menu {
                border-top: 1px solid #666;
                background: #444;
            }

                .popup-kit .popup-menu li {
                    border-bottom: 1px solid #333;
                }

                    .popup-kit .popup-menu li a {
                        color: #777;
                        line-height: 50px;
                        font-weight: bold;
                        padding: 0 20px 0 15px;
                        display: block;
                        white-space: nowrap;
                    }

                    .popup-kit .popup-menu li.selected {
                        background: #555;
                    }

                        .popup-kit .popup-menu li.selected:before {
                            width: 0;
                            height: 0;
                            float: right;
                            border-style: solid;
                            border-color: transparent #eee transparent transparent;
                            border-width: 10px;
                            content: "";
                            margin-top: 15px;
                        }

                        .popup-kit .popup-menu li.selected a {
                            color: #fff;
                        }

            .popup-kit .popup-tail {
                position: absolute;
                background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAQCAYAAAAFzx/vAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowOTgwMTE3NDA3MjA2ODExOTJCMEY5MkFBNUNFQkJDQyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpENzdCNzNEOUY0MDgxMUUwODU5QTkwMkVBMjY0MERBNiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpENzdCNzNEOEY0MDgxMUUwODU5QTkwMkVBMjY0MERBNiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxQjgwREQ3QjdGRjNFMDExOEY0RkY4RDMwNDI5RDY3NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowOTgwMTE3NDA3MjA2ODExOTJCMEY5MkFBNUNFQkJDQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoFgEk4AAADXSURBVHjatNNLCoMwEAbgyaQ30nXWAXelmx7AU3kANz1ADqHb9gbiCVwV04wYsFjzahwIyB/D54SRgaOapvmZ13V9W/cfrvPmvV2GEFmElWXZ0rJwTF1SMCmlPUeot9MkcIv1fb9kKxyFYgo2z/Oy6JmymOvFFMxWCso8+4fY11cjQlEUoJR6d113t9cbO6VBWGyn7F/M1amJdoPEc2FUWmsYxxGEEDhN03UYhpeJny4wGQtFeU4sBOW5MR/Kz8BcKDOYNhjkxg6mF7CqqlOx7X9K1keAAQA/PflDWrBTFQAAAABJRU5ErkJggg==) no-repeat 0 0;
                height: 18px;
                top: -15px;
                width: 30px;
                left: 135px;
                z-index: 10;
            }

                .popup-kit .popup-tail.bottom {
                    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAQCAYAAAAFzx/vAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkI1MjczNUI0QjZFODExRTFCODM0QUMxOEMzNzg5MURBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkI1MjczNUI1QjZFODExRTFCODM0QUMxOEMzNzg5MURBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QjUyNzM1QjJCNkU4MTFFMUI4MzRBQzE4QzM3ODkxREEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QjUyNzM1QjNCNkU4MTFFMUI4MzRBQzE4QzM3ODkxREEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7AEzC3AAAAv0lEQVR42rzUTQ6DIBAF4BnacAAWLWs4DKfgoN6EI1AXHKHUaayxPwpDpG81IuQL5kW01uZhGEApBTFG0FrDOketpZTAOQci53ylIYTQHSNLTM8jDd7754ueGFli3jO+bkobemG0JlZ7F1RK2QX7BL9uejT2C3xDW4q0h22B0FqkErYHsotUg5XA6iLVYjVgsUgcrBbcLBIXo6AxBhi5IOKN/r0ULtYCLigNXIxyBn7o857m+c49jNNh+GceAgwAkm0bF02jj8QAAAAASUVORK5CYII=) no-repeat top center;
                    top: auto;
                    bottom: -18px;
                }

            .popup-kit.popup-flipped .popup-tail {
                background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAQCAYAAAAFzx/vAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkI1MjczNUI0QjZFODExRTFCODM0QUMxOEMzNzg5MURBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkI1MjczNUI1QjZFODExRTFCODM0QUMxOEMzNzg5MURBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QjUyNzM1QjJCNkU4MTFFMUI4MzRBQzE4QzM3ODkxREEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QjUyNzM1QjNCNkU4MTFFMUI4MzRBQzE4QzM3ODkxREEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7AEzC3AAAAv0lEQVR42rzUTQ6DIBAF4BnacAAWLWs4DKfgoN6EI1AXHKHUaayxPwpDpG81IuQL5kW01uZhGEApBTFG0FrDOketpZTAOQci53ylIYTQHSNLTM8jDd7754ueGFli3jO+bkobemG0JlZ7F1RK2QX7BL9uejT2C3xDW4q0h22B0FqkErYHsotUg5XA6iLVYjVgsUgcrBbcLBIXo6AxBhi5IOKN/r0ULtYCLigNXIxyBn7o857m+c49jNNh+GceAgwAkm0bF02jj8QAAAAASUVORK5CYII=) no-repeat top center;
                top: auto;
                bottom: -18px;
            }

            .popup-kit.popup-noanchor .popup-tail {
                display: none;
            }

            .popup-kit .arrow,
            .popup-kit .arrow-border {
                position: absolute;
                width: 0;
                height: 0;
            }

            .popup-kit .arrow {
                border: 9px solid transparent;
                z-index: 5;
            }

            .popup-kit .arrow-border {
                border: 10px solid transparent;
                z-index: 1;
            }

            .popup-kit.arrowLeftTop .arrow {
                border-right-color: #EEE;
                left: -18px;
                top: 40px;
            }

            .popup-kit.arrowLeftTop .arrow-border {
                border-right-color: #000;
                left: -20px;
                top: 39px;
            }

            .popup-kit.arrowRightTop .arrow {
                border-left-color: #EEE;
                right: -18px;
                top: 40px;
            }

            .popup-kit.arrowRightTop .arrow-border {
                border-left-color: #000;
                right: -20px;
                top: 39px;
            }

        .popup-kit-modal {
            position: fixed;
            z-index: 199;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0.8;
            top: 0;
            left: 0;
        }

            .popup-kit-modal.thirty {
                opacity: 0.3;
            }

        .are-you-sure {
            display: none;
        }

        @font-face {
            font-family: 'wiw';
            src: url('../fonts/wiw.eot?v=4');
            src: url('../fonts/wiw.eot?v=4#iefix') format('embedded-opentype'), url('../fonts/wiw.woff?v=4') format('woff'), url('../fonts/wiw.ttf?v=4') format('truetype'), url('../fonts/wiw.svg?v=4#wiw') format('svg');
            font-weight: normal;
            font-style: normal;
        }

        [class*='icon-wiw-']:before {
            display: inline-block;
            font-family: 'wiw';
            font-style: normal;
            font-weight: normal;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .icon-wiw-scheduling {
            background: url('../images/icons/scheduler.svg') 0 18px no-repeat;
            height: 100%;
            width: 18px;
        }

            .icon-wiw-scheduling:hover {
                background-image: url('../images/icons/scheduler-highlight.svg');
            }

        .icon-wiw-attendance {
            background: url('../images/icons/attendance.svg') 0 18px no-repeat;
            height: 100%;
            width: 18px;
        }

        a:hover .icon-wiw-attendance,
        li.selected .icon-wiw-attendance {
            background: url('../images/icons/attendance-highlight.svg') 0 18px no-repeat;
        }

        .icon-wiw-dashboard {
            background: url('../images/icons/dashboard.svg') 0 18px no-repeat;
            height: 100%;
            width: 18px;
        }

            .icon-wiw-dashboard:hover {
                background-image: url('../images/icons/dashboard-highlight.svg');
            }

        .icon-wiw-timeclock {
            background: url('../images/icons/clockin.svg') 0 18px no-repeat;
            height: 100%;
            width: 18px;
        }

        a:hover .icon-wiw-timeclock,
        li.selected .icon-wiw-timeclock {
            background: url('../images/icons/clockin-highlight.svg') 0 18px no-repeat;
        }

        .icon-wiw-lunch {
            background: url('../images/icons/burger.svg') 0 18px no-repeat;
            height: 100%;
            width: 18px;
            background-size: 18px 18px;
        }

        a:hover .icon-wiw-lunch,
        li.selected .icon-wiw-lunch {
            background: url('../images/icons/burger-highlight.svg') 0 18px no-repeat;
            background-size: 18px 18px;
        }

        .icon-wiw-lock-as-timeclock {
            background: url('../images/icons/timeclock.svg') 0 18px no-repeat;
            height: 100%;
            width: 18px;
        }

        a:hover .icon-wiw-lock-as-timeclock,
        li.selected .icon-wiw-lock-as-timeclock {
            background: url('../images/icons/timeclock-highlight.svg') 0 18px no-repeat;
        }

        .icon-wiw-timetracker:before {
            content: '\0045';
        }

        .icon-wiw-workchat:before {
            content: '\0046';
        }

        .icon-wiw-workprops:before {
            content: '\0047';
        }

        .icon-wiw-tasks:before {
            content: '\0048';
        }

        .icon-wiw-hire {
            background: url('../images/icons/hire-nav.svg') 0 17px no-repeat;
            height: 100%;
            width: 16px;
        }

        a:hover .icon-wiw-hire {
            background-image: url('../images/icons/hire-nav-highlight.svg');
        }

        .menu .hire sup,
        .menu .reporting sup,
        .menu .docs-nav sup {
            color: #ffcc33;
        }

        .menu .d-none {
            display: none;
        }
        /************************************ STYLES FOR SPECIFIC PAGES *******************************************/
        /** TOOLBOX MENUS **/
        .toolbox-list li {
            border-top: #f2f2f2 1px solid;
            padding: 1px;
            background: #ffffff;
        }

            .toolbox-list li:first-child {
                border-top: none;
            }

            .toolbox-list li a {
                color: #999;
                display: block;
                font-size: 14px;
                font-weight: 500;
                line-height: 14px;
                position: relative;
                padding: 18px 20px;
                text-transform: uppercase;
            }

                .toolbox-list li a i {
                    float: right;
                }

                .toolbox-list li a:hover {
                    color: #333;
                }

            .toolbox-list li.selected {
                position: relative;
                background: #ffffff;
            }

                .toolbox-list li.selected a {
                    color: #333;
                }

                    .toolbox-list li.selected a:before {
                        top: 50%;
                        width: 0px;
                        height: 0px;
                        right: -9px;
                        content: '';
                        display: block;
                        margin-top: -5px;
                        position: absolute;
                        border-top: 8px solid transparent;
                        border-bottom: 8px solid transparent;
                        border-left: 8px solid rgba(214, 214, 214, 0.7);
                    }

                    .toolbox-list li.selected a:after {
                        top: 50%;
                        width: 0px;
                        height: 0px;
                        right: -9px;
                        content: '';
                        display: block;
                        margin-top: -7px;
                        position: absolute;
                        border-top: 8px solid transparent;
                        border-bottom: 8px solid transparent;
                        border-left: 8px solid #fff;
                    }

                .toolbox-list li.selected:after,
                .toolbox-list li.selected:before {
                    left: 100%;
                    top: 50%;
                    border: solid transparent;
                    content: " ";
                    height: 0;
                    width: 0;
                    position: absolute;
                    pointer-events: none;
                }

                .toolbox-list li.selected:after {
                    border-color: rgba(255, 255, 255, 0);
                    border-left-color: #fff;
                    border-width: 5px;
                    margin-top: -5px;
                }

                .toolbox-list li.selected:before {
                    border-color: rgba(255, 255, 255, 0);
                    border-left-color: #fff;
                    border-width: 9px;
                    margin-top: -9px;
                }

        body.blue .toolbox-list li.selected a {
            background-color: #558aaf;
        }

            body.blue .toolbox-list li.selected a ins {
                border-left-color: #558aaf;
            }

        .tooltip-map {
            overflow: hidden;
            float: right;
            width: 70px;
            height: 70px;
        }

            .tooltip-map img {
                margin: -15px 0 0 -15px;
                width: 100px;
            }

        .toolbox-sidebar {
            width: 218px;
        }

        .shift-tooltip {
            border-left-width: 72px;
            border-left-style: solid;
            overflow: visible !important;
        }

            .shift-tooltip .shift-accent {
                font-size: 14px;
                font-weight: 600;
                text-transform: uppercase;
                text-align: center;
                width: 72px;
                color: white;
                position: absolute;
                top: 20px;
                left: -72px;
                line-height: 1;
            }

                .shift-tooltip .shift-accent span {
                    display: block;
                }

                .shift-tooltip .shift-accent abbr {
                    font-size: 36px;
                }

            .shift-tooltip .tooltip-map {
                width: 100%;
                height: 100px;
                float: none;
                display: block;
            }

                .shift-tooltip .tooltip-map img {
                    margin: -15px 0 0 0;
                    width: 100%;
                }

            .shift-tooltip .dialog-header {
                margin: 6px 20px 0;
            }

                .shift-tooltip .dialog-header strong {
                    font-weight: 600;
                    font-size: 24px;
                    display: block;
                }

                .shift-tooltip .dialog-header span {
                    color: #999;
                    font-size: 16px;
                }

            .shift-tooltip .dialog-body h3 + p {
                margin-top: -10px;
            }

            .shift-tooltip .dialog-body p {
                color: #333;
                font-size: 17px;
                font-weight: 400;
                line-height: 1;
                word-break: break-word;
            }

            .shift-tooltip .dialog-footer .button-swap,
            .shift-tooltip .dialog-footer .button-drop,
            .shift-tooltip .dialog-footer .button-confirm-shift {
                margin-right: 5px !important;
            }
        /** STATUS TAG USED THROUGHOUT **/
        .status-tag {
            font-size: 10px;
            color: #FFF;
            padding: 2px 6px;
            text-transform: uppercase;
            background: #666;
            font-weight: bold;
            border-radius: 2px;
            line-height: 14px;
            text-shadow: none;
        }

            .status-tag.success {
                background-color: #95B656;
            }

            .status-tag.error {
                background-color: #B65656;
            }

            .status-tag.right {
                float: right;
            }
        /*** UPGRADE ACCOUNT DIALOG ***/
        .upgrade-account-dialog {
            color: #999;
        }

            .upgrade-account-dialog h3,
            .upgrade-account-dialog p {
                text-align: center;
            }

            .upgrade-account-dialog p {
                line-height: 1.4;
                margin-bottom: 20px;
            }

            .upgrade-account-dialog .caps {
                text-transform: uppercase;
            }

            .upgrade-account-dialog .bold {
                font-weight: bold;
            }

            .upgrade-account-dialog img.logo {
                margin-bottom: 30px;
            }

            .upgrade-account-dialog h2.subtitle {
                font-size: 32px;
                line-height: 42px;
                font-weight: lighter;
            }

            .upgrade-account-dialog .dialog-footer {
                text-align: center;
            }

            .upgrade-account-dialog img.illustration {
                width: 367px;
                height: 200px;
                margin: 10px;
            }

            .upgrade-account-dialog .dialog-body {
                padding: 0 !important;
                margin: 0 !important;
                display: table;
                background-color: #f2f2f2;
            }

                .upgrade-account-dialog .dialog-body h2 {
                    font-size: 30px;
                    font-weight: 300;
                    font-weight: lighter;
                }

            .upgrade-account-dialog.dialog-kit p {
                font-size: 16px;
                color: #999;
                font-weight: normal;
            }

            .upgrade-account-dialog.dialog-kit .button-kit.large {
                font-size: 18px;
                height: 46px;
                line-height: 44px;
            }

            .upgrade-account-dialog .upgrade,
            .upgrade-account-dialog .testimonial-container {
                padding: 50px;
                display: table-cell;
                vertical-align: top;
            }

            .upgrade-account-dialog .upgrade {
                background-color: #fff;
                width: 550px;
                border-right: 1px solid #ddd;
            }

                .upgrade-account-dialog .upgrade h2 {
                    font-size: 35px;
                    padding-bottom: 10px;
                }

                .upgrade-account-dialog .upgrade h3 {
                    text-transform: none;
                    padding-bottom: 40px;
                }

                .upgrade-account-dialog .upgrade .plan-details {
                    display: table;
                    width: 330px;
                    margin: 0 auto;
                }

                    .upgrade-account-dialog .upgrade .plan-details .col {
                        display: table-cell;
                    }

                        .upgrade-account-dialog .upgrade .plan-details .col .highlight {
                            color: #333;
                            font-size: 60px;
                            line-height: 60px;
                            font-weight: 300;
                        }

                    .upgrade-account-dialog .upgrade .plan-details p {
                        margin: 0;
                    }

                .upgrade-account-dialog .upgrade p.secure {
                    padding-top: 20px;
                }

                .upgrade-account-dialog .upgrade p.recommended {
                    padding-top: 30px;
                }

                .upgrade-account-dialog .upgrade .plan-type {
                    font-size: 30px;
                    margin-top: -5px;
                    margin-bottom: 40px;
                }

                .upgrade-account-dialog .upgrade button.special-offer {
                    width: 450px;
                    margin-top: 50px;
                    background-color: #51a33d !important;
                }

                    .upgrade-account-dialog .upgrade button.special-offer:hover {
                        background-color: #3f7e2f !important;
                    }

                .upgrade-account-dialog .upgrade.expired {
                    padding-top: 140px;
                }

                .upgrade-account-dialog .upgrade .wiw-icon {
                    -webkit-transform: scale(0.8);
                    -ms-transform: scale(0.8);
                    transform: scale(0.8);
                }

            .upgrade-account-dialog .testimonial-container {
                width: 380px;
                position: relative;
            }

                .upgrade-account-dialog .testimonial-container a.button-close {
                    position: absolute;
                    top: 20px;
                    right: 20px;
                    background-color: #f2f2f2;
                }

                .upgrade-account-dialog .testimonial-container h2,
                .upgrade-account-dialog .testimonial-container p {
                    text-align: left;
                }

                    .upgrade-account-dialog .testimonial-container p.testimonial {
                        padding: 20px 0 10px 0;
                    }

                .upgrade-account-dialog .testimonial-container div.testimonial-by {
                    margin-bottom: 50px;
                }

                    .upgrade-account-dialog .testimonial-container div.testimonial-by img {
                        float: left;
                        margin-right: 10px;
                    }

                .upgrade-account-dialog .testimonial-container .image-customer {
                    width: 280px;
                }

            .upgrade-account-dialog .button-box {
                margin-top: 20px;
                text-align: center;
            }

                .upgrade-account-dialog .button-box .dismiss-upsell {
                    color: #ccc;
                }
        /** SCHEDULER / MY SCHEDULE / DASHBOARD **/
        .card-section .shift-item,
        .shift-item {
            border: 0px solid transparent;
            /* Hides content within a shift-item */
        }

            .card-section .shift-item.span,
            .shift-item.span {
                position: absolute;
            }

            .card-section .shift-item.unpublished .hider,
            .shift-item.unpublished .hider {
                background-image: url(../images/backgrounds/shift-item-hash.png);
                background-position: -5px 0;
                border-radius: 2px;
            }

            .card-section .shift-item .hider,
            .shift-item .hider {
                overflow: hidden;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
                padding: 3px;
                margin: 3px 3px 0;
                border-style: solid;
                border-width: 3px;
                border-color: inherit;
                height: 39px;
            }

            .card-section .shift-item p,
            .shift-item p {
                display: inline-block;
                white-space: nowrap;
                line-height: 26px;
                font-size: 11px;
                color: #333;
                font-weight: bold;
            }

            .card-section .shift-item small,
            .shift-item small {
                font-size: 10px;
                font-weight: normal;
            }

            .card-section .shift-item .tag,
            .shift-item .tag {
                display: inline-block;
                padding: 0 2px;
                line-height: 16px;
                text-transform: uppercase;
                border-radius: 2px;
                background: rgba(0, 0, 0, 0.1);
                font-size: 12px;
                font-weight: normal;
            }

            .card-section .shift-item.dark p,
            .shift-item.dark p {
                color: #333;
            }

            .card-section .shift-item.light p,
            .shift-item.light p {
                color: #FFF;
            }

            .card-section .shift-item.light .tag,
            .shift-item.light .tag {
                background: rgba(255, 255, 255, 0.2);
            }

            .card-section .shift-item.alternate .hider,
            .shift-item.alternate .hider {
                background-color: #CCC;
            }

                .card-section .shift-item.alternate .hider p,
                .shift-item.alternate .hider p {
                    color: #999;
                }

            .card-section .shift-item.hidden .hider,
            .shift-item.hidden .hider {
                background-color: #FFF;
                border-style: dashed;
                border-width: 1px;
                padding: 5px;
            }

                .card-section .shift-item.hidden .hider p,
                .shift-item.hidden .hider p {
                    color: #999;
                }

            .card-section .shift-item i.icon,
            .shift-item i.icon {
                width: 16px;
                height: 16px;
                display: inline-block;
                background: url(../images/backgrounds/sprite.png) no-repeat;
                vertical-align: middle;
            }

                .card-section .shift-item i.icon.gear,
                .shift-item i.icon.gear {
                    background-position: -112px -56px;
                }

                .card-section .shift-item i.icon.pin,
                .shift-item i.icon.pin {
                    background-position: -96px -56px;
                }

                .card-section .shift-item i.icon.bubble,
                .shift-item i.icon.bubble {
                    background-position: -80px -56px;
                }

                .card-section .shift-item i.icon.coffee,
                .shift-item i.icon.coffee {
                    background-position: -128px -56px;
                }

                .card-section .shift-item i.icon.compose,
                .shift-item i.icon.compose {
                    background-position: -144px -56px;
                }

            .card-section .shift-item i.gear,
            .shift-item i.gear {
                float: left;
                width: 0;
                opacity: 0;
                cursor: pointer;
                margin-top: 3px;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

            .card-section .shift-item:hover i.gear,
            .shift-item:hover i.gear {
                width: 16px;
                margin-right: 6px;
                opacity: 1;
            }

            .card-section .shift-item.editing .hider,
            .shift-item.editing .hider {
                -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
                border-radius: 3px;
            }

            .card-section .shift-item p {
                font-size: 14px;
            }
        /** SHIFT ACKNOWLEDGEMENT **/
        .acknowledge-dialog.dialog-kit .button-close {
            opacity: 0;
        }

            .acknowledge-dialog.dialog-kit .button-close:hover {
                opacity: 1;
            }

        .acknowledge-dialog.dialog-kit .dialog-body {
            padding-top: 0;
            padding-bottom: 5px;
        }

        .acknowledge-dialog.dialog-kit .warning {
            padding: 0;
            margin: 0 -30px 10px;
            background-color: #9f0e25;
            color: #fff;
        }

            .acknowledge-dialog.dialog-kit .warning p {
                padding: 20px 30px;
                margin: 0;
            }

            .acknowledge-dialog.dialog-kit .warning a {
                color: inherit;
                text-decoration: underline;
            }

        .acknowledge-dialog.dialog-kit #button-remind {
            margin-top: 1em;
        }

        .acknowledge-dialog.dialog-kit #confirm-responsibility-banner {
            text-align: center;
            background-color: #fffab8;
            border-radius: 3px;
            border: solid 1px #dbd482;
            margin-bottom: 1em;
        }

            .acknowledge-dialog.dialog-kit #confirm-responsibility-banner p {
                color: #666666;
                margin: 0;
                padding: 20px;
            }

        .acknowledge-dialog.dialog-kit .item-holder {
            max-height: 390px;
            overflow: auto;
        }

            .acknowledge-dialog.dialog-kit .item-holder .shift-list-item {
                display: table;
                margin-left: 0;
                float: none;
            }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item > div {
                    display: table-cell;
                    float: none;
                    height: auto;
                    vertical-align: top;
                }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item > div.date {
                        padding-bottom: 5px;
                    }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .description {
                    width: 85%;
                    max-width: 317px;
                    padding: 12px;
                    float: none;
                }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .description h3 {
                        margin: 0;
                    }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .description .description {
                        height: auto;
                        padding: .5em 0;
                        border: 0;
                    }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .button-collapse {
                    display: none;
                }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .button-collapse.active {
                        display: block;
                    }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .swap-type {
                    margin-bottom: -1em;
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                    color: #666;
                }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .swap-status {
                    font-size: 11px;
                    padding: 5px 10px;
                    background-color: #999999;
                    border-radius: 3px;
                    margin: 0.5em 5px 0 0;
                    color: #ffffff;
                    text-transform: uppercase;
                    display: inline-block;
                }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .notes {
                    font-weight: 400;
                    max-width: 285px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info {
                    padding-left: 0;
                }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info h3 {
                        margin: 0.5em 0;
                        padding: 0;
                        font-size: 12px;
                        font-weight: 600;
                        text-transform: uppercase;
                        color: #666;
                    }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info p {
                        margin-top: 0;
                        font-weight: 600;
                        font-size: 16px;
                        color: #333;
                    }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info section {
                        border-bottom: none;
                        border-top: 1px solid #ccc;
                        padding-bottom: 11px;
                        margin-top: .5em;
                    }

                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info .button-swap,
                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info .button-drop,
                    .acknowledge-dialog.dialog-kit .item-holder .shift-list-item .shift-info .button-confirm-shift {
                        margin-right: 5px !important;
                        margin-top: 1em;
                    }

                .acknowledge-dialog.dialog-kit .item-holder .shift-list-item.active .button-collapse {
                    display: block;
                }
        /** SWAPS / DROPS / SHIFT ALERTS **/
        .swap-drop-dialog .dialog-body {
            padding-top: 8px !important;
            padding-bottom: 15px !important;
        }

            .swap-drop-dialog .dialog-body .item-header {
                width: 790px;
                padding-left: 10px;
                margin-bottom: 10px;
                line-height: 23px;
            }

            .swap-drop-dialog .dialog-body .item-holder {
                width: 830px;
                overflow: auto;
                max-height: 300px;
                margin-left: -30px;
                border-top: 1px solid #CCC;
                padding: 20px 0 5px 20px !important;
                background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjRkZGRkZGIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNSA1Wk0xIDZMLTEgNFpNNCAtMUw2IDFaIiBzdHJva2U9IiNlYmViZWIiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
            }

        .swap-drop-dialog .shift-list-item .description {
            width: 281px;
        }

        .swap-drop-dialog .shift-list-item.user .description {
            width: 111px;
        }

        .swap-drop-dialog .title-text {
            color: #999;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .swap-drop-dialog .date-text {
            color: #333;
            font-size: 20px;
        }

        .delete-users-dialog .dialog-body {
            padding-top: 15px;
        }

            .delete-users-dialog .dialog-body p {
                font-weight: 400;
            }

            .delete-users-dialog .dialog-body h3 {
                color: #6F6F6F;
            }

            .delete-users-dialog .dialog-body .info {
                color: #000;
                margin: 0 0 20px;
            }

            .delete-users-dialog .dialog-body .deletes {
                max-height: 193px;
                overflow-y: auto;
                background-color: #eeeeee;
            }

                .delete-users-dialog .dialog-body .deletes li {
                    clear: left;
                }

                .delete-users-dialog .dialog-body .deletes .ignore-employee {
                    float: right;
                    margin: 24px;
                    cursor: pointer;
                }

                .delete-users-dialog .dialog-body .deletes .avatar {
                    float: left;
                    margin: 7px 25px 7px 7px;
                    height: 50px;
                    width: 50px;
                }

                .delete-users-dialog .dialog-body .deletes .detail {
                    color: #333;
                    padding-top: 14px;
                }

                    .delete-users-dialog .dialog-body .deletes .detail .highlight {
                        color: #B30000;
                    }

            .delete-users-dialog .dialog-body .choice {
                color: #000;
            }

                .delete-users-dialog .dialog-body .choice label:nth-of-type(2) {
                    margin-left: 20px;
                }

        .delete-users-dialog .button-cancel {
            margin-right: 20px;
        }

        body.medium .swap-drop-dialog .popup-content .item-holder {
            max-height: 180px;
        }

        .shift-alert .shift-list-item {
            float: left;
            margin: 0 0 15px 10px;
            cursor: pointer;
        }

        .shift-list-item {
            background-color: #FFF;
            position: relative;
            overflow: hidden;
        }

            .shift-list-item.selectable {
                cursor: pointer;
            }

            .shift-list-item .date {
                background-color: #999999;
            }

            .shift-list-item .checkbox {
                border-radius: 0 1px 1px 0;
                float: left;
                width: 12px;
                padding: 25px 20px 23px 5px;
            }

                .shift-list-item .checkbox ins {
                    width: 10px;
                    height: 10px;
                    display: block;
                    border: 1px solid #CCC;
                    background: #FFF;
                }

            .shift-list-item .description {
                float: left;
                padding: 13px 0px 11px 10px;
                width: 180px;
                height: 36px;
                color: #666666;
                overflow: hidden;
                font-size: 12px;
                font-weight: 600;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

                .shift-list-item .description h3 {
                    margin-bottom: 0px;
                    color: #333333;
                    line-height: 1;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    font-size: 18px;
                    font-weight: 600;
                    text-transform: none;
                }

                    .shift-list-item .description h3 span {
                        font-size: 18px;
                        font-weight: 400;
                        text-transform: capitalize;
                    }

            .shift-list-item.shift .date {
                width: 60px;
                height: 60px;
                float: left;
                border-radius: 1px 0 0 1px;
                text-align: center;
                color: white;
                font-size: 30px;
                font-weight: 600;
                border-top-left-radius: 3px;
                border-bottom-left-radius: 3px;
                border: solid #CCC;
                border-width: 1px 0 1px 1px;
            }

                .shift-list-item.shift .date span {
                    font-size: 10px;
                    display: block;
                    text-transform: uppercase;
                    margin: 9px 0 -5px;
                }

            .shift-list-item.shift .description,
            .shift-list-item.shift .checkbox {
                border-top: 1px solid #CCC;
                border-bottom: 1px solid #CCC;
            }

            .shift-list-item.shift > div:last-child {
                border-top-right-radius: 3px;
                border-bottom-right-radius: 3px;
                border-right: 1px solid #CCC;
            }

            .shift-list-item.user {
                border: 1px solid #ddd;
                border-radius: 3px;
            }

                .shift-list-item.user .avatar {
                    float: left;
                    width: 20px;
                    height: 20px;
                    margin-top: 10px;
                    margin-left: 10px;
                    border-radius: 1px 0 0 1px;
                    overflow: hidden;
                }

                .shift-list-item.user .description {
                    height: 20px;
                    padding: 10px;
                    width: 107px;
                    background: #fff;
                }

                    .shift-list-item.user .description h3 {
                        color: #333;
                        font-size: 14px;
                        line-height: 20px;
                        font-weight: normal;
                        text-transform: capitalize;
                    }

                .shift-list-item.user .checkbox {
                    background: #fff;
                    padding: 14px 10px 12px 5px;
                }

                .shift-list-item.user.selected {
                    border-color: #51a33d;
                }

            .shift-list-item.selected {
                border-color: #51a33d;
            }

                .shift-list-item.selected .description {
                    background-color: #FFF;
                }

                    .shift-list-item.selected .description h3 {
                        color: #333;
                    }

                .shift-list-item.selected .checkbox {
                    background-color: #FFF;
                }

                .shift-list-item.selected ins span {
                    margin: 1px;
                    width: 8px;
                    height: 8px;
                    display: block;
                    background: #51a33d;
                }

                .shift-list-item.selected .overtimed {
                    background-color: #FFFFFF;
                }

            .shift-list-item .overtimed {
                float: left;
                width: 50px;
                height: 40px;
                position: absolute;
                /* right: 52px; */
                right: 29px;
            }

                .shift-list-item .overtimed span {
                    display: inline-block;
                    height: 15px;
                    background-color: #CC6666;
                    color: white;
                    border-radius: 2px;
                    font-size: 11px;
                    text-align: center;
                    line-height: 15px;
                    margin-top: 13px;
                    font-weight: bold;
                    width: 44px;
                    margin-left: 5px;
                }
        /**** SEND EMAIL/MESSAGE DIALOG ****/
        /* green colors for if the account has scheduling (even if page has .blue class) */
        body.has-scheduling .send-message-dialog .form-item a,
        body.has-scheduling.blue .send-message-dialog .form-item a,
        body.has-scheduling .request-create .form-item a,
        body.has-scheduling.blue .request-create .form-item a {
            color: #51aa3d;
        }

            body.has-scheduling .send-message-dialog .form-item a.select2-search-choice-close::before,
            body.has-scheduling.blue .send-message-dialog .form-item a.select2-search-choice-close::before,
            body.has-scheduling .request-create .form-item a.select2-search-choice-close::before,
            body.has-scheduling.blue .request-create .form-item a.select2-search-choice-close::before {
                color: #fff;
            }

        body.has-scheduling .send-message-dialog .token-input-token,
        body.has-scheduling.blue .send-message-dialog .token-input-token,
        body.has-scheduling .request-create .token-input-token,
        body.has-scheduling.blue .request-create .token-input-token {
            background-color: #51a33d;
        }

            body.has-scheduling .send-message-dialog .token-input-token:hover,
            body.has-scheduling.blue .send-message-dialog .token-input-token:hover,
            body.has-scheduling .request-create .token-input-token:hover,
            body.has-scheduling.blue .request-create .token-input-token:hover {
                background-color: #378823;
            }

        body.has-scheduling .send-message-dialog .header .toggle-kit .button-kit.green,
        body.has-scheduling.blue .send-message-dialog .header .toggle-kit .button-kit.green,
        body.has-scheduling .request-create .header .toggle-kit .button-kit.green,
        body.has-scheduling.blue .request-create .header .toggle-kit .button-kit.green,
        body.has-scheduling .send-message-dialog .dialog-footer .toggle-kit .button-kit.green,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .toggle-kit .button-kit.green,
        body.has-scheduling .request-create .dialog-footer .toggle-kit .button-kit.green,
        body.has-scheduling.blue .request-create .dialog-footer .toggle-kit .button-kit.green,
        body.has-scheduling .send-message-dialog .header .button-kit.green,
        body.has-scheduling.blue .send-message-dialog .header .button-kit.green,
        body.has-scheduling .request-create .header .button-kit.green,
        body.has-scheduling.blue .request-create .header .button-kit.green,
        body.has-scheduling .send-message-dialog .dialog-footer .button-kit.green,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .button-kit.green,
        body.has-scheduling .request-create .dialog-footer .button-kit.green,
        body.has-scheduling.blue .request-create .dialog-footer .button-kit.green {
            color: #ffffff;
            background-color: #51a33d;
        }

            body.has-scheduling .send-message-dialog .header .toggle-kit .button-kit.green:hover,
            body.has-scheduling.blue .send-message-dialog .header .toggle-kit .button-kit.green:hover,
            body.has-scheduling .request-create .header .toggle-kit .button-kit.green:hover,
            body.has-scheduling.blue .request-create .header .toggle-kit .button-kit.green:hover,
            body.has-scheduling .send-message-dialog .dialog-footer .toggle-kit .button-kit.green:hover,
            body.has-scheduling.blue .send-message-dialog .dialog-footer .toggle-kit .button-kit.green:hover,
            body.has-scheduling .request-create .dialog-footer .toggle-kit .button-kit.green:hover,
            body.has-scheduling.blue .request-create .dialog-footer .toggle-kit .button-kit.green:hover,
            body.has-scheduling .send-message-dialog .header .button-kit.green:hover,
            body.has-scheduling.blue .send-message-dialog .header .button-kit.green:hover,
            body.has-scheduling .request-create .header .button-kit.green:hover,
            body.has-scheduling.blue .request-create .header .button-kit.green:hover,
            body.has-scheduling .send-message-dialog .dialog-footer .button-kit.green:hover,
            body.has-scheduling.blue .send-message-dialog .dialog-footer .button-kit.green:hover,
            body.has-scheduling .request-create .dialog-footer .button-kit.green:hover,
            body.has-scheduling.blue .request-create .dialog-footer .button-kit.green:hover {
                background-color: #378823;
            }

        body.has-scheduling .send-message-dialog .header .toggle-kit .button-kit.selected,
        body.has-scheduling.blue .send-message-dialog .header .toggle-kit .button-kit.selected,
        body.has-scheduling .request-create .header .toggle-kit .button-kit.selected,
        body.has-scheduling.blue .request-create .header .toggle-kit .button-kit.selected,
        body.has-scheduling .send-message-dialog .dialog-footer .toggle-kit .button-kit.selected,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .toggle-kit .button-kit.selected,
        body.has-scheduling .request-create .dialog-footer .toggle-kit .button-kit.selected,
        body.has-scheduling.blue .request-create .dialog-footer .toggle-kit .button-kit.selected,
        body.has-scheduling .send-message-dialog .header .button-kit.selected,
        body.has-scheduling.blue .send-message-dialog .header .button-kit.selected,
        body.has-scheduling .request-create .header .button-kit.selected,
        body.has-scheduling.blue .request-create .header .button-kit.selected,
        body.has-scheduling .send-message-dialog .dialog-footer .button-kit.selected,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .button-kit.selected,
        body.has-scheduling .request-create .dialog-footer .button-kit.selected,
        body.has-scheduling.blue .request-create .dialog-footer .button-kit.selected {
            background-color: #51a33d;
        }

            body.has-scheduling .send-message-dialog .header .toggle-kit .button-kit.selected:hover,
            body.has-scheduling.blue .send-message-dialog .header .toggle-kit .button-kit.selected:hover,
            body.has-scheduling .request-create .header .toggle-kit .button-kit.selected:hover,
            body.has-scheduling.blue .request-create .header .toggle-kit .button-kit.selected:hover,
            body.has-scheduling .send-message-dialog .dialog-footer .toggle-kit .button-kit.selected:hover,
            body.has-scheduling.blue .send-message-dialog .dialog-footer .toggle-kit .button-kit.selected:hover,
            body.has-scheduling .request-create .dialog-footer .toggle-kit .button-kit.selected:hover,
            body.has-scheduling.blue .request-create .dialog-footer .toggle-kit .button-kit.selected:hover,
            body.has-scheduling .send-message-dialog .header .button-kit.selected:hover,
            body.has-scheduling.blue .send-message-dialog .header .button-kit.selected:hover,
            body.has-scheduling .request-create .header .button-kit.selected:hover,
            body.has-scheduling.blue .request-create .header .button-kit.selected:hover,
            body.has-scheduling .send-message-dialog .dialog-footer .button-kit.selected:hover,
            body.has-scheduling.blue .send-message-dialog .dialog-footer .button-kit.selected:hover,
            body.has-scheduling .request-create .dialog-footer .button-kit.selected:hover,
            body.has-scheduling.blue .request-create .dialog-footer .button-kit.selected:hover {
                background-color: #378823;
            }

        body.has-scheduling .send-message-dialog .header .toggle-kit .button-kit.white,
        body.has-scheduling.blue .send-message-dialog .header .toggle-kit .button-kit.white,
        body.has-scheduling .request-create .header .toggle-kit .button-kit.white,
        body.has-scheduling.blue .request-create .header .toggle-kit .button-kit.white,
        body.has-scheduling .send-message-dialog .dialog-footer .toggle-kit .button-kit.white,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .toggle-kit .button-kit.white,
        body.has-scheduling .request-create .dialog-footer .toggle-kit .button-kit.white,
        body.has-scheduling.blue .request-create .dialog-footer .toggle-kit .button-kit.white,
        body.has-scheduling .send-message-dialog .header .button-kit.white,
        body.has-scheduling.blue .send-message-dialog .header .button-kit.white,
        body.has-scheduling .request-create .header .button-kit.white,
        body.has-scheduling.blue .request-create .header .button-kit.white,
        body.has-scheduling .send-message-dialog .dialog-footer .button-kit.white,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .button-kit.white,
        body.has-scheduling .request-create .dialog-footer .button-kit.white,
        body.has-scheduling.blue .request-create .dialog-footer .button-kit.white {
            color: #999;
        }

        body.has-scheduling .send-message-dialog .header .button-kit,
        body.has-scheduling.blue .send-message-dialog .header .button-kit,
        body.has-scheduling .request-create .header .button-kit,
        body.has-scheduling.blue .request-create .header .button-kit,
        body.has-scheduling .send-message-dialog .dialog-footer .button-kit,
        body.has-scheduling.blue .send-message-dialog .dialog-footer .button-kit,
        body.has-scheduling .request-create .dialog-footer .button-kit,
        body.has-scheduling.blue .request-create .dialog-footer .button-kit {
            color: #ffffff;
        }

        body.has-scheduling .send-message-dialog .credit-box strong,
        body.has-scheduling.blue .send-message-dialog .credit-box strong,
        body.has-scheduling .request-create .credit-box strong,
        body.has-scheduling.blue .request-create .credit-box strong,
        body.has-scheduling .send-message-dialog .credit-warning strong,
        body.has-scheduling.blue .send-message-dialog .credit-warning strong,
        body.has-scheduling .request-create .credit-warning strong,
        body.has-scheduling.blue .request-create .credit-warning strong,
        body.has-scheduling .send-message-dialog .credit-counter strong,
        body.has-scheduling.blue .send-message-dialog .credit-counter strong,
        body.has-scheduling .request-create .credit-counter strong,
        body.has-scheduling.blue .request-create .credit-counter strong {
            color: #51A33D;
        }

        body.has-scheduling .send-message-dialog .to-item .select2-search-choice,
        body.has-scheduling.blue .send-message-dialog .to-item .select2-search-choice,
        body.has-scheduling .request-create .to-item .select2-search-choice,
        body.has-scheduling.blue .request-create .to-item .select2-search-choice {
            padding: 1px 18px;
            line-height: 24px;
            margin-left: 10px;
            margin-top: 5px;
        }

            body.has-scheduling .send-message-dialog .to-item .select2-search-choice a,
            body.has-scheduling.blue .send-message-dialog .to-item .select2-search-choice a,
            body.has-scheduling .request-create .to-item .select2-search-choice a,
            body.has-scheduling.blue .request-create .to-item .select2-search-choice a {
                color: #fff;
            }
        /* override any green styling if the account has attendance only */
        body.attendance-only .send-message-dialog .header .toggle-kit .button-kit.selected {
            background-color: #558aaf !important;
        }

        body.attendance-only .send-message-dialog .header #credit-access-menu li a:hover {
            background-color: #558aaf;
        }

        body.attendance-only .send-message-dialog .credit-box strong,
        body.attendance-only .send-message-dialog .credit-warning strong,
        body.attendance-only .send-message-dialog .credit-counter strong {
            color: #558aaf;
        }

        .send-message-dialog .header .toggle-kit {
            border: none;
            margin-top: 8px;
        }

            .send-message-dialog .header .toggle-kit .button-kit {
                -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.07);
                box-shadow: 0 1px 0px rgba(0, 0, 0, 0.07);
            }

                .send-message-dialog .header .toggle-kit .button-kit.today-button {
                    margin-top: 5px;
                }

                .send-message-dialog .header .toggle-kit .button-kit.selected {
                    border: 0 none;
                    text-shadow: none;
                    color: #fff !important;
                }

                .send-message-dialog .header .toggle-kit .button-kit:last-child {
                    border-right-width: 1px;
                }

                .send-message-dialog .header .toggle-kit .button-kit.white {
                    color: #999;
                    border-right-color: #ccc;
                    border-top: 1px solid #ccc;
                }

                    .send-message-dialog .header .toggle-kit .button-kit.white:first-child {
                        border-left: 1px solid #ccc;
                    }

        .send-message-dialog .header .text-credit-access,
        .send-message-dialog .header .text-learn-more {
            font-size: 14px;
            font-weight: 600;
        }

        .send-message-dialog .header #credit-access-menu li a:hover {
            color: #fff;
        }

        .send-message-dialog .credit-box {
            float: right;
            margin-top: 8px;
        }

            .send-message-dialog .credit-box > span {
                float: left;
                height: 40px;
                line-height: 40px;
                border-radius: 3px;
                display: inline-block;
                color: #999;
            }

        .send-message-dialog .credit-warning {
            line-height: 24px;
            font-size: 11px;
            color: #666;
            font-weight: 600;
        }

        .send-message-dialog .credit-counter {
            float: right;
            color: #999;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .send-message-dialog .text-credit-access {
            font-size: 10px;
            color: #666;
        }

        .send-message-dialog .token-input-token {
            line-height: 26px;
            margin: 7px 5px 4px 0;
        }

        .send-message-dialog .text-credit-access,
        .send-message-dialog .text-learn-more {
            border-radius: 2px;
            color: #666;
            background-color: #eeeeee;
            padding: 8px;
            margin: 14px 0 0 0;
        }

            .send-message-dialog .text-credit-access i,
            .send-message-dialog .text-learn-more i {
                float: right;
                margin: 1px 0 0 0;
                cursor: pointer;
                color: #999;
            }

        .send-message-dialog .text-learn-more {
            display: none;
            width: 66%;
        }

        .send-message-dialog .button-kit.button-buy-credits {
            display: none;
            margin: 14px 0 0 10px;
            height: 32px;
            width: 27%;
            padding: 4px 0;
            font-size: 14px;
            text-align: center;
        }

        .send-message-dialog .form-item label {
            color: #999 !important;
        }

        .send-message-dialog .form-item:last-of-type {
            margin-bottom: 3px;
        }

        .send-message-dialog .selected {
            height: 35px !important;
        }
        /* end send dialog */
        /*** Purchase Credits Dialog ***/
        .purchase-credits-dialog .text-credits {
            width: 60%;
            font-size: 20px;
            margin-left: 5px;
        }

        .purchase-credits-dialog .credit-counter {
            float: right;
            margin: 13px 5px 0 0;
            color: #999;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 600;
        }

            .purchase-credits-dialog .credit-counter.error {
                color: #aa3d3d;
            }

        .purchase-credits-dialog .text-credit-container {
            width: 35%;
            margin-left: 0;
            padding-left: 0;
        }

            .purchase-credits-dialog .text-credit-container > div {
                height: 40px;
                background-color: #dddddd;
                text-align: right;
            }

                .purchase-credits-dialog .text-credit-container > div .text-credit-total {
                    color: #000000;
                    font-size: 20px;
                    margin-top: 7px;
                    margin-right: 4px;
                }

        .purchase-credits-dialog .disclaimer {
            font-size: 11px;
            color: #666;
            font-weight: 600;
        }

            .purchase-credits-dialog .disclaimer a {
                color: #51A33D;
            }

        .purchase-credits-dialog .button-kit.white {
            text-transform: uppercase;
        }

        .hide {
            display: none !important;
        }

        .dialog-kit.login-dialog {
            width: 300px;
        }
        /**** UI FOR MATCHING UP OBJECTS *****/
        .link-changes .link-sources {
            width: 40%;
        }

        .link-changes .link-matches {
            display: none;
            width: 60%;
            padding-left: 10px;
        }

            .link-changes .link-matches.visible {
                display: table-cell;
            }

            .link-changes .link-matches a.button-kit {
                padding-left: 10px;
                float: right;
            }

        .link-list {
            font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
            overflow: auto;
            max-height: 300px;
        }

            .link-list .object-matches {
                width: 100%;
            }

                .link-list .object-matches li {
                    background: #f8f8f8;
                    border-bottom: dashed #ccc 1px;
                    padding: 10px;
                }

                    .link-list .object-matches li .remote-match {
                        float: right;
                    }

            .link-list .link-source,
            .link-list .link-options {
                /* EXTRA FOR OLD STYLE */
                /* end extra */
            }

                .link-list .link-source li,
                .link-list .link-options li {
                    position: relative;
                    background: white;
                    border-radius: 3px;
                    border: 1px solid #ddd;
                    padding: 5px;
                    height: 24px;
                    line-height: 24px;
                    font-weight: 400;
                    color: #999;
                    margin-bottom: 8px;
                    cursor: pointer;
                    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                    -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
                    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
                }

                    .link-list .link-source li.selected,
                    .link-list .link-options li.selected {
                        -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
                        -webkit-filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.1));
                        filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.1));
                        color: #333;
                    }

                        .link-list .link-source li.selected:before,
                        .link-list .link-options li.selected:before,
                        .link-list .link-source li.selected:after,
                        .link-list .link-options li.selected:after {
                            left: 100%;
                            border: solid transparent;
                            content: " ";
                            height: 0;
                            width: 0;
                            position: absolute;
                            pointer-events: none;
                            top: 1px;
                            border-left-color: white;
                            border-width: 16px;
                        }

                        .link-list .link-source li.selected:before,
                        .link-list .link-options li.selected:before {
                            top: 0px;
                            border-left-color: #ddd;
                            border-width: 17px;
                        }

                    .link-list .link-source li.text,
                    .link-list .link-options li.text {
                        border: none;
                        padding: 0;
                        background: none;
                        line-height: 1;
                        height: auto;
                        cursor: default;
                        -webkit-box-shadow: none;
                        box-shadow: none;
                    }

                    .link-list .link-source li img,
                    .link-list .link-options li img {
                        width: 24px;
                        max-height: 24px;
                        margin-right: 5px;
                        float: left;
                    }

                .link-list .link-source .bottom,
                .link-list .link-options .bottom {
                    margin-top: 10px;
                }

                    .link-list .link-source .bottom .button-kit,
                    .link-list .link-options .bottom .button-kit {
                        -webkit-box-sizing: border-box;
                        -ms-box-sizing: border-box;
                        box-sizing: border-box;
                        width: 40%;
                        float: left;
                        margin-right: 10%;
                    }

                        .link-list .link-source .bottom .button-kit:last-child,
                        .link-list .link-options .bottom .button-kit:last-child {
                            margin-right: 0;
                        }

            .link-list .link-source {
                padding-right: 5px;
            }

            .link-list .link-options {
                padding-left: 5px;
            }

                .link-list .link-options .link-options-scroll {
                    padding: 20px;
                    background: #f5f5f5;
                    border: 1px dashed #CCC;
                    max-height: 180px;
                    overflow: auto;
                }

                    .link-list .link-options .link-options-scroll + .toggle-kit {
                        margin-top: -1px;
                    }

                        .link-list .link-options .link-options-scroll + .toggle-kit .button-kit {
                            border-top: 1px solid rgba(0, 0, 0, 0.25);
                        }

                            .link-list .link-options .link-options-scroll + .toggle-kit .button-kit.large {
                                font-size: 14px;
                            }

                .link-list .link-options li {
                    padding: 4px;
                }
        /** END UI MATCHING **/
        body.blue .hello-messages > div.feature ins {
            background: #558aaf;
        }

        body.blue header .trial-expire ins,
        body.blue header .trial-expire a {
            background: #558aaf;
        }

        body.blue header .trial-expire:hover a {
            background: #558aaf;
        }

        body.blue li.token-input-token {
            background-color: #558aaf;
        }

        #ui-datepicker-div {
            padding: 20px;
            position: relative;
            border-color: #ddd;
            border-radius: 3px;
        }

            #ui-datepicker-div:before {
                top: 0px;
                left: 50%;
                width: 20px;
                height: 20px;
                content: '';
                display: block;
                background: #fff;
                position: absolute;
                margin-left: -11px;
                margin-top: -8px;
                border-radius: 3px;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                border: 1px solid #ddd;
            }

            #ui-datepicker-div:after {
                top: 0px;
                left: 50%;
                width: 35px;
                height: 17px;
                content: '';
                background: #fff;
                margin-left: -20px;
                position: absolute;
            }

            #ui-datepicker-div .ui-datepicker-header {
                padding: 0;
                border: 0 none;
                margin-top: -11px;
                background: transparent;
            }

                #ui-datepicker-div .ui-datepicker-header .ui-corner-all {
                    font-weight: normal;
                    border: 0 none;
                    background: transparent;
                }

            #ui-datepicker-div .ui-datepicker-next {
                float: right;
            }

            #ui-datepicker-div .ui-datepicker-title {
                color: #666;
                font-size: 17px;
                text-align: center;
                font-weight: normal;
                text-shadow: none;
            }

            #ui-datepicker-div table th span,
            #ui-datepicker-div table td span,
            #ui-datepicker-div table td a {
                width: 24px;
                height: 24px;
                line-height: 6px;
                font-family: 'Source Sans Pro', Helvetica, sans-serif;
            }

            #ui-datepicker-div table th span {
                font-weight: 600;
            }

            #ui-datepicker-div table .no-time-off {
                background: #ffd6d6;
            }

                #ui-datepicker-div table .no-time-off span {
                    color: #ba0000;
                }
        /* modified datepicker for create request dialog */
        .create-request-datepicker-mod #ui-datepicker-div {
            padding: 0;
        }

            .create-request-datepicker-mod #ui-datepicker-div:before,
            .create-request-datepicker-mod #ui-datepicker-div:after {
                left: 109px;
            }

            .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request {
                overflow: hidden;
            }

                .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .calendar-wrapper,
                .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing {
                    float: left;
                    /**
         * The bottom values are a "trick" to get the
         * side-by-side columns to fill vertical space
         */
                    padding-bottom: 1000px;
                    margin-bottom: -978px;
                }

                .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .calendar-wrapper {
                    padding-top: 20px;
                    padding-left: 20px;
                    margin-right: 20px;
                }

                .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing {
                    border-left: 1px solid #ddd;
                    width: 216px;
                    padding-bottom: 978px;
                }

                    .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing h1,
                    .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing h2 {
                        font-size: 11px;
                        text-transform: uppercase;
                    }

                    .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing h1 {
                        color: #f07171;
                        text-transform: uppercase;
                        border-bottom: 1px solid #ddd;
                        padding: 12px 20px;
                    }

                    .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing ul {
                        padding-left: 20px;
                        overflow-y: scroll;
                    }

                        .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing ul.num-week-rows-4 {
                            height: 164px;
                        }

                        .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing ul.num-week-rows-5 {
                            height: 179px;
                        }

                        .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing ul li {
                            margin: 13px 0 0 0;
                        }

                            .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing ul li h2 {
                                margin-bottom: 2px;
                            }

                            .create-request-datepicker-mod #ui-datepicker-div .datepicker-create-request .no-time-off-listing ul li p {
                                font-family: 'Source Sans Pro', Helvetica, sans-serif;
                            }

        .current-git-branch {
            top: 0px;
            right: 0px;
            padding: 2px;
            font-size: 10px;
            position: absolute;
            display: inline-block;
            background: antiquewhite;
        }

        .clockin-dialog .notes,
        .clockin-dialog .audit-note {
            border: 1px solid #ccc;
            width: 373px;
            height: 40px;
            margin: 0 33px 28px;
            padding: 9px;
            font-size: 16px;
            color: #333333;
            resize: vertical;
            font-family: "Source Sans Pro", Arial, sans-serif;
        }

            .clockin-dialog .notes:-moz-placeholder,
            .clockin-dialog .audit-note:-moz-placeholder {
                color: #bbb;
                font-size: 18px;
            }

            .clockin-dialog .notes::-moz-placeholder,
            .clockin-dialog .audit-note::-moz-placeholder {
                color: #bbb;
                font-size: 18px;
            }

            .clockin-dialog .notes::-webkit-input-placeholder,
            .clockin-dialog .audit-note::-webkit-input-placeholder {
                color: #bbb;
                font-size: 18px;
            }

        .select2-drop.large,
        .select2-container.large {
            font-size: 18px;
        }

            .select2-drop.large .select2-choice,
            .select2-container.large .select2-choice {
                padding: 9px;
            }

                .select2-drop.large .select2-choice .select2-arrow b,
                .select2-container.large .select2-choice .select2-arrow b {
                    line-height: 58px;
                }
        /************************************************
  Expanding textareas with jquery.autosize.js
*************************************************/
        textarea.autosize {
            vertical-align: top;
            -webkit-transition: height 0.2s;
            transition: height 0.2s;
        }
        /**
 * Tipsy Tooltips
 */
        .tipsy .tipsy-inner {
            font-family: 'Source Sans Pro', Helvetica, sans-serif;
            font-size: 12px;
            font-weight: 300;
        }

            .tipsy .tipsy-inner .html-tooltip {
                padding: 20px;
                text-align: left;
                overflow-wrap: break-word;
            }

                .tipsy .tipsy-inner .html-tooltip h1 {
                    font-size: 18px;
                }

                .tipsy .tipsy-inner .html-tooltip p {
                    font-size: 14px;
                }

                .tipsy .tipsy-inner .html-tooltip hr {
                    border-bottom: 1px solid #444;
                    margin: 10px 0;
                }
        /*****************************************************************************
 * CUSTOM SCROLLBARS
 */
        ::-webkit-scrollbar {
            width: 15px;
        }

        ::-webkit-scrollbar-track {
            background: #f5f5f5;
            -webkit-box-shadow: inset 2px 0 10px rgba(0, 0, 0, 0.04);
            box-shadow: inset 2px 0 10px rgba(0, 0, 0, 0.04);
            border-right: 1px solid #efefef;
            border-left: 1px solid #e0e0e0;
        }

        ::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.23);
            background-clip: padding-box;
            border-radius: 8px;
            padding: 100px 0 0;
            border: solid transparent;
            border-width: 2px 4px;
            min-height: 28px;
        }

        #password-dialog {
            max-width: 400px;
            font-size: 16px;
            line-height: 24px;
        }

            #password-dialog .logo {
                height: 40px;
                width: 240px;
                margin-left: auto;
                margin-right: auto;
                background: url(../images/wiw-logo.svg) no-repeat center;
            }

            #password-dialog .dialog-header {
                margin: 10px 0px 0px -11px;
            }

            #password-dialog .dialog-body {
                padding: 2px 4px 0px;
                margin: 0px 30px;
            }

            #password-dialog .form-item > label {
                margin-bottom: 0px;
            }

            #password-dialog .dialog-footer {
                border-top: none;
            }

            #password-dialog section {
                padding: 12px 0px 12px 0px;
            }

            #password-dialog .description {
                color: #555555;
            }

            #password-dialog section.email {
                padding-bottom: 26px;
            }

                #password-dialog section.email .text {
                    font-size: 18px;
                    font-weight: 600;
                    line-height: 24px;
                }

            #password-dialog section.login-password {
                padding-top: 25px;
            }

                #password-dialog section.login-password .form-text {
                    width: 313px;
                }

                #password-dialog section.login-password .fa-lock {
                    position: absolute;
                    top: 11px;
                    left: 11px;
                    font-size: 17px;
                }

                #password-dialog section.login-password input.password {
                    margin-left: 25px;
                    width: 94%;
                }

                #password-dialog section.login-password .show-hide-password {
                    margin-top: 10px;
                    font-size: 14px;
                    line-height: 20px;
                }

            #password-dialog section.validations {
                padding-top: 0px;
                font-size: 14px;
                color: #555555;
            }

                #password-dialog section.validations li {
                    margin-bottom: 3px;
                }

                    #password-dialog section.validations li.valid {
                        color: #555555;
                    }

                        #password-dialog section.validations li.valid i {
                            color: #51a33d;
                        }

                    #password-dialog section.validations li.error {
                        color: #757575;
                    }

                        #password-dialog section.validations li.error i {
                            color: #cccccc;
                        }

                    #password-dialog section.validations li i {
                        color: #51a33d;
                        margin-right: 7px;
                    }

            #password-dialog .dialog-footer {
                padding-top: 13px;
            }

                #password-dialog .dialog-footer .set-password .disabled {
                    opacity: 0.3;
                }

        #password-holder.password-reset {
            width: 500px;
            position: relative;
            display: block;
            margin: 0 auto;
        }

        .message-limit {
            float: right;
            color: #999;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 600;
        }
        /** Screen Dimensions (medium, large) **/
        body.large #container,
        body.large header .header-block,
        body.large footer {
            width: 1220px;
        }

        @media screen and (min-width: 100px) {
            #container,
            header .header-block,
            footer,
            .nudge {
                width: auto !important;
            }
        }

        @media screen and (max-width: 1269px) {
            #container,
            header .header-block,
            footer,
            .nudge {
                margin-left: 20px;
                margin-right: 20px;
            }
        }

        @media screen and (min-width: 1270px) {
            #container,
            header .header-block,
            footer,
            .nudge {
                width: 1220px !important;
            }
        }

        .upgrade-dialogue .button-close {
            position: absolute;
            top: 26px;
            right: 20px;
        }

        .upgrade-dialogue .new-style {
            height: 520px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

        .upgrade-dialogue .dialogue-message-container {
            -ms-flex-preferred-size: fill;
            flex-basis: fill;
            height: 100%;
            background-color: #fff;
            text-align: center;
            margin: 0 5em 5em;
        }

            .upgrade-dialogue .dialogue-message-container .message-headline {
                margin-top: 58px;
                color: #333333;
                font-size: 42px;
                font-weight: 300;
            }

            .upgrade-dialogue .dialogue-message-container .graphic {
                margin-top: 30px;
            }

            .upgrade-dialogue .dialogue-message-container .message-subheadline {
                margin-top: 20px;
                font-size: 20px;
                line-height: 1.2;
                color: #666666;
            }

            .upgrade-dialogue .dialogue-message-container .num-message {
                background: #f7f7f7;
                margin: 15px -65px -10px;
                padding: 12px;
            }

            .upgrade-dialogue .dialogue-message-container a.upgrade {
                margin-top: 30px;
                text-transform: uppercase;
            }

                .upgrade-dialogue .dialogue-message-container a.upgrade.primary {
                    background-color: #51a33d;
                    font-size: 18px;
                    font-weight: 600;
                }

            .upgrade-dialogue .dialogue-message-container a.contact-sales {
                text-transform: uppercase;
                border: 1px solid transparent;
            }

            .upgrade-dialogue .dialogue-message-container a.working {
                top: 19px;
            }

        .upgrade-dialogue .dialogue-submessage-container {
            -ms-flex-preferred-size: fill;
            flex-basis: fill;
            height: 100%;
            background-color: #eeeeee;
        }

            .upgrade-dialogue .dialogue-submessage-container div {
                margin: 70px 72px 40px;
            }

            .upgrade-dialogue .dialogue-submessage-container h1 {
                font-size: 24px;
                text-align: left;
                color: #333333;
            }

            .upgrade-dialogue .dialogue-submessage-container ul {
                text-align: left;
                margin: 20px;
                list-style-type: disc;
                line-height: 1.88;
                font-size: 16px;
                font-weight: 600;
                color: #333333;
                white-space: nowrap;
            }

        .d-flex {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
        }

        .justify-content-between {
            -webkit-box-pack: justify !important;
            -ms-flex-pack: justify !important;
            justify-content: space-between !important;
        }

        .m-1 {
            margin: .25rem .25rem !important;
        }

        .m-2 {
            margin: .5rem .5rem !important;
        }

        .m-3 {
            margin: 1rem 1rem !important;
        }

        .m-4 {
            margin: 1.5rem 1.5rem !important;
        }

        .m-5 {
            margin: 3rem 3rem !important;
        }

        .mt-1 {
            margin-top: .25rem !important;
        }

        .mt-2 {
            margin-top: .5rem !important;
        }

        .mt-3 {
            margin-top: 1rem !important;
        }

        .mt-4 {
            margin-top: 1.5rem !important;
        }

        .mt-5 {
            margin-top: 3rem !important;
        }

        .mr-1 {
            margin-right: .25rem !important;
        }

        .mr-2 {
            margin-right: .5rem !important;
        }

        .mr-3 {
            margin-right: 1rem !important;
        }

        .mr-4 {
            margin-right: 1.5rem !important;
        }

        .mr-5 {
            margin-right: 3rem !important;
        }

        .mb-1 {
            margin-bottom: .25rem !important;
        }

        .mb-2 {
            margin-bottom: .5rem !important;
        }

        .mb-3 {
            margin-bottom: 1rem !important;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

        .mb-5 {
            margin-bottom: 3rem !important;
        }

        .ml-1 {
            margin-left: .25rem !important;
        }

        .ml-2 {
            margin-left: .5rem !important;
        }

        .ml-3 {
            margin-left: 1rem !important;
        }

        .ml-4 {
            margin-left: 1.5rem !important;
        }

        .ml-5 {
            margin-left: 3rem !important;
        }

        .mx-1 {
            margin-left: .25rem !important;
            margin-right: .25rem !important;
        }

        .mx-2 {
            margin-left: .5rem !important;
            margin-right: .5rem !important;
        }

        .mx-3 {
            margin-left: 1rem !important;
            margin-right: 1rem !important;
        }

        .mx-4 {
            margin-left: 1.5rem !important;
            margin-right: 1.5rem !important;
        }

        .mx-5 {
            margin-left: 3rem !important;
            margin-right: 3rem !important;
        }

        .my-1 {
            margin-top: .25rem !important;
            margin-bottom: .25rem !important;
        }

        .my-2 {
            margin-top: .5rem !important;
            margin-bottom: .5rem !important;
        }

        .my-3 {
            margin-top: 1rem !important;
            margin-bottom: 1rem !important;
        }

        .my-4 {
            margin-top: 1.5rem !important;
            margin-bottom: 1.5rem !important;
        }

        .my-5 {
            margin-top: 3rem !important;
            margin-bottom: 3rem !important;
        }

        .p-1 {
            padding: .25rem .25rem !important;
        }

        .p-2 {
            padding: .5rem .5rem !important;
        }

        .p-3 {
            padding: 1rem 1rem !important;
        }

        .p-4 {
            padding: 1.5rem 1.5rem !important;
        }

        .p-5 {
            padding: 3rem 3rem !important;
        }

        .pt-1 {
            padding-top: .25rem !important;
        }

        .pt-2 {
            padding-top: .5rem !important;
        }

        .pt-3 {
            padding-top: 1rem !important;
        }

        .pt-4 {
            padding-top: 1.5rem !important;
        }

        .pt-5 {
            padding-top: 3rem !important;
        }

        .pr-1 {
            padding-right: .25rem !important;
        }

        .pr-2 {
            padding-right: .5rem !important;
        }

        .pr-3 {
            padding-right: 1rem !important;
        }

        .pr-4 {
            padding-right: 1.5rem !important;
        }

        .pr-5 {
            padding-right: 3rem !important;
        }

        .pb-1 {
            padding-bottom: .25rem !important;
        }

        .pb-2 {
            padding-bottom: .5rem !important;
        }

        .pb-3 {
            padding-bottom: 1rem !important;
        }

        .pb-4 {
            padding-bottom: 1.5rem !important;
        }

        .pb-5 {
            padding-bottom: 3rem !important;
        }

        .pl-1 {
            padding-left: .25rem !important;
        }

        .pl-2 {
            padding-left: .5rem !important;
        }

        .pl-3 {
            padding-left: 1rem !important;
        }

        .pl-4 {
            padding-left: 1.5rem !important;
        }

        .pl-5 {
            padding-left: 3rem !important;
        }

        .px-1 {
            padding-left: .25rem !important;
            padding-right: .25rem !important;
        }

        .px-2 {
            padding-left: .5rem !important;
            padding-right: .5rem !important;
        }

        .px-3 {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        .px-4 {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
        }

        .px-5 {
            padding-left: 3rem !important;
            padding-right: 3rem !important;
        }

        .py-1 {
            padding-top: .25rem !important;
            padding-bottom: .25rem !important;
        }

        .py-2 {
            padding-top: .5rem !important;
            padding-bottom: .5rem !important;
        }

        .py-3 {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
        }

        .py-4 {
            padding-top: 1.5rem !important;
            padding-bottom: 1.5rem !important;
        }

        .py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        .text-white {
            color: #fff !important;
        }

        .text-muted {
            color: #999 !important;
        }

        .text-primary {
            color: #51a33d !important;
        }

        .text-success {
            color: #558aaf !important;
        }

        .text-info {
            color: #666 !important;
        }

        .text-warning {
            color: #c59a27 !important;
        }

        .text-danger {
            color: #bc4f2e !important;
        }

        .text-gray-dark {
            color: #333 !important;
        }

        .invisible {
            visibility: hidden !important;
        }

        .loading-app.default {
            width: 100px;
            height: 100px;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -50px;
            margin-left: -50px;
        }

        .loading-app svg {
            width: 100%;
            height: 100%;
        }

        .loading-app .loader-segment {
            position: absolute;
            top: 0;
            left: 0;
            -webkit-animation: spinner 800ms cubic-bezier(0.11, 0.675, 0.885, 0.62) infinite;
            animation: spinner 800ms cubic-bezier(0.11, 0.675, 0.885, 0.62) infinite;
        }

            .loading-app .loader-segment.light {
                -webkit-animation-delay: 200ms;
                animation-delay: 200ms;
            }

            .loading-app .loader-segment.medium {
                -webkit-animation-delay: 100ms;
                animation-delay: 100ms;
            }

        @-webkit-keyframes spinner {
            0% {
                -webkit-transform: rotateZ(-40deg);
                transform: rotateZ(-40deg);
            }

            100% {
                -webkit-transform: rotateZ(320deg);
                transform: rotateZ(320deg);
            }
        }

        @keyframes spinner {
            0% {
                -webkit-transform: rotateZ(-40deg);
                transform: rotateZ(-40deg);
            }

            100% {
                -webkit-transform: rotateZ(320deg);
                transform: rotateZ(320deg);
            }
        }

        .loading-app-static {
            position: static;
            top: auto;
            left: auto;
            width: 32px;
            margin: 12px auto 8px;
        }

        li label,
        label.form-checkbox {
            cursor: pointer;
        }

            li label input[type="radio"] + span,
            label.form-checkbox input[type="radio"] + span {
                border-radius: 20px;
            }

            li label input[type="radio"]:checked + span:after,
            label.form-checkbox input[type="radio"]:checked + span:after {
                top: 3px;
                left: 0px;
                width: 4px;
                height: 4px;
                border-radius: 20px;
                border: 5px solid #51aa3d;
            }

            li label input[type="radio"],
            label.form-checkbox input[type="radio"] {
                display: none !important;
            }

                li label input[type="radio"] + span,
                label.form-checkbox input[type="radio"] + span {
                    top: 0;
                    width: 14px;
                    height: 14px;
                    position: relative;
                    display: inline-block;
                }

                li label input[type="radio"]:checked + span,
                label.form-checkbox input[type="radio"]:checked + span {
                    margin-right: 4px;
                }

                    li label input[type="radio"]:checked + span:after,
                    label.form-checkbox input[type="radio"]:checked + span:after {
                        content: '';
                        display: block;
                        position: relative;
                        background: #fff;
                    }

                li label input[type="radio"][disabled] + span,
                label.form-checkbox input[type="radio"][disabled] + span {
                    opacity: 0.6;
                    filter: alpha(opacity=60);
                }

                    li label input[type="radio"][disabled] + span:after,
                    label.form-checkbox input[type="radio"][disabled] + span:after {
                        background: #999;
                    }

                li label input[type="radio"]:not(:checked) + span,
                label.form-checkbox input[type="radio"]:not(:checked) + span {
                    top: 3px;
                    border: 1px solid #ccc;
                    width: 12px;
                    height: 12px;
                    margin-right: 4px;
                }

            li label input[type="checkbox"],
            label.form-checkbox input[type="checkbox"] {
                display: none !important;
            }

                li label input[type="checkbox"] + span,
                label.form-checkbox input[type="checkbox"] + span {
                    top: 0;
                    left: 0;
                    width: 16px;
                    height: 16px;
                    position: relative;
                    display: inline-block;
                }

                    li label input[type="checkbox"] + span:after,
                    label.form-checkbox input[type="checkbox"] + span:after {
                        font-family: FontAwesome;
                        font-weight: normal;
                        content: "\f096";
                        color: #ccc;
                        display: block;
                        font-size: 16px;
                        line-height: 16px;
                        vertical-align: middle;
                        text-align: center;
                    }

                li label input[type="checkbox"]:checked + span:after,
                label.form-checkbox input[type="checkbox"]:checked + span:after {
                    content: "\f14a";
                    color: #51aa3d;
                }

                li label input[type="checkbox"]:not(:checked) + span,
                label.form-checkbox input[type="checkbox"]:not(:checked) + span {
                    top: 1px;
                }

                    li label input[type="checkbox"]:not(:checked) + span:after,
                    label.form-checkbox input[type="checkbox"]:not(:checked) + span:after {
                        font-size: 16px;
                    }

                li label input[type="checkbox"][disabled] + span,
                label.form-checkbox input[type="checkbox"][disabled] + span {
                    opacity: 0.6;
                    filter: alpha(opacity=60);
                }

                    li label input[type="checkbox"][disabled] + span:after,
                    label.form-checkbox input[type="checkbox"][disabled] + span:after {
                        color: #999;
                    }

            label.form-checkbox span {
                top: 0px;
                margin-right: 4px;
            }

        label.styled-checkbox {
            cursor: pointer;
        }

            label.styled-checkbox input[type="checkbox"] {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                position: relative;
                margin-top: 1px;
                outline: none;
            }

                label.styled-checkbox input[type="checkbox"]:before {
                    content: "";
                    width: 12px;
                    height: 12px;
                    display: inline-block;
                    border: 1px solid #ccc;
                    background: white;
                    top: 2px;
                    position: relative;
                }

                label.styled-checkbox input[type="checkbox"]:checked:after {
                    content: "";
                    top: 5px;
                    left: 3px;
                    width: 8px;
                    height: 8px;
                    display: block;
                    position: absolute;
                    background: #51aa3d;
                }

                label.styled-checkbox input[type="checkbox"][disabled] {
                    opacity: 0.6;
                    filter: alpha(opacity=60);
                }

                    label.styled-checkbox input[type="checkbox"][disabled]:checked:after {
                        background: #999;
                    }

        .dialog-kit {
            color: #999;
            z-index: 200;
            display: none;
            overflow: hidden;
            background: #fff;
            min-height: 100px;
            position: absolute;
            border-radius: 4px;
            width: auto;
            font-family: "Source Sans Pro", Arial, sans-serif;
            background-clip: padding-box;
            -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

            .dialog-kit.visible {
                display: block;
            }

            .dialog-kit.dark {
                background: rgba(0, 0, 0, 0.8);
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .dialog-kit .dialog-header,
            .dialog-kit .dialog-footer,
            .dialog-kit .dialog-body {
                *zoom: 1;
            }

                .dialog-kit .dialog-header:before,
                .dialog-kit .dialog-footer:before,
                .dialog-kit .dialog-body:before,
                .dialog-kit .dialog-header:after,
                .dialog-kit .dialog-footer:after,
                .dialog-kit .dialog-body:after {
                    display: table;
                    content: "";
                }

                .dialog-kit .dialog-header:after,
                .dialog-kit .dialog-footer:after,
                .dialog-kit .dialog-body:after {
                    clear: both;
                }

            .dialog-kit .dialog-header {
                margin: 10px 30px 0;
                padding: 14px 0;
                line-height: 23px;
                font-size: 18px;
                font-weight: 400;
                color: #333;
                border-bottom: 1px solid #CCC;
            }

                .dialog-kit .dialog-header h2 {
                    color: #333;
                    font-size: 18px;
                    font-weight: 600;
                }

                .dialog-kit .dialog-header.seamless {
                    border-bottom: 0 none;
                }

            .dialog-kit .dialog-subheader {
                float: right;
                margin: 12px 30px 0 0;
            }

            .dialog-kit .dialog-button {
                float: right;
                margin-left: 5px;
                border-radius: 3px;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
                background: #fff;
                border: 1px solid #ddd;
                height: 24px;
                padding: 0 7px;
                min-width: 23px;
                text-align: center;
                -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                color: #999;
                line-height: 22px;
                font-size: 14px;
                font-weight: 400;
                text-transform: uppercase;
            }

                .dialog-kit .dialog-button.small {
                    font-size: 12px;
                }

                .dialog-kit .dialog-button:hover {
                    border-color: #CCC;
                    color: #666;
                }

            .dialog-kit .content-container {
                float: left;
                padding: 30px;
            }

            .dialog-kit .dialog-menu {
                border-top: 1px solid #666;
                background: #444;
            }

                .dialog-kit .dialog-menu li {
                    border-bottom: 1px solid #333;
                }

                    .dialog-kit .dialog-menu li a {
                        color: #777;
                        line-height: 50px;
                        font-weight: bold;
                        padding: 0 20px 0 15px;
                        display: block;
                        white-space: nowrap;
                    }

                    .dialog-kit .dialog-menu li.selected {
                        background: #555;
                    }

                        .dialog-kit .dialog-menu li.selected:before {
                            width: 0;
                            height: 0;
                            float: right;
                            border-style: solid;
                            border-color: transparent #eee transparent transparent;
                            border-width: 10px;
                            content: "";
                            margin-top: 15px;
                        }

                        .dialog-kit .dialog-menu li.selected a {
                            color: #fff;
                        }

                .dialog-kit .dialog-menu.as-side {
                    float: left;
                    width: 220px;
                    background: #eee;
                    border-top: 0 none;
                    margin-bottom: -2000px;
                    padding-bottom: 2000px;
                }

                    .dialog-kit .dialog-menu.as-side li {
                        border-color: #ddd;
                    }

                        .dialog-kit .dialog-menu.as-side li a {
                            color: #999;
                            font-weight: 600;
                            padding-left: 21px;
                            text-transform: uppercase;
                        }

                        .dialog-kit .dialog-menu.as-side li.selected {
                            background: #ddd;
                        }

                            .dialog-kit .dialog-menu.as-side li.selected a {
                                color: #333;
                            }

                            .dialog-kit .dialog-menu.as-side li.selected:before {
                                border-color: transparent #fff transparent transparent;
                            }

                        .dialog-kit .dialog-menu.as-side li .avatar-img {
                            width: 23px;
                            height: 23px;
                            margin-top: -4px;
                            margin-right: 10px;
                        }

                        .dialog-kit .dialog-menu.as-side li.user-info {
                            color: #333;
                            height: 20px;
                            padding: 25px 22px;
                            font-size: 14px;
                            line-height: 25px;
                            white-space: nowrap;
                            text-overflow: ellipsis;
                            overflow: hidden;
                        }

            .dialog-kit .dialog-footer {
                margin: 0 30px 28px;
                padding-top: 20px;
                color: #333;
                border-top: 1px solid #CCC;
            }

                .dialog-kit .dialog-footer .button-kit {
                    height: 26px;
                    line-height: 26px;
                    font-size: 13px;
                }

                    .dialog-kit .dialog-footer .button-kit.right.pad {
                        margin-right: 13px;
                    }

            .dialog-kit .dialog-body {
                padding: 20px 0 25px;
                margin: 0 30px;
            }

                .dialog-kit .dialog-body section {
                    *zoom: 1;
                    border-bottom: 1px solid #CCC;
                    padding: 20px 0;
                }

                    .dialog-kit .dialog-body section:before,
                    .dialog-kit .dialog-body section:after {
                        display: table;
                        content: "";
                    }

                    .dialog-kit .dialog-body section:after {
                        clear: both;
                    }

                    .dialog-kit .dialog-body section:first-child {
                        padding-top: 0;
                    }

                    .dialog-kit .dialog-body section:last-child {
                        padding-bottom: 0;
                        border-bottom: 0;
                    }

                    .dialog-kit .dialog-body section .grid:last-child .form-item {
                        padding-bottom: 5px;
                    }

                    .dialog-kit .dialog-body section p:last-child {
                        margin-bottom: 0;
                    }

                    .dialog-kit .dialog-body section.seamless {
                        border: 0 none;
                    }

                    .dialog-kit .dialog-body section .select2-container .select2-choice {
                        padding: 0 10px;
                    }

                    .dialog-kit .dialog-body section .select2-container .select2-choice,
                    .dialog-kit .dialog-body section .select2-container .select2-choices {
                        border-color: #ccc;
                    }

            .dialog-kit h2 {
                font-weight: 400;
                font-size: 16px;
                color: #666;
            }

                .dialog-kit h2:first-child {
                    margin-top: 0;
                }

            .dialog-kit h3 {
                font-size: 13px;
                text-transform: uppercase;
                color: #999;
                margin: 20px 0 15px;
                font-weight: 600;
            }

                .dialog-kit h3:first-child {
                    margin-top: 0;
                }

                .dialog-kit h3 + p {
                    margin-top: -15px;
                }

            .dialog-kit hr {
                width: 100%;
                height: 1px;
                border: none;
                background: #CCC;
                margin-top: 20px;
            }

            .dialog-kit .form-item.flexible {
                padding: 0 10px 15px;
            }

                .dialog-kit .form-item.flexible.wide-gutter {
                    padding-left: 20px;
                    padding-right: 20px;
                }

            .dialog-kit .form-item.weight-fifth {
                width: 20%;
            }

            .dialog-kit .form-item.weight-fourth {
                width: 25%;
            }

            .dialog-kit .form-item.weight-third {
                width: 33%;
            }

            .dialog-kit .form-item.weight-forty {
                width: 40%;
            }

            .dialog-kit .form-item.weight-half {
                width: 50%;
            }

            .dialog-kit .form-item.weight-more {
                width: 66%;
            }

            .dialog-kit .form-item.weight-most {
                width: 75%;
            }

            .dialog-kit .form-item.weight-max {
                width: 100%;
            }

            .dialog-kit .form-item > label {
                color: #999;
                font-size: 12px;
                font-weight: 600;
            }

                .dialog-kit .form-item > label.title-text {
                    color: #999;
                    padding-bottom: 2px;
                }

            .dialog-kit p {
                font-size: 16px;
                font-weight: 300;
                margin: 10px 0;
                color: #333;
                font-weight: normal;
            }

            .dialog-kit.alert-dialog p {
                font-size: 16px;
                font-weight: 300;
                margin: 0;
                color: #666;
            }

            .dialog-kit.alert-dialog strong {
                font-weight: 600;
            }

            .dialog-kit .button-kit {
                font-family: 'Source Sans Pro', Arial, sans-serif;
            }

            .dialog-kit .form-select.large {
                height: 58px;
            }

                .dialog-kit .form-select.large .dropdown {
                    width: 50px;
                    height: 60px;
                }

                    .dialog-kit .form-select.large .dropdown i {
                        color: #999;
                        font-size: 28px;
                        line-height: 62px;
                    }

                .dialog-kit .form-select.large select {
                    color: #666;
                    height: 58px;
                    font-size: 24px;
                }

            .dialog-kit .small {
                color: #999;
            }

            .dialog-kit .input-tip {
                padding-left: 5px;
                padding-top: 4px;
            }

            .dialog-kit .clockin-dialog-close {
                margin: 10px 10px;
            }

            .dialog-kit.missing-feature .video {
                margin: 30px auto 0;
            }

            .dialog-kit.missing-feature .dialog-footer {
                text-align: center;
            }
        /** NEW CARD ELEMENTS **/
        .card-section {
            font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
            background: white;
            -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            padding: 0 30px 30px;
            overflow: hidden;
        }

            .card-section.top-margin {
                margin-top: 20px;
            }

            .card-section.bottom-margin {
                margin-bottom: 20px;
            }

            .card-section h2 {
                color: #333;
                font-size: 18px;
                font-weight: normal;
                text-transform: uppercase;
            }

            .card-section p {
                color: #666;
                font-size: 14px;
            }

            .card-section .section-info.has-tooltip {
                cursor: help;
            }

                .card-section .section-info.has-tooltip i {
                    font-size: 20px;
                    color: #aaa;
                }

                .card-section .section-info.has-tooltip:hover i {
                    color: #666;
                }

            .card-section .header,
            .card-section .header-solo {
                padding: 20px 0 10px;
                line-height: 42px;
                font-size: 30px;
                font-weight: 300;
                color: #333;
            }

                .card-section .header:last-child,
                .card-section .header-solo:last-child {
                    padding-bottom: 0;
                    margin-bottom: -10px;
                    border-bottom: none;
                }

                .card-section .header strong,
                .card-section .header-solo strong {
                    font-weight: 400;
                }

            .card-section .header {
                border-bottom: 1px solid #ddd;
            }

                .card-section .header.seamless {
                    border-bottom: none;
                }

                .card-section .header.seamed {
                    margin: 0 -30px;
                    padding: 20px 30px;
                }

            .card-section.sidebar {
                padding: 0;
                overflow: visible;
            }

                .card-section.sidebar .header {
                    font-size: 20px;
                    line-height: 20px;
                    padding: 18px 20px;
                    border-color: #f2f2f2;
                }

            .card-section section {
                border-bottom: 1px solid #ddd;
            }

                .card-section section:last-child {
                    border-bottom: none;
                }

                .card-section section .button-kit.merged {
                    width: 50%;
                    display: table-cell;
                    border-right: 1px solid #ccc;
                    border-radius: 0;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                }

                    .card-section section .button-kit.merged:last-child,
                    .card-section section .button-kit.merged.last {
                        border-right: none;
                    }

            .card-section.thin {
                padding: 0;
            }

                .card-section.thin .header {
                    color: #333;
                    font-size: 20px;
                    line-height: 23px;
                    padding: 10px 15px;
                }

                .card-section.thin .button-kit.merged {
                    line-height: 40px;
                    height: 40px;
                    text-transform: uppercase;
                    text-align: center;
                    font-size: 14px;
                }

                    .card-section.thin .button-kit.merged.white {
                        color: #999 !important;
                    }

                .card-section.thin ::-webkit-scrollbar {
                    width: 12px;
                }

                .card-section.thin ::-webkit-scrollbar-thumb {
                    border-width: 2px 2px 2px 3px;
                }

                .card-section.thin ::-webkit-scrollbar-track {
                    background: #FFF;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    border-right: 0;
                }

            .card-section.no-padding {
                padding: 0;
            }

                .card-section.no-padding .header.seamed {
                    margin: 0;
                    padding: 20px 30px;
                }
            /* FEATURE UNAVAILBLE CARDS */
            .card-section.missing-feature {
                padding-top: 30px;
                margin-bottom: 20px;
            }

                .card-section.missing-feature h1 {
                    font-size: 30px;
                    font-weight: 300;
                    margin-top: 40px;
                }

                .card-section.missing-feature p {
                    margin: 10px 0;
                    color: #999;
                    font-size: 14px;
                    line-height: 1.4;
                }

                .card-section.missing-feature a.button-kit {
                    margin-top: 20px;
                }

                .card-section.missing-feature .video {
                    float: right;
                    margin-left: 30px;
                }

        .card-flip .front,
        .card-flip .back {
            position: absolute;
            -webkit-perspective: 1000;
            perspective: 1000;
            -webkit-transition: 0.5s;
            transition: 0.5s;
        }

        .card-flip .flipper {
            position: relative;
        }

            .card-flip .flipper .front {
                z-index: 3;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                -webkit-transform: rotateY(0deg);
                -ms-transform: rotateY(0deg);
                transform: rotateY(0deg);
            }

            .card-flip .flipper .back {
                z-index: 2;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                -webkit-transform: rotateY(180deg);
                -ms-transform: rotateY(180deg);
                transform: rotateY(180deg);
            }

        .card-flip.flip .flipper .front {
            z-index: 2;
            -webkit-transform: rotateY(180deg);
            -ms-transform: rotateY(180deg);
            transform: rotateY(180deg);
        }

        .card-flip.flip .flipper .back {
            z-index: 3;
            -webkit-transform: rotateY(0deg);
            -ms-transform: rotateY(0deg);
            transform: rotateY(0deg);
        }

        .ie .card-flip .front {
            display: block;
        }

        .ie .card-flip .back {
            display: none;
        }

        .ie .card-flip.flip .front {
            display: none;
        }

        .ie .card-flip.flip .back {
            display: block;
        }

        .dark-tip {
            position: absolute;
            background: #333;
            padding: 15px;
            border-radius: 3px;
            color: white;
            z-index: 30;
            max-width: 350px;
        }

            .dark-tip .dark-tip-arrow {
                position: absolute;
                width: 1px;
                height: 0;
                border-style: solid;
                border-width: 10px;
                border-color: transparent transparent #333;
                top: -20px;
                left: 50%;
                margin-left: -10px;
            }

            .dark-tip.on-the-left .dark-tip-arrow {
                border-color: transparent transparent transparent #333;
                right: -20px;
                top: 50%;
                left: auto;
                margin: -10px 0 0 0;
            }

            .dark-tip.on-top .dark-tip-arrow {
                border-color: #333 transparent transparent;
                top: auto;
                bottom: -20px;
            }

            .dark-tip textarea {
                border: 1px solid #222;
                background: #444;
                color: white;
                margin: 0;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
                padding: 4px;
                display: block;
            }

            .dark-tip .tip-list {
                margin: -12px;
                background: #eee;
                max-height: 350px;
                overflow: auto;
                overflow-x: hidden;
            }

                .dark-tip .tip-list li {
                    border-bottom: 1px solid #ccc;
                    color: #666;
                    padding: 12px;
                    cursor: pointer;
                    white-space: nowrap;
                    display: block;
                }

                    .dark-tip .tip-list li.selected {
                        background: #fff;
                        color: #333;
                    }

                        .dark-tip .tip-list li.selected:before {
                            content: "\f00c";
                            font-family: FontAwesome;
                            font-weight: normal;
                            font-style: normal;
                            text-decoration: inherit;
                            -webkit-font-smoothing: antialiased;
                            float: right;
                            margin-left: 10px;
                        }

                    .dark-tip .tip-list li.disabled {
                        color: #999;
                    }

                    .dark-tip .tip-list li:last-child {
                        border-bottom: none;
                    }

        .card-table {
            padding: 0;
            overflow: hidden;
        }

            .card-table .header {
                padding: 20px 30px 22px;
                border-color: #f2f2f2;
            }

            .card-table .table-list li {
                height: 40px;
            }

                .card-table .table-list li.placeholder {
                    height: auto;
                    font-size: 24px;
                    font-weight: 200;
                    font-style: italic;
                }

                .card-table .table-list li.title {
                    background: #fafafa;
                }

                    .card-table .table-list li.title .column {
                        font-size: 12px;
                        font-weight: 600;
                    }

                        .card-table .table-list li.title .column.handle {
                            background: #fafafa;
                        }

                        .card-table .table-list li.title .column.actions {
                            padding-right: 21px;
                        }

            .card-table .table-list .column {
                border-color: #f2f2f2 !important;
            }

                .card-table .table-list .column:first-child {
                    padding-left: 30px;
                }

                .card-table .table-list .column.handle {
                    width: 12px;
                    color: #ccc;
                    background: #fff;
                    text-align: center;
                }

                .card-table .table-list .column.color {
                    width: 42px;
                    padding-left: 21px;
                }

                    .card-table .table-list .column.color ins {
                        display: inline-block;
                        width: 20px;
                        height: 20px;
                        margin: -5px 0;
                        border-radius: 10px;
                    }

                .card-table .table-list .column.name {
                    font-size: 14px;
                }

            .card-table .footer.plain {
                background: none;
                background-color: #FAFAFA;
                min-height: 30px;
            }

        .button-kit[title]:hover,
        .has-tooltip[title]:hover,
        .button-kit[data-title]:hover,
        .has-tooltip[data-title]:hover {
            position: relative;
        }

            .button-kit[title]:hover:before,
            .has-tooltip[title]:hover:before,
            .button-kit[data-title]:hover:before,
            .has-tooltip[data-title]:hover:before {
                content: attr(title);
                background: #333;
                padding: 4px 6px;
                position: absolute;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                right: 100%;
                top: 50%;
                white-space: nowrap;
                text-transform: none;
                font-weight: 300;
                color: white;
                font-size: 12px;
                line-height: 1;
                border-radius: 3px;
                z-index: 10;
                margin: -10px 3px 0 0;
                text-shadow: none;
                pointer-events: none;
            }

            .button-kit[title]:hover.disabled:before,
            .has-tooltip[title]:hover.disabled:before,
            .button-kit[data-title]:hover.disabled:before,
            .has-tooltip[data-title]:hover.disabled:before {
                content: 'Disabled';
            }

            .button-kit[title]:hover:after,
            .has-tooltip[title]:hover:after,
            .button-kit[data-title]:hover:after,
            .has-tooltip[data-title]:hover:after {
                width: 0;
                height: 0;
                content: " ";
                position: absolute;
                border-width: 4px;
                border-style: solid;
                border-color: transparent transparent transparent #333;
                right: 100%;
                top: 50%;
                margin: -4px -4px 0 0;
                pointer-events: none;
            }

            .button-kit[title]:hover.right:before,
            .has-tooltip[title]:hover.right:before,
            .button-kit[data-title]:hover.right:before,
            .has-tooltip[data-title]:hover.right:before {
                left: 100%;
                right: auto;
                margin: -10px 0 0 3px;
            }

            .button-kit[title]:hover.right:after,
            .has-tooltip[title]:hover.right:after,
            .button-kit[data-title]:hover.right:after,
            .has-tooltip[data-title]:hover.right:after {
                left: 100%;
                right: auto;
                margin: -4px 0 0 -4px;
                border-color: transparent #333 transparent transparent;
            }

            .button-kit[title]:hover.top:before,
            .has-tooltip[title]:hover.top:before,
            .button-kit[data-title]:hover.top:before,
            .has-tooltip[data-title]:hover.top:before {
                bottom: 100%;
                top: auto;
                left: 50%;
                margin-left: -90%;
                margin-bottom: 4px;
                width: 180%;
                white-space: pre-wrap;
                text-align: center;
            }

            .button-kit[title]:hover.top:after,
            .has-tooltip[title]:hover.top:after,
            .button-kit[data-title]:hover.top:after,
            .has-tooltip[data-title]:hover.top:after {
                top: 0;
                left: 50%;
                margin: -4px 0 0 -4px;
                border-color: #333 transparent transparent transparent;
            }

            .button-kit[title]:hover.bottom:before,
            .has-tooltip[title]:hover.bottom:before,
            .button-kit[data-title]:hover.bottom:before,
            .has-tooltip[data-title]:hover.bottom:before {
                top: 100%;
                left: 50%;
                margin-left: -70%;
                margin-top: 4px;
                width: 140%;
                white-space: pre-wrap;
                text-align: center;
            }

            .button-kit[title]:hover.bottom:after,
            .has-tooltip[title]:hover.bottom:after,
            .button-kit[data-title]:hover.bottom:after,
            .has-tooltip[data-title]:hover.bottom:after {
                top: auto;
                left: 50%;
                margin: -4px 0 0 -4px;
                border-color: transparent;
                border-bottom-color: #333;
            }

            .button-kit[title]:hover.fixed-200:before,
            .has-tooltip[title]:hover.fixed-200:before,
            .button-kit[data-title]:hover.fixed-200:before,
            .has-tooltip[data-title]:hover.fixed-200:before {
                width: 200px;
                white-space: normal;
            }

            .button-kit[title]:hover.fixed-300:before,
            .has-tooltip[title]:hover.fixed-300:before,
            .button-kit[data-title]:hover.fixed-300:before,
            .has-tooltip[data-title]:hover.fixed-300:before {
                width: 300px;
                white-space: normal;
            }

            .button-kit[title]:hover.fixed-400:before,
            .has-tooltip[title]:hover.fixed-400:before,
            .button-kit[data-title]:hover.fixed-400:before,
            .has-tooltip[data-title]:hover.fixed-400:before {
                width: 400px;
                white-space: normal;
            }

            .button-kit[data-title]:hover:before,
            .has-tooltip[data-title]:hover:before {
                content: attr(data-title) !important;
            }
        /** NEW STYLES
/** Button Kit for creating buttons across the site.*/
        .card-section .blue .button-kit,
        .dialog-kit .blue .button-kit,
        .new-style .blue .button-kit {
            color: white;
        }

        .card-section .button-kit,
        .dialog-kit .button-kit,
        .new-style .button-kit {
            border-radius: 3px;
            height: 24px;
            cursor: pointer;
            line-height: 22px;
            display: inline-block;
            background: #999;
            color: #FFF;
            font-size: 11px;
            font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            padding: 0 10px;
            text-decoration: none;
            text-shadow: none;
            border: none;
            -webkit-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box;
            /** Button COLORS **/
            /** Button SIZES **/
            /** Button LAYOUTS **/
        }

            .card-section .button-kit:active,
            .dialog-kit .button-kit:active,
            .new-style .button-kit:active {
                background: #666;
            }

            .card-section .button-kit[disabled],
            .dialog-kit .button-kit[disabled],
            .new-style .button-kit[disabled],
            .card-section .button-kit.disabled,
            .dialog-kit .button-kit.disabled,
            .new-style .button-kit.disabled {
                cursor: not-allowed;
                opacity: 0.6;
                filter: alpha(opacity=60);
            }

            .card-section .button-kit.dropdown,
            .dialog-kit .button-kit.dropdown,
            .new-style .button-kit.dropdown {
                width: 35px;
                line-height: 42px;
                height: 42px;
                border: 1px solid #ddd;
            }

            .card-section .button-kit.green,
            .dialog-kit .button-kit.green,
            .new-style .button-kit.green {
                background-color: #51a33d;
            }

                .card-section .button-kit.green:active,
                .dialog-kit .button-kit.green:active,
                .new-style .button-kit.green:active,
                .card-section .button-kit.green:hover,
                .dialog-kit .button-kit.green:hover,
                .new-style .button-kit.green:hover {
                    background: #378823;
                }

            .card-section .button-kit.blue,
            .dialog-kit .button-kit.blue,
            .new-style .button-kit.blue {
                background-color: #558aaf;
            }

                .card-section .button-kit.blue:active,
                .dialog-kit .button-kit.blue:active,
                .new-style .button-kit.blue:active {
                    background: #4b7d9f;
                }

                .card-section .button-kit.blue:not(.disabled):hover,
                .dialog-kit .button-kit.blue:not(.disabled):hover,
                .new-style .button-kit.blue:not(.disabled):hover {
                    background-color: #3b7095;
                }

            .card-section .button-kit.red,
            .dialog-kit .button-kit.red,
            .new-style .button-kit.red {
                background-color: #bc4f2e;
            }

                .card-section .button-kit.red:active,
                .dialog-kit .button-kit.red:active,
                .new-style .button-kit.red:active {
                    background: #943c3c;
                }

                .card-section .button-kit.red:not(.disabled):hover,
                .dialog-kit .button-kit.red:not(.disabled):hover,
                .new-style .button-kit.red:not(.disabled):hover {
                    background-color: #a0341a;
                }

            .card-section .button-kit.yellow,
            .dialog-kit .button-kit.yellow,
            .new-style .button-kit.yellow {
                background-color: #c59a27;
            }

                .card-section .button-kit.yellow:active,
                .dialog-kit .button-kit.yellow:active,
                .new-style .button-kit.yellow:active {
                    background: #b8761c;
                }

                .card-section .button-kit.yellow:not(.disabled):hover,
                .dialog-kit .button-kit.yellow:not(.disabled):hover,
                .new-style .button-kit.yellow:not(.disabled):hover {
                    background-color: #a77f01;
                }

            .card-section .button-kit.black,
            .dialog-kit .button-kit.black,
            .new-style .button-kit.black {
                background-color: #383838;
            }

                .card-section .button-kit.black:active,
                .dialog-kit .button-kit.black:active,
                .new-style .button-kit.black:active {
                    background: #2b2b2b;
                }

            .card-section .button-kit.white,
            .dialog-kit .button-kit.white,
            .new-style .button-kit.white {
                background-color: #fff;
                border: 1px solid #ccc;
                color: #999;
            }

                .card-section .button-kit.white:active,
                .dialog-kit .button-kit.white:active,
                .new-style .button-kit.white:active {
                    background: #f2f2f2;
                }

                .card-section .button-kit.white:not(.disabled):hover,
                .dialog-kit .button-kit.white:not(.disabled):hover,
                .new-style .button-kit.white:not(.disabled):hover {
                    background-color: #fff;
                    color: #666;
                }

            .card-section .button-kit.gray,
            .dialog-kit .button-kit.gray,
            .new-style .button-kit.gray {
                background-color: #999;
            }

                .card-section .button-kit.gray:active,
                .dialog-kit .button-kit.gray:active,
                .new-style .button-kit.gray:active {
                    background: #8c8c8c;
                }

            .card-section .button-kit.dark-gray,
            .dialog-kit .button-kit.dark-gray,
            .new-style .button-kit.dark-gray,
            .card-section .button-kit.dark-grey,
            .dialog-kit .button-kit.dark-grey,
            .new-style .button-kit.dark-grey {
                color: #fff;
                background: #666;
            }

                .card-section .button-kit.dark-gray:active,
                .dialog-kit .button-kit.dark-gray:active,
                .new-style .button-kit.dark-gray:active,
                .card-section .button-kit.dark-grey:active,
                .dialog-kit .button-kit.dark-grey:active,
                .new-style .button-kit.dark-grey:active {
                    background: #595959;
                }

            .card-section .button-kit.bordered,
            .dialog-kit .button-kit.bordered,
            .new-style .button-kit.bordered {
                border-width: 1px;
                border-style: solid;
                border-color: rgba(0, 0, 0, 0.15);
                -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                text-transform: uppercase;
            }

            .card-section .button-kit.small,
            .dialog-kit .button-kit.small,
            .new-style .button-kit.small {
                height: 26px;
                line-height: 26px;
                font-size: 14px;
            }

            .card-section .button-kit.medium,
            .dialog-kit .button-kit.medium,
            .new-style .button-kit.medium {
                height: 36px;
                font-size: 14px;
                line-height: 36px;
            }

                .card-section .button-kit.medium.white,
                .dialog-kit .button-kit.medium.white,
                .new-style .button-kit.medium.white {
                    height: 34px;
                    line-height: 32px;
                }

            .card-section .button-kit.large,
            .dialog-kit .button-kit.large,
            .new-style .button-kit.large {
                height: 40px;
                line-height: 40px;
                font-size: 16px;
            }

            .card-section .button-kit.extra-large,
            .dialog-kit .button-kit.extra-large,
            .new-style .button-kit.extra-large,
            .card-section .button-kit.xlarge,
            .dialog-kit .button-kit.xlarge,
            .new-style .button-kit.xlarge {
                height: 40px;
                line-height: 40px;
                font-size: 16px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .card-section .button-kit.xxlarge,
            .dialog-kit .button-kit.xxlarge,
            .new-style .button-kit.xxlarge {
                height: 52px;
                line-height: 52px;
                font-size: 18px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .card-section .button-kit.right,
            .dialog-kit .button-kit.right,
            .new-style .button-kit.right {
                float: right;
            }

            .card-section .button-kit.left,
            .dialog-kit .button-kit.left,
            .new-style .button-kit.left {
                float: left;
            }

            .card-section .button-kit.wide,
            .dialog-kit .button-kit.wide,
            .new-style .button-kit.wide {
                display: block;
                text-align: center;
            }

            .card-section .button-kit.working,
            .dialog-kit .button-kit.working,
            .new-style .button-kit.working {
                background-color: #999 !important;
                position: relative;
                overflow: hidden;
            }

                .card-section .button-kit.working:before,
                .dialog-kit .button-kit.working:before,
                .new-style .button-kit.working:before {
                    content: "Loading";
                    position: absolute;
                    left: 5%;
                    top: 0;
                    width: 90%;
                    background: #999;
                    font-size: 14px;
                    font-weight: 300;
                    color: rgba(255, 255, 255, 0.1);
                    text-align: center;
                }

                .card-section .button-kit.working:after,
                .dialog-kit .button-kit.working:after,
                .new-style .button-kit.working:after,
                .card-section .button-kit.working span:before,
                .dialog-kit .button-kit.working span:before,
                .new-style .button-kit.working span:before,
                .card-section .button-kit.working span:after,
                .dialog-kit .button-kit.working span:after,
                .new-style .button-kit.working span:after {
                    content: "•";
                    opacity: 0;
                    font-size: 38px;
                    float: left;
                    -webkit-animation: dot 1.2s infinite;
                    animation: dot 1.0s infinite;
                    -webkit-animation-delay: 0.4s;
                    animation-delay: 0.4s;
                    position: absolute;
                    left: 50%;
                    margin-top: -3px;
                    margin-left: 8px;
                    width: 16px;
                    top: 0;
                }

                .card-section .button-kit.working span:before,
                .dialog-kit .button-kit.working span:before,
                .new-style .button-kit.working span:before {
                    -webkit-animation-delay: 0s;
                    animation-delay: 0s;
                    margin-left: -24px;
                }

                .card-section .button-kit.working span:after,
                .dialog-kit .button-kit.working span:after,
                .new-style .button-kit.working span:after {
                    -webkit-animation-delay: 0.2s;
                    animation-delay: 0.2s;
                    margin-left: -8px;
                }

            .card-section .button-kit:hover,
            .dialog-kit .button-kit:hover,
            .new-style .button-kit:hover {
                background-color: #7f7f7f;
            }

        .card-section button.button-kit,
        .dialog-kit button.button-kit,
        .new-style button.button-kit,
        .card-section input.button-kit,
        .dialog-kit input.button-kit,
        .new-style input.button-kit {
            height: 24px;
            margin-left: 0;
            margin-right: 0;
        }

            .card-section button.button-kit.small,
            .dialog-kit button.button-kit.small,
            .new-style button.button-kit.small,
            .card-section input.button-kit.small,
            .dialog-kit input.button-kit.small,
            .new-style input.button-kit.small {
                height: 26px;
            }

            .card-section button.button-kit.large,
            .dialog-kit button.button-kit.large,
            .new-style button.button-kit.large,
            .card-section input.button-kit.large,
            .dialog-kit input.button-kit.large,
            .new-style input.button-kit.large {
                height: 40px;
            }

            .card-section button.button-kit.wide,
            .dialog-kit button.button-kit.wide,
            .new-style button.button-kit.wide,
            .card-section input.button-kit.wide,
            .dialog-kit input.button-kit.wide,
            .new-style input.button-kit.wide {
                width: 100%;
            }

        .card-section .toggle-kit,
        .dialog-kit .toggle-kit,
        .new-style .toggle-kit {
            display: inline-block;
        }

            .card-section .toggle-kit.left,
            .dialog-kit .toggle-kit.left,
            .new-style .toggle-kit.left {
                float: left;
                margin-right: 10px;
            }

            .card-section .toggle-kit.right,
            .dialog-kit .toggle-kit.right,
            .new-style .toggle-kit.right {
                float: right;
                margin-left: 10px;
            }

            .card-section .toggle-kit.wide,
            .dialog-kit .toggle-kit.wide,
            .new-style .toggle-kit.wide {
                width: 100%;
            }

            .card-section .toggle-kit .button-kit,
            .dialog-kit .toggle-kit .button-kit,
            .new-style .toggle-kit .button-kit {
                float: left !important;
                border-width: 0 1px 0 0;
                border-radius: 0px;
            }

                .card-section .toggle-kit .button-kit:active,
                .dialog-kit .toggle-kit .button-kit:active,
                .new-style .toggle-kit .button-kit:active {
                    border-left-color: transparent;
                }

                .card-section .toggle-kit .button-kit:first-child,
                .dialog-kit .toggle-kit .button-kit:first-child,
                .new-style .toggle-kit .button-kit:first-child {
                    border-radius: 3px 0 0 3px;
                }

                .card-section .toggle-kit .button-kit:last-child,
                .dialog-kit .toggle-kit .button-kit:last-child,
                .new-style .toggle-kit .button-kit:last-child {
                    border-radius: 0 3px 3px 0;
                    border-right-width: 0;
                }

                .card-section .toggle-kit .button-kit.selected,
                .dialog-kit .toggle-kit .button-kit.selected,
                .new-style .toggle-kit .button-kit.selected {
                    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    border-left: none;
                }

            .card-section .toggle-kit.bottom .button-kit,
            .dialog-kit .toggle-kit.bottom .button-kit,
            .new-style .toggle-kit.bottom .button-kit {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }

            .card-section .toggle-kit.boxed .button-kit,
            .dialog-kit .toggle-kit.boxed .button-kit,
            .new-style .toggle-kit.boxed .button-kit {
                border-width: 0 1px 0 0;
            }

                .card-section .toggle-kit.boxed .button-kit:first-child,
                .dialog-kit .toggle-kit.boxed .button-kit:first-child,
                .new-style .toggle-kit.boxed .button-kit:first-child {
                    border-left-width: 1px;
                }

        .card-section .section .header .toggle-kit,
        .dialog-kit .section .header .toggle-kit,
        .new-style .section .header .toggle-kit,
        .card-section .accordian .header .toggle-kit,
        .dialog-kit .accordian .header .toggle-kit,
        .new-style .accordian .header .toggle-kit {
            margin-top: 5px;
            margin-bottom: 5px;
        }

            .card-section .section .header .toggle-kit .button-kit,
            .dialog-kit .section .header .toggle-kit .button-kit,
            .new-style .section .header .toggle-kit .button-kit,
            .card-section .accordian .header .toggle-kit .button-kit,
            .dialog-kit .accordian .header .toggle-kit .button-kit,
            .new-style .accordian .header .toggle-kit .button-kit {
                margin: 0;
                border-left-width: 0px;
            }

                .card-section .section .header .toggle-kit .button-kit:first-child,
                .dialog-kit .section .header .toggle-kit .button-kit:first-child,
                .new-style .section .header .toggle-kit .button-kit:first-child,
                .card-section .accordian .header .toggle-kit .button-kit:first-child,
                .dialog-kit .accordian .header .toggle-kit .button-kit:first-child,
                .new-style .accordian .header .toggle-kit .button-kit:first-child {
                    border-left-width: 1px;
                }

        .card-section .section .header .button-kit,
        .dialog-kit .section .header .button-kit,
        .new-style .section .header .button-kit,
        .card-section .accordian .header .button-kit,
        .dialog-kit .accordian .header .button-kit,
        .new-style .accordian .header .button-kit {
            float: right;
            font-size: 12px;
            height: 25px;
            line-height: 24px;
            margin: 5px 0 5px 10px;
            padding: 0 10px;
            border-width: 1px;
            border-style: solid;
            border-color: rgba(0, 0, 0, 0.15);
            -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        }

            .card-section .section .header .button-kit.white,
            .dialog-kit .section .header .button-kit.white,
            .new-style .section .header .button-kit.white,
            .card-section .accordian .header .button-kit.white,
            .dialog-kit .accordian .header .button-kit.white,
            .new-style .accordian .header .button-kit.white {
                background: #e5e5e5;
                color: #666;
                text-shadow: #FFF 0px 1px 0px;
                font-weight: 600;
            }

                .card-section .section .header .button-kit.white:active,
                .dialog-kit .section .header .button-kit.white:active,
                .new-style .section .header .button-kit.white:active,
                .card-section .accordian .header .button-kit.white:active,
                .dialog-kit .accordian .header .button-kit.white:active,
                .new-style .accordian .header .button-kit.white:active,
                .card-section .section .header .button-kit.white.selected,
                .dialog-kit .section .header .button-kit.white.selected,
                .new-style .section .header .button-kit.white.selected,
                .card-section .accordian .header .button-kit.white.selected,
                .dialog-kit .accordian .header .button-kit.white.selected,
                .new-style .accordian .header .button-kit.white.selected {
                    color: #333;
                    background: #d8d8d8;
                }

            .card-section .section .header .button-kit.left,
            .dialog-kit .section .header .button-kit.left,
            .new-style .section .header .button-kit.left,
            .card-section .accordian .header .button-kit.left,
            .dialog-kit .accordian .header .button-kit.left,
            .new-style .accordian .header .button-kit.left {
                float: left;
                margin-left: 0;
                margin-right: 10px;
            }

            .card-section .section .header .button-kit:active,
            .dialog-kit .section .header .button-kit:active,
            .new-style .section .header .button-kit:active,
            .card-section .accordian .header .button-kit:active,
            .dialog-kit .accordian .header .button-kit:active,
            .new-style .accordian .header .button-kit:active,
            .card-section .section .header .button-kit.selected,
            .dialog-kit .section .header .button-kit.selected,
            .new-style .section .header .button-kit.selected,
            .card-section .accordian .header .button-kit.selected,
            .dialog-kit .accordian .header .button-kit.selected,
            .new-style .accordian .header .button-kit.selected {
                -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
                box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
            }

            .card-section .section .header .button-kit ins,
            .dialog-kit .section .header .button-kit ins,
            .new-style .section .header .button-kit ins,
            .card-section .accordian .header .button-kit ins,
            .dialog-kit .accordian .header .button-kit ins,
            .new-style .accordian .header .button-kit ins {
                float: right;
                font-size: 17px;
                font-weight: bold;
                text-decoration: none;
                margin-left: 8px;
                font-family: Courier;
            }

        .card-section .accordian .header .button-kit,
        .dialog-kit .accordian .header .button-kit,
        .new-style .accordian .header .button-kit {
            font-size: 11px;
            height: 18px;
            line-height: 17px;
            padding: 0 5px;
            margin: -3px 5px 0 0;
        }
        /* end new styles */
        /*** OLD STYLES */
        .button-kit {
            border-radius: 3px;
            height: 22px;
            line-height: 22px;
            display: inline-block;
            background: #7f7f7f url(/images/backgrounds/gradient-sprite.png) repeat-x 0 -180px;
            color: #FFF;
            font-size: 11px;
            text-transform: uppercase;
            text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
            padding: 0 9px;
            text-decoration: none;
            white-space: nowrap;
            /** Button COLORS **/
            /** Button SIZES **/
            /** Button LAYOUTS **/
        }

            .button-kit:active {
                background: #666;
            }

            .button-kit.disabled {
                opacity: 0.6;
                filter: alpha(opacity=60);
            }

            .button-kit.green {
                background-position: 0 0;
                background-color: #438733;
            }

                .button-kit.green:active {
                    background: #3f7f2f;
                }

            .button-kit.red {
                background-position: 0 -60px;
                background-color: #a64343;
            }

                .button-kit.red:active {
                    background: #933a3a;
                }

            .button-kit.yellow {
                background-position: 0 -120px;
                background-color: #ce841f;
            }

                .button-kit.yellow:active {
                    background: #ca811d;
                }

            .button-kit.black {
                background-position: 0 -240px;
                background-color: #383838;
            }

                .button-kit.black:active {
                    background: #222;
                }

            .button-kit.white {
                background-position: 0 -300px;
                border-color: #c0c0c0;
                background-color: #d9d9d9;
                color: #666666;
                text-shadow: 0 1px 0 #FFF;
                text-transform: none;
            }

                .button-kit.white:active {
                    background: #E4E4E4;
                }

            .button-kit.small {
                height: 19px;
                line-height: 19px;
                font-size: 12px;
            }

            .button-kit.large {
                height: 28px;
                line-height: 28px;
                font-size: 14px;
            }

            .button-kit.extra-large,
            .button-kit.xlarge {
                height: 40px;
                line-height: 40px;
                font-size: 16px;
                padding-left: 15px;
                padding-right: 15px;
                border-radius: 6px;
            }

            .button-kit.xxlarge {
                height: 52px;
                line-height: 52px;
                font-size: 16px;
                text-transform: none;
                padding-left: 40px;
                padding-right: 40px;
            }

            .button-kit.right {
                float: right;
            }

            .button-kit.left {
                float: left;
            }

            .button-kit.wide {
                display: block;
                text-align: center;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
            }

            .button-kit.working {
                background-color: #999 !important;
                position: relative;
                overflow: hidden;
                text-shadow: none;
            }

                .button-kit.working:before {
                    content: "Loading";
                    position: absolute;
                    left: 5%;
                    top: 0;
                    width: 90%;
                    background: #999;
                    font-size: 14px;
                    font-weight: 300;
                    color: rgba(255, 255, 255, 0.1);
                    text-align: center;
                }

                .button-kit.working:after,
                .button-kit.working span:before,
                .button-kit.working span:after {
                    content: "•";
                    opacity: 0;
                    font-size: 38px;
                    float: left;
                    -webkit-animation: dot 1.2s infinite;
                    animation: dot 1.0s infinite;
                    -webkit-animation-delay: 0.4s;
                    animation-delay: 0.4s;
                    position: absolute;
                    left: 50%;
                    margin-top: -3px;
                    margin-left: 8px;
                    width: 16px;
                    top: 0;
                }

                .button-kit.working span:before {
                    -webkit-animation-delay: 0s;
                    animation-delay: 0s;
                    margin-left: -24px;
                }

                .button-kit.working span:after {
                    -webkit-animation-delay: 0.2s;
                    animation-delay: 0.2s;
                    margin-left: -8px;
                }

        button.button-kit,
        input.button-kit {
            height: 24px;
        }

            button.button-kit.small,
            input.button-kit.small {
                height: 21px;
            }

            button.button-kit.large,
            input.button-kit.large {
                height: 30px;
            }

            button.button-kit.wide,
            input.button-kit.wide {
                width: 100%;
            }

        .toggle-styles {
            border: 1px solid #aaa;
            border-radius: 3px;
            display: inline-block;
        }

            .toggle-styles.left {
                float: left;
                margin: 5px 10px 5px 0;
            }

            .toggle-styles.grey,
            .toggle-styles.gray {
                border-color: 666;
            }

            .toggle-styles.green {
                border-color: #3f7f2f;
            }

            .toggle-styles.red {
                background-position: 0 -50px;
                border-color: #933a3a;
            }

            .toggle-styles.yellow {
                background-position: 0 -100px;
                border-color: #b8761b;
            }

            .toggle-styles.black {
                background-position: 0 -200px;
                border-color: #222;
            }

            .toggle-styles .button-kit {
                float: left;
                border-width: 0 1px;
                border-radius: 0px;
                margin: 0;
            }

                .toggle-styles .button-kit.green {
                    border-right-color: #3f7f2f;
                    border-left-color: #95c68a;
                }

                .toggle-styles .button-kit.red {
                    border-right-color: #933a3a;
                    border-left-color: #dc9595;
                }

                .toggle-styles .button-kit.yellow {
                    border-right-color: #b8761b;
                    border-left-color: #e9c485;
                }

                .toggle-styles .button-kit.white {
                    border-right-color: #BBB;
                    border-left-color: #FFF;
                }

                .toggle-styles .button-kit:active {
                    border-left-color: transparent;
                }

                .toggle-styles .button-kit:first-child {
                    border-radius: 3px 0 0 3px;
                    border-left-width: 0;
                }

                .toggle-styles .button-kit:last-child {
                    border-radius: 0 3px 3px 0;
                    border-right-width: 0;
                }

                .toggle-styles .button-kit.selected {
                    background-image: none;
                    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    border-left: none;
                }

            .toggle-styles.multi {
                border: none;
            }

                .toggle-styles.multi .button-kit {
                    border-width: 1px;
                }

                    .toggle-styles.multi .button-kit:first-child {
                        border-width: 1px;
                        border-radius: 3px 0 0 3px;
                        border-left-color: #aaa;
                    }

                        .toggle-styles.multi .button-kit:first-child.green {
                            border-left-color: #3f7f2f;
                        }

                        .toggle-styles.multi .button-kit:first-child.red {
                            border-left-color: #933a3a;
                        }

                        .toggle-styles.multi .button-kit:first-child.yellow {
                            border-left-color: #b8761b;
                        }

                        .toggle-styles.multi .button-kit:first-child.white {
                            border-left-color: #BBB;
                        }

        .toggle-kit {
            border: 1px solid #aaa;
            border-radius: 3px;
            display: inline-block;
        }

            .toggle-kit.left {
                float: left;
                margin: 5px 10px 5px 0;
            }

            .toggle-kit.grey,
            .toggle-kit.gray {
                border-color: 666;
            }

            .toggle-kit.green {
                border-color: #3f7f2f;
            }

            .toggle-kit.red {
                background-position: 0 -50px;
                border-color: #933a3a;
            }

            .toggle-kit.yellow {
                background-position: 0 -100px;
                border-color: #b8761b;
            }

            .toggle-kit.black {
                background-position: 0 -200px;
                border-color: #222;
            }

            .toggle-kit .button-kit {
                float: left;
                border-width: 0 1px;
                border-radius: 0px;
                margin: 0;
            }

                .toggle-kit .button-kit.green {
                    border-right-color: #3f7f2f;
                    border-left-color: #95c68a;
                }

                .toggle-kit .button-kit.red {
                    border-right-color: #933a3a;
                    border-left-color: #dc9595;
                }

                .toggle-kit .button-kit.yellow {
                    border-right-color: #b8761b;
                    border-left-color: #e9c485;
                }

                .toggle-kit .button-kit.white {
                    border-right-color: #BBB;
                    border-left-color: #FFF;
                }

                .toggle-kit .button-kit:active {
                    border-left-color: transparent;
                }

                .toggle-kit .button-kit:first-child {
                    border-radius: 3px 0 0 3px;
                    border-left-width: 0;
                }

                .toggle-kit .button-kit:last-child {
                    border-radius: 0 3px 3px 0;
                    border-right-width: 0;
                }

                .toggle-kit .button-kit.selected {
                    background-image: none;
                    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    border-left: none;
                }

            .toggle-kit.multi {
                border: none;
            }

                .toggle-kit.multi .button-kit {
                    border-width: 1px;
                }

                    .toggle-kit.multi .button-kit:first-child {
                        border-width: 1px;
                        border-radius: 3px 0 0 3px;
                        border-left-color: #aaa;
                    }

                        .toggle-kit.multi .button-kit:first-child.green {
                            border-left-color: #3f7f2f;
                        }

                        .toggle-kit.multi .button-kit:first-child.red {
                            border-left-color: #933a3a;
                        }

                        .toggle-kit.multi .button-kit:first-child.yellow {
                            border-left-color: #b8761b;
                        }

                        .toggle-kit.multi .button-kit:first-child.white {
                            border-left-color: #BBB;
                        }

        .section .header .button-kit,
        .accordian .header .button-kit {
            float: right;
            font-size: 12px;
            height: 25px;
            line-height: 25px;
            margin: 5px 0 5px 10px;
            padding: 0 10px;
        }

            .section .header .button-kit.white,
            .accordian .header .button-kit.white {
                background-image: url(/images/backgrounds/header-gradient-sprite.png);
                background-position: 0 0;
                background-repeat: repeat-x;
                color: #666;
                border: 1px solid #aaa;
                text-transform: none;
                text-shadow: 0 1px 0 #FFF;
            }

            .section .header .button-kit.left,
            .accordian .header .button-kit.left {
                float: left;
                margin-left: 0;
                margin-right: 10px;
            }

            .section .header .button-kit:active,
            .accordian .header .button-kit:active,
            .section .header .button-kit.selected,
            .accordian .header .button-kit.selected {
                background-position: 0 -40px;
                color: #444;
                text-shadow: 0 1px 1px #AAA;
                -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
            }

            .section .header .button-kit ins,
            .accordian .header .button-kit ins {
                float: right;
                font-size: 17px;
                font-weight: bold;
                text-decoration: none;
                margin-left: 8px;
                font-family: Courier;
            }

            .section .header .button-kit.green,
            .accordian .header .button-kit.green,
            .section .header .button-kit.red,
            .accordian .header .button-kit.red,
            .section .header .button-kit.yellow,
            .accordian .header .button-kit.yellow,
            .section .header .button-kit.blue,
            .accordian .header .button-kit.blue {
                text-transform: none;
            }

        .section .header .toggle-kit,
        .accordian .header .toggle-kit {
            float: right;
            margin: 5px 0 5px 10px;
            border: 1px solid #aaa;
            border-radius: 3px;
            display: inline-block;
        }

            .section .header .toggle-kit.left,
            .accordian .header .toggle-kit.left {
                float: left;
                margin: 5px 10px 5px 0;
            }

            .section .header .toggle-kit.grey,
            .accordian .header .toggle-kit.grey,
            .section .header .toggle-kit.gray,
            .accordian .header .toggle-kit.gray {
                border-color: 666;
            }

            .section .header .toggle-kit.green,
            .accordian .header .toggle-kit.green {
                border-color: #3f7f2f;
            }

            .section .header .toggle-kit.red,
            .accordian .header .toggle-kit.red {
                background-position: 0 -50px;
                border-color: #933a3a;
            }

            .section .header .toggle-kit.yellow,
            .accordian .header .toggle-kit.yellow {
                background-position: 0 -100px;
                border-color: #b8761b;
            }

            .section .header .toggle-kit.black,
            .accordian .header .toggle-kit.black {
                background-position: 0 -200px;
                border-color: #222;
            }

            .section .header .toggle-kit .button-kit,
            .accordian .header .toggle-kit .button-kit {
                float: left;
                border-width: 0 1px;
                border-radius: 0px;
                margin: 0;
            }

                .section .header .toggle-kit .button-kit.green,
                .accordian .header .toggle-kit .button-kit.green {
                    border-right-color: #3f7f2f;
                    border-left-color: #95c68a;
                }

                .section .header .toggle-kit .button-kit.red,
                .accordian .header .toggle-kit .button-kit.red {
                    border-right-color: #933a3a;
                    border-left-color: #dc9595;
                }

                .section .header .toggle-kit .button-kit.yellow,
                .accordian .header .toggle-kit .button-kit.yellow {
                    border-right-color: #b8761b;
                    border-left-color: #e9c485;
                }

                .section .header .toggle-kit .button-kit.white,
                .accordian .header .toggle-kit .button-kit.white {
                    border-right-color: #BBB;
                    border-left-color: #FFF;
                }

                .section .header .toggle-kit .button-kit:active,
                .accordian .header .toggle-kit .button-kit:active {
                    border-left-color: transparent;
                }

                .section .header .toggle-kit .button-kit:first-child,
                .accordian .header .toggle-kit .button-kit:first-child {
                    border-radius: 3px 0 0 3px;
                    border-left-width: 0;
                }

                .section .header .toggle-kit .button-kit:last-child,
                .accordian .header .toggle-kit .button-kit:last-child {
                    border-radius: 0 3px 3px 0;
                    border-right-width: 0;
                }

                .section .header .toggle-kit .button-kit.selected,
                .accordian .header .toggle-kit .button-kit.selected {
                    background-image: none;
                    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
                    border-left: none;
                }

            .section .header .toggle-kit.multi,
            .accordian .header .toggle-kit.multi {
                border: none;
            }

                .section .header .toggle-kit.multi .button-kit,
                .accordian .header .toggle-kit.multi .button-kit {
                    border-width: 1px;
                }

                    .section .header .toggle-kit.multi .button-kit:first-child,
                    .accordian .header .toggle-kit.multi .button-kit:first-child {
                        border-width: 1px;
                        border-radius: 3px 0 0 3px;
                        border-left-color: #aaa;
                    }

                        .section .header .toggle-kit.multi .button-kit:first-child.green,
                        .accordian .header .toggle-kit.multi .button-kit:first-child.green {
                            border-left-color: #3f7f2f;
                        }

                        .section .header .toggle-kit.multi .button-kit:first-child.red,
                        .accordian .header .toggle-kit.multi .button-kit:first-child.red {
                            border-left-color: #933a3a;
                        }

                        .section .header .toggle-kit.multi .button-kit:first-child.yellow,
                        .accordian .header .toggle-kit.multi .button-kit:first-child.yellow {
                            border-left-color: #b8761b;
                        }

                        .section .header .toggle-kit.multi .button-kit:first-child.white,
                        .accordian .header .toggle-kit.multi .button-kit:first-child.white {
                            border-left-color: #BBB;
                        }

            .section .header .toggle-kit .button-kit.white,
            .accordian .header .toggle-kit .button-kit.white {
                background-image: url(/images/backgrounds/header-gradient-sprite.png);
                background-position: 0 0;
                background-repeat: repeat-x;
                color: #666;
                text-transform: none;
                text-shadow: 0 1px 0 #FFF;
            }

                .section .header .toggle-kit .button-kit.white:active,
                .accordian .header .toggle-kit .button-kit.white:active {
                    background: #e0e0e0;
                }

                .section .header .toggle-kit .button-kit.white.selected,
                .accordian .header .toggle-kit .button-kit.white.selected {
                    border-left-color: transparent;
                    text-shadow: none;
                    background-position: 0 -40px;
                    color: #444;
                    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
                    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
                }

        .accordian .header .button-kit {
            font-size: 11px;
            text-shadow: 0 1px 0 #FFF;
            height: 17px;
            line-height: 17px;
            padding: 0 5px;
            color: #999;
            margin: -3px 5px 0 0;
            border-color: #BBB;
        }

            .accordian .header .button-kit:active,
            .accordian .header .button-kit.selected {
                background-position: 0 -20px;
                color: #777;
                text-shadow: none;
                -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
            }

        body.blue .button-kit {
            color: white;
        }

            body.blue .button-kit.green {
                background-position: 0 -360px;
                border: none;
                background-color: #558aaf;
            }

                body.blue .button-kit.green:active {
                    background: #2f5a80;
                }

                body.blue .button-kit.green:hover {
                    background-color: #3b7095;
                }
        /** end old styles **/
        .card-section .header .toggle-kit {
            margin-top: 5px;
            margin-bottom: 5px;
        }

            .card-section .header .toggle-kit .button-kit {
                margin: 0;
                border-left-width: 0px;
            }

                .card-section .header .toggle-kit .button-kit:first-child {
                    border-left-width: 1px;
                }

        .card-section .header .button-kit {
            float: right;
            font-size: 14px;
            font-weight: 400;
            margin: 4px 0 0 10px;
            padding: 0 10px;
            -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
            text-transform: uppercase;
            border: 1px solid #ddd;
        }

            .card-section .header .button-kit.white {
                background: white;
                color: #999;
                text-shadow: #FFF 0px 1px 0px;
            }

                .card-section .header .button-kit.white:active,
                .card-section .header .button-kit.white.selected {
                    color: #666;
                    background: #f2f2f2;
                }

            .card-section .header .button-kit.seamless {
                border-width: 0 0 0 1px;
                margin: -10px -15px 0 0;
                border-radius: 0;
                height: 43px;
                -webkit-box-shadow: none;
                box-shadow: none;
                line-height: 44px;
            }

            .card-section .header .button-kit.left {
                float: left;
                margin-left: 0;
                margin-right: 10px;
            }

            .card-section .header .button-kit:active,
            .card-section .header .button-kit.selected {
                -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
                box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
            }

            .card-section .header .button-kit ins {
                float: right;
                font-size: 17px;
                font-weight: bold;
                text-decoration: none;
                margin-left: 8px;
                font-family: Courier;
            }

            .card-section .header .button-kit.small {
                height: 23px;
                line-height: 21px;
                font-size: 10px;
                margin-top: 0;
            }

            .card-section .header .button-kit.is-icon {
                width: 24px;
                line-height: 23px;
                padding: 0;
                text-align: center;
            }

            .card-section .header .button-kit.export-requests,
            .card-section .header .button-kit.create-timeoff {
                height: 32px;
                line-height: 32px;
            }

        #open-items {
            display: none;
            margin-top: 20px;
        }

            #open-items .list {
                padding: 10px 0 0 0;
                margin: 0 -5px -10px;
            }

            #open-items .open-item {
                padding: 0 5px 10px 5px;
            }

        .clockin-dialog {
            width: 520px;
        }

            .clockin-dialog h2 {
                font-weight: 300;
                font-size: 36px;
                text-align: center;
                margin: 15px 0 30px 0;
                color: #555555;
                letter-spacing: 0.26px;
                line-height: 45px;
                font-family: "Source Sans Pro";
            }

            .clockin-dialog p {
                text-align: center;
                margin: 0 0 30px;
                font-size: 18px;
            }

            .clockin-dialog .notes,
            .clockin-dialog .audit-note {
                border-radius: 2px;
                margin-top: 7px;
                outline: none;
            }

                .clockin-dialog .notes:focus,
                .clockin-dialog .audit-note:focus {
                    border: 1px solid #51A33D;
                }

            .clockin-dialog .buttons {
                text-align: center;
                margin-bottom: 20px;
                padding: 0 33px 0 33px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .clockin-dialog .buttons .button-kit {
                    text-transform: uppercase;
                    display: inline-block;
                    border-radius: 3px;
                }

                    .clockin-dialog .buttons .button-kit.left {
                        margin-right: 10px;
                        float: none;
                    }

                    .clockin-dialog .buttons .button-kit.right {
                        -webkit-box-flex: 1;
                        -ms-flex: auto;
                        flex: auto;
                    }

            .clockin-dialog hr {
                margin: 0 120px;
                width: auto;
            }

            .clockin-dialog .user-welcome {
                padding-top: 30px;
                font-size: 18px;
                color: #999;
                line-height: 30px;
                text-align: center;
                margin-bottom: 20px;
                font-weight: 400;
            }

                .clockin-dialog .user-welcome img {
                    width: 30px;
                    height: 30px;
                    border-radius: 15px;
                    margin-right: 10px;
                    display: inline-block;
                }

            .clockin-dialog .location-box {
                background: #CCC;
                color: white;
                padding: 25px 30px;
                border-radius: 0 0 4px 4px;
            }

                .clockin-dialog .location-box .name {
                    float: left;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 60px;
                }

                    .clockin-dialog .location-box .name i {
                        font-size: 28px;
                        margin-right: 10px;
                        vertical-align: middle;
                    }

                .clockin-dialog .location-box .time {
                    float: right;
                    line-height: 1;
                }

                    .clockin-dialog .location-box .time span {
                        font-weight: 200;
                        font-size: 60px;
                    }

                    .clockin-dialog .location-box .time label {
                        font-weight: 300;
                        font-size: 18px;
                    }

            .clockin-dialog .position-picker,
            .clockin-dialog .location-site-picker,
            .clockin-dialog .location-picker,
            .clockin-dialog .note-label,
            .clockin-dialog .audit-note-label,
            .clockin-dialog .site-picker {
                margin: 0 33px;
                margin-bottom: 28px;
            }

                .clockin-dialog .position-picker.note-label,
                .clockin-dialog .location-site-picker.note-label,
                .clockin-dialog .location-picker.note-label,
                .clockin-dialog .note-label.note-label,
                .clockin-dialog .audit-note-label.note-label,
                .clockin-dialog .site-picker.note-label,
                .clockin-dialog .position-picker.audit-note-label,
                .clockin-dialog .location-site-picker.audit-note-label,
                .clockin-dialog .location-picker.audit-note-label,
                .clockin-dialog .note-label.audit-note-label,
                .clockin-dialog .audit-note-label.audit-note-label,
                .clockin-dialog .site-picker.audit-note-label {
                    font-size: 16px;
                    color: #333333;
                }

            .clockin-dialog .breaks-question-label {
                margin: 0 33px;
                margin-bottom: 10px;
                font-size: 16px;
                color: #333333;
                display: inline-block;
            }

            .clockin-dialog .breaks-radio-group {
                margin: 0 33px;
                margin-bottom: 20px;
            }

                .clockin-dialog .breaks-radio-group .breaks-radio-label {
                    margin-right: 15px;
                    color: #666666;
                    font-family: "Source Sans Pro";
                    font-size: 12px;
                    font-weight: 600;
                    line-height: 14px;
                    text-transform: uppercase;
                }

        .clockin-success-dialog {
            width: 520px;
            height: 413px;
        }

            .clockin-success-dialog h2 {
                font-weight: 200;
                font-size: 36px;
                text-align: center;
                margin: 20px 0;
            }

            .clockin-success-dialog .animation {
                width: 194px;
                height: 194px;
                margin: 0 0 38px 140px;
            }

            .clockin-success-dialog .greeting {
                font-size: 24px;
                font-weight: normal;
                font-style: normal;
                font-stretch: normal;
                text-align: center;
                color: #555555;
            }

        .break-success-dialog {
            height: 375px;
        }

        body.blue li label input[type="radio"]:checked + span:after,
        body.blue label.form-checkbox input[type="radio"]:checked + span:after {
            border: 5px solid #558aaf;
        }

        body.blue .notes:focus,
        body.blue .audit-note:focus {
            border: 1px solid #558aaf;
        }

        body.blue .button-kit.green {
            background-color: #558aaf;
        }

            body.blue .button-kit.green:active {
                background: #4b7d9f;
            }

        .ie-9 .button-kit.loading:before {
            color: white;
        }

        .horizontal-list li {
            float: left;
        }

        .title-container {
            float: left;
        }
        /**
 * Progress Bar
 */
        .progress-kit {
            display: block;
            max-width: 400px;
            margin: 4px 0;
            height: 8px;
            overflow: hidden;
            border-radius: 8px;
            background: #ccc;
        }

            .progress-kit i {
                display: block;
                width: 1%;
                height: 8px;
                background: #51a33d;
                border-radius: 8px;
                -webkit-transition: width 0.1s ease-in-out;
                transition: width 0.1s ease-in-out;
            }
        /* ------------------------------
  Demo Account Styles
------------------------------ */
        .demo-account {
            padding: 9px 10px 6px;
        }

            .demo-account:hover a.start-scheduling-btn {
                background: #e4b62c;
            }

            .demo-account .demo-container {
                background: #333;
                display: inline-block;
                border-radius: 3px;
            }

            .demo-account .text {
                color: #AEAEAE;
                float: left;
                font-size: 14px;
                padding: 10px 10px;
                text-transform: none;
            }

            .demo-account .demo-learn-more {
                padding: 0;
                float: none;
                line-height: 0;
                color: #FFCC33;
                font-weight: normal;
            }

            .demo-account .start-scheduling-btn {
                float: left;
                color: #fff;
                height: 38px;
                line-height: 38px;
                background: #E4B62C;
                background: rgba(228, 182, 44, 0.8);
                border-radius: 3px;
            }

        @-webkit-keyframes pulse {
            0% {
                opacity: 0;
                -webkit-transform: scale(0.5);
            }

            10% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                -webkit-transform: scale(1.2);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0;
                -webkit-transform: scale(0.5);
                transform: scale(0.5);
            }

            10% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                -webkit-transform: scale(1.2);
                transform: scale(1.2);
                opacity: 0;
            }
        }

        @-webkit-keyframes dot {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 0.8;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes dot {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 0.8;
            }

            100% {
                opacity: 0;
            }
        }

        .form-item {
            margin-bottom: 15px;
            color: #444;
        }

            .form-item > label {
                text-transform: uppercase;
                color: #444;
                font-size: 11px;
                margin-bottom: 5px;
                display: block;
                font-weight: bold;
            }

                .form-item > label a.info {
                    color: #51a33d;
                    text-transform: none;
                    font-weight: normal;
                }

                .form-item > label.radio {
                    font-weight: normal;
                    text-transform: none;
                }

                .form-item > label small {
                    text-transform: none;
                    font-size: 11px;
                    font-weight: normal;
                }

                .form-item > label span {
                    font-size: 9px;
                    color: #999;
                }

            .form-item.icon > i {
                float: left;
                color: #999;
                background: #eee;
                text-align: center;
                font-size: 16px;
                width: 46px;
                line-height: 46px;
                height: 46px;
                border-radius: 2px 0 0 2px;
                border-style: solid;
                border-color: #ddd;
                border-width: 1px 0 1px 1px;
            }

            .form-item.icon .form-text {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

            .form-item .form-label-helper {
                font-size: 11px;
                color: #999;
                float: right;
            }

            .form-item.flexible {
                padding: 0 5px 15px;
                margin: 0;
            }

                .form-item.flexible:first-child:not(.flexible-padded) {
                    padding-left: 0 !important;
                }

                .form-item.flexible:last-child:not(.flexible-padded) {
                    padding-right: 0 !important;
                }

            .form-item.wide-gutter {
                padding-left: 20px;
                padding-right: 20px;
            }

            .form-item.error .form-text {
                border-color: #bc4f2e !important;
            }

                .form-item.error .form-text input,
                .form-item.error .form-text textarea {
                    color: #B94A48;
                }

                    .form-item.error .form-text input[disabled],
                    .form-item.error .form-text textarea[disabled] {
                        cursor: not-allowed;
                    }

            .form-item.error .form-info {
                color: #B94A48;
            }

            .form-item .form-item {
                margin-bottom: 0;
            }
        /* Generated by json-form */
        .controls.form-item {
            line-height: 16px;
        }

            .controls.form-item .help-inline {
                color: #999;
            }

        .condensed .form-item {
            margin-bottom: 10px;
        }

            .condensed .form-item.flexible {
                margin: 0;
                padding-bottom: 10px;
            }

        .form-group {
            position: relative;
            display: table;
            border-collapse: separate;
            width: 100%;
        }

            .form-group .form-text {
                display: table-cell;
                float: left;
                width: 100%;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
            }

        .form-group-addon {
            width: 1%;
            white-space: nowrap;
            display: table-cell;
            vertical-align: middle;
            border: 1px solid #ccc;
            background: #f5f5f5;
            height: 40px;
            text-align: center;
            line-height: 40px;
            font-size: 14px;
            border-radius: 2px;
            color: #666;
            padding: 0 10px;
            min-width: 30px;
            -webkit-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box;
        }

            .form-group-addon:first-child {
                border-right: none;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

            .form-group-addon:last-child {
                border-left: none;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

            .form-group-addon + .form-text {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

            .form-group-addon.white {
                background-color: #fff;
            }

        .form-text {
            background: #FFF;
            border: 1px solid #ccc;
            border-radius: 2px;
            padding: 0 10px;
            color: #999;
        }

            .form-text.search {
                padding-left: 10px;
            }

            .form-text > i {
                margin-right: 10px;
            }

            .form-text.form-text-invisible {
                border: none;
                border-radius: 0;
            }

            .form-text.disabled {
                background: #f3f3f3;
            }

                .form-text.disabled input,
                .form-text.disabled textarea {
                    background: #f3f3f3;
                }

            .form-text.error {
                border-color: #bc4f2e !important;
            }

                .form-text.error input,
                .form-text.error textarea {
                    color: #B94A48;
                }

                    .form-text.error input[disabled],
                    .form-text.error textarea[disabled] {
                        cursor: not-allowed;
                    }

            .form-text.large {
                padding: 0 12px;
            }

                .form-text.large > i {
                    font-size: 18px;
                }

                .form-text.large input,
                .form-text.large blockquote {
                    height: 46px;
                    min-height: 46px;
                    font-size: 20px;
                    font-weight: 400;
                }

                .form-text.large textarea {
                    min-height: 48px;
                    font-size: 20px;
                    font-weight: 400;
                }

            .form-text .icon-right {
                float: right;
                line-height: 23px;
                width: 23px;
                margin: 5px 0;
                text-align: center;
                color: #666;
            }

                .form-text .icon-right.selected {
                    background: #999;
                    border-radius: 3px;
                    color: white;
                }

                .form-text .icon-right + input {
                    width: 90%;
                }

            .form-text input,
            .form-text textarea,
            .form-text blockquote {
                border: 0;
                padding: 0;
                margin: 0;
                background: transparent;
                width: 100%;
                height: 33px;
                line-height: 33px;
                color: #666;
                font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
                font-size: 13px;
            }

                .form-text input:focus,
                .form-text textarea:focus,
                .form-text blockquote:focus {
                    border: none;
                    outline: none;
                }

            .form-text textarea,
            .form-text blockquote {
                min-height: 33px;
                font-size: 13px;
                height: auto;
                line-height: 1.5;
                resize: vertical;
                padding: 5px 0;
            }

            .form-text blockquote {
                overflow: auto;
                overflow-x: hidden;
                max-height: 300px;
            }

                .form-text blockquote .over-limit {
                    color: #999;
                }

            .form-text ins.button-kit {
                float: right;
                border-radius: 0 2px 2px 0;
                height: 33px;
                line-height: 33px;
                text-align: center;
                margin: 0 -5px 0 0;
                min-width: 30px;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

                .form-text ins.button-kit.large {
                    font-size: 20px;
                    font-weight: 400;
                    border-color: #ccc;
                }

            .form-text .fa-plus {
                float: right;
                font-size: 14px;
                line-height: 33px;
                padding-right: 4px;
                color: #ccc;
            }

        .form-joined .form-item {
            margin-bottom: 0;
        }

            .form-joined .form-item .form-text,
            .form-joined .form-item .form-select {
                border-top-width: 0;
                border-radius: 0;
                overflow: hidden;
            }

            .form-joined .form-item:first-child .form-text,
            .form-joined .form-item:first-child .form-select {
                border-top-width: 1px;
                border-top-right-radius: 2px;
                border-top-left-radius: 2px;
            }

            .form-joined .form-item:last-child .form-text,
            .form-joined .form-item:last-child .form-select {
                border-bottom-right-radius: 2px;
                border-bottom-left-radius: 2px;
            }

            .form-joined .form-item.icon > i {
                border-top-width: 0;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
                font-size: 18px;
            }

            .form-joined .form-item.icon:first-child > i {
                border-top-width: 1px;
                border-top-left-radius: 2px;
            }

            .form-joined .form-item.icon:last-child > i {
                border-bottom-left-radius: 2px;
            }

            .form-joined .form-item.icon .form-text,
            .form-joined .form-item.icon .form-select {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

        .form-info {
            font-size: 11px;
            color: #999;
            padding: 2px 0;
        }

            .form-info.error {
                color: #B94A48;
            }

        .datepicker {
            position: relative;
        }

            .datepicker ins,
            .datepicker .ui-datepicker-trigger {
                display: block;
                position: absolute;
                width: 35px;
                right: 0px;
                top: 0px;
                line-height: 40px;
                margin: 0;
                padding: 0;
                font-family: FontAwesome;
                font-weight: normal;
                font-style: normal;
                text-decoration: inherit;
                -webkit-font-smoothing: antialiased;
                font-size: 14px;
                color: #999;
                border: none;
                border-left: 1px solid #ccc;
                background: none;
                -webkit-appearance: none;
            }

                .datepicker ins:before,
                .datepicker .ui-datepicker-trigger:before {
                    content: "\f073";
                }

        .form-text.large.datepicker ins,
        .form-text.large.datepicker .ui-datepicker-trigger {
            right: 12px;
            top: 11px;
        }

        .form-select {
            background: #FFF;
            border: 1px solid #ccc;
            border-radius: 2px;
            padding: 0 10px;
            height: 33px;
            cursor: default;
            position: relative;
        }

            .form-select.disabled {
                opacity: 0.6;
                filter: alpha(opacity=60);
            }

            .form-select input,
            .form-select textarea {
                border: 0;
                padding: 0;
                margin: 0;
                background: inherit;
                height: 33px;
                line-height: 33px;
                color: #666;
                font-family: Arial, Helvetica, sans-serif;
            }

                .form-select input:focus,
                .form-select textarea:focus {
                    border: none;
                    outline: none;
                }

            .form-select .token-input-input-token {
                opacity: 0;
            }

            .form-select select {
                -webkit-appearance: none;
                border: 0;
                width: 100%;
                height: 19px;
                margin: 7px 1px 7px 0;
                color: #666;
                background: transparent;
            }

                .form-select select:focus {
                    border: none;
                    outline: none;
                    -moz-outline: none;
                }

            .form-select ins.button-kit {
                float: right;
                border-radius: 0 2px 2px 0;
                height: 33px;
                line-height: 33px;
                width: 17px;
                text-align: center;
                margin: -1px -11px 0 0;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .form-select ins.abs {
                text-decoration: none;
                position: absolute;
                top: -1px;
                right: -1px;
                margin: 0 !important;
                pointer-events: none;
            }

            .form-select.large {
                padding: 0 12px;
                height: 46px;
            }

                .form-select.large ins.button-kit {
                    width: 46px;
                    height: 46px;
                }

                .form-select.large ins i {
                    font-size: 20px;
                    line-height: 46px;
                }

                .form-select.large input,
                .form-select.large textarea {
                    height: 46px;
                }

                .form-select.large select {
                    height: 32px;
                    padding: 4px 0;
                    font-size: 16px;
                }

            .form-select.minimal ins.abs {
                font-size: 9px;
                width: 20px;
                line-height: 34px;
                color: #999;
            }

            .form-select.simple ins.abs {
                background: none;
                background-color: #FFF;
                border-width: 0px;
                top: 0;
                right: 0;
                color: #999;
            }

            .form-select .token-input-delete-token {
                display: none;
            }

            .form-select .token {
                margin: 4px 4px 4px 0;
                padding: 0px 6px 0 4px;
                height: 25px;
                line-height: 25px;
                background-color: #51a33d;
                color: #FFF;
                cursor: default;
                display: inline-block;
                border-radius: 2px;
            }

        .dialog-kit .datepicker ins,
        .card-section .datepicker ins,
        .dialog-kit .datepicker .ui-datepicker-trigger,
        .card-section .datepicker .ui-datepicker-trigger {
            line-height: 40px;
        }

        .dialog-kit .form-text input,
        .card-section .form-text input {
            height: 40px;
        }

        .dialog-kit .header .form-text input,
        .card-section .header .form-text input {
            height: 32px;
        }

        .dialog-kit .form-item.flexible,
        .card-section .form-item.flexible {
            padding: 0 10px 20px;
        }

        .dialog-kit .form-item > label,
        .card-section .form-item > label {
            font-size: 12px;
            color: #666;
        }

        .dialog-kit .form-select,
        .card-section .form-select {
            min-height: 40px;
            height: 40px;
        }

            .dialog-kit .form-select select,
            .card-section .form-select select {
                height: 40px;
                margin: 0 5px 0 0;
                font-size: 14px;
                padding: 9px 0;
            }

            .dialog-kit .form-select .token-input-token,
            .card-section .form-select .token-input-token {
                margin: 7px 5px 7px 0px;
            }

        .dialog-kit .form-item .select2-container .select2-choice .select2-arrow,
        .card-section .form-item .select2-container .select2-choice .select2-arrow {
            width: 33px;
            border-left: 1px solid #ccc;
            color: #999;
        }
        /**************************************************
 * Popup Calendar Styles
 */
        .ui-datepicker {
            border: 1px solid #BBB;
            -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            background: #FFF;
            display: none;
        }

            .ui-datepicker .ui-datepicker-header {
                margin: 0;
                height: 37px;
                line-height: 37px;
                background: #CCC url(/images/backgrounds/section-header.png) repeat-x;
                font-size: 14px;
                font-weight: bold;
                color: #333;
                text-shadow: 0 1px 0 #FFF;
                padding: 0 5px;
                border-bottom: 1px solid #bababa;
                white-space: nowrap;
            }

                .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
                .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
                    cursor: pointer;
                    margin-top: 5px;
                    font-size: 26px;
                    float: left;
                    width: 9px;
                    height: 25px;
                    line-height: 18px;
                    background-image: url(/images/backgrounds/header-gradient-sprite.png);
                    background-position: 0 0;
                    background-repeat: repeat-x;
                    color: #666;
                    text-transform: none;
                    text-shadow: 0 1px 0 #FFF;
                    font-weight: normal;
                    padding: 0 8px;
                    border: 1px solid #AAAAAA;
                    border-right-color: #BBBBBB;
                    border-radius: 3px 0 0 3px;
                }

                    .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:active,
                    .ui-datepicker .ui-datepicker-header .ui-datepicker-next:active {
                        background: #e0e0e0;
                    }

                    .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
                    .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
                        font-size: 1px;
                    }

                        .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span:before,
                        .ui-datepicker .ui-datepicker-header .ui-datepicker-next span:before {
                            font-family: FontAwesome;
                            content: "\F105";
                            font-weight: normal;
                            display: block;
                            font-size: 16px;
                            line-height: 28px;
                            vertical-align: middle;
                            text-align: center;
                        }

                        .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span.ui-icon-circle-triangle-w:before,
                        .ui-datepicker .ui-datepicker-header .ui-datepicker-next span.ui-icon-circle-triangle-w:before {
                            content: "\F104";
                        }

                .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
                    border-left-color: #FFFFFF;
                    border-radius: 0 3px 3px 0;
                }

            .ui-datepicker table {
                border-collapse: collapse;
            }

                .ui-datepicker table th,
                .ui-datepicker table td {
                    border: 1px solid #FFF;
                }

                    .ui-datepicker table th a,
                    .ui-datepicker table td a,
                    .ui-datepicker table th span,
                    .ui-datepicker table td span {
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                        width: 30px;
                        height: 30px;
                        font-size: 12px;
                        line-height: 12px;
                        padding: 9px 0;
                        display: block;
                        text-align: center;
                        color: #333;
                        text-decoration: none;
                    }

                    .ui-datepicker table td.ui-datepicker-other-month a {
                        background: #FFF;
                        color: #999;
                    }

                    .ui-datepicker table td.ui-datepicker-today a {
                        background: #ffffdd;
                    }

                    .ui-datepicker table td a {
                        background: #EEE;
                    }

                        .ui-datepicker table td a:hover,
                        .ui-datepicker table td a.ui-state-hover {
                            background: #cef0c6;
                        }

                        .ui-datepicker table td a.ui-state-active {
                            background: #cef0c6;
                            border: 1px solid #51a33d;
                        }

        body.blue table td a:hover,
        body.blue table td a.ui-state-hover {
            background: #c5def0;
        }

        body.blue table td a.ui-state-active {
            background: #c5def0;
            border: 1px solid #558aaf;
        }

        .ie-8 .form-select ins.button-kit.abs,
        .ie-9 .form-select ins.button-kit.abs,
        .ie-10 .form-select ins.button-kit.abs {
            display: none;
        }

        input::-webkit-input-placeholder,
        textarea::-webkit-input-placeholder {
            color: #999;
        }

        input:-moz-placeholder,
        textarea:-moz-placeholder {
            color: #999;
        }

        input.placeholder {
            color: #999;
        }

        button::-moz-focus-inner {
            border: 0;
            padding: 0;
        }

        @media print {
            .controller-account.receipt {
                margin: 20px !important;
                height: auto;
                overflow: visible;
            }

                .controller-account.receipt > * {
                    display: none !important;
                }

                .controller-account.receipt .receipt-print {
                    display: block !important;
                }
        }

        .controller-account {
            /** OLD STUFF **/
        }

            .controller-account .large-info {
                padding: 30px 30px 10px;
                font-size: 22px;
                font-weight: normal;
                border-bottom: #BBB;
            }

            .controller-account .account-summary .card-section .header {
                padding-bottom: 20px;
            }

            .controller-account .action-box .button-kit,
            .controller-account .details-box .button-kit {
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .controller-account .action-box {
                border-radius: 4px;
                border: 1px solid #ddd;
            }

                .controller-account .action-box .action-promo.autorenewal {
                    padding-bottom: 30px;
                }

                    .controller-account .action-box .action-promo.autorenewal .autorenewal-status,
                    .controller-account .action-box .action-promo.autorenewal .autorenewal-description {
                        line-height: 30px;
                    }

                    .controller-account .action-box .action-promo.autorenewal .autorenewal-status {
                        font-size: 14px;
                        font-weight: 400;
                        color: #999999;
                        margin-bottom: 2px;
                        text-transform: uppercase;
                    }

                    .controller-account .action-box .action-promo.autorenewal .checkbox-column {
                        vertical-align: middle;
                        padding: 2px 8px 0 0;
                    }

                .controller-account .action-box .warning-box {
                    background: #fef9ec;
                    border-top: 1px solid #ddd;
                    height: 68px;
                    padding: 0 30px;
                    line-height: 68px;
                    color: #c3960e;
                    font-size: 14px;
                }

                    .controller-account .action-box .warning-box.error {
                        background: #fcf3f4;
                        color: #d4364c;
                    }

                .controller-account .action-box .features-box {
                    border-top: 1px solid #ddd;
                    padding: 15px 0px 15px 30px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                    .controller-account .action-box .features-box h3 {
                        color: #999;
                        font-size: 16px;
                        font-weight: 400;
                    }

                        .controller-account .action-box .features-box h3 i {
                            color: #ccc;
                        }

                    .controller-account .action-box .features-box h4 {
                        font-size: 14px;
                        padding-top: 6px;
                        padding-bottom: 6px;
                    }

                        .controller-account .action-box .features-box h4.scheduler-features {
                            color: #51a33d;
                        }

                        .controller-account .action-box .features-box h4.attendance-features {
                            color: #558aaf;
                        }

                    .controller-account .action-box .features-box ul {
                        display: inline-block;
                    }

                        .controller-account .action-box .features-box ul li {
                            float: left;
                            text-transform: uppercase;
                            font-size: 13px;
                            color: #666;
                            max-height: 68px;
                            cursor: pointer;
                        }

                            .controller-account .action-box .features-box ul li:nth-child(5n+1) {
                                clear: left;
                            }

                                .controller-account .action-box .features-box ul li:nth-child(5n+1) a {
                                    padding-left: 0px;
                                }

                            .controller-account .action-box .features-box ul li:last-child:after {
                                content: "";
                            }

                            .controller-account .action-box .features-box ul li a {
                                padding: 0 5px;
                                display: inline-block;
                                color: #333;
                            }

                            .controller-account .action-box .features-box ul li:after {
                                content: "  /  ";
                            }

                            .controller-account .action-box .features-box ul li.missing a {
                                text-decoration: line-through;
                                color: #999;
                            }

                .controller-account .action-box .plan-slider {
                    display: table;
                    width: 100%;
                }

                    .controller-account .action-box .plan-slider .slide-button,
                    .controller-account .action-box .plan-slider .slide {
                        display: table-cell;
                        vertical-align: top;
                    }

                    .controller-account .action-box .plan-slider .slide {
                        width: 100%;
                    }

                    .controller-account .action-box .plan-slider .plan-info {
                        padding: 40px;
                        -webkit-box-sizing: border-box;
                        -ms-box-sizing: border-box;
                        box-sizing: border-box;
                        width: 100%;
                    }

                        .controller-account .action-box .plan-slider .plan-info label {
                            color: #999;
                            text-transform: uppercase;
                            font-size: 14px;
                        }

                        .controller-account .action-box .plan-slider .plan-info h3 {
                            font-size: 48px;
                            font-weight: 300;
                            text-transform: uppercase;
                        }

                            .controller-account .action-box .plan-slider .plan-info h3 + small {
                                margin-top: -10px;
                            }

                        .controller-account .action-box .plan-slider .plan-info small {
                            font-size: 12px;
                            color: #999;
                            display: block;
                        }

                        .controller-account .action-box .plan-slider .plan-info .flexible {
                            text-align: right;
                        }

                            .controller-account .action-box .plan-slider .plan-info .flexible.name {
                                width: 50%;
                                text-align: left;
                            }

                                .controller-account .action-box .plan-slider .plan-info .flexible.name h5 {
                                    font-size: 14px;
                                    line-height: 28px;
                                }

                            .controller-account .action-box .plan-slider .plan-info .flexible.employees,
                            .controller-account .action-box .plan-slider .plan-info .flexible.price {
                                white-space: nowrap;
                            }

                                .controller-account .action-box .plan-slider .plan-info .flexible.price h3 {
                                    margin-left: 30px;
                                    white-space: nowrap;
                                    text-transform: none;
                                }

                            .controller-account .action-box .plan-slider .plan-info .flexible h5 {
                                color: #999;
                                font-size: 22px;
                                font-weight: 400;
                            }

                    .controller-account .action-box .plan-slider .slide-button {
                        display: none;
                        width: 37px;
                        min-width: 37px;
                        text-align: center;
                        border: solid #ddd;
                        color: #999;
                    }

                        .controller-account .action-box .plan-slider .slide-button i {
                            font-size: 28px;
                            line-height: 160px;
                        }

                        .controller-account .action-box .plan-slider .slide-button:hover {
                            background: #fafafa;
                        }

                        .controller-account .action-box .plan-slider .slide-button.next {
                            border-width: 0 0 0 1px;
                        }

                        .controller-account .action-box .plan-slider .slide-button.prev {
                            border-width: 0 1px 0 0;
                        }

                    .controller-account .action-box .plan-slider.action-prev .slide-button.prev {
                        display: table-cell;
                    }

                    .controller-account .action-box .plan-slider.action-next .slide-button.next {
                        display: table-cell;
                    }

                .controller-account .action-box .action-promo {
                    border-top: 1px solid #ddd;
                    background: #f5f5f5;
                    padding: 20px 20px 20px 30px;
                    line-height: 40px;
                    font-weight: 300;
                    font-size: 24px;
                    border-radius: 0 0 3px 3px;
                }

            .controller-account .details-box .xxlarge {
                height: 60px;
                line-height: 60px;
                font-size: 24px;
                text-transform: uppercase;
            }

            .controller-account .details-box .progress-bar {
                background: #ccc;
                color: #333;
                line-height: 60px;
                border-radius: 30px;
                font-size: 18px;
                overflow: hidden;
            }

                .controller-account .details-box .progress-bar .progress {
                    background: #666;
                    height: 60px;
                    float: left;
                    margin-right: 10px;
                    color: white;
                    border-radius: 30px 0 0 30px;
                    padding: 0 30px;
                    -webkit-box-sizing: border-box;
                    -ms-box-sizing: border-box;
                    box-sizing: border-box;
                }

            .controller-account .details-box .account-promo {
                background: #d3ffd3;
                height: 60px;
                border-radius: 4px;
                color: #333;
                line-height: 60px;
                white-space: nowrap;
                padding: 0 20px;
                position: relative;
            }

                .controller-account .details-box .account-promo:after {
                    content: " ";
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 10px;
                    border-color: transparent #d3ffd3 transparent transparent;
                    left: -20px;
                    top: 50%;
                    margin-top: -10px;
                    position: absolute;
                    pointer-events: none;
                }

            .controller-account .details-box .flexible {
                width: 100%;
            }

                .controller-account .details-box .flexible.optional {
                    width: auto;
                    padding-left: 5px;
                }

            .controller-account .service-list {
                padding-top: 30px;
            }

                .controller-account .service-list li {
                    -webkit-box-sizing: border-box;
                    -ms-box-sizing: border-box;
                    box-sizing: border-box;
                    float: left;
                    width: 50%;
                    padding: 0 5px;
                }

                    .controller-account .service-list li:last-child {
                        padding-right: 0;
                    }

                    .controller-account .service-list li:first-child {
                        padding-left: 0;
                    }

                    .controller-account .service-list li .service {
                        background: #CCC;
                        border-radius: 4px;
                        width: 100%;
                        min-height: 200px;
                        position: relative;
                        text-align: center;
                        color: white;
                        cursor: pointer;
                    }

                        .controller-account .service-list li .service.scheduling {
                            background: #51a33d;
                        }

                        .controller-account .service-list li .service.attendance {
                            background: #558aaf;
                        }

                        .controller-account .service-list li .service .selected {
                            display: none;
                            width: 0;
                            height: 0;
                            border-width: 29px;
                            border-bottom-width: 28px;
                            border-style: solid;
                            border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2) transparent transparent;
                            position: absolute;
                            top: 0;
                            right: 0;
                            border-radius: 0 4px;
                        }

                            .controller-account .service-list li .service .selected i {
                                color: white;
                                margin: -20px 0 0 5px;
                                display: block;
                            }

                        .controller-account .service-list li .service .logo {
                            padding-top: 35px;
                            margin: 0 auto 20px;
                            width: 70px;
                            height: 70px;
                            display: block;
                        }

                            .controller-account .service-list li .service .logo path {
                                fill: white;
                            }

                        .controller-account .service-list li .service span {
                            font-size: 18px;
                            font-weight: 400;
                            text-transform: uppercase;
                        }

                        .controller-account .service-list li .service .button-toggle {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            background: rgba(0, 0, 0, 0.2);
                            border-radius: 0 0 4px 4px;
                            color: white;
                            text-transform: uppercase;
                            padding: 4px 0;
                            font-size: 12px;
                        }

                            .controller-account .service-list li .service .button-toggle:after {
                                content: "Activate";
                            }

                        .controller-account .service-list li .service.active .selected {
                            display: block;
                        }

                        .controller-account .service-list li .service.active .button-toggle {
                            color: #51a33d;
                        }

                            .controller-account .service-list li .service.active .button-toggle:after {
                                content: "Deactivate";
                            }

                        .controller-account .service-list li .service.active.attendance .button-toggle {
                            color: #558aaf;
                        }

            .controller-account .details-box {
                margin-top: 20px;
            }

            .controller-account .account-services label {
                font-size: 14px;
                font-weight: 400;
                color: #999999;
                margin-bottom: 4px;
                text-transform: uppercase;
                display: block;
            }

            .controller-account .account-services .account-country {
                margin-top: 28px;
            }

            .controller-account .form-country {
                height: 35px;
            }

                .controller-account .form-country select {
                    opacity: 0;
                    filter: alpha(opacity=0);
                    position: absolute;
                    top: 0;
                }

                .controller-account .form-country .form-selected {
                    height: 21px;
                    margin: 10px 0 0;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    width: 90%;
                    font-size: 14px;
                }

                    .controller-account .form-country .form-selected img {
                        float: left;
                        margin: 0 10px 0 0;
                        width: 30px;
                    }

            .controller-account .billing-dialog .credit-card-field.number {
                width: 230px;
            }

            .controller-account .billing-dialog .credit-card-field.expiry {
                width: 75px;
            }

            .controller-account .billing-dialog .credit-card-field.cvc {
                width: 60px;
            }

            .controller-account .billing-dialog .credit-card-field .card-element {
                padding: 11.5px 11px;
                color: #666666;
                font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
                font-size: 13px;
            }

            .controller-account .billing-dialog .payment-icon {
                float: left;
                margin-left: 5px;
                width: 27px;
                height: 19px;
                background: url(../images/icons/payment-cards.png) no-repeat;
                background-size: 123px 19px;
            }

                .controller-account .billing-dialog .payment-icon.visa {
                    background-position: -64px 0;
                }

                .controller-account .billing-dialog .payment-icon.mastercard {
                    background-position: -96px 0;
                }

                .controller-account .billing-dialog .payment-icon.amex {
                    background-position: 0 0;
                }

                .controller-account .billing-dialog .payment-icon.discover {
                    background-position: -32px 0;
                }

            .controller-account .billing-dialog .is-bundle {
                margin-bottom: 20px;
            }

            .controller-account .billing-dialog .payment-helper {
                float: right;
            }

            .controller-account .billing-dialog .plan-upgrade-promo {
                margin-top: 8px;
            }

                .controller-account .billing-dialog .plan-upgrade-promo .xxlarge {
                    height: 50px;
                    line-height: 50px;
                    text-transform: uppercase;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                }

            .controller-account .billing-dialog .plan-holder .plan-info,
            .controller-account .plan-dialog .plan-holder .plan-info {
                text-transform: uppercase;
                text-align: right;
            }

                .controller-account .billing-dialog .plan-holder .plan-info .flexible.name,
                .controller-account .plan-dialog .plan-holder .plan-info .flexible.name {
                    width: 50%;
                    text-align: left;
                }

                .controller-account .billing-dialog .plan-holder .plan-info label,
                .controller-account .plan-dialog .plan-holder .plan-info label {
                    font-size: 14px;
                    color: #999;
                }

                .controller-account .billing-dialog .plan-holder .plan-info h3,
                .controller-account .plan-dialog .plan-holder .plan-info h3 {
                    font-size: 36px;
                    font-weight: 300;
                    color: #333;
                    margin: 0;
                }

                    .controller-account .billing-dialog .plan-holder .plan-info h3 + small,
                    .controller-account .plan-dialog .plan-holder .plan-info h3 + small {
                        font-size: 12px;
                        text-transform: none;
                        color: #999;
                        display: block;
                        margin-top: -6px;
                    }

            .controller-account .billing-dialog .is-bundle,
            .controller-account .plan-dialog .is-bundle {
                color: #666;
                font-weight: 400;
                text-transform: none;
                line-height: 18px;
                text-align: left;
                margin-top: 10px;
            }

                .controller-account .billing-dialog .is-bundle small,
                .controller-account .plan-dialog .is-bundle small {
                    font-size: 13px;
                }

                .controller-account .billing-dialog .is-bundle strong,
                .controller-account .plan-dialog .is-bundle strong {
                    color: #333;
                    font-weight: 600;
                }

                .controller-account .billing-dialog .is-bundle label,
                .controller-account .plan-dialog .is-bundle label {
                    float: right;
                    margin-left: 18px;
                }

                    .controller-account .billing-dialog .is-bundle label span,
                    .controller-account .plan-dialog .is-bundle label span {
                        color: #999;
                    }

                    .controller-account .billing-dialog .is-bundle label input:checked + span,
                    .controller-account .plan-dialog .is-bundle label input:checked + span {
                        color: #333;
                    }

            .controller-account .billing-dialog .change-desc,
            .controller-account .plan-dialog .change-desc {
                font-size: 16px;
                color: #333;
                font-weight: 300;
                margin: 5px 0 25px;
            }

            .controller-account .billing-dialog .upgrade-info,
            .controller-account .plan-dialog .upgrade-info {
                color: #333;
                margin: 25px 0;
            }

                .controller-account .billing-dialog .upgrade-info label,
                .controller-account .plan-dialog .upgrade-info label {
                    font-size: 14px;
                    color: #999;
                    text-transform: uppercase;
                    display: block;
                    margin-bottom: 5px;
                }

                .controller-account .billing-dialog .upgrade-info aside,
                .controller-account .plan-dialog .upgrade-info aside {
                    font-size: 18px;
                    line-height: 48px;
                    float: right;
                    color: #666;
                }

                .controller-account .billing-dialog .upgrade-info h4,
                .controller-account .plan-dialog .upgrade-info h4 {
                    font-size: 48px;
                    font-weight: 300;
                    line-height: 1;
                }

            .controller-account .billing-dialog .blurb,
            .controller-account .plan-dialog .blurb {
                background: #eee;
                border-radius: 4px;
                font-size: 16px;
                line-height: 1;
                color: #333;
                padding: 15px 20px;
            }

                .controller-account .billing-dialog .blurb.plan-promo,
                .controller-account .plan-dialog .blurb.plan-promo {
                    height: 50px;
                    line-height: 50px;
                    position: relative;
                    margin-right: 5px;
                    font-size: 18px;
                    white-space: nowrap;
                    padding: 0 20px;
                }

                    .controller-account .billing-dialog .blurb.plan-promo:after,
                    .controller-account .plan-dialog .blurb.plan-promo:after {
                        content: " ";
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 10px;
                        border-color: transparent transparent transparent #eee;
                        right: -20px;
                        top: 50%;
                        margin-top: -10px;
                        position: absolute;
                        pointer-events: none;
                    }

            .controller-account .billing-dialog .tiny-details,
            .controller-account .plan-dialog .tiny-details {
                font-size: 12px;
                color: #999;
                font-weight: 300;
                line-height: 19px;
            }

            .controller-account .billing-dialog .dialog-footer abbr,
            .controller-account .plan-dialog .dialog-footer abbr {
                font-size: 15px;
                color: #333;
                line-height: 26px;
            }

                .controller-account .billing-dialog .dialog-footer abbr strong,
                .controller-account .plan-dialog .dialog-footer abbr strong {
                    color: #51a33d;
                }

            .controller-account .billing-dialog .dialog-footer var,
            .controller-account .plan-dialog .dialog-footer var {
                font-size: 12px;
                line-height: 22px;
                display: block;
            }

            .controller-account .billing-dialog .industry,
            .controller-account .plan-dialog .industry {
                margin: 0 30px 28px;
                padding-top: 20px;
                border-top: 1px solid #CCC;
            }

                .controller-account .billing-dialog .industry .tiny-details,
                .controller-account .plan-dialog .industry .tiny-details {
                    text-transform: none;
                }

            .controller-account .billing-dialog .select2-container .select2-choice,
            .controller-account .plan-dialog .select2-container .select2-choice {
                padding: 0 10px;
            }

            .controller-account .plan-dialog .invoice-lines section {
                padding: 16px 0;
            }

                .controller-account .plan-dialog .invoice-lines section h5,
                .controller-account .plan-dialog .invoice-lines section abbr {
                    font-size: 18px;
                    color: #333;
                    font-weight: 400;
                    line-height: 22px;
                }

                .controller-account .plan-dialog .invoice-lines section span {
                    color: #999;
                }

                .controller-account .plan-dialog .invoice-lines section small {
                    color: #666;
                    font-size: 14px;
                    display: block;
                    line-height: 1;
                }

                .controller-account .plan-dialog .invoice-lines section abbr {
                    float: right;
                }

                    .controller-account .plan-dialog .invoice-lines section abbr.green {
                        color: #51a33d;
                    }

                .controller-account .plan-dialog .invoice-lines section img {
                    margin-top: 2px;
                    height: 18px;
                    float: left;
                    margin-right: 10px;
                }

                .controller-account .plan-dialog .invoice-lines section.total {
                    border-top: 2px solid #999;
                    margin-top: -1px;
                    padding-bottom: 0;
                }

                    .controller-account .plan-dialog .invoice-lines section.total h5,
                    .controller-account .plan-dialog .invoice-lines section.total abbr {
                        font-weight: 600;
                    }

            .controller-account .plan-dialog .blurb {
                margin: 25px 0;
                border-radius: 0;
                position: relative;
                padding-left: 82px;
                font-weight: 300;
            }

                .controller-account .plan-dialog .blurb:before {
                    font-family: FontAwesome;
                    content: "\f05a";
                    background: #ccc;
                    color: white;
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    padding: 15px 24px;
                    -webkit-box-sizing: border-box;
                    -ms-box-sizing: border-box;
                    box-sizing: border-box;
                }

            .controller-account .invoice-receipt {
                background: #FFF;
                border: 1px solid #f9f9f9;
                color: #666;
            }

            .controller-account .plan-upgrade-content .bold-line {
                font-size: 20px;
                font-weight: bold;
                text-align: center;
                padding: 6px 0 0;
            }

                .controller-account .plan-upgrade-content .bold-line em {
                    font-size: 11px;
                    font-weight: normal;
                    font-style: italic;
                }

                .controller-account .plan-upgrade-content .bold-line small {
                    font-size: 12px;
                    font-weight: normal;
                }

                .controller-account .plan-upgrade-content .bold-line strong {
                    font-size: 20px;
                }

            .controller-account .plan-upgrade-content .toggle-texting {
                width: 102px;
                display: block;
                margin: 10px auto 0;
            }

                .controller-account .plan-upgrade-content .toggle-texting a {
                    width: 32px;
                    text-align: center;
                }

            .controller-account .square-account .action-promo,
            .controller-account .square-account .details-box .flexible.optional {
                display: none;
            }

            .controller-account .billing-dialog .spinner,
            .controller-account .plan-dialog .spinner {
                height: 30px;
                width: 30px;
                float: left;
                margin: 10px 10px 0 0;
            }

        .plan-item {
            width: 210px;
            float: left;
            padding: 0px 5px;
            -moz-transition: -moz-transform 0.49s ease-out;
            -webkit-transition: -webkit-transform 0.49s ease-out;
        }

            .plan-item.moving {
                -moz-transform: scale(0.5) rotateZ(0deg);
                -webkit-transform: scale(0.5) rotateZ(0deg);
            }

            .plan-item .header {
                background: #DDD;
                border-bottom: none;
                font-size: 18px;
                text-align: center;
                margin-bottom: 8px;
            }

            .plan-item .price {
                font-size: 24px;
                font-weight: bold;
                color: #444;
                text-align: center;
                margin-bottom: 8px;
            }

                .plan-item .price span {
                    font-size: 11px;
                    font-style: italic;
                    font-weight: normal;
                }

            .plan-item .item {
                padding: 5px;
                background: #eee;
                margin: 0px 10px 5px;
                border-radius: 3px;
                font-size: 14px;
                line-height: 18px;
            }

                .plan-item .item ins {
                    background: url(../images/backgrounds/account-sprite.png) 18px 18px no-repeat;
                    width: 18px;
                    height: 18px;
                    float: left;
                    margin-right: 4px;
                }

                .plan-item .item.employees ins {
                    background-position: -81px -5px;
                }

            .plan-item .button-kit {
                margin: 10px;
            }

        .cancel-container,
        .activation-container,
        #cancel-holder,
        #password-holder {
            width: 430px;
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            margin: 0 auto;
            display: none;
        }

            .cancel-container button.accept-cancellation,
            .activation-container button.accept-cancellation,
            #cancel-holder button.accept-cancellation,
            #password-holder button.accept-cancellation {
                background-color: #bc4f2e;
            }

                .cancel-container button.accept-cancellation:hover,
                .activation-container button.accept-cancellation:hover,
                #cancel-holder button.accept-cancellation:hover,
                #password-holder button.accept-cancellation:hover {
                    background-color: #a0341a;
                }

            .cancel-container a.is-seasonal,
            .activation-container a.is-seasonal,
            #cancel-holder a.is-seasonal,
            #password-holder a.is-seasonal {
                background-color: #c59a27;
            }

            .cancel-container textarea,
            .activation-container textarea,
            #cancel-holder textarea,
            #password-holder textarea {
                margin: 10px 0;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 8px;
                width: 100%;
                font-family: inherit;
                color: inherit;
                resize: none;
            }

            .cancel-container div.cancellation-reasons,
            .activation-container div.cancellation-reasons,
            #cancel-holder div.cancellation-reasons,
            #password-holder div.cancellation-reasons {
                margin-top: -10px;
                margin-bottom: 20px;
            }

            .cancel-container p,
            .activation-container p,
            #cancel-holder p,
            #password-holder p {
                margin-bottom: 20px;
            }

            .cancel-container div.feedback,
            .activation-container div.feedback,
            #cancel-holder div.feedback,
            #password-holder div.feedback {
                margin-top: -10px;
                margin-bottom: 20px;
            }

            .cancel-container .dialog-body,
            .activation-container .dialog-body,
            #cancel-holder .dialog-body,
            #password-holder .dialog-body {
                padding-top: 10px;
                padding-bottom: 0;
            }

        div.special-offer .button-close {
            border-radius: 3px;
            -webkit-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box;
            border: 1px solid #DDD;
            height: 23px;
            padding: 0 6px;
            min-width: 23px;
            text-align: center;
            -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
            color: #999;
            line-height: 20px;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            position: absolute;
            top: 5px;
            right: 5px;
        }

        div.special-offer h1 {
            font-size: 48px;
            font-weight: 300;
            text-transform: uppercase;
            text-align: center;
            background-color: #E65C67;
            color: #fff;
            padding: 20px 0;
        }

            div.special-offer h1 img {
                margin: -5px 5px 0 0;
            }

        div.special-offer h3 {
            text-align: center;
            font-size: 24px;
            font-weight: 400;
            padding: 10px 80px 0px 80px;
            color: #444444;
        }

        div.special-offer div.special-offer-container {
            width: 350px;
            margin: 0 auto;
        }

        div.special-offer div.no-thanks-container {
            width: 300px;
            margin: 10px auto 50px auto;
        }

        div.special-offer button.no-thanks {
            background-color: #999;
        }

        #cancel-holder.dialog-kit {
            display: block;
            width: 500px;
        }

        #password-holder.dialog-kit {
            display: block;
            width: 440px;
        }

        @media screen and (max-width: 1269px) {
            .controller-account .action-box .action-promo {
                font-size: 20px;
            }
        }

        @media only screen and (max-width: 360px) {
            .controller-account header .livechat > a {
                width: 100px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .controller-account .account-summary .card-section {
                padding-left: 10px;
                padding-right: 10px;
            }
        }

        @media only screen and (max-width: 480px) {
            .controller-account header .menu {
                display: none;
            }

                .controller-account header .menu.right {
                    display: block;
                }

                    .controller-account header .menu.right .menu-icon {
                        display: none;
                    }

            .controller-account .hello-messages {
                display: none !important;
            }

            .controller-account #container {
                margin: 0;
            }

            .controller-account .account-summary .app-form .grid {
                display: block;
            }

                .controller-account .account-summary .app-form .grid .flexible {
                    display: block;
                    width: 100% !important;
                    padding-left: 0px !important;
                    padding-right: 0px !important;
                }

            .controller-account .account-summary .plan-selection .header.seamless > span {
                display: none;
            }

            .controller-account .account-summary .plan-slider .plan-info {
                padding: 0px;
            }

                .controller-account .account-summary .plan-slider .plan-info .name label {
                    display: none;
                }

                .controller-account .account-summary .plan-slider .plan-info .name h3 {
                    padding-top: 20px;
                    font-size: 3em;
                    text-align: center;
                }

                .controller-account .account-summary .plan-slider .plan-info .employees {
                    text-align: center;
                }

                    .controller-account .account-summary .plan-slider .plan-info .employees label {
                        display: none;
                    }

                    .controller-account .account-summary .plan-slider .plan-info .employees h3 {
                        font-size: 24px;
                        padding-bottom: 10px;
                        font-weight: 400;
                    }

                        .controller-account .account-summary .plan-slider .plan-info .employees h3:after {
                            font-size: 14px;
                            color: #999;
                            content: " EMPLOYEES";
                            font-weight: 300;
                        }

                .controller-account .account-summary .plan-slider .plan-info .price {
                    padding: 10px 0;
                    background: #f8f8f8;
                    border-top: 1px solid #eee;
                    margin: 0;
                    text-align: center;
                }

                    .controller-account .account-summary .plan-slider .plan-info .price h3 {
                        margin-left: 0 !important;
                        font-size: 2.5em;
                        font-weight: 400;
                    }

            .controller-account .account-summary .action-promo {
                position: relative;
                line-height: 1.2;
                padding: 20px 20px 70px;
            }

                .controller-account .account-summary .action-promo > a {
                    position: absolute;
                    bottom: 20px;
                }

            .controller-account .account-summary .account-promo {
                margin-top: 5px;
                line-height: 1.3;
                padding: 20px;
                white-space: normal;
                height: auto;
            }

                .controller-account .account-summary .account-promo:after {
                    top: 0;
                    left: 50%;
                    margin-left: -10px;
                    margin-top: -20px;
                    border-color: transparent transparent #d3ffd3 transparent;
                }

            .controller-account .account-summary .account-services {
                margin-top: 20px;
            }

            .controller-account .dialog-kit {
                position: absolute !important;
                margin: 0 !important;
                left: 0 !important;
                top: 50px !important;
                width: 100% !important;
            }

                .controller-account .dialog-kit.billing-dialog .plan-info .price h3 {
                    padding-left: 20px;
                }

                .controller-account .dialog-kit.billing-dialog .plan-info .is-bundle .styled-checkbox {
                    float: left;
                    margin-left: 0;
                    margin-right: 10px;
                }

                .controller-account .dialog-kit.billing-dialog .plan-info .is-bundle small {
                    display: block;
                    float: left;
                    margin-top: 5px;
                }

                .controller-account .dialog-kit.billing-dialog .info-credit .flexible {
                    float: left;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                }

                .controller-account .dialog-kit.billing-dialog .info-credit .field-credit-name {
                    width: 100% !important;
                    padding-right: 0;
                }

                .controller-account .dialog-kit.billing-dialog .info-credit .credit-card-field {
                    padding-left: 0;
                    width: 56% !important;
                }

                .controller-account .dialog-kit.billing-dialog .info-credit .field-credit-cvv,
                .controller-account .dialog-kit.billing-dialog .info-credit .field-credit-exp {
                    width: 22% !important;
                }

                    .controller-account .dialog-kit.billing-dialog .info-credit .field-credit-cvv label,
                    .controller-account .dialog-kit.billing-dialog .info-credit .field-credit-exp label {
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                .controller-account .dialog-kit.billing-dialog .billing-details .flexible {
                    float: left;
                    width: 50% !important;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                }

                .controller-account .dialog-kit.billing-dialog .billing-details .field-billing-state {
                    padding-left: 0;
                }

                .controller-account .dialog-kit.upgrade-account-dialog .plan-stack {
                    padding: 0;
                }

            .controller-account footer.card-section {
                margin-left: 0;
                margin-right: 0;
            }

                .controller-account footer.card-section .left-section,
                .controller-account footer.card-section .right-section {
                    float: none;
                    text-align: left;
                    display: block;
                    padding: 20px 10px;
                }

                .controller-account footer.card-section .left-section,
                .controller-account footer.card-section .need-help {
                    border-bottom: 1px solid #eee;
                }

                .controller-account footer.card-section .need-help {
                    float: none;
                    display: block;
                    text-align: center;
                    padding: 20px;
                }
        }

        .workchat > a {
            position: relative;
        }

            .workchat > a.open {
                background-color: #3d3d3d;
                color: #fff;
            }

            .workchat > a .unread {
                position: absolute;
                top: 18px;
                left: 32px;
                border: 6px solid #3d3d3d;
                border-radius: 6px;
            }

                .workchat > a .unread div {
                    position: absolute;
                    top: -4px;
                    left: -4px;
                    border: 4px solid #cc3333;
                    border-radius: 4px;
                }

        .workchat .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 99999;
        }

            .workchat .modal-backdrop .modal-dialog {
                border-radius: 4px;
                background-color: #fff;
                -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.66);
                box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.66);
                padding: 24px 30px;
                width: 440px;
                margin: 0 auto;
                position: relative;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                text-transform: none;
            }

                .workchat .modal-backdrop .modal-dialog:after {
                    content: "";
                    display: table;
                    clear: both;
                }

                .workchat .modal-backdrop .modal-dialog button.close {
                    float: right;
                    -webkit-transition: none;
                    transition: none;
                    height: auto;
                    line-height: 20px;
                    font-size: 20px;
                    color: #000;
                    font-weight: normal;
                    border-radius: 4px;
                    background-color: #fff;
                    border: 1px solid #ccc;
                    padding: 3px 6px 4px;
                }

                    .workchat .modal-backdrop .modal-dialog button.close i {
                        font-size: 20px;
                    }

                .workchat .modal-backdrop .modal-dialog h3 {
                    line-height: 24px;
                    font-size: 19px;
                    font-weight: bold;
                    color: #333;
                }

                .workchat .modal-backdrop .modal-dialog p {
                    padding: 15px 0;
                    font-size: 15px;
                    line-height: 1.4;
                    color: #4a4a4a;
                    border-top: 1px solid #ccc;
                    border-bottom: 1px solid #ccc;
                    margin: 15px 0 19px;
                }

                .workchat .modal-backdrop .modal-dialog button.confirm,
                .workchat .modal-backdrop .modal-dialog button.cancel {
                    -webkit-transition: none;
                    transition: none;
                    height: auto;
                    border-radius: 3px;
                    line-height: 19px;
                    font-size: 16px;
                    font-weight: 500;
                    color: #fff;
                    text-transform: uppercase;
                    float: right;
                    padding: 3px 14px;
                }

                .workchat .modal-backdrop .modal-dialog button.confirm {
                    background-color: #51a33d;
                }

                .workchat .modal-backdrop .modal-dialog button.cancel {
                    background-color: #bc4f2e;
                    margin-right: 23px;
                }

        .workchat .messages {
            position: absolute;
            top: 56px;
            width: 390px;
            background: #3d3d3d;
            border-top: 1px solid #333;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            z-index: 200;
            text-transform: none;
        }

            .workchat .messages .workchat-loading {
                padding: 312px 0 126px;
                text-align: center;
                font-size: 28px;
                font-weight: 300;
                color: #fff;
                background: url('../images/workchat-loading.svg') no-repeat 50% 90px;
            }

            .workchat .messages .splash {
                padding: 30px 20px 160px;
                background: #333 url('../images/backgrounds/workchat-splash.png') no-repeat 0 100%;
                text-align: center;
                color: #fff;
            }

                .workchat .messages .splash h3 {
                    position: relative;
                    background: #00a738;
                    border-radius: 28px;
                    font-size: 24px;
                    font-weight: 300;
                    padding: 20px;
                    margin-bottom: 10px;
                    z-index: 2;
                }

                    .workchat .messages .splash h3 .arrow {
                        position: absolute;
                        left: 50px;
                        bottom: -22px;
                        width: 28px;
                        height: 22px;
                        background-image: url('../images/backgrounds/workchat-splash-arrow1.png');
                    }

                .workchat .messages .splash p {
                    position: relative;
                    border: 3px solid #666;
                    padding: 20px;
                    border-radius: 28px;
                    font-size: 14px;
                    margin-bottom: 20px;
                }

                    .workchat .messages .splash p .arrow {
                        position: absolute;
                        right: 50px;
                        bottom: -22px;
                        width: 28px;
                        height: 22px;
                        background-image: url('../images/backgrounds/workchat-splash-arrow2.png');
                    }

                .workchat .messages .splash button {
                    background: #00a738;
                    line-height: 36px;
                    padding: 0 12px;
                    color: #fff;
                    text-transform: uppercase;
                    border-radius: 3px;
                }

            .workchat .messages .error-state {
                padding: 294px 20px 54px;
                background: #333 url('../images/backgrounds/workchat-maintenance.svg') no-repeat 50% 56px;
                text-align: center;
                color: #fff;
            }

                .workchat .messages .error-state h3 {
                    font-size: 28px;
                    line-height: 1.14;
                    font-weight: 300;
                    text-align: center;
                    color: #fff;
                    margin-bottom: 20px;
                }

                .workchat .messages .error-state p {
                    font-size: 16px;
                    line-height: 20px;
                    text-align: center;
                    color: #9b9b9b;
                }

                .workchat .messages .error-state button {
                    display: inline-block;
                    width: 76px;
                    margin-top: 20px;
                    padding: 0 10px;
                    font-size: 14px;
                    line-height: 32px;
                    text-align: center;
                    background-color: #51a33d;
                    color: #fff;
                    border-radius: 4px;
                    text-transform: uppercase;
                }

                    .workchat .messages .error-state button:hover {
                        background-color: #378823;
                    }

                    .workchat .messages .error-state button[disabled] {
                        background-color: #999;
                        cursor: not-allowed;
                    }

            .workchat .messages a,
            .workchat .messages button {
                width: auto;
                height: auto;
                line-height: 18px;
                padding: 0;
                float: none;
                -webkit-transition: none;
                transition: none;
                background-color: transparent;
            }

            .workchat .messages .error-message {
                position: absolute;
                top: 50px;
                left: 0;
                right: 0;
                padding: 20px;
                background: #d4364c;
                color: #fff;
            }

                .workchat .messages .error-message button {
                    float: right;
                    background-color: transparent;
                    color: #fff;
                }

            .workchat .messages .head,
            .workchat .messages .sub-head {
                height: 50px;
                padding: 0 20px;
                text-align: center;
            }

                .workchat .messages .head .title-tip,
                .workchat .messages .sub-head .title-tip {
                    display: none;
                    background-color: #000;
                    border-radius: 4px;
                    padding: 0 15px;
                    line-height: 24px;
                    position: relative;
                    top: -4px;
                    z-index: 10;
                    max-width: 310px;
                    overflow-wrap: break-word;
                    word-wrap: break-word;
                }

                    .workchat .messages .head .title-tip:after,
                    .workchat .messages .sub-head .title-tip:after {
                        position: absolute;
                        content: "";
                        width: 0;
                        height: 0;
                        left: 0;
                        right: 0;
                        top: -7px;
                        margin: 0 auto;
                        border-right: 7px solid transparent;
                        border-left: 7px solid transparent;
                        border-bottom: 7px solid #000;
                    }

                .workchat .messages .head.long-title:hover .title-tip,
                .workchat .messages .sub-head.long-title:hover .title-tip {
                    display: inline-block;
                }

                .workchat .messages .head h2,
                .workchat .messages .sub-head h2 {
                    line-height: 50px;
                    font-size: 16px;
                    font-weight: normal;
                    margin: 0;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                    width: 211px;
                }

                .workchat .messages .head button,
                .workchat .messages .sub-head button {
                    line-height: 11px;
                    font-size: 11px;
                    font-weight: 600;
                    padding: 10px;
                    margin: 11px 0 8px 8px;
                    border: 0;
                    border-radius: 3px;
                    background: #333;
                    color: #999;
                    text-transform: uppercase;
                    float: right;
                }

                    .workchat .messages .head button:disabled,
                    .workchat .messages .sub-head button:disabled {
                        cursor: not-allowed;
                    }

                    .workchat .messages .head button.green,
                    .workchat .messages .sub-head button.green {
                        color: #fff;
                        background-color: #51a33d;
                        text-transform: none;
                    }

                        .workchat .messages .head button.green[disabled],
                        .workchat .messages .sub-head button.green[disabled] {
                            color: #c2c2c2;
                            background-color: #666;
                        }

                    .workchat .messages .head button.left,
                    .workchat .messages .sub-head button.left {
                        float: left;
                        margin: 11px 8px 8px 0;
                    }

                        .workchat .messages .head button.left i.fa-chevron-left,
                        .workchat .messages .sub-head button.left i.fa-chevron-left {
                            margin-right: 10px;
                        }

                    .workchat .messages .head button.big,
                    .workchat .messages .sub-head button.big {
                        font-size: 14px;
                        line-height: 32px;
                        padding: 0 13px;
                        text-transform: uppercase;
                    }

                    .workchat .messages .head button.info,
                    .workchat .messages .sub-head button.info {
                        display: block;
                        width: 20px;
                        height: 20px;
                        line-height: 16px;
                        text-align: center;
                        overflow: visible;
                        color: #cacaca;
                        border: 2px solid #cacaca;
                        border-radius: 10px;
                        padding: 0;
                        font-size: 14px;
                        text-transform: lowercase;
                        margin: 16px 0 8px 8px;
                    }

                    .workchat .messages .head button:hover,
                    .workchat .messages .sub-head button:hover,
                    .workchat .messages .head button.open,
                    .workchat .messages .sub-head button.open {
                        color: #fff;
                    }

                    .workchat .messages .head button i,
                    .workchat .messages .sub-head button i {
                        font-size: 11px;
                    }

            .workchat .messages .sub-head {
                background: #383838;
            }

                .workchat .messages .sub-head h3 {
                    line-height: 50px;
                    font-size: 14px;
                    font-weight: normal;
                    margin: 0;
                }

            .workchat .messages .channel-detail {
                padding: 20px;
                height: 468px;
                background-color: #333;
            }

                .workchat .messages .channel-detail label {
                    font-size: 12px;
                    text-transform: uppercase;
                    font-weight: 600;
                    color: #9b9b9b;
                }

                .workchat .messages .channel-detail input {
                    background: transparent;
                    color: #ccc;
                    font-size: 20px;
                    padding: 9px 3px;
                    line-height: 25px;
                    border: 0;
                    outline: 0;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    width: 100%;
                    display: block;
                }

                    .workchat .messages .channel-detail input.changed,
                    .workchat .messages .channel-detail input:focus {
                        border-bottom: 1px dashed #979797;
                    }

                .workchat .messages .channel-detail .buttons {
                    display: none;
                    text-align: right;
                    margin-top: 20px;
                }

                    .workchat .messages .channel-detail .buttons.show {
                        display: block;
                    }

                    .workchat .messages .channel-detail .buttons .cancel {
                        color: #999;
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 35px;
                        background: transparent;
                        padding: 0 4px;
                    }

                    .workchat .messages .channel-detail .buttons .save {
                        color: #fff;
                        background-color: #51a33d;
                        border-radius: 4px;
                        padding: 6px 29px;
                        line-height: 23px;
                        font-size: 18px;
                        font-weight: 600;
                        margin-left: 20px;
                    }

                        .workchat .messages .channel-detail .buttons .save[disabled] {
                            color: #c2c2c2;
                            background-color: #666;
                            cursor: not-allowed;
                        }

                .workchat .messages .channel-detail hr {
                    border-top: 2px solid #4a4a4a;
                    margin: 12px -20px 14px;
                }

                .workchat .messages .channel-detail .participants {
                    max-height: 182px;
                    overflow-y: auto;
                    overflow-x: hidden;
                    scrollbar-track-color: #333;
                    scrollbar-darkshadow-color: #333;
                    scrollbar-3dlight-color: #333;
                    scrollbar-face-color: #d8d8d8;
                    scrollbar-highlight-color: #d8d8d8;
                    scrollbar-shadow-color: #d8d8d8;
                    scrollbar-arrow-color: #d8d8d8;
                }

                    .workchat .messages .channel-detail .participants::-webkit-scrollbar-thumb {
                        background-color: #d8d8d8;
                    }

                    .workchat .messages .channel-detail .participants::-webkit-scrollbar-track {
                        background: #333;
                        border: 0;
                    }

                    .workchat .messages .channel-detail .participants div {
                        background-color: #444;
                        border-top: 1px solid #222;
                        height: 60px;
                        line-height: 60px;
                        font-size: 16px;
                        color: #fff;
                    }

                        .workchat .messages .channel-detail .participants div:first-child {
                            border-top: 0;
                        }

                        .workchat .messages .channel-detail .participants div img {
                            width: 40px;
                            height: 40px;
                            border-radius: 20px;
                            margin: 10px;
                        }

                .workchat .messages .channel-detail.account .participants {
                    max-height: 468px;
                }

                .workchat .messages .channel-detail.account hr {
                    display: none;
                }

                .workchat .messages .channel-detail button.add {
                    line-height: 32px;
                    font-size: 14px;
                    color: #fff;
                    text-transform: uppercase;
                    padding: 0 10px;
                    background-color: #51a33d;
                }

                    .workchat .messages .channel-detail button.add:hover {
                        background: #378823;
                    }

                    .workchat .messages .channel-detail button.add span {
                        font-size: 16px;
                        margin-right: 8px;
                    }

                .workchat .messages .channel-detail button.leave {
                    width: 100%;
                    font-size: 18px;
                    font-weight: 600;
                    line-height: 23px;
                    text-align: left;
                    padding: 12px 20px;
                    color: #999;
                    border-radius: 4px;
                    background-color: #222;
                    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, left bottom, from(#222), to(#222));
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0)), linear-gradient(#222, #222);
                    border: 1px solid #000;
                }

            .workchat .messages .conversation-name {
                background-color: #333;
                padding: 10px;
                border-bottom: 1px solid #222;
            }

                .workchat .messages .conversation-name .name-container {
                    background-color: #222;
                    border-radius: 4px;
                    padding: 14px 10px 13px 68px;
                    position: relative;
                }

                    .workchat .messages .conversation-name .name-container .conv-icon {
                        width: 41px;
                        height: 41px;
                        border-radius: 20px;
                        position: absolute;
                        top: 15px;
                        left: 15px;
                        background: no-repeat 50% 50% url('/images/icons/coworkers.svg') #d8d8d8;
                    }

                    .workchat .messages .conversation-name .name-container input {
                        border: 0;
                        outline: 0;
                        background: transparent;
                        color: #fff;
                        font-size: 14px;
                        line-height: 41px;
                        height: 41px;
                        display: block;
                        width: 100%;
                        padding-left: 10px;
                    }

                        .workchat .messages .conversation-name .name-container input::-webkit-input-placeholder {
                            color: #666;
                        }

                        .workchat .messages .conversation-name .name-container input:-ms-input-placeholder {
                            color: #666;
                        }

                        .workchat .messages .conversation-name .name-container input::placeholder {
                            color: #666;
                        }

            .workchat .messages .participant-input {
                position: relative;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                width: 100%;
                background-color: #333;
                padding: 10px;
                border-bottom: 1px solid #222;
                outline: none;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                -ms-flex-direction: row;
                flex-direction: row;
            }

                .workchat .messages .participant-input .list {
                    -webkit-box-flex: 1;
                    -ms-flex: 1 0;
                    flex: 1 0;
                    position: relative;
                    border-bottom: 1px solid #222;
                    background-color: #222;
                    border-radius: 4px;
                    cursor: text;
                    padding: 8px 34px 10px 39px;
                    max-height: 87px;
                    overflow-y: auto;
                    scrollbar-track-color: #222;
                    scrollbar-darkshadow-color: #222;
                    scrollbar-3dlight-color: #222;
                    scrollbar-face-color: #999;
                    scrollbar-highlight-color: #999;
                    scrollbar-shadow-color: #999;
                    scrollbar-arrow-color: #999;
                }

                    .workchat .messages .participant-input .list::-webkit-scrollbar-thumb {
                        background-color: #999;
                    }

                    .workchat .messages .participant-input .list::-webkit-scrollbar-track {
                        background: #222;
                        border: 0;
                    }

                    .workchat .messages .participant-input .list var {
                        position: absolute;
                        top: 10px;
                        left: 10px;
                        font-size: 14px;
                        font-style: normal;
                        color: #666;
                    }

                    .workchat .messages .participant-input .list a {
                        position: absolute;
                        right: 7px;
                        margin-left: 14px;
                        background-color: #222;
                        color: #fff;
                        font-weight: normal;
                    }

                        .workchat .messages .participant-input .list a i {
                            margin-left: 10px;
                        }

                    .workchat .messages .participant-input .list span {
                        font-size: 14px;
                        line-height: 1.71em;
                        color: #fff;
                    }

                        .workchat .messages .participant-input .list span.selected {
                            background-color: #51a33d;
                            border-radius: 11px;
                            padding: 0 8px;
                        }

                    .workchat .messages .participant-input .list input {
                        width: 0.5em;
                        height: 20px;
                        line-height: 20px;
                        font-size: 14px;
                        font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
                        border: 0;
                        padding: 0;
                        background: transparent;
                        color: #fff;
                        outline: none;
                    }

                        .workchat .messages .participant-input .list input:focus {
                            width: auto;
                        }

                .workchat .messages .participant-input .filter {
                    margin: 8px 12px 8px 17px;
                    background: transparent;
                }

                    .workchat .messages .participant-input .filter:hover {
                        background: transparent;
                    }

                    .workchat .messages .participant-input .filter img {
                        width: 25px;
                        height: 24px;
                    }

                .workchat .messages .participant-input .filter-count {
                    display: block;
                    height: 22px;
                    line-height: 22px;
                    border-radius: 11px;
                    background-color: #4a4a4a;
                    font-size: 16px;
                    font-weight: 600;
                    color: #ccc;
                    margin: 8px 0;
                    padding: 0 7px;
                }

                .workchat .messages .participant-input .workchat-filters {
                    position: absolute;
                    top: 60px;
                    right: 12px;
                    background-color: #222;
                    border-radius: 4px;
                    min-width: 250px;
                    max-height: 400px;
                    overflow-y: auto;
                    scrollbar-track-color: #222;
                    scrollbar-darkshadow-color: #222;
                    scrollbar-3dlight-color: #222;
                    scrollbar-face-color: #999;
                    scrollbar-highlight-color: #999;
                    scrollbar-shadow-color: #999;
                    scrollbar-arrow-color: #999;
                }

                    .workchat .messages .participant-input .workchat-filters::-webkit-scrollbar-thumb {
                        background-color: #999;
                    }

                    .workchat .messages .participant-input .workchat-filters::-webkit-scrollbar-track {
                        background: #222;
                        border: 0;
                    }

                    .workchat .messages .participant-input .workchat-filters .arrow {
                        position: absolute;
                        top: -14px;
                        right: 10px;
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 0 10px 14px 10px;
                        border-color: transparent transparent #222 transparent;
                    }

                    .workchat .messages .participant-input .workchat-filters h3 {
                        color: #fff;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 50px;
                        padding: 0 20px;
                    }

                        .workchat .messages .participant-input .workchat-filters h3 button {
                            float: right;
                            color: #d3d3d3;
                            font-size: 15px;
                            line-height: inherit;
                            background: transparent;
                        }

                    .workchat .messages .participant-input .workchat-filters h4 {
                        font-size: 16px;
                        font-weight: 400;
                        text-transform: uppercase;
                        padding-left: 55px;
                        margin-bottom: -8px;
                        line-height: 54px;
                        border-top: 1px solid #333;
                    }

                        .workchat .messages .participant-input .workchat-filters h4.positions {
                            background: 20px 50% no-repeat url('/images/icons/positions.svg');
                            background-size: 24px 18px;
                        }

                        .workchat .messages .participant-input .workchat-filters h4.locations {
                            background: 24px 50% no-repeat url('/images/icons/locations.svg');
                            background-size: 17px 17px;
                        }

                    .workchat .messages .participant-input .workchat-filters a + h4 {
                        margin-top: 8px;
                    }

                    .workchat .messages .participant-input .workchat-filters > a {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        text-align: left;
                        background-color: transparent;
                        font-size: 16px;
                        font-weight: 400;
                        color: #d3d3d3;
                        line-height: 37px;
                    }

                        .workchat .messages .participant-input .workchat-filters > a:last-child {
                            margin-bottom: 8px;
                        }

                        .workchat .messages .participant-input .workchat-filters > a span {
                            display: block;
                            margin: 9px 9px 0 21px;
                            width: 14px;
                            height: 14px;
                            border-radius: 4px;
                            border: 2px solid #fff;
                        }

                        .workchat .messages .participant-input .workchat-filters > a.selected span {
                            width: 0;
                            height: 0;
                            border-width: 9px;
                        }

                .workchat .messages .participant-input.truncated .list {
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                    .workchat .messages .participant-input.truncated .list a {
                        position: relative;
                        float: right;
                        right: -28px;
                    }

            .workchat .messages .participant-list {
                height: 317px;
                background: #333;
                overflow-y: auto;
                scrollbar-track-color: #333;
                scrollbar-darkshadow-color: #333;
                scrollbar-3dlight-color: #333;
                scrollbar-face-color: #999;
                scrollbar-highlight-color: #999;
                scrollbar-shadow-color: #999;
                scrollbar-arrow-color: #999;
            }

                .workchat .messages .participant-list::-webkit-scrollbar-thumb {
                    background-color: #999;
                }

                .workchat .messages .participant-list::-webkit-scrollbar-track {
                    background: #333;
                    border: 0;
                }

                .workchat .messages .participant-list.expanded {
                    height: 448px;
                }

                .workchat .messages .participant-list .no-results {
                    background: 50% 30px no-repeat url('/images/icons/missing-employee.svg');
                    padding: 166px 60px 0;
                    text-align: center;
                    line-height: 1.25;
                    font-size: 16px;
                    color: #999;
                }

                .workchat .messages .participant-list .letter-separator {
                    height: 34px;
                    line-height: 34px;
                    padding: 0 15px;
                    background-color: #333;
                    border-bottom: 1px solid #222;
                    font-size: 14px;
                    color: #999;
                    text-transform: uppercase;
                }

                .workchat .messages .participant-list a {
                    display: block;
                    height: 60px;
                    background-color: #444;
                    border-bottom: 1px solid #222;
                    line-height: 60px;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    font-size: 16px;
                    font-weight: normal;
                    color: #fff;
                    padding: 0 15px;
                    text-align: left;
                }

                    .workchat .messages .participant-list a img {
                        width: 40px;
                        height: 40px;
                        border-radius: 20px;
                        margin-right: 10px;
                    }

            .workchat .messages .conversation-list {
                height: 430px;
                background: #444;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                overflow-y: auto;
                scrollbar-track-color: #333;
                scrollbar-darkshadow-color: #333;
                scrollbar-3dlight-color: #333;
                scrollbar-face-color: #999;
                scrollbar-highlight-color: #999;
                scrollbar-shadow-color: #999;
                scrollbar-arrow-color: #999;
            }

                .workchat .messages .conversation-list::-webkit-scrollbar-thumb {
                    background-color: #999;
                }

                .workchat .messages .conversation-list::-webkit-scrollbar-track {
                    background: #333;
                    border: 0;
                }

                .workchat .messages .conversation-list > div {
                    position: relative;
                    height: 80px;
                    border-top: 1px solid #333;
                }

                    .workchat .messages .conversation-list > div a > div {
                        margin-left: 75px;
                        padding-top: 19px;
                        text-align: left;
                    }

                        .workchat .messages .conversation-list > div a > div .time {
                            float: right;
                            width: 95px;
                            height: 40px;
                            position: relative;
                            padding-top: 3px;
                        }

                            .workchat .messages .conversation-list > div a > div .time span {
                                display: inline-block;
                                width: 70px;
                                height: 15px;
                                line-height: 15px;
                                font-size: 12px;
                                font-weight: normal;
                                text-align: right;
                                white-space: nowrap;
                                color: #9b9b9b;
                                margin-right: 10px;
                            }

                            .workchat .messages .conversation-list > div a > div .time i {
                                color: #9b9b9b;
                                font-size: 24px;
                                line-height: 24px;
                                position: absolute;
                                right: 5px;
                                top: 8px;
                            }

                        .workchat .messages .conversation-list > div a > div h3 {
                            height: 20px;
                            line-height: 20px;
                            font-size: 14px;
                            font-weight: 400;
                            color: #fff;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            margin-bottom: 2px;
                        }

                        .workchat .messages .conversation-list > div a > div > span {
                            display: block;
                            height: 20px;
                            line-height: 20px;
                            font-size: 14px;
                            font-weight: normal;
                            color: #9b9b9b;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                    .workchat .messages .conversation-list > div .avatar {
                        float: left;
                        margin: 20px 0 0 15px;
                        padding: 0;
                    }

                        .workchat .messages .conversation-list > div .avatar img,
                        .workchat .messages .conversation-list > div .avatar div {
                            width: 40px;
                            height: 40px;
                            border-radius: 20px;
                        }

                        .workchat .messages .conversation-list > div .avatar .initials {
                            background-color: #ddd;
                            font-size: 16px;
                            line-height: 38px;
                            text-align: center;
                            color: #9b9b9b;
                        }

                        .workchat .messages .conversation-list > div .avatar .wiw {
                            background-image: url('/images/icons/wheniwork-green.svg');
                            background-size: contain;
                        }

                    .workchat .messages .conversation-list > div .avatars {
                        float: left;
                        position: relative;
                        margin: 15px 0 0 15px;
                    }

                        .workchat .messages .conversation-list > div .avatars .avatar div,
                        .workchat .messages .conversation-list > div .avatars .avatar img {
                            position: absolute;
                            top: -2px;
                            left: -2px;
                            width: 30px;
                            height: 30px;
                            border: 2px solid #444;
                            line-height: 28px;
                            margin: 0;
                        }

                        .workchat .messages .conversation-list > div .avatars .avatar:last-child div,
                        .workchat .messages .conversation-list > div .avatars .avatar:last-child img {
                            top: 13px;
                            left: 18px;
                        }

                    .workchat .messages .conversation-list > div a.unread h3 {
                        font-weight: 600;
                    }

                    .workchat .messages .conversation-list > div a.unread > .avatar::after {
                        content: '';
                        position: absolute;
                        top: 17px;
                        left: 41px;
                        width: 10px;
                        height: 10px;
                        border: 2px solid #444;
                        border-radius: 8px;
                        background-color: #cd2e2c;
                    }

                    .workchat .messages .conversation-list > div a.unread .avatars::after {
                        content: '';
                        position: absolute;
                        top: 8px;
                        left: 38px;
                        width: 10px;
                        height: 10px;
                        border: 2px solid #444;
                        border-radius: 8px;
                        background-color: #cd2e2c;
                    }

            .workchat .messages .message-participants {
                height: 38px;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                border-bottom: 1px solid #222;
                background-color: #333;
                padding: 10px 20px;
                font-size: 14px;
                font-weight: 400;
                position: absolute;
                top: 51px;
                z-index: -1;
                left: 0;
                right: 0;
            }

                .workchat .messages .message-participants.open {
                    cursor: pointer;
                    height: auto;
                    z-index: 1;
                }

                .workchat .messages .message-participants.closed {
                    cursor: pointer;
                }

                .workchat .messages .message-participants .left {
                    float: left;
                    color: #9b9b9b;
                    margin-right: 8px;
                    vertical-align: top;
                }

                .workchat .messages .message-participants .right {
                    float: right;
                    color: #fff;
                    margin-left: 8px;
                    vertical-align: top;
                }

                    .workchat .messages .message-participants .right span {
                        margin-right: 8px;
                    }

                .workchat .messages .message-participants .list {
                    margin-left: 26px;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    white-space: nowrap;
                    color: #e8e8e8;
                }

                .workchat .messages .message-participants.open .list {
                    white-space: normal;
                    max-height: 72px;
                    overflow-y: auto;
                    scrollbar-track-color: #333;
                    scrollbar-darkshadow-color: #333;
                    scrollbar-3dlight-color: #333;
                    scrollbar-face-color: #999;
                    scrollbar-highlight-color: #999;
                    scrollbar-shadow-color: #999;
                    scrollbar-arrow-color: #999;
                }

                    .workchat .messages .message-participants.open .list::-webkit-scrollbar-thumb {
                        background-color: #999;
                    }

                    .workchat .messages .message-participants.open .list::-webkit-scrollbar-track {
                        background: #333;
                        border: 0;
                    }

            .workchat .messages .message-log {
                background: #333;
                padding: 0 12px 0 20px;
                height: 370px;
                overflow-y: auto;
                scrollbar-track-color: #333;
                scrollbar-darkshadow-color: #333;
                scrollbar-3dlight-color: #333;
                scrollbar-face-color: #999;
                scrollbar-highlight-color: #999;
                scrollbar-shadow-color: #999;
                scrollbar-arrow-color: #999;
            }

                .workchat .messages .message-log.down {
                    margin-top: 38px;
                }

                .workchat .messages .message-log:first-child {
                    margin-top: 0;
                }

                .workchat .messages .message-log:last-child {
                    margin-bottom: 0;
                }

                .workchat .messages .message-log::-webkit-scrollbar-thumb {
                    background-color: #999;
                }

                .workchat .messages .message-log::-webkit-scrollbar-track {
                    background: #333;
                    border: 0;
                }

                .workchat .messages .message-log .more {
                    display: block;
                    padding: 10px;
                    margin: 0 auto;
                    text-transform: uppercase;
                }

                .workchat .messages .message-log .day-line {
                    position: relative;
                    margin-bottom: 3px;
                    text-align: center;
                    clear: both;
                }

                    .workchat .messages .message-log .day-line hr {
                        border-bottom: 1px solid #444;
                        padding-top: 16px;
                    }

                    .workchat .messages .message-log .day-line span {
                        position: relative;
                        top: -10px;
                        padding: 0 10px;
                        color: #999;
                        background: #333;
                        font-size: 14px;
                        text-transform: uppercase;
                    }

                .workchat .messages .message-log .line,
                .workchat .messages .message-log .self-line {
                    clear: both;
                    margin: 6px 0;
                    position: relative;
                }

                    .workchat .messages .message-log .line:first-child,
                    .workchat .messages .message-log .self-line:first-child {
                        padding-top: 0;
                    }

                    .workchat .messages .message-log .line > img,
                    .workchat .messages .message-log .self-line > img,
                    .workchat .messages .message-log .line .wiw,
                    .workchat .messages .message-log .self-line .wiw {
                        width: 24px;
                        height: 24px;
                        border-radius: 12px;
                    }

                    .workchat .messages .message-log .line .wiw,
                    .workchat .messages .message-log .self-line .wiw {
                        background-image: url('/images/icons/wheniwork-green.svg');
                        background-size: contain;
                    }

                    .workchat .messages .message-log .line .box,
                    .workchat .messages .message-log .self-line .box {
                        position: relative;
                        background: #444;
                        border-radius: 4px;
                        padding: 10px;
                    }

                        .workchat .messages .message-log .line .box .arrow,
                        .workchat .messages .message-log .self-line .box .arrow {
                            position: absolute;
                            top: 7px;
                            border-top: 5px solid transparent;
                            border-bottom: 5px solid transparent;
                        }

                        .workchat .messages .message-log .line .box img,
                        .workchat .messages .message-log .self-line .box img {
                            width: 248px;
                        }

                        .workchat .messages .message-log .line .box p,
                        .workchat .messages .message-log .self-line .box p {
                            color: #fff;
                            white-space: pre-line;
                            word-wrap: break-word;
                            line-height: 18px;
                            font-size: 14px;
                        }

                            .workchat .messages .message-log .line .box p a,
                            .workchat .messages .message-log .self-line .box p a {
                                background: none;
                                color: #51a33d;
                                text-decoration: underline;
                            }

                        .workchat .messages .message-log .line .box .byline,
                        .workchat .messages .message-log .self-line .box .byline {
                            line-height: 15px;
                            font-size: 12px;
                            font-weight: 400;
                            color: #999;
                            margin-bottom: 3px;
                        }

                    .workchat .messages .message-log .line .status,
                    .workchat .messages .message-log .self-line .status {
                        display: none;
                        color: #999;
                        font-size: 11px;
                        line-height: 24px;
                    }

                    .workchat .messages .message-log .line:last-child .status,
                    .workchat .messages .message-log .self-line:last-child .status {
                        display: block;
                    }

                .workchat .messages .message-log .line {
                    margin-right: 35px;
                    float: left;
                }

                    .workchat .messages .message-log .line > img,
                    .workchat .messages .message-log .line .wiw {
                        float: left;
                    }

                    .workchat .messages .message-log .line .box {
                        margin-left: 35px;
                    }

                        .workchat .messages .message-log .line .box .arrow {
                            left: -5px;
                            border-right: 5px solid #444;
                        }

                    .workchat .messages .message-log .line .status {
                        margin-left: 45px;
                    }

                .workchat .messages .message-log .self-line {
                    margin-left: 35px;
                    float: right;
                }

                    .workchat .messages .message-log .self-line > img,
                    .workchat .messages .message-log .self-line .wiw {
                        float: right;
                    }

                    .workchat .messages .message-log .self-line .box {
                        margin-right: 35px;
                        background-color: #6e6e6e;
                    }

                        .workchat .messages .message-log .self-line .box .arrow {
                            right: -5px;
                            border-left: 5px solid #444;
                        }

                    .workchat .messages .message-log .self-line .status {
                        margin-left: 10px;
                    }

                .workchat .messages .message-log .pending-line {
                    opacity: 0.5;
                }

                .workchat .messages .message-log .failed .box {
                    margin-left: 35px;
                }

                    .workchat .messages .message-log .failed .box img {
                        width: 213px;
                    }

                .workchat .messages .message-log .failed .fail-icon {
                    background: no-repeat 50% 50% url('/images/icons/message-failed.png');
                    width: 35px;
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    left: 0;
                }

                .workchat .messages .message-log .failed .byline span {
                    color: #dd7b5e;
                }

                .workchat .messages .message-log.individual .self-line > img,
                .workchat .messages .message-log.individual .line > img {
                    display: none;
                }

                .workchat .messages .message-log.individual .self-line .box,
                .workchat .messages .message-log.individual .line .box {
                    margin-right: 0;
                    margin-left: 0;
                }

                .workchat .messages .message-log .workchat-loading {
                    padding: 250px 0 0;
                }

            .workchat .messages .welcome-splash .image {
                width: 300px;
                height: 180px;
                margin: 30px auto 20px;
            }

                .workchat .messages .welcome-splash .image.group {
                    margin-top: 81px;
                    background-image: url('/images/workchat-group-welcome.svg');
                }

                .workchat .messages .welcome-splash .image.individual {
                    background-image: url('/images/workchat-11-welcome.svg');
                }

            .workchat .messages .welcome-splash h4 {
                font-size: 20px;
                line-height: 1.4em;
                color: #fff;
                text-align: center;
                font-weight: normal;
                margin: 0 20px 30px;
                overflow: hidden;
            }

            .workchat .messages .actions {
                padding: 10px 10px 0;
            }

                .workchat .messages .actions .img-preview {
                    position: relative;
                    float: left;
                    width: 40px;
                    height: 40px;
                    border-radius: 4px;
                    background-size: cover;
                }

                    .workchat .messages .actions .img-preview button {
                        position: absolute;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        width: 100%;
                        border-radius: 3px;
                        background-color: rgba(0, 0, 0, 0.25);
                    }

                        .workchat .messages .actions .img-preview button i {
                            font-size: 32px;
                            color: rgba(255, 255, 255, 0.5);
                        }

                        .workchat .messages .actions .img-preview button:hover {
                            background-color: rgba(0, 0, 0, 0.75);
                        }

                            .workchat .messages .actions .img-preview button:hover i {
                                color: #fff;
                            }

                .workchat .messages .actions textarea {
                    background-color: #222;
                    border: 0;
                    border-radius: 4px;
                    line-height: 18px;
                    padding: 0 20px;
                    width: 100%;
                    height: 40px;
                    max-height: 90px;
                    vertical-align: middle;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    color: #fff;
                    resize: none;
                    overflow: auto;
                    outline: none;
                    font-family: inherit;
                    font-size: inherit;
                    scrollbar-track-color: #222;
                    scrollbar-darkshadow-color: #222;
                    scrollbar-3dlight-color: #222;
                    scrollbar-face-color: #999;
                    scrollbar-highlight-color: #999;
                    scrollbar-shadow-color: #999;
                    scrollbar-arrow-color: #999;
                }

                    .workchat .messages .actions textarea::-webkit-scrollbar-track {
                        background: transparent;
                        border: 0;
                        -webkit-box-shadow: none;
                        box-shadow: none;
                    }

                    .workchat .messages .actions textarea::-webkit-scrollbar-thumb {
                        background-color: #999;
                    }

                    .workchat .messages .actions textarea::-webkit-input-placeholder {
                        font-style: italic;
                    }

                    .workchat .messages .actions textarea:-ms-input-placeholder {
                        font-style: italic;
                    }

                    .workchat .messages .actions textarea::placeholder {
                        font-style: italic;
                    }

                    .workchat .messages .actions textarea.image {
                        width: 320px;
                        margin-left: 10px;
                    }

                .workchat .messages .actions button,
                .workchat .messages .actions label {
                    font-size: 15px;
                    text-transform: uppercase;
                    margin: 0;
                    border: 0;
                }

                    .workchat .messages .actions button.attach,
                    .workchat .messages .actions label.attach {
                        height: 50px;
                        line-height: 50px;
                        color: #999;
                        background: none;
                        text-align: left;
                        padding: 10px;
                    }

                        .workchat .messages .actions button.attach:hover,
                        .workchat .messages .actions label.attach:hover {
                            color: #fff;
                        }

                        .workchat .messages .actions button.attach i,
                        .workchat .messages .actions label.attach i {
                            margin-right: 10px;
                        }

                        .workchat .messages .actions button.attach input,
                        .workchat .messages .actions label.attach input {
                            position: fixed;
                            top: -2000px;
                        }

                    .workchat .messages .actions button.send,
                    .workchat .messages .actions label.send {
                        float: right;
                        height: auto;
                        line-height: 10px;
                        padding: 10px;
                        border-radius: 4px;
                        margin: 10px 0;
                        color: #fff;
                        background: #51a33d;
                    }

                        .workchat .messages .actions button.send:hover,
                        .workchat .messages .actions label.send:hover {
                            background: #378823;
                        }

                        .workchat .messages .actions button.send.disabled,
                        .workchat .messages .actions label.send.disabled {
                            background: #666;
                            color: #c2c2c2;
                        }

        html.elevio-open body header {
            /* only hide top-level .nav-name instances */
            /* only tweak margin on top-level .nav-icon instances */
            /* fix sub-menu width */
            /* reveal tooltips */
        }

            html.elevio-open body header .menu > li > a > .nav-name {
                display: none;
            }

            html.elevio-open body header .menu > li > a > i.nav-icon {
                margin-right: 0;
            }

            html.elevio-open body header .menu .has-menu ul {
                min-width: 160px;
            }

            html.elevio-open body header .menu > li.has-menu > a:before {
                margin-left: 12px;
            }

            html.elevio-open body header .menu > li.has-tooltip:before,
            html.elevio-open body header .menu > li.has-tooltip:after {
                display: inline !important;
            }

            html.elevio-open body header .menu .menu-title-attendance ul {
                min-width: 190px;
            }

            html.elevio-open body header .avatar a span {
                display: none;
            }

            html.elevio-open body #container,
            html.elevio-open body header .header-block,
            html.elevio-open body footer,
            html.elevio-open body .nudge {
                width: auto !important;
                margin-left: 20px;
                margin-right: 20px;
            }

        @media (max-width: 1330px) {
            html.elevio-open body header .menu > li.invite-employee a {
                /* reveal tooltip */
                overflow: visible;
            }

                html.elevio-open body header .menu > li.invite-employee a span {
                    display: none;
                }

                html.elevio-open body header .menu > li.invite-employee a fa {
                    display: block;
                }
        }

        html.elevio-open body .dialog-sidebar-adjustment {
            margin-left: -400px;
        }
        /**
 * Allow sidebar to play nice with modal positioning, the adjustment is in the .elevio-open block
 * above, but the transition rules need to apply everywhere
 */
        .dialog-sidebar-adjustment {
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            -webkit-transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
            transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
        }
        /**
 * Default behavior is to set bottom: 0 at this veritical breakpoint,
 * looks bad on our site, overridding that behavior
 */
        @media screen and (max-height: 450px) {
            #elevio-base-menu {
                bottom: inherit !important;
            }
        }
        /**
 * Elev.io trigger icon tweaks
 */
        .elevio-qmark {
            color: #51a33d;
            position: absolute;
            margin-top: 6px;
        }

        .elevioTooltip > div {
            top: 1em !important;
            left: 0.4em !important;
        }

            .elevioTooltip > div button {
                background-color: #51a33d !important;
            }
        /**
 * Make the 'user menu' cover the elevio widget
 * #elevio-base-menu has a z-index of 15000000
 */
        header .menu > li ul.user-menu {
            z-index: 15000001;
        }

        .tasks-modal .modal-dialog .modal-header {
            padding: 24px 30px 17px;
        }

            .tasks-modal .modal-dialog .modal-header .modal-title {
                overflow-wrap: break-word;
                word-wrap: break-word;
            }

        .tasks-modal .modal-dialog .modal-body .modal-action h6 {
            overflow: hidden;
            text-overflow: ellipsis;
            width: 485px;
        }

        .tasks-modal .modal-dialog .modal-body .media .media-body {
            overflow-wrap: break-word;
            word-wrap: break-word;
            width: 476px;
        }

        .tasks-section {
            padding: 0;
            display: none;
        }

            .tasks-section .content {
                margin: 26px auto;
            }

            .tasks-section .tasks-awareness-title {
                margin: auto;
                height: 24px;
                width: 173px;
                color: #323232;
                font-size: 20px;
                font-weight: 300;
                line-height: 24px;
                text-align: center;
            }

            .tasks-section .tasks-awareness-content {
                margin: 3px auto auto;
                height: 18px;
                width: 166px;
                color: #999;
                font-size: 14px;
                line-height: 18px;
                text-align: center;
            }

            .tasks-section .tasks-awareness-link {
                color: #4A9723;
            }

            .tasks-section .tasks-awareness-close {
                float: right;
                margin-top: 6px;
                margin-right: 6px;
                height: 12px;
                width: 12px;
                cursor: pointer;
            }

        .color-picker,
        .color-picker > div {
            float: left;
            width: 41px;
            height: 41px;
            position: relative;
        }

            .color-picker > span {
                left: 0;
                background: transparent none no-repeat -1px -1px;
                position: absolute;
                width: 41px;
                height: 41px;
                overflow: hidden;
                left: 0px;
                border-radius: 50%;
            }

            .color-picker:hover > span {
                background-color: transparent !important;
                background-image: url("/images/color-wheel.png");
            }

            .color-picker i {
                color: #ffffff;
                position: relative;
                top: 12px;
                left: 14px;
            }

        div#color-picker-box {
            position: absolute;
            z-index: 9999;
            padding: 0 10px;
        }

            div#color-picker-box.above {
                padding-top: 10px;
            }

            div#color-picker-box.below {
                padding-bottom: 10px;
            }

            div#color-picker-box > div {
                max-width: 312px;
                border: 1px solid #CCC;
                background-color: #EEE;
                padding: 9px;
                border-radius: 3px;
            }

        div#color_custom {
            width: 100%;
            float: left;
        }

            div#color_custom label {
                font-size: 95%;
                color: #2F2F2F;
                margin: 5px 2px;
                width: 25%;
            }

            div#color_custom input {
                margin: 5px 2px;
                padding: 0;
                font-size: 95%;
                border: 1px solid #000;
                width: 65%;
            }

        div.color-swatch {
            height: 22px;
            width: 22px;
            margin: 1px;
            float: left;
            cursor: pointer;
            border-radius: 2px;
        }

            div.color-swatch.selected {
                margin: 0px;
                border: 1px solid #CCC;
            }
        /* Example tokeninput style #1: Token vertical list*/
        ul.token-input-list {
            overflow: auto;
            height: auto !important;
            height: 1%;
            cursor: text;
            z-index: 999;
            margin: 0;
            padding: 0;
            background-color: #fff;
            list-style-type: none;
            clear: left;
            max-height: 100px;
        }

            ul.token-input-list li {
                list-style-type: none;
                float: left;
            }

                ul.token-input-list li input {
                    border: 0;
                    width: 25px;
                    background-color: white;
                    -webkit-appearance: caret;
                }

        ul.token-input-disabled,
        ul.token-input-disabled li input {
            background-color: #E8E8E8;
        }

            ul.token-input-disabled li.token-input-token {
                background-color: #D9E3CA;
                color: #7D7D7D;
            }

                ul.token-input-disabled li.token-input-token span {
                    color: #CFCFCF;
                    cursor: default;
                }

        li.token-input-token {
            overflow: hidden;
            height: auto !important;
            height: 1%;
            margin: 4px 5px 4px 0;
            padding: 0px 6px 0 4px;
            height: 25px;
            line-height: 25px;
            background-color: #51a33d;
            color: #FFF;
            cursor: default;
            display: inline-block;
            border-radius: 2px;
        }

            li.token-input-token:hover {
                background-color: #378823;
            }

            li.token-input-token p {
                float: left;
                padding: 0;
                margin: 0;
                color: white;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
                max-width: 100px;
            }

            li.token-input-token span {
                float: right;
                color: #FFF;
                cursor: pointer;
                font-weight: bold;
                font-size: 16px;
                margin-left: 4px;
            }

        li.token-input-selected-token {
            background-color: #378424;
            color: #fff;
            padding: 0 5px 0 3px;
            border: 1px solid #194a0d;
            height: 23px;
            line-height: 23px;
        }

            li.token-input-selected-token span {
                color: #FFF;
            }

        div.token-input-dropdown {
            position: absolute;
            width: 400px;
            max-height: 200px;
            background-color: #fff;
            overflow: auto;
            overflow-x: hidden;
            border-color: #AAA;
            border-style: solid;
            border-width: 0 1px 1px;
            border-radius: 0 0 4px 4px;
            margin-left: -1px;
            cursor: default;
            font-size: 12px;
            font-family: Arial, Helvetica, sans-serif;
            z-index: 1;
            -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
        }

            div.token-input-dropdown p {
                margin: 0;
                padding: 5px;
                font-weight: bold;
                color: #777;
            }

            div.token-input-dropdown ul {
                margin: 0;
                padding: 0;
            }

                div.token-input-dropdown ul li {
                    background-color: #fff;
                    padding: 6px 4px;
                    font-size: 11px;
                    list-style-type: none;
                    border-top: 1px solid #CCC;
                    color: #444;
                }

                    div.token-input-dropdown ul li.qualified {
                        font-weight: bold;
                        background: #ebffe7;
                    }

                    div.token-input-dropdown ul li.token-input-selected-dropdown-item {
                        background-color: #DDD;
                    }

                    div.token-input-dropdown ul li em {
                        font-weight: bold;
                        font-style: normal;
                    }
        /*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
        .select2-container {
            font-family: 'Source Sans Pro', Helvetica, sans-serif;
            margin: 0;
            position: relative;
            display: block;
            /* inline-block for ie7 */
            zoom: 1;
            *display: inline;
            vertical-align: middle;
        }

        .select2-container,
        .select2-drop,
        .select2-search,
        .select2-search input {
            /*
  Force border-box so that % widths fit the parent
  container without overlap because of margin/padding.
  More Info : http://www.quirksmode.org/css/box.html
  */
            -webkit-box-sizing: border-box;
            /* webkit */
            /* firefox */
            box-sizing: border-box;
            /* css3 */
        }

            .select2-container .select2-choice {
                display: block;
                background: #FFF;
                border: 1px solid #ddd;
                border-radius: 2px;
                padding: 0 5px;
                height: 40px;
                cursor: default;
                position: relative;
                overflow: hidden;
                white-space: nowrap;
                line-height: 26px;
                color: #444;
                text-decoration: none;
                background-clip: padding-box;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

                .select2-container .select2-choice .select2-icon {
                    width: 40px;
                    height: 40px;
                    float: left;
                    text-align: center;
                    line-height: 40px;
                    text-decoration: none;
                }

            .select2-container.select2-drop-above .select2-choice {
                border-bottom-color: #aaa;
                border-radius: 0 0 4px 4px;
            }

            .select2-container.select2-allowclear .select2-choice .select2-chosen {
                margin-right: 42px;
            }

            .select2-container .select2-choice > .select2-chosen {
                margin-right: 26px;
                display: block;
                overflow: hidden;
                line-height: 40px;
                color: #666;
                white-space: nowrap;
                text-overflow: ellipsis;
                float: none;
                width: auto;
            }

            .select2-container .select2-choice abbr {
                display: none;
                width: 12px;
                height: 12px;
                position: absolute;
                right: 24px;
                top: 8px;
                font-size: 1px;
                text-decoration: none;
                border: 0;
                background: url('../images/select2.png') right top no-repeat;
                cursor: pointer;
                outline: 0;
            }

            .select2-container.select2-allowclear .select2-choice abbr {
                display: inline-block;
            }

            .select2-container .select2-choice abbr:hover {
                background-position: right -11px;
                cursor: pointer;
            }

        .select2-drop-mask {
            border: 0;
            margin: 0;
            padding: 0;
            position: fixed;
            left: 0;
            top: 0;
            min-height: 100%;
            min-width: 100%;
            height: auto;
            width: auto;
            opacity: 0;
            z-index: 9998;
            /* styles required for IE to work */
            background-color: #fff;
            filter: alpha(opacity=0);
        }

        .select2-drop {
            font-family: 'Source Sans Pro', Helvetica, sans-serif;
            width: 100%;
            margin-top: -1px;
            position: absolute;
            z-index: 9999;
            top: 100%;
            background: #fff;
            color: #000;
            border: 1px solid #aaa;
            border-top: 0;
            border-radius: 0 0 4px 4px;
            -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
        }

            .select2-drop.select2-drop-above {
                margin-top: 1px;
                border-top: 1px solid #aaa;
                border-bottom: 0;
                border-radius: 4px 4px 0 0;
                -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
                box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
            }

        .select2-drop-active {
            border: 1px solid #ccc;
            border-top: none;
        }

        .select2-drop.select2-drop-above.select2-drop-active {
            border-top: 1px solid #ccc;
        }

        .select2-drop-auto-width {
            border-top: 1px solid #aaa;
            width: auto;
        }

            .select2-drop-auto-width .select2-search {
                padding-top: 4px;
            }

        .select2-container .select2-choice .select2-arrow {
            display: inline-block;
            width: 28px;
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            border-left: 1px solid #ddd;
            border-radius: 0 3px 3px 0;
            background-clip: padding-box;
            background: white;
        }

            .select2-container .select2-choice .select2-arrow b {
                display: block;
                width: 100%;
                height: 100%;
                font-family: FontAwesome;
                font-weight: normal;
                font-style: normal;
                text-decoration: inherit;
                -webkit-font-smoothing: antialiased;
                font-size: 14px;
                line-height: 40px;
                text-align: center;
            }

                .select2-container .select2-choice .select2-arrow b:before {
                    content: "\f107";
                }

        .select2-search {
            display: inline-block;
            width: 100%;
            min-height: 26px;
            margin: 0 0 4px 0;
            padding-left: 4px;
            padding-right: 4px;
            position: relative;
            z-index: 10000;
            white-space: nowrap;
        }

            .select2-search input {
                width: 100%;
                height: auto !important;
                min-height: 26px;
                padding: 4px 20px 4px 5px;
                margin: 0;
                outline: 0;
                font-family: 'Source Sans Pro', Helvetica, sans-serif;
                font-size: 13px;
                border: 1px solid #aaa;
                border-radius: 0;
                -webkit-box-shadow: none;
                box-shadow: none;
                background: #fff url('../images/select2.png') no-repeat 100% -22px;
                background: url('../images/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left top, left bottom, color-stop(85%, #fff), color-stop(99%, #eee)) 0 0;
                background: url('../images/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
            }

        .select2-drop.select2-drop-above .select2-search input {
            margin: 4px 0 0 0;
        }

        .select2-search input.select2-active {
            background: #fff url('../images/select2-spinner.gif') no-repeat 100%;
            background: url('../images/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left top, left bottom, color-stop(85%, #fff), color-stop(99%, #eee)) 0 0;
            background: url('../images/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
        }

        .select2-container-active .select2-choice,
        .select2-container-active .select2-choices {
            border: 1px solid #ccc;
            outline: none;
        }

        .select2-dropdown-open .select2-choice {
            border-bottom-color: transparent;
            -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            background-color: #fff;
        }

        .select2-dropdown-open.select2-drop-above .select2-choice,
        .select2-dropdown-open.select2-drop-above .select2-choices {
            border: 1px solid #ccc;
            border-top-color: transparent;
        }

        .select2-dropdown-open .select2-choice .select2-arrow {
            background: transparent;
            border-left: none;
            -webkit-filter: none;
            filter: none;
        }

        html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
            border-right: none;
        }

        .select2-dropdown-open .select2-choice .select2-arrow b {
            background-position: -18px 1px;
        }

        html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
            background-position: -16px 1px;
        }

        .select2-hidden-accessible {
            border: 0;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }
        /* results */
        .select2-results {
            max-height: 200px;
            padding: 0;
            margin: 0;
            border-top: 1px solid #ddd;
            position: relative;
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

            .select2-results .qualified {
                font-weight: bold;
                background: #ebffe7;
            }

        .select2-drop-above .select2-results {
            border-bottom: 1px solid #ddd;
            border-top: none;
        }

        .select2-results ul.select2-result-sub {
            margin: 0;
            padding-left: 0;
        }

        .select2-results li {
            list-style: none;
            display: list-item;
            background-image: none;
            color: #666;
            padding: 2px 0;
            border-bottom: 1px solid #ddd;
        }

            .select2-results li:last-child {
                border-bottom: none;
            }

            .select2-results li.select2-result-with-children {
                padding: 0;
            }

                .select2-results li.select2-result-with-children > .select2-result-label {
                    font-weight: bold;
                    border-bottom: 1px solid #ddd;
                    padding: 6px 7px 7px;
                }

        .select2-results .select2-result-label {
            padding: 3px 7px 4px;
            margin: 0;
            cursor: pointer;
            min-height: 1em;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .select2-results-dept-1 .select2-result-label {
            padding-left: 20px;
        }

        .select2-results-dept-2 .select2-result-label {
            padding-left: 40px;
        }

        .select2-results-dept-3 .select2-result-label {
            padding-left: 60px;
        }

        .select2-results-dept-4 .select2-result-label {
            padding-left: 80px;
        }

        .select2-results-dept-5 .select2-result-label {
            padding-left: 100px;
        }

        .select2-results-dept-6 .select2-result-label {
            padding-left: 110px;
        }

        .select2-results-dept-7 .select2-result-label {
            padding-left: 120px;
        }

        .select2-results .select2-highlighted {
            background: #ddd;
            color: #666;
        }

        .select2-results li em {
            background: #feffde;
            font-style: normal;
        }

        .select2-results .select2-highlighted em {
            background: transparent;
        }

        .select2-results .select2-highlighted ul {
            background: #fff;
            color: #000;
        }

        .select2-results .select2-no-results,
        .select2-results .select2-searching,
        .select2-results .select2-ajax-error,
        .select2-results .select2-selection-limit {
            background: #f4f4f4;
            display: list-item;
            padding-left: 5px;
        }
        /*
disabled look for disabled choices in the results dropdown
*/
        .select2-results .select2-disabled.select2-highlighted {
            color: #666;
            background: #f4f4f4;
            display: list-item;
            cursor: default;
        }

        .select2-results .select2-disabled {
            background: #f4f4f4;
            display: list-item;
            cursor: default;
        }

        .select2-results .select2-selected {
            display: none;
        }

        .select2-more-results.select2-active {
            background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
        }

        .select2-results .select2-ajax-error {
            background: rgba(255, 50, 50, 0.2);
        }

        .select2-more-results {
            background: #f4f4f4;
            display: list-item;
        }
        /* disabled styles */
        .select2-container.select2-container-disabled .select2-choice {
            background-color: #f4f4f4;
            background-image: none;
            border: 1px solid #ddd;
            cursor: default;
        }

            .select2-container.select2-container-disabled .select2-choice .select2-arrow {
                background-color: #f4f4f4;
                background-image: none;
                border-left: 0;
            }

            .select2-container.select2-container-disabled .select2-choice abbr {
                display: none;
            }
        /* multiselect */
        .select2-container-multi .select2-choices {
            height: auto !important;
            height: 1%;
            margin: 0;
            padding: 0 5px 0 0;
            position: relative;
            border: 1px solid #ddd;
            border-radius: 2px;
            cursor: text;
            overflow: hidden;
            background-color: #fff;
        }

        html[dir="rtl"] .select2-container-multi .select2-choices {
            padding: 0 0 0 5px;
        }

        .select2-locked {
            padding: 3px 5px 3px 5px !important;
        }

        .select2-container-multi .select2-choices {
            min-height: 40px;
        }

        .select2-container-multi.select2-container-active .select2-choices {
            border: 1px solid #ccc;
            outline: none;
            -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        }

        .select2-container-multi .select2-choices li {
            float: left;
            list-style: none;
        }

        html[dir="rtl"] .select2-container-multi .select2-choices li {
            float: right;
        }

        .select2-container-multi .select2-choices .select2-search-field {
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }

            .select2-container-multi .select2-choices .select2-search-field input {
                padding: 5px;
                margin: 1px 0;
                line-height: 28px;
                font-family: 'Source Sans Pro', Helvetica, sans-serif;
                font-size: 13px;
                color: #666;
                outline: 0;
                border: 0;
                -webkit-box-shadow: none;
                box-shadow: none;
                background: transparent !important;
            }

                .select2-container-multi .select2-choices .select2-search-field input.select2-active {
                    background: #fff url('select2-spinner.gif') no-repeat 100% !important;
                }

        .select2-default {
            color: #999 !important;
        }

        .select2-container-multi .select2-choices .select2-search-choice {
            padding: 5px 4px 5px 18px;
            margin: 7px 0 -2px 5px;
            position: relative;
            line-height: 15px;
            color: white;
            cursor: default;
            border-radius: 2px;
            background-clip: padding-box;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: #51a33d;
        }

        html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
            margin: 3px 5px 3px 0;
            padding: 3px 18px 3px 5px;
        }

        .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
            cursor: default;
        }

        .select2-container-multi .select2-choices .select2-search-choice-focus {
            background: #d4d4d4;
        }

        .select2-search-choice-close {
            display: block;
            width: 12px;
            height: 13px;
            position: absolute;
            right: 3px;
            top: 4px;
            font-family: FontAwesome;
            font-weight: normal;
            font-style: normal;
            text-decoration: inherit;
            -webkit-font-smoothing: antialiased;
            font-size: 14px;
            color: white;
            outline: none;
        }

            .select2-search-choice-close:before {
                content: "\f00d";
            }

        .select2-container-multi .select2-search-choice-close {
            left: 4px;
            top: 0;
            line-height: 25px;
        }

        .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
            background-position: right -11px;
        }

        .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
            background-position: right -11px;
        }
        /* disabled styles */
        .select2-container-multi.select2-container-disabled .select2-choices {
            background-color: #f4f4f4;
            background-image: none;
            border: 1px solid #ddd;
            cursor: default;
        }

            .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
                padding: 3px 5px 3px 5px;
                border: 1px solid #ddd;
                background-image: none;
                background-color: #f4f4f4;
            }

                .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
                    display: none;
                    background: none;
                }
        /* end multiselect */
        .select2-result-selectable .select2-match,
        .select2-result-unselectable .select2-match {
            text-decoration: underline;
        }

        .select2-result-hidden {
            display: none !important;
        }

        .select2-offscreen,
        .select2-offscreen:focus {
            clip: rect(0 0 0 0) !important;
            width: 1px !important;
            height: 1px !important;
            border: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow: hidden !important;
            position: absolute !important;
            outline: 0 !important;
            left: 0px !important;
            top: 0px !important;
        }

        .select2-display-none {
            display: none;
        }

        .select2-measure-scrollbar {
            position: absolute;
            top: -10000px;
            left: -10000px;
            width: 100px;
            height: 100px;
            overflow: scroll;
        }

        .tipsy {
            font-size: 10px;
            position: absolute;
            padding: 5px;
            z-index: 100000;
        }

        .tipsy-inner {
            background-color: #000;
            color: #FFF;
            max-width: 200px;
            padding: 5px 8px 4px 8px;
            text-align: center;
        }
        /* Rounded corners */
        .tipsy-inner {
            border-radius: 3px;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
        }
        /* Uncomment for shadow */
        /*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/
        .tipsy-arrow {
            position: absolute;
            width: 0;
            height: 0;
            line-height: 0;
            border: 5px dashed #000;
        }
        /* Rules to colour arrows */
        .tipsy-arrow-n {
            border-bottom-color: #000;
        }

        .tipsy-arrow-s {
            border-top-color: #000;
        }

        .tipsy-arrow-e {
            border-left-color: #000;
        }

        .tipsy-arrow-w {
            border-right-color: #000;
        }

        .tipsy-n .tipsy-arrow {
            top: 0px;
            left: 50%;
            margin-left: -5px;
            border-bottom-style: solid;
            border-top: none;
            border-left-color: transparent;
            border-right-color: transparent;
        }

        .tipsy-nw .tipsy-arrow {
            top: 0;
            left: 10px;
            border-bottom-style: solid;
            border-top: none;
            border-left-color: transparent;
            border-right-color: transparent;
        }

        .tipsy-ne .tipsy-arrow {
            top: 0;
            right: 10px;
            border-bottom-style: solid;
            border-top: none;
            border-left-color: transparent;
            border-right-color: transparent;
        }

        .tipsy-s .tipsy-arrow {
            bottom: 0;
            left: 50%;
            margin-left: -5px;
            border-top-style: solid;
            border-bottom: none;
            border-left-color: transparent;
            border-right-color: transparent;
        }

        .tipsy-sw .tipsy-arrow {
            bottom: 0;
            left: 10px;
            border-top-style: solid;
            border-bottom: none;
            border-left-color: transparent;
            border-right-color: transparent;
        }

        .tipsy-se .tipsy-arrow {
            bottom: 0;
            right: 10px;
            border-top-style: solid;
            border-bottom: none;
            border-left-color: transparent;
            border-right-color: transparent;
        }

        .tipsy-e .tipsy-arrow {
            right: 0;
            top: 50%;
            margin-top: -5px;
            border-left-style: solid;
            border-right: none;
            border-top-color: transparent;
            border-bottom-color: transparent;
        }

        .tipsy-w .tipsy-arrow {
            left: 0;
            top: 50%;
            margin-top: -5px;
            border-right-style: solid;
            border-left: none;
            border-top-color: transparent;
            border-bottom-color: transparent;
        }
        /*! Hint.css - v2.5.0 - 2017-04-23
* http://kushagragour.in/lab/hint/
* Copyright (c) 2017 Kushagra Gour */
        /*-------------------------------------*	HINT.css - A CSS tooltip library
\*-------------------------------------*/
        /**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
        /**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
        [class*="hint--"] {
            position: relative;
            display: inline-block;
            /**
	 * tooltip arrow
	 */
            /**
	 * tooltip body
	 */
        }

            [class*="hint--"]:before,
            [class*="hint--"]:after {
                position: absolute;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
                visibility: hidden;
                opacity: 0;
                z-index: 1000000;
                pointer-events: none;
                -webkit-transition: 0.3s ease;
                transition: 0.3s ease;
                -webkit-transition-delay: 0ms;
                transition-delay: 0ms;
            }

            [class*="hint--"]:hover:before,
            [class*="hint--"]:hover:after {
                visibility: visible;
                opacity: 1;
            }

            [class*="hint--"]:hover:before,
            [class*="hint--"]:hover:after {
                -webkit-transition-delay: 100ms;
                transition-delay: 100ms;
            }

            [class*="hint--"]:before {
                content: '';
                position: absolute;
                background: transparent;
                border: 6px solid transparent;
                z-index: 1000001;
            }

            [class*="hint--"]:after {
                background: #383838;
                color: white;
                padding: 8px 10px;
                font-size: 12px;
                font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
                line-height: 12px;
                white-space: nowrap;
            }

            [class*="hint--"][aria-label]:after {
                content: attr(aria-label);
            }

            [class*="hint--"][data-hint]:after {
                content: attr(data-hint);
            }

        [aria-label='']:before,
        [aria-label='']:after,
        [data-hint='']:before,
        [data-hint='']:after {
            display: none !important;
        }
        /**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
        /**
 * set default color for tooltip arrows
 */
        .hint--top-left:before {
            border-top-color: #383838;
        }

        .hint--top-right:before {
            border-top-color: #383838;
        }

        .hint--top:before {
            border-top-color: #383838;
        }

        .hint--bottom-left:before {
            border-bottom-color: #383838;
        }

        .hint--bottom-right:before {
            border-bottom-color: #383838;
        }

        .hint--bottom:before {
            border-bottom-color: #383838;
        }

        .hint--left:before {
            border-left-color: #383838;
        }

        .hint--right:before {
            border-right-color: #383838;
        }
        /**
 * top tooltip
 */
        .hint--top:before {
            margin-bottom: -11px;
        }

        .hint--top:before,
        .hint--top:after {
            bottom: 100%;
            left: 50%;
        }

        .hint--top:before {
            left: calc(44%);
        }

        .hint--top:after {
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
        }

        .hint--top:hover:before {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--top:hover:after {
            -webkit-transform: translateX(-50%) translateY(-8px);
            -ms-transform: translateX(-50%) translateY(-8px);
            transform: translateX(-50%) translateY(-8px);
        }
        /**
 * bottom tooltip
 */
        .hint--bottom:before {
            margin-top: -11px;
        }

        .hint--bottom:before,
        .hint--bottom:after {
            top: 100%;
            left: 50%;
        }

        .hint--bottom:before {
            left: calc(44%);
        }

        .hint--bottom:after {
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
        }

        .hint--bottom:hover:before {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--bottom:hover:after {
            -webkit-transform: translateX(-50%) translateY(8px);
            -ms-transform: translateX(-50%) translateY(8px);
            transform: translateX(-50%) translateY(8px);
        }
        /**
 * right tooltip
 */
        .hint--right:before {
            margin-left: -11px;
            margin-bottom: -6px;
        }

        .hint--right:after {
            margin-bottom: -14px;
        }

        .hint--right:before,
        .hint--right:after {
            left: 100%;
            bottom: 50%;
        }

        .hint--right:hover:before {
            -webkit-transform: translateX(8px);
            -ms-transform: translateX(8px);
            transform: translateX(8px);
        }

        .hint--right:hover:after {
            -webkit-transform: translateX(8px);
            -ms-transform: translateX(8px);
            transform: translateX(8px);
        }
        /**
 * left tooltip
 */
        .hint--left:before {
            margin-right: -11px;
            margin-bottom: -6px;
        }

        .hint--left:after {
            margin-bottom: -14px;
        }

        .hint--left:before,
        .hint--left:after {
            right: 100%;
            bottom: 50%;
        }

        .hint--left:hover:before {
            -webkit-transform: translateX(-8px);
            -ms-transform: translateX(-8px);
            transform: translateX(-8px);
        }

        .hint--left:hover:after {
            -webkit-transform: translateX(-8px);
            -ms-transform: translateX(-8px);
            transform: translateX(-8px);
        }
        /**
 * top-left tooltip
 */
        .hint--top-left:before {
            margin-bottom: -11px;
        }

        .hint--top-left:before,
        .hint--top-left:after {
            bottom: 100%;
            left: 50%;
        }

        .hint--top-left:before {
            left: calc(44%);
        }

        .hint--top-left:after {
            -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .hint--top-left:after {
            margin-left: 12px;
        }

        .hint--top-left:hover:before {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--top-left:hover:after {
            -webkit-transform: translateX(-100%) translateY(-8px);
            -ms-transform: translateX(-100%) translateY(-8px);
            transform: translateX(-100%) translateY(-8px);
        }
        /**
 * top-right tooltip
 */
        .hint--top-right:before {
            margin-bottom: -11px;
        }

        .hint--top-right:before,
        .hint--top-right:after {
            bottom: 100%;
            left: 50%;
        }

        .hint--top-right:before {
            left: calc(44%);
        }

        .hint--top-right:after {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

        .hint--top-right:after {
            margin-left: -12px;
        }

        .hint--top-right:hover:before {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--top-right:hover:after {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }
        /**
 * bottom-left tooltip
 */
        .hint--bottom-left:before {
            margin-top: -11px;
        }

        .hint--bottom-left:before,
        .hint--bottom-left:after {
            top: 100%;
            left: 50%;
        }

        .hint--bottom-left:before {
            left: calc(44%);
        }

        .hint--bottom-left:after {
            -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .hint--bottom-left:after {
            margin-left: 12px;
        }

        .hint--bottom-left:hover:before {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--bottom-left:hover:after {
            -webkit-transform: translateX(-100%) translateY(8px);
            -ms-transform: translateX(-100%) translateY(8px);
            transform: translateX(-100%) translateY(8px);
        }
        /**
 * bottom-right tooltip
 */
        .hint--bottom-right:before {
            margin-top: -11px;
        }

        .hint--bottom-right:before,
        .hint--bottom-right:after {
            top: 100%;
            left: 50%;
        }

        .hint--bottom-right:before {
            left: calc(44%);
        }

        .hint--bottom-right:after {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

        .hint--bottom-right:after {
            margin-left: -12px;
        }

        .hint--bottom-right:hover:before {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--bottom-right:hover:after {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }
        /**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
        .hint--small:after,
        .hint--medium:after,
        .hint--large:after {
            white-space: normal;
            line-height: 1.4em;
            word-wrap: break-word;
        }

        .hint--small:after {
            width: 80px;
        }

        .hint--medium:after {
            width: 150px;
        }

        .hint--large:after {
            width: 300px;
        }
        /**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
        [class*="hint--"] {
            /**
	 * tooltip body
	 */
        }

            [class*="hint--"]:after {
                text-shadow: 0 -1px 0px black;
                -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
                box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
            }
        /**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
        /**
 * Error
 */
        .hint--error:after {
            background-color: #b34e4d;
            text-shadow: 0 -1px 0px #592726;
        }

        .hint--error.hint--top-left:before {
            border-top-color: #b34e4d;
        }

        .hint--error.hint--top-right:before {
            border-top-color: #b34e4d;
        }

        .hint--error.hint--top:before {
            border-top-color: #b34e4d;
        }

        .hint--error.hint--bottom-left:before {
            border-bottom-color: #b34e4d;
        }

        .hint--error.hint--bottom-right:before {
            border-bottom-color: #b34e4d;
        }

        .hint--error.hint--bottom:before {
            border-bottom-color: #b34e4d;
        }

        .hint--error.hint--left:before {
            border-left-color: #b34e4d;
        }

        .hint--error.hint--right:before {
            border-right-color: #b34e4d;
        }
        /**
 * Warning
 */
        .hint--warning:after {
            background-color: #c09854;
            text-shadow: 0 -1px 0px #6c5328;
        }

        .hint--warning.hint--top-left:before {
            border-top-color: #c09854;
        }

        .hint--warning.hint--top-right:before {
            border-top-color: #c09854;
        }

        .hint--warning.hint--top:before {
            border-top-color: #c09854;
        }

        .hint--warning.hint--bottom-left:before {
            border-bottom-color: #c09854;
        }

        .hint--warning.hint--bottom-right:before {
            border-bottom-color: #c09854;
        }

        .hint--warning.hint--bottom:before {
            border-bottom-color: #c09854;
        }

        .hint--warning.hint--left:before {
            border-left-color: #c09854;
        }

        .hint--warning.hint--right:before {
            border-right-color: #c09854;
        }
        /**
 * Info
 */
        .hint--info:after {
            background-color: #3986ac;
            text-shadow: 0 -1px 0px #1a3c4d;
        }

        .hint--info.hint--top-left:before {
            border-top-color: #3986ac;
        }

        .hint--info.hint--top-right:before {
            border-top-color: #3986ac;
        }

        .hint--info.hint--top:before {
            border-top-color: #3986ac;
        }

        .hint--info.hint--bottom-left:before {
            border-bottom-color: #3986ac;
        }

        .hint--info.hint--bottom-right:before {
            border-bottom-color: #3986ac;
        }

        .hint--info.hint--bottom:before {
            border-bottom-color: #3986ac;
        }

        .hint--info.hint--left:before {
            border-left-color: #3986ac;
        }

        .hint--info.hint--right:before {
            border-right-color: #3986ac;
        }
        /**
 * Success
 */
        .hint--success:after {
            background-color: #458746;
            text-shadow: 0 -1px 0px #1a321a;
        }

        .hint--success.hint--top-left:before {
            border-top-color: #458746;
        }

        .hint--success.hint--top-right:before {
            border-top-color: #458746;
        }

        .hint--success.hint--top:before {
            border-top-color: #458746;
        }

        .hint--success.hint--bottom-left:before {
            border-bottom-color: #458746;
        }

        .hint--success.hint--bottom-right:before {
            border-bottom-color: #458746;
        }

        .hint--success.hint--bottom:before {
            border-bottom-color: #458746;
        }

        .hint--success.hint--left:before {
            border-left-color: #458746;
        }

        .hint--success.hint--right:before {
            border-right-color: #458746;
        }
        /**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
        .hint--always:after,
        .hint--always:before {
            opacity: 1;
            visibility: visible;
        }

        .hint--always.hint--top:before {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--always.hint--top:after {
            -webkit-transform: translateX(-50%) translateY(-8px);
            -ms-transform: translateX(-50%) translateY(-8px);
            transform: translateX(-50%) translateY(-8px);
        }

        .hint--always.hint--top-left:before {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--always.hint--top-left:after {
            -webkit-transform: translateX(-100%) translateY(-8px);
            -ms-transform: translateX(-100%) translateY(-8px);
            transform: translateX(-100%) translateY(-8px);
        }

        .hint--always.hint--top-right:before {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--always.hint--top-right:after {
            -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        .hint--always.hint--bottom:before {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--always.hint--bottom:after {
            -webkit-transform: translateX(-50%) translateY(8px);
            -ms-transform: translateX(-50%) translateY(8px);
            transform: translateX(-50%) translateY(8px);
        }

        .hint--always.hint--bottom-left:before {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--always.hint--bottom-left:after {
            -webkit-transform: translateX(-100%) translateY(8px);
            -ms-transform: translateX(-100%) translateY(8px);
            transform: translateX(-100%) translateY(8px);
        }

        .hint--always.hint--bottom-right:before {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--always.hint--bottom-right:after {
            -webkit-transform: translateY(8px);
            -ms-transform: translateY(8px);
            transform: translateY(8px);
        }

        .hint--always.hint--left:before {
            -webkit-transform: translateX(-8px);
            -ms-transform: translateX(-8px);
            transform: translateX(-8px);
        }

        .hint--always.hint--left:after {
            -webkit-transform: translateX(-8px);
            -ms-transform: translateX(-8px);
            transform: translateX(-8px);
        }

        .hint--always.hint--right:before {
            -webkit-transform: translateX(8px);
            -ms-transform: translateX(8px);
            transform: translateX(8px);
        }

        .hint--always.hint--right:after {
            -webkit-transform: translateX(8px);
            -ms-transform: translateX(8px);
            transform: translateX(8px);
        }
        /**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
        .hint--rounded:after {
            border-radius: 4px;
        }

        /* ---------------------------------------------------------------------------------------------------------------------
  Components
--------------------------------------------------------------------------------------------------------------------- */
        /* ---------------------------------------------------------------------------------------------------------------------
  Dialog
--------------------------------------------------------------------------------------------------------------------- */
        body.dialog-open {
            overflow: hidden;
        }

        .dialog-kit {
            /* ----------------------------
     SOCIAL DIALOG
  ---------------------------- */
        }

            .dialog-kit .dialog-header.billboard {
                padding: 50px 30px;
                margin: 0;
                border-bottom: none;
            }

                .dialog-kit .dialog-header.billboard.green {
                    background-color: #51a33d;
                }

                .dialog-kit .dialog-header.billboard.red {
                    background-color: #cc6666;
                }

                .dialog-kit .dialog-header.billboard.yellow {
                    background-color: #d6d41e;
                }

                .dialog-kit .dialog-header.billboard.blue {
                    background-color: #558aaf;
                }

                .dialog-kit .dialog-header.billboard .dialog-button {
                    margin-top: 13px;
                    color: white;
                    border-color: white;
                }

                .dialog-kit .dialog-header.billboard h2 {
                    text-align: center;
                    font-size: 72px;
                    color: white;
                    font-weight: 300;
                    line-height: 50px;
                    border-radius: 4px 4px 0 0;
                }

            .dialog-kit .hero-text {
                margin-top: 36px;
                text-align: center;
                font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
            }

                .dialog-kit .hero-text .major {
                    color: #333;
                    font-size: 48px;
                    font-weight: 300;
                }

                .dialog-kit .hero-text .minor {
                    color: #999;
                    font-size: 20px;
                    margin-top: 12px;
                }

            .dialog-kit .text-center {
                text-align: center;
            }

            .dialog-kit .body-text {
                color: #666;
                font-size: 15px;
            }

            .dialog-kit .error-text {
                color: #af555b;
            }

            .dialog-kit.social-dialog .dialog-body {
                text-align: center;
            }

                .dialog-kit.social-dialog .dialog-body h1 {
                    font-size: 42px;
                    line-height: 42px;
                    color: #666;
                    font-weight: 600;
                    margin: 25px 0;
                    padding: 0 30px;
                }

                .dialog-kit.social-dialog .dialog-body p {
                    font-size: 18px;
                    color: #666;
                    margin: 25px 0;
                }

                .dialog-kit.social-dialog .dialog-body .button-close {
                    margin-top: 40px;
                }

                .dialog-kit.social-dialog .dialog-body .social-list {
                    margin-bottom: 25px;
                }

                    .dialog-kit.social-dialog .dialog-body .social-list li {
                        display: inline-block;
                    }

                        .dialog-kit.social-dialog .dialog-body .social-list li a {
                            display: block;
                            -webkit-box-sizing: border-box;
                            -ms-box-sizing: border-box;
                            box-sizing: border-box;
                            width: 140px;
                            height: 140px;
                            margin: 0 3px;
                            background-repeat: no-repeat;
                            background-position: center 18px;
                            background-size: 75px;
                            border: 1px solid white;
                            padding-top: 107px;
                        }

                            .dialog-kit.social-dialog .dialog-body .social-list li a span {
                                text-transform: uppercase;
                                font-size: 14px;
                                color: #999;
                            }

                            .dialog-kit.social-dialog .dialog-body .social-list li a:hover {
                                border-color: #ddd;
                            }

                                .dialog-kit.social-dialog .dialog-body .social-list li a:hover span {
                                    color: #666;
                                }

                            .dialog-kit.social-dialog .dialog-body .social-list li a.social-facebook {
                                background-image: url("../images/icons/social-facebook.svg");
                            }

                            .dialog-kit.social-dialog .dialog-body .social-list li a.social-twitter {
                                background-image: url("../images/icons/social-twitter.svg");
                            }

                            .dialog-kit.social-dialog .dialog-body .social-list li a.social-google {
                                background-image: url("../images/icons/social-google.svg");
                            }

            .dialog-kit .dialog__mini-info {
                display: block;
                background: #f0f0f0;
                color: #333;
                font-style: italic;
                padding: 5px 10px;
                margin: 0 0 10px;
                border-radius: 2px;
            }

        .dialog-kit-scroll {
            position: fixed;
            /*z-index: 200;*/
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: auto;
        }

            .dialog-kit-scroll > .dialog-kit {
                position: absolute !important;
                margin-bottom: 30px;
            }
        /* ---------------------------------------------------------------------------------------------------------------------
  Upsell Dialog
--------------------------------------------------------------------------------------------------------------------- */
        .dialog-kit.upsell {
            top: 0px !important;
            width: 760px;
            overflow: initial;
            margin-bottom: 20px;
            margin-top: 20px !important;
            position: absolute !important;
        }

            .dialog-kit.upsell .button-close {
                top: 25px;
                right: 30px;
                position: absolute;
            }

            .dialog-kit.upsell .dialog-button {
                float: right;
                margin-left: 5px;
                border-radius: 3px;
                -webkit-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
                border: 1px solid #DDD;
                height: 23px;
                padding: 0 6px;
                min-width: 23px;
                text-align: center;
                -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
                color: #999;
                line-height: 20px;
                font-size: 14px;
                font-weight: 400;
                text-transform: uppercase;
            }

            .dialog-kit.upsell .logo {
                margin-top: 60px;
                text-align: center;
            }

            .dialog-kit.upsell .divider {
                height: 2px;
                width: 130px;
                margin: 0 auto;
                margin-top: 32px;
                background: #ccc;
            }

            .dialog-kit.upsell .button-container {
                margin-top: 46px;
                text-align: center;
            }

                .dialog-kit.upsell .button-container .inner-container {
                    display: inline-block;
                }

                .dialog-kit.upsell .button-container a {
                    float: left;
                    height: 52px;
                    display: block;
                    line-height: 52px;
                    text-align: center;
                    text-transform: uppercase;
                }

            .dialog-kit.upsell .activate-button {
                width: 306px;
                color: #51a33d;
                font-size: 24px;
                border: 2px solid #51a33d;
            }

            .dialog-kit.upsell .arrow-button {
                width: 52px;
                margin-left: 20px;
                border: 2px solid #999;
            }

                .dialog-kit.upsell .arrow-button i {
                    color: #999;
                    display: none;
                    font-size: 25px;
                    line-height: 54px;
                    padding-left: 4px;
                }

                    .dialog-kit.upsell .arrow-button i.close {
                        display: inline;
                        font-size: 30px;
                        line-height: 51px;
                        padding-left: 2px;
                    }

                .dialog-kit.upsell .arrow-button.play-video i {
                    display: inline;
                }

                    .dialog-kit.upsell .arrow-button.play-video i.close {
                        display: none;
                    }

            .dialog-kit.upsell .text-container {
                margin-top: 48px;
                position: relative;
                text-align: center;
            }

                .dialog-kit.upsell .text-container svg {
                    top: 62px;
                    position: absolute;
                }

                    .dialog-kit.upsell .text-container svg polygon {
                        fill: #fff;
                        stroke: #ccc;
                        stroke-width: 1;
                    }

                    .dialog-kit.upsell .text-container svg rect {
                        fill: #fff;
                    }

                .dialog-kit.upsell .text-container .left-svg {
                    left: 50px;
                }

                .dialog-kit.upsell .text-container .middle-svg {
                    left: 275px;
                }

                .dialog-kit.upsell .text-container .right-svg {
                    left: 501px;
                }

                .dialog-kit.upsell .text-container .inline-container {
                    display: inline-block;
                }

                .dialog-kit.upsell .text-container .text-box {
                    z-index: 20;
                    float: left;
                    color: #666;
                    width: 146px;
                    font-size: 14px;
                    background: #fff;
                    margin-left: 25px;
                    padding: 18px 26px;
                    border: 1px solid #ccc;
                    border-radius: 3px;
                }

                    .dialog-kit.upsell .text-container .text-box:first-child {
                        margin-left: 0px;
                    }

            .dialog-kit.upsell .video-container {
                width: 100%;
                height: 428px;
                display: none;
                margin-top: 47px;
            }

            .dialog-kit.upsell .background-container {
                margin-top: 17px;
                text-align: center;
            }

            .dialog-kit.upsell .attendance .activate-button {
                color: #5f829c;
                border: 2px solid #5f829c;
            }

        .ie .dialog-kit.upsell .text-container svg {
            top: 61px;
        }


        .dialog-kit div.special-offer .button-box {
            text-align: center;
            padding-bottom: 30px;
        }

        .dialog-kit div.special-offer .button-link {
            color: #666;
        }

        .dialog-kit div.annual-upgrade h1 {
            background-color: #51a33d;
        }

        .dialog-kit div.annual-upgrade p {
            text-align: center;
            padding: 20px 0;
        }

        .dialog-kit div.annual-upgrade div.special-offer-container {
            width: 300px;
        }

        .dialog-kit div.annual-upgrade div.no-thanks-container {
            width: 150px;
        }

        .dialog-kit div.legacy-upgrade h1 {
            background-color: #51a33d;
            text-transform: none;
        }

            .dialog-kit div.legacy-upgrade h1 > small {
                font-size: 16px;
                display: block;
            }

        .dialog-kit div.legacy-upgrade .features-box {
            padding: 15px;
        }

            .dialog-kit div.legacy-upgrade .features-box li {
                float: left;
                padding: 5px;
                width: 33.333%;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }

                .dialog-kit div.legacy-upgrade .features-box li > a {
                    display: block;
                    border: 1px solid #f2f2f2;
                    background: #f2f2f2;
                    height: 190px;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    padding: 26px 30px 30px;
                    color: #666;
                    font-size: 14px;
                    position: relative;
                }

                    .dialog-kit div.legacy-upgrade .features-box li > a > span {
                        position: absolute;
                        top: -1px;
                        right: -1px;
                        width: 0;
                        height: 0;
                        border-width: 20px;
                        border-color: #ccc #ccc transparent transparent;
                        border-style: solid;
                    }

                        .dialog-kit div.legacy-upgrade .features-box li > a > span i {
                            display: block;
                            margin-top: -14px;
                            color: white;
                        }

                    .dialog-kit div.legacy-upgrade .features-box li > a > abbr {
                        font-size: 14px;
                        text-transform: uppercase;
                        display: block;
                        margin-top: 14px;
                    }

                        .dialog-kit div.legacy-upgrade .features-box li > a > abbr span {
                            display: none;
                        }

                    .dialog-kit div.legacy-upgrade .features-box li > a strong {
                        display: block;
                        font-size: 18px;
                        font-weight: 400;
                        color: #333;
                        margin-bottom: 8px;
                    }

                .dialog-kit div.legacy-upgrade .features-box li.missing > a {
                    background: white;
                    border-color: #ddd;
                }

                    .dialog-kit div.legacy-upgrade .features-box li.missing > a > span {
                        border-color: #51a33d #51a33d transparent transparent;
                    }

                    .dialog-kit div.legacy-upgrade .features-box li.missing > a > abbr {
                        color: #51a33d;
                    }

                        .dialog-kit div.legacy-upgrade .features-box li.missing > a > abbr span {
                            display: inline;
                        }

        .dialog-kit.workchat-upsell {
            color: #000000;
        }

            .dialog-kit.workchat-upsell .card-section {
                -webkit-box-shadow: none;
                box-shadow: none;
                padding-bottom: 10px;
            }

            .dialog-kit.workchat-upsell .button-box {
                text-align: center;
                margin: 30px;
            }

                .dialog-kit.workchat-upsell .button-box > button {
                    margin: 0px 5px;
                }

        .dialog-kit .changeplan-area {
            display: block;
        }

            .dialog-kit .changeplan-area > section {
                -ms-flex-preferred-size: 65%;
                flex-basis: 65%;
            }

                .dialog-kit .changeplan-area > section > div {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    height: 100%;
                }

            .dialog-kit .changeplan-area > aside {
                display: none;
                -ms-flex-preferred-size: 35%;
                flex-basis: 35%;
                margin: 18px 20px 18px 4px;
                color: #333333;
                border: solid 1px #c46346;
                border-radius: 8px;
                height: 95%;
            }

                .dialog-kit .changeplan-area > aside > div:first-child {
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    width: 100%;
                    background-color: #ffede8;
                    padding-left: 20px;
                    font-weight: 400;
                    font-size: 28px;
                    line-height: 2.1em;
                    border-bottom: solid 1px #c46346;
                    border-radius: 8px 8px 0 0;
                    text-transform: uppercase;
                }

                    .dialog-kit .changeplan-area > aside > div:first-child img[src="images/icons/hollowwarning.svg"],
                    .dialog-kit .changeplan-area > aside > div:first-child img[src="images/icons/hollowwarning.png"] {
                        margin: -5px 8px 0 0;
                    }

                .dialog-kit .changeplan-area > aside > article {
                    margin: 1.5em 1.7em;
                }

                    .dialog-kit .changeplan-area > aside > article > ul {
                        margin: 0.7em 0;
                        color: #2D2D2D;
                        font-weight: 400;
                        line-height: 1.5em;
                    }

                        .dialog-kit .changeplan-area > aside > article > ul > li {
                            margin-bottom: 10px;
                            font-weight: 600;
                        }

                            .dialog-kit .changeplan-area > aside > article > ul > li::before {
                                content: "•";
                                color: #bc4f2e;
                                margin-right: 8px;
                            }

                            .dialog-kit .changeplan-area > aside > article > ul > li:last-child {
                                margin-bottom: 30px;
                            }
  