@media print {

    #top-bar-wrap,
    #site-header-sticky-wrapper,
    #footer,
    #nextSteps,
    .stickem {
        display: none;
    }

    .chartCanvas {
        padding-right: 1cm;
    }

}

.result_tag {
    background: #efefef;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 2px;
}

.depends {
    padding: 20px;
    background: #efefef;
    margin-bottom: 20px;
}

.dtag {
    background: #4054b2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 3px;
    display: inline-block;
}

.dtag:hover {
    background: #244360;
}

/** GRID */
.grid {
    margin: 10px;
}

.grid:after {

    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both;
}

.hidden {
    display: none;
}

[class*='colu-'] {
    float: left;
    padding: 10px;
}

.grid [class*='colu-']:last-of-type {
    padding-right: 0;
}

@media only screen and (min-width:768px) {
    .colu-2-3 {
        width: 66.66%;
    }

    .colu-1-1 {
        width: 100%;
    }

    .colu-1-3 {
        width: 33.33%;
    }

    .colu-1-2 {
        width: 50%;
    }

    .colu-1-4 {
        width: 25%;
    }

    .colu-3-4 {
        width: 75%;
    }

    .colu-1-8 {
        width: 12.5%;
    }

    .colu-3-8 {
        width: 37.5%;
    }

}

.module {
    padding: 10px;
}

/* Opt-in outside padding */
.grid-pad {
    padding: 20px 0 20px 20px;
}

.grid-pad [class*='colu-']:last-of-type {
    padding-right: 20px;
}

/** END GRID */

/** DRAG */
.ghost {
    opacity: .5;
    background: #C8EBFB;
}

.drag {
    background: #fff url(../images/up-down.png) no-repeat 7px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    cursor: move;
    margin-bottom: 5px;
    padding-left: 40px;
}

/** END DRAG */

/** TAGGLE */
@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-16px);
    }

    60% {
        -webkit-transform: translateY(-7px);
    }

}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-16px);
        transform: translateY(-16px);
    }

    60% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }

}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

.taggle_list {
    display: table;
    float: none;
    position: relative;
    /* min-height: 110px; */
    margin: 5px;
}

.taggle_input {
    border: none !important;
    border-color: none !important;
    outline: none;
    font-size: 16px;
    font-weight: 300;
}

.taggle_list li {
    float: left;
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
    margin-bottom: 5px;
}

.taggle_list .taggle {
    margin-right: 8px;
    background: #E2E1DF;
    padding: 5px 10px;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: all .3s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.taggle_list .taggle_hot {
    background: #cac8c4;
}

.taggle_list .taggle .close {
    font-size: 1.1em;
    position: absolute;
    top: 1px;
    right: -3px;
    text-decoration: none;
    padding-left: 2px;
    padding-top: 3px;
    line-height: 0.5;
    color: #ccc;
    color: #cb2027;
    padding-bottom: 4px;
    display: none;
    border: 0;
    background: none;
    cursor: pointer;
}

.taggle_list .taggle:hover {
    padding: 5px;
    padding-right: 15px;
    background: #ccc;
    transition: all .3s;
}

.taggle_list .taggle:hover>.close {
    display: block;
}

.taggle_list .taggle .close:hover {
    color: #4054b2;
}

.taggle_placeholder {
    position: absolute;
    color: #CCC;
    top: 12px;
    left: 8px;
    transition: opacity, .25s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
}

.taggle_input {
    display: initial;
    padding: 8px;
    padding-left: 0;
    float: left;
    margin-top: -5px;
    background: none;
    width: 100%;
    max-width: 100%;
}

.taggle_sizer {
    padding: 0;
    margin: 0;
    position: absolute;
    top: -500px;
    z-index: -1;
    visibility: hidden;
}

/*container styles*/
textarea.input,
.textarea.input {
    border: 0;
    background: #FDFDFD;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(255, 255, 255, 0.7);
    min-height: 60px;
    padding: 8px;
    border-radius: 3px;
    color: #555;
    transition: all .25s;
    cursor: text;
    margin-bottom: 10px;
    position: relative;
}

.textarea.input:focus,
.textarea.input.active,
textarea.input:focus,
textarea.input.active {
    background: #fff;
    transition: all .25s;
}

.textarea.input,
textarea.input {
    height: auto;
}

.textarea.tags {
    position: relative;
}

.textarea.tags * {
    box-sizing: content-box;
}

.placeholder_input {
    position: relative;
}

.placeholder_input span {
    position: absolute;
    color: #AAA;
    top: 50%;
    margin-top: -11px;
    left: 10px;
}

.placeholder_input input {
    width: 120px;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    z-index: 5;
    left: 0;
}

.ui-menu {
    list-style: none;
    padding: 2px;
    margin: 0;
    display: block;
    outline: none;
}

.ui-widget-content {
    padding: 5px;
    background: #eee;
    color: #4054b2;
}

.ui-menu .ui-menu-item {
    margin: 0;
    padding: 0;
    width: 100%;
    cursor: pointer;
}

.ui-menu .ui-menu-item a {
    text-decoration: none;
    display: block;
    padding: 2px .4em;
    line-height: 1.5;
    min-height: 0;
    font-weight: normal;
    color: #8a8a8a;
    cursor: pointer;
}

.ui-menu .ui-menu-item a:hover {
    color: #fff;
    background: #4054b2;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    background: #4054b2;
    color: #fff !important;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
    color: #fff;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #aaaaaa;
    background: #ffffff;
    font-weight: normal;
    color: #212121;
}

.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.autocomplete {
    max-height: 200px;
    overflow: scroll;
    position: absolute;
    top: 66px;
    background: white;
    width: 99.5%;
    left: 0.25%;
    z-index: 2;
}

.autocomplete ul li {
    display: block;
    padding: 6px 8px;
}

.autocomplete ul li.selected,
.autocomplete ul li:hover {
    background: #ff6633;
    color: #fff;
    cursor: pointer;
}

.ui-autocomplete {
    max-height: 200px;
    overflow: scroll;
    width: 99% !important;
}

.custom.textarea {
    border-radius: 0;
    box-shadow: none;
}

.custom.textarea .taggle {
    border-radius: 0;
    padding: 5px;
    padding-right: 20px;
}

.custom.textarea .taggle .close {
    display: inline-block;
    right: 3px;
}

/** END TAGGLE */