.streams-ui-indicator {
    position: relative;
    color: var(--primaryColor, #4A90E2);
    cursor: pointer;
    font-weight: normal;
    font-size: 30px;
    height: 36px;
    width: 36px;
    text-align: left;
}

.streams-ui-indicator:before {
    margin-top: 6px;
}

.streams-ui-indicator div {
    position: absolute;
    top: 0;
    right: 0;
    height: 22px;
    width: 22px;
    line-height: 24px;
    background-color: #d12323;
    border-radius: 50%;
    color: white;
    text-align: center;
    font-size: 12px;
}

.header.desk .streams-ui-indicator {
    position: absolute;
    font-size: 28px;
    display: inline;
    height: auto;
    width: auto;
}

.header.desk .streams-ui-indicator:before {
    margin-top: 0;
}

.header.desk .streams-ui-indicator div {
    top: 10px;
    right: 2px;
    height: 20px;
    width: 20px;
    line-height: 21px;
}

.streams-ui-indicator div.medium {
    font-size: 10px;
}

.streams-ui-indicator div.large {
    font-size: 8px;
}

.streams-ui-indicator-processing,
.streams-ui-indicator-processing:hover {
    color: transparent;
    text-shadow: none;
    animation: indicator-processing 6.25s infinite;
    -webkit-animation: indicator-processing 6.25s infinite;
}

@keyframes indicator-processing {
    0% {
        color: #CEDC45;
    }
    20% {
        color: #E5801D;
    }
    40% {
        color: #ED592A;
    }
    60% {
        color: #004385;
    }
    80% {
        color: #00ADEE;
    }
    100% {
        color: #26A046;
    }
}

@-webkit-keyframes indicator-processing {
    0% {
        color: #CEDC45;
    }
    20% {
        color: #E5801D;
    }
    40% {
        color: #ED592A;
    }
    60% {
        color: #004385;
    }
    80% {
        color: #00ADEE;
    }
    100% {
        color: #26A046;
    }
}

.streams-ui-blocker {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9005;
}

.streams-ui {
    position: absolute;
    top: 0;
    left: 0;
    height: 75%;
    width: 50%;
    min-height: 400px;
    min-width: 600px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #e6e6e6;
    -webkit-transition: width 200ms, height 200ms;
    /* Safari */
    transition: width 200ms, height 200ms;
    border: 1px solid #CDCFD2;
    border-radius: 6px;
}

.streams-ui.recenter {
    -webkit-transition: width 200ms, height 200ms, top 200ms, left 200ms;
    /* Safari */
    transition: width 200ms, height 200ms, top 200ms, left 200ms;
}

.streams-ui-launch {
    visibility: hidden;
    -webkit-transition: none;
    /* Safari */
    transition: none;
}

.streams-ui-none {
    width: 0px;
    min-width: 0px;
    max-width: 0px;
    padding: 0;
    margin: 0;
}

.streams-ui-half {
    width: 50%;
}

.streams-ui-full {
    width: 75%;
}

.streams-ui-full-screen {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.streams-ui * {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

.stream-blocker {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
}

.stream-image-previous {
    position: absolute;
    height: 20px;
    width: 8px;
    font-size: 20px;
    line-height: 20px;
    z-index: 1;
    left: 5px;
    top: 50%;
    margin-top: -10px;
    color: #777;
}

.stream-image-next {
    position: absolute;
    height: 20px;
    width: 8px;
    font-size: 20px;
    line-height: 20px;
    z-index: 1;
    right: 5px;
    top: 50%;
    margin-top: -10px;
    color: #777;
}

.stream-image-exploded .stream-image-previous, .stream-image-exploded .stream-image-next {
    height: 32px;
    width: 12px;
    font-size: 32px;
    line-height: 32px;
}

.streams-ui-working {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9020;
}
@keyframes loadingDots {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0);
    }

    66% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes loadingDots {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    66% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.streams-ui-working > div {
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    width: 100%;
    color: #FFF;
    padding: 0;
    text-align: center;
}

.streams-ui-working > div label {
    font-size: 20px;
    opacity: 0;
    display: inline-block;
    font-weight: 300;
    color: #fc880f;
}

.streams-ui-working > div label:nth-child(1) {
    -webkit-animation: loadingDots 3s 500ms infinite ease-in-out;
    animation: loadingDots 3s 500ms infinite ease-in-out;
}

.streams-ui-working > div label:nth-child(2) {
    -webkit-animation: loadingDots 3s 400ms infinite ease-in-out;
    animation: loadingDots 3s 400ms infinite ease-in-out;
}
.streams-ui-working > div label:nth-child(3) {
    -webkit-animation: loadingDots 3s 300ms infinite ease-in-out;
    animation: loadingDots 3s 300ms infinite ease-in-out;
}
.streams-ui-working > div label:nth-child(4) {
    -webkit-animation: loadingDots 3s 200ms infinite ease-in-out;
    animation: loadingDots 3s 200ms infinite ease-in-out;
}
.streams-ui-working > div label:nth-child(5) {
    -webkit-animation: loadingDots 3s 100ms infinite ease-in-out;
    animation: loadingDots 3s 100ms infinite ease-in-out;
}
.streams-ui-working > div label:nth-child(6) {
    -webkit-animation: loadingDots 3s infinite ease-in-out;
    animation: loadingDots 3s infinite ease-in-out;
}
.streams-ui-dialog {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9010;
}

.streams-ui-dialog-content {
    padding: 5px;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background: #e6e6e6;
    max-width: 50%;
    min-width: 500px;
}

.streams-ui-dialog-buttons {
    position: relative;
    margin: 0;
    right: 5px;
    bottom: 5px;
    padding-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-align: right;
    width: 100%;
    margin-bottom: 0;
    height: 35px;
}

.streams-ui-dialog-button {
    background-color:  var(--primary-button, #4A90E2);
    line-height: 12px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    min-width: 80px;
    float: right;
    margin-left: 10px;
    border: 1px solid  var(--primary-button, #4A90E2);
    font-weight: 700;
    font-size: 12px;
    text-shadow: none;
    border-radius: 20px;
}

.streams-ui-dialog-button:hover {
    background-color: var(--primary-button-dark, #29578D);
    border: 1px solid var(--primary-button-dark, #29578D);
    color: #fff;
}

.streams-ui-dialog-buttons .streams-ui-dialog-button.streams-ui-dialog-button-secondary {
    color: var(--primary-button, #4A90E2);
    background-color: #FFFFFF;
    border: 1px solid var(--primary-button, #4A90E2);
}
.streams-ui-dialog-buttons .streams-ui-dialog-button.streams-ui-dialog-button-secondary:hover {
    color: var(--primary-button-dark, #29578D);
    border: 1px solid var(--primary-button-dark, #29578D);
}

.streams-ui-dialog-icon-label {
    margin: 10px 10px 10px 10px;
}

.streams-ui-dialog-icon-label-align {
    display: table;
    height: 100%;
    width: 100%;
}

.streams-ui-dialog-icon-label-align div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.streams-ui-dialog-icon {
    padding-right: 10px;
}

.streams-ui-dialog-label {
    /* color: #c0c0c0; */
}

.streams-ui textarea,
.streams-ui input[type=text] {
    border: none;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: left;
    background-color: transparent;
    resize: none;
    overflow: hidden;
    outline: none;
    vertical-align: middle;
    color: #000;
    font: inherit;
    border: 1px solid transparent;
    text-overflow: ellipsis;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    padding: 0;
    margin: 0;
}
.streams-ui textarea {
    padding: 5px;
}
.streams-ui .streams-ui-stream-title textarea {
    padding: 0 5px;
}
.streams-ui textarea:focus,
.streams-ui input[type=text]:focus,
.streams-ui textarea:hover,
.streams-ui input[type=text]:hover {
    border: 1px solid #B9BCC0;
    box-shadow: none;
}

textarea.streams-ui-readonly:focus,
input.streams-ui-readonly[type=text]:focus,
textarea.streams-ui-readonly:hover,
input.streams-ui-readonly[type=text]:hover {
    border: 1px solid transparent;
    outline: none;
}

.streams-ui input[type="file"] {
	display: none;
}

.streams-ui .cke {
    height: auto !important;
    width: auto !important;
}

.streams-ui .cke_textarea_inline {
    height: 100% !important;
    width: 100% !important;
    color: #000 !important;
    background-color: transparent !important;
    padding: 3px;
    border: 1px solid transparent !important;
    overflow: hidden;
    font-weight: normal;
}

.streams-ui .cke_textarea_inline:focus, .streams-ui .cke_textarea_inline:hover {
    border: 1px solid #B9BCC0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.streams-ui .cke_textarea_inline-readonly:focus, .streams-ui .cke_textarea_inline-readonly:hover {
     border: 1px solid transparent !important;
}

.streams-ui-chevron-down:before,
.streams-ui-chevron-down:after,
.streams-ui-chevron-up:before,
.streams-ui-chevron-up:after,
.streams-ui-chevron-right:before,
.streams-ui-chevron-right:after,
.streams-ui-chevron-left:before,
.streams-ui-chevron-left:after {
    position: absolute;
    display: block;
    content: "";
    border: 6px solid transparent;
    /*adjust size*/
}

.streams-ui-chevron-down:before {
    border-top-color: #777;
    /*Chevron Color*/
}

.streams-ui-chevron-up:before {
    border-bottom-color: #777;
    /*Chevron Color*/
}

.streams-ui-chevron-right:before {
    border-left-color: #777;
    /*Chevron Color*/
}

.streams-ui-chevron-left:before {
    border-right-color: #777;
    /*Chevron Color*/
}

.streams-ui-chevron-down:after {
    border-top-color: #fff;
    /*Chevron Color*/
}

.streams-ui-chevron-up:after {
    border-bottom-color: #fff;
    /*Chevron Color*/
}

.streams-ui-chevron-right:after {
    border-left-color: #fff;
    /*Chevron Color*/
}

.streams-ui-chevron-left:after {
    border-right-color: #fff;
    /*Chevron Color*/
}

.streams-ui-chevron-down:hover:before {
    border-top-color: #4A90E2;
    /*Chevron Color*/
}

.streams-ui-chevron-up:hover:before {
    border-bottom-color: #4A90E2;
    /*Chevron Color*/
}

.streams-ui-chevron-right:hover:before {
    border-left-color: var(--primaryColor, #4A90E2);
    /*Chevron Color*/
}

.streams-ui-chevron-left:hover:before {
    border-right-color: #4A90E2;
    /*Chevron Color*/
}

.streams-ui-avatar div {
    border-radius: 50%;
    overflow: hidden;
    font-weight: 500;
    white-space: nowrap;
    color: #000;
    text-align: center;
}

.streams-ui-avatar div img {
    width: 32px;
    height: 32px;
    border: 0;
    vertical-align: top;
}

.streams-ui-header {
    position: relative;
    padding: 0px 5px 0px 5px;
    background-color: #f4f5f6;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;    
}

.streams-ui-header-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    flex-wrap: nowrap;
    width: 100%;
    text-align: left;
    padding-left: 5px;
}

.streams-ui-full .streams-ui-header-title {
    width: 50%;
}

.streams-ui-header-title > div {
    margin-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.streams-ui-header-title > a {
    flex: 0 0 auto;
    position: initial;
    top: initial;
    left: initial;
}

.streams-ui-close {
    position: absolute;
    top: 50%;
    margin-top: -14.5px;
    right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #B9BCC0;
    cursor: pointer;
}

.streams-ui-close i {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
}

.streams-ui-close:hover {
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-fullscreen-icon {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #B9BCC0;
    cursor: pointer;
}

.streams-ui-fullscreen-icon i {
    font-size: 21px;
    line-height: 100%;
    font-weight: 500;
}

.streams-ui-fullscreen-icon:hover {
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-help-icon {
    position: absolute;
    top: 50%;
    margin-top: -16.5px;
    right: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #B9BCC0;
    cursor: pointer;
}

.streams-ui-help-icon i {
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
}

.streams-ui-help-icon:hover {
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-magazine-icon {
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #B9BCC0;
    cursor: pointer;
}

.streams-ui-magazine-icon i {
    font-size: 21px;
    line-height: 100%;
    font-weight: 500;
}

.streams-ui-magazine-icon:hover {
    color: #4A90E2;
}

.streams-ui-body {
    position: absolute;
    top: 36px;
    left: 0;
    bottom: 36px;
    right: 0;
    overflow: hidden;
}

.streams-ui-body > div {
    height: 100%;
    width: 150%;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -webkit-transition: transform 200ms;
    /* Safari */
    transition: transform 200ms;
}

.streams-ui-body > div > div {
    position: relative;
    height: 100%;
    width: 33.333333333333336%;
    display: inline-block;
}

.streams-ui.streams-ui-half .streams-ui-body > div > div {
    width: 66.66666666666667%;
    display: inline-block;
}

.streams-ui-body > div > div > div {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.streams-ui-body > div > div > div > div {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border: 1px solid #E5E5E5;
}

.streams-ui-body .streams-ui-container-left {
/*    border-right: 1px solid #CDCFD2;*/
}

.streams-ui-body .streams-ui-container-right {
    
}

.streams-ui.streams-ui-half .streams-ui-body .streams-ui-container-left {
/*    border-right: none;*/
}

.streams-ui.streams-ui-half .streams-ui-body .streams-ui-container-right {
}

.streams-ui-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px 5px 0px 5px;
    /* background-color: #f4f5f6; */
    line-height: 36px;
    font-size: 16px;
    /* border-top: 1px solid #ddd; */
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;    
}

.streams-ui-streams-compose {
    background-color: var(--primary-button, #4A90E2);
    line-height: 12px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    min-width: 80px;
    float: left;
    border: 1px solid var(--primary-button, #4A90E2);
    font-weight: 700;
    font-size: 12px;
    text-shadow: none;
    border-radius: 20px;
    position: relative;
    margin: 8px 0 0 9px;
}

.streams-ui-streams-compose:hover {
    background-color: var(--external-app-button-hover, #3B73B5);
    color: #fff;
}

.streams-ui-streams-filter {
    font-weight: 500;
    cursor: pointer;
    float: right;
    padding: 0 25px 0 0;
    margin: 11px 10px 0 0;
    text-decoration: none;
    color: #777;
    fill: #777;
    position: relative;
    z-index: 9010;
}

.streams-ui-streams-filter span:first-of-type {
    margin-right: 5px;
}

.streams-ui-streams-filter span:last-of-type {
    color: var(--primaryColor, #4A90E2);
    fill: var(--primaryColor, #4A90E2);
}

.streams-ui-streams-filter:hover span:last-of-type {
    text-decoration: underline;
}

.streams-ui-streams-filter.streams-ui-chevron-down:before {
    top: 6px;
    right: 4px;
    border-top-color: var(--primaryColor, #4A90E2);
}

.streams-ui-streams-filter.streams-ui-chevron-down:after {
    top: 4px;
    /*adjust thickness*/
    right: 4px;
}

.streams-ui-streams-filter.streams-ui-chevron-up:before {
    top: -1px;
    right: 4px;
    border-bottom-color: #4A90E2;
}

.streams-ui-streams-filter.streams-ui-chevron-up:after {
    top: 1px;
    /*adjust thickness*/
    right: 4px;
}

.streams-ui-streams-filter-list {
    position: absolute;
    top: 100%;
    left: 0;
    float: left;
    min-width: 215px;
    width: 100%;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #B9BCC0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border: 1px solid #B9BCC0;
    padding: 5px 0px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    color: #000;
}

.streams-ui-streams-filter-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 250px;
}

.streams-ui-streams-filter-list li {
    padding: 0 10px;
    padding-left: 22px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #000;
}

.streams-ui-streams-filter-list li.selected {
    background-image: url(images/check-black.gif);
    background-position: 5px 9px;
    background-repeat: no-repeat;
}

.streams-ui-streams-filter-list li:hover {
    background-color: #1AAFD0;
    color: #fff;
}

.streams-ui-streams-filter-list div {
    color: #777;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
}

.streams-ui-streams-refresh {
    float: right;
    z-index: 9010;    
    height: 32px;
    width: 32px;
    color: #B9BCC0;
    text-align: center;
    cursor: pointer;
    font-size: 32px;
    font-weight: 500;
    margin: 5px 0 0 0;    
}

.streams-ui-streams-refresh:hover {
    color: var(--primaryColor, #4A90E2);
    fill: var(--primaryColor, #4A90E2);
}

.streams-ui-streams-search {
    float: left;
    width: 300px;
    color: #000;
    height: 30px;
    padding: 0 5px 0 5px;
    border: 1px solid #B9BCC0;
    border-radius: 18px;
    margin: 9px Calc(50% - 150px) 0 Calc(50% - 150px);
}

.streams-ui-streams-search-disabled {

}

.streams-ui-streams-search form {
    position: relative;
    height: 100%;
    width: 100%;
}

.streams-ui-streams-search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    font-size: 16px;
    font-weight: 400;
    color: #B9BCC0;
    text-align: center;
}

.streams-ui-streams-search-input {
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 0px;
    right: 25px;
}

.streams-ui-streams-search-input input[type=text] {
    vertical-align: top;
}

.streams-ui-streams-search-input input[type=text]:hover,
.streams-ui-streams-search-input input[type=text]:focus {
    border: 1px solid transparent;
}

.streams-ui-streams-search-clear {
    position: absolute;
    top: 4px;
    right: 1px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 22px;
    font-size: 16px;
    text-align: center;
    border-color: transparent;
    color: #B9BCC0;
}

.streams-ui-streams-search-clear:hover {
    background-color: var(--primaryColor, #4A90E2);
    color: white;
    fill: white;
}

.streams-ui-streams-streams {
    position: absolute;
    top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    border-radius: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.streams-ui-streams-streams-more {
    text-align: center;
    cursor: pointer;
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-streams-streams table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.streams-ui-streams-streams .streams-ui-streams-empty-outer {
    display: table;
    width: 100%;
    height: 100%;
}

.streams-ui-streams-streams .streams-ui-streams-empty-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.streams-ui-streams-streams table tr,
.streams-ui-streams-streams table tr:hover,
html.dark .streams-ui-streams-streams table tr,
html.dark .streams-ui-streams-streams table tr:hover,
html.light .streams-ui-streams-streams table tr,
html.light .streams-ui-streams-streams table tr:hover {
    background-color: inherit !important;
    color: inherit !important;
    cursor: pointer;
}

.streams-ui-streams-streams table td {
    height: 50px;
    padding-right: 10px;
    border-top: 1px solid #E5E5E5;
    border-bottom: none;
}

.streams-ui-streams-streams table tr:last-of-type td {
    border-bottom: 1px solid #E5E5E5;
}

.streams-ui-streams-streams table tr.selected td, .streams-ui-streams-streams table tr:hover td {
    background-color: #E8F7FB;
    border-bottom: 1px solid #1AAFD0;
    border-top: 1px solid #1AAFD0;
}

.streams-ui-streams-streams table tr.selected .streams-ui-chevron-down:after, .streams-ui-streams-streams table tr:hover .streams-ui-chevron-down:after {
    border-top-color: #E8F7FB;
    /*Chevron Color*/
}

.streams-ui-streams-streams table tr.selected .streams-ui-chevron-up:after, .streams-ui-streams-streams table tr:hover .streams-ui-chevron-up:after {
    border-bottom-color: #E8F7FB;
    /*Chevron Color*/
}

.streams-ui-streams-streams table tr.selected .streams-ui-chevron-right:after, .streams-ui-streams-streams table tr:hover .streams-ui-chevron-right:after {
    border-left-color: #E8F7FB;
    /*Chevron Color*/
}

.streams-ui-streams-streams table tr.selected .streams-ui-chevron-left:after, .streams-ui-streams-streams table tr:hover .streams-ui-chevron-left:after {
    border-right-color: #E8F7FB;
    /*Chevron Color*/
}

td.streams-ui-title {
    width: 100%;
    padding-left: 10px;
}

.streams-ui-streams-streams table tr.selected {
/*    border-left: 1px solid #f60;*/
}

td.streams-ui-title input[type="text"] {
    max-height: 30px;
    font-size: 14px;
}

td.streams-ui-title input.streams-ui-readonly[type=text] {
    cursor: pointer;
}

.streams-ui-streams-streams table tr.unread td.streams-ui-title input[type=text] {
    color: var(--primaryColor, #4A90E2);
    font-weight: 600;
}

td.streams-ui-title .streams-ui-date {
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #9a9a9a;
    height: 16px;
    font: inherit;
    font-size: 12px;
    line-height: 16px;
    border-left: 1px solid transparent;
}

td.streams-ui-title div {
    width: 100%;
    height: 100%;
}

td.streams-ui-isFavorite {
    cursor: pointer;
}

td.streams-ui-isFavorite i {
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

td.streams-ui-avatar div {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 500;
    line-height: 32px;
}

.streams-ui-streams-streams table tr.selected td.streams-ui-chevron {
/*    border-right: 1px solid #f60;*/
}

td.streams-ui-chevron div {
    position: relative;
}

td.streams-ui-chevron .streams-ui-chevron-right:before {
    top: -6px;
    right: -12px;
}

td.streams-ui-chevron .streams-ui-chevron-right:after {
    top: -6px;
    /*adjust thickness*/
    right: -10px;
}

.streams-ui-streams-streams table td.streams-ui-empty {
    padding: 0;
    border: none;
    margin: 0;
}

.streams-ui-streams-streams table td.streams-ui-empty, .streams-ui-streams-streams table tr.selected td.streams-ui-empty {
    padding-right: 0px;
    border: none;
}

.streams-ui-stream {
    display: flex;
    flex-direction: column;  
    background-color: #e6e6e6 !important;
}

.streams-ui-stream-top {
    position: relative;
    background-color: #fff;
    margin-bottom: 10px;
}

.streams-ui-stream-middle {
    position: relative;
    flex: auto;
}

.streams-ui-stream-bottom {
    position: relative;
    background-color: #fff;
}

.streams-ui-stream .streams-ui-avatar,
.streams-ui-stream .streams-ui-user,
.streams-ui-stream .streams-ui-date {
    position: relative;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #9a9a9a;
    font-weight: 500;
    margin-right: 10px;
}

.streams-ui-stream .streams-ui-avatar {
    line-height: 32px;
    margin-left: 10px;
    margin-right: 0px;
    margin-bottom: 2px;
}

.streams-ui-stream .streams-ui-user {
    margin-top: 7px;
    margin-left: 10px;
    margin-right: 0;
    max-width: calc(100% - 20px);
    color: #000;    
}

.streams-ui-stream .streams-ui-date {
    margin-top: 8px;
    font-weight: 400;
    font-size: 12px;
    margin-right: 0;
    margin-left: 10px;
    max-width: calc(100% - 20px);
}

.streams-ui-stream .streams-ui-avatar div {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.streams-ui-stream-actions {
    position: relative;
    float: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
    line-height: 30px;
}

.streams-ui-action {
    display: inline-block;
    height: 30px;
    width: 30px;
    color: #B9BCC0;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.streams-ui-action:hover {
    color: var(--primaryColor, #4A90E2);
    fill: var(--primaryColor, #4A90E2);
}

.streams-ui-action-favorite {}

.streams-ui-action-favorite:hover {
    color: #f60;
    fill: #f60;    
}

.streams-ui-action-tags {}

.streams-ui-stream-close {
    position: relative;
    float: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 5px;
    margin-top: -4px;
    color: #777;
    cursor: pointer;
}

.streams-ui-stream-close i {
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
}

.streams-ui-stream-close:hover {
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-stream-scroll {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;    
}

.streams-ui-stream-section {
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding-top: 10px;
    margin-bottom: 6px;
    /* border-bottom: 1px solid #CDCFD2; */
    box-shadow: 1px 1px 1px 0 rgba(142,142,142,0.59);    
}

.streams-ui-stream-title,
.streams-ui-stream-comment,
.streams-ui-stream-anchors {
    position: relative;
    float: left;
    width: 100%;
    color: #000;
}

.streams-ui-stream-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding: 5px 0 5px 10px;
    margin: 0;
    width: Calc(100% - 25px);
}

.streams-ui-stream-title input[type=text] {
    font-weight: 600;
}

.streams-ui-stream-comment {
    padding: 10px;
    font-size: 16px;
}

.streams-ui-stream-comment textarea {
    height: auto;
    min-height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.streams-ui-stream-comment .cke_textarea_inline {
    height: auto !important;
    min-height: 100% !important;
}

.streams-ui-stream-sharing {
    display: flex;
    position: relative;
    float: left;
    width: 100%;
    padding: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

.streams-ui-stream-sharing > div {
    white-space: nowrap;
}

.streams-ui-stream-teams {
    overflow: hidden;
    text-overflow: ellipsis;
}

.streams-ui-stream-teams.streams-ui-team-readonly {
    /* display: none; */
}

.streams-ui-stream-teams > span:last-child {
    color: var(--primaryColor, #4A90E2);
    cursor: pointer;
}

.streams-ui-stream-teams.streams-ui-team-readonly  > span:last-child {
    color: initial;
    cursor: default;
}

.streams-ui-stream-sharing > div:nth-child(2) {
    margin: 0 5px;
}

.streams-ui-stream-sharing > div:nth-child(3) > span:last-child {
    color: var(--primaryColor, #4A90E2);
    cursor: pointer;
}

.streams-ui-multimedia {
    position: relative;
    float: left;
    width: 100%;    
    padding: 5px;
}

.streams-ui-multimedia .streams-ui-image {
    position: relative;
    display:inline-block;
    max-height: 150px;
    width: auto;
    cursor: pointer;
    padding: 3px 5px 3px 5px;
    margin: 1px;
}

.streams-ui-multimedia .streams-ui-image-loading {
    max-width: 100px;
    text-align: center;    
    height: auto;
    max-height: 125px;
}

.streams-ui-multimedia .streams-ui-image-loading p {
    font-size: 12px;
}

.streams-ui-multimedia .streams-ui-image img {
/*    height: 100%;*/
/*    width: 100%;*/
    display: block;
    margin: auto;
    border: 0;
    max-height: 150px;
}

.streams-ui-multimedia .streams-ui-image-loading img {
    display: none;
}

.streams-ui-multimedia .streams-ui-image div:last-of-type {
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    font-size: 10px;
    text-align: center;
    border-color: transparent;
    background-color: #F8F8F9;    
    color: #676D76;
    display: none;
}

.streams-ui-multimedia .streams-ui-image:hover div:last-of-type {
    display: block;
}

.streams-ui-multimedia .streams-ui-image.streams-ui-image-readonly:hover div:last-of-type {
    display: none;
}

.streams-ui-multimedia .streams-ui-image div:hover:last-of-type {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-multimedia .streams-ui-attachment, .streams-ui-multimedia .streams-ui-link {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 3px 5px 3px 5px;
    margin: 1px;
    background-color: transparent;
    color: #676D76;
    max-width: 100px;
    text-align: center;
}

.streams-ui-multimedia .streams-ui-attachment div:first-of-type, .streams-ui-multimedia .streams-ui-link div:first-of-type {
    width: 42px;
    height: 44px;
    border: 0;
    margin-left: Calc(50% - 25px);
    background-image: url(images/fileextensions.png);
    background-repeat: no-repeat;
    background-position: -234px -510px;
}

.streams-ui-multimedia .streams-ui-attachment p, .streams-ui-multimedia .streams-ui-link p {
    margin: 0 !important;
    padding: 0 10px 0 0 !important;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 40px;
    padding-right: 10px;
    background-color: inherit;
    text-align: center;
    word-break: break-all;
}

.streams-ui-multimedia .streams-ui-attachment p:after, .streams-ui-multimedia .streams-ui-link p:after {
    content: '...';
    text-align: right;
    bottom: 0;
    right: 0;
    width: 25%;
    display: block;
    position: absolute;
}

@supports (-webkit-line-clamp: 1) {
    .streams-ui-multimedia .streams-ui-attachment p, .streams-ui-multimedia .streams-ui-link p {
        padding: 0 !important;
    }
    .streams-ui-multimedia .streams-ui-attachment p:after, .streams-ui-multimedia .streams-ui-link p:after {
        display: none !important;
    }
}

.streams-ui-multimedia .streams-ui-attachment div:last-of-type, .streams-ui-multimedia .streams-ui-link div:last-of-type {
    position: absolute;
    top: -8px;
    right: Calc(50% - 29px);
    border-radius: 50%;
    height: 16px;
    width: 16px;
    font-size: 10px;
    text-align: center;
    border-color: transparent;
    background-color: #F8F8F9;    
    color: #676D76;
    display: none;
}

.streams-ui-multimedia .streams-ui-attachment:hover div:last-of-type, .streams-ui-multimedia .streams-ui-link:hover div:last-of-type {
    display: block;
}

.streams-ui-multimedia .streams-ui-attachment div:hover:last-of-type, .streams-ui-multimedia .streams-ui-link div:hover:last-of-type {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-multimedia .streams-ui-attachment.streams-ui-attachment-readonly div:last-of-type, .streams-ui-multimedia .streams-ui-link.streams-ui-link-readonly div:last-of-type {
    display: none;
}

.streams-ui-multimedia .streams-ui-upload-progress {
    display: inline-block;
    position: relative;
    border-radius: 15px;
    border: 1px solid #E1E2E4;
    padding: 0;
    margin: 0;
    background-color: #F8F8F9;
    color: #676D76;
    width: 100px;
    height: 24px;
    overflow: hidden;    
}

.streams-ui-multimedia .streams-ui-upload-progress div {
    width: 0%;
    height: 100%;
    background-color: #4A90E2;   
}

.streams-ui-multimedia .streams-ui-link-video {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 3px 5px 3px 5px;
    margin: 1px;
}

.streams-ui-multimedia .streams-ui-link-video iframe {
    cursor: pointer;
}

.streams-ui-multimedia .streams-ui-link-video div:last-of-type {
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    font-size: 10px;
    text-align: center;
    border-color: transparent;
    background-color: #F8F8F9;    
    color: #676D76;
    display: none;
}

.streams-ui-multimedia .streams-ui-link-video:hover  div:last-of-type {
    display: block;
}

.streams-ui-multimedia .streams-ui-link-video div:hover:last-of-type {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-multimedia .streams-ui-link-video.streams-ui-link-readonly div:last-of-type {
    display: none;
}

.streams-ui-extension-rtf {
    background-position: -7px -5px !important;    
}

.streams-ui-extension-wmv {
    background-position: -7px -62px !important;    
}

.streams-ui-extension-xml {
    background-position: -7px -230px !important;    
}

.streams-ui-extension-pdf {
    background-position: -7px -286px !important;    
}

.streams-ui-extension-url {
    background-position: -63px -510px !important;    
}

.streams-ui-extension-cal {
    background-position: -63px -230px !important;    
}

.streams-ui-extension-dat {
    background-position: -63px -118px !important;    
}

.streams-ui-extension-wri {
    background-position: -63px -62px !important;    
}

.streams-ui-extension-bat {
    background-position: -119px -118px !important;    
}

.streams-ui-extension-hlp {
    background-position: -119px -174px !important;    
}

.streams-ui-extension-ppt {
    background-position: -119px -286px !important;    
}

.streams-ui-extension-ini {
    background-position: -119px -398px !important;    
}

.streams-ui-extension-txt {
    background-position: -175px -286px !important;    
}

.streams-ui-extension-xlsx {
    background-position: -175px -342px !important;    
}

.streams-ui-extension-log {
    background-position: -287px -286px !important;    
}

.streams-ui-extension-zip {
    background-position: -343px -286px !important;    
}

.streams-ui-extension-pptx {
    background-position: -343px -62px !important;    
}

.streams-ui-extension-docx {
    background-position: -399px -62px !important;    
}

.streams-ui-extension-rar {
    background-position: -399px -118px !important;    
}

.streams-ui-extension-mov {
    background-position: -511px -62px !important;    
}

.streams-ui-extension-xls {
    background-position: -511px -118px !important;    
}

.streams-ui-extension-doc {
    background-position: -511px -342px !important;    
}

.streams-ui-stream-anchors-wrapper {
    position: relative;
    float: left;
    width: 100%;
}

.streams-ui-stream-anchors {
    width: 100%;
    padding: 5px 5px 0 40px;
    /* border-bottom: 1px solid #CDCFD2; */
    min-height: 35px;
    max-height: 155px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.streams-ui-stream-anchors.expanded {
    max-height: initial;
}

.streams-ui-stream-anchor-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 16px;
    font-weight: 400;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: var(--primaryColor, #4A90E2);
    text-align: center;
    z-index: 1;
}

.streams-ui-stream-anchor-icon:hover {
    color: var(--primaryColor-dark, #29578D);
    fill: var(--primaryColor-dark, #29578D);
}

.streams-ui-stream-anchor {
    display: inline-flex;
    position: relative; 
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid #E1E2E4;
    padding: 3px 10px 3px 15px;
    margin: 1px;
    background-color: #DDC1FD;
    color: #533677;
    line-height: 16px;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
}

.streams-ui-stream-anchor div {
    font-size: 12px;
}

.streams-ui-stream-anchor div:first-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 5px;
}

.streams-ui-stream-anchor div:last-of-type {
    flex: 0 0 auto;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
    text-align: center;
    border-color: transparent;
}

.streams-ui-stream-anchor div:hover:last-of-type {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-stream-anchor:hover {
    background-color: #E8F7FB;
    border-color: #80E6FF;
    color: #1AAFD0;
}

.streams-ui-stream-tag {
    background-color: #E8F7FB;
}

.streams-ui-stream-anchor.streams-ui-stream-anchor-readonly {
    cursor: default;
}

.streams-ui-stream-anchor.streams-ui-stream-anchor-readonly div:last-of-type {
    display: none;
}

.streams-ui-stream-anchor.streams-ui-stream-anchor-readonly:hover {
    background-color: #F8F8F9;
    border-color: #E1E2E4;
    color: #000;
}

.streams-ui-stream-responses {
    background-color: #e6e6e6;
    padding-bottom: 1px;
}

.streams-ui-stream-response {
    position: relative;
    padding-top: 10px;
    margin-bottom: 8px;
    width: 100%;
    background-color: #fff;
    /* border-bottom: 1px solid #CDCFD2; */
    display: flex;
    flex-direction: column;    
    box-shadow: 1px 1px 1px 0px rgba(142, 142, 142, 0.59);
}

.streams-ui-stream-response-avatar {}

.streams-ui-stream-response-user {}

.streams-ui-stream-response-date {}

.streams-ui-stream-response-actions {}

.streams-ui-stream-response-action {}

.streams-ui-stream-response-action:hover {}

.streams-ui-stream-response-comment {
    position: relative;
    width: 100%;
    color: #000;
    padding: 0 20px 5px 20px;
    word-break: break-word;    
}

.streams-ui-stream-response-sharing {
    position: relative;
    float: left;
    width: 100%;
    padding: 0 20px 5px 20px;
    overflow: hidden;
    white-space: nowrap;
    color: var(--primaryColor, #4A90E2);
    cursor: pointer;
}

.streams-ui-stream-compose {
    position: relative;
    min-height: 50px;
    /* background-color: #F8F8F9; */
    /* border-top: 1px solid #E1E2E4; */
    transition: height 200ms, min-height 200ms;
}

.streams-ui-stream-compose.streams-ui-stream-compose-active {
    min-height: 150px;
}

.streams-ui-stream-compose.streams-ui-stream-compose-active.streams-ui-stream-compose-cke {
    margin-top: 35px;
}

.streams-ui-stream-compose-avatar {
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 0;
}

.streams-ui-stream-compose-avatar div {}

.streams-ui-stream-compose-comment {
    position: absolute;
    top: 10px;
    left: 50px;
    right: 20px;
    bottom: 10px;
    border: 1px solid #CDCFD2;
    overflow: hidden;
}

.streams-ui-stream-compose-comment:hover {
    border: 1px solid #B9BCC0;
}

.streams-ui-stream-compose-comment textarea {
    border: none;
    height: 80px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.streams-ui-stream-compose-comment textarea:focus,
.streams-ui-stream-compose-comment textarea:hover {
    border: none;
}

.streams-ui-stream-compose-comment .cke_textarea_inline {
    border: none !important;
    height: 80px !important;
    max-height: 200px !important;
}

.streams-ui-stream-compose-comment .cke_textarea_inline:focus,
.streams-ui-stream-compose-comment .cke_textarea_inline:hover {
    border: none !important;
}

.streams-ui-stream-compose-buttons {
    position: absolute;
    bottom: 0;
    display: none;
    width: 100%;
    border-top: 1px solid #CDCFD2;
    overflow: hidden;
}

.streams-ui-stream-compose-active .streams-ui-stream-compose-buttons, .streams-ui-stream-compose-active i.ion-edit {
    display: inherit;
}

.streams-ui-stream-compose-button {
    background-color: var(--primary-button, #4A90E2);
    line-height: 12px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    min-width: 80px;
    float: right;
    margin: 10px;
    border: 1px solid var(--primary-button, #4A90E2);
    font-weight: 700;
    font-size: 12px;
    text-shadow: none;
    border-radius: 20px;
    position: relative;
}

.streams-ui-stream-compose-button:hover {
    background-color: var(--external-app-button-hover, #3B73B5);
    color: #fff;
}

.streams-ui-stream-compose-button-disabled {
	opacity: .3;
	cursor: default;
}

.streams-ui-stream-compose-button-disabled:hover {
	opacity: .3;
	text-decoration: none;
}

.streams-ui-stream-compose-check {
    display: inline-block;
    cursor: pointer;
    float: left;
    margin: 13px 10px 10px 10px;
    position: relative;
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-stream-compose-check i {
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    margin-left: 1px;
    margin-right: 5px;
    float: left;
}

.streams-ui-stream-compose-check div {
    height: 20px;
    line-height: 22px;
    float: left;
}

.streams-ui-stream-compose-check-include i {
    color: var(--primaryColor, #4A90E2);
}

.streams-ui-isFavorite {
    color: #f60;
}

.streams-ui-selector-dimensions {
    position: absolute;
    top: 46px;
    left: 10px;
    right: 10px;
    bottom: 175px;
    overflow: hidden;
    white-space: nowrap;
}

.streams-ui-selector-dimension {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    min-width: 280px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.streams-ui-selector-contents > div:first-child {
    margin-left: 0px;
}

.streams-ui-selector-contents > div:last-child {
    margin-right: 0px;
}

.streams-ui-selector-dimension-title {
    float: left;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    margin: 5px 0 0 22px;
    max-width: Calc(100% - 177px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.streams-ui-selector-dimension-actions {
    float: left;
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
    color: #777;
    margin-top: 5px;
}

.streams-ui-selector-dimension-actions > div {
    display: inline-block;
    margin: 3px 5px 0 5px;
}

.streams-ui-selector-dimension-action {
    text-decoration: underline;
    cursor: pointer;
}

.streams-ui-selector-dimension-action:hover {
    color: #4A90E2;
}

.streams-ui-selector-search {
    position: absolute;
    top: 10px;
    left: 25%;
    right: 25%;
    color: #000;
    height: 30px;
    padding: 0 5px 0 5px;
    border: 1px solid #B9BCC0;
    border-radius: 18px;
}

.streams-ui-selector-search form {
    position: relative;
    height: 100%;
    width: 100%;
}

.streams-ui-selector-search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    font-size: 16px;
    font-weight: 400;
    color: #B9BCC0;
    text-align: center;
}

.streams-ui-selector-search-input {
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 0px;
    right: 25px;
}

.streams-ui-selector-search-input input[type=text] {
    vertical-align: top;
}

.streams-ui-selector-search-input input[type=text]:hover,
.streams-ui-selector-search-input input[type=text]:focus {
    border: 1px solid transparent;
}

.streams-ui-selector-search-clear {
    position: absolute;
    top: 4px;
    right: 1px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 22px;
    font-size: 16px;
    text-align: center;
    border-color: transparent;
    color: #B9BCC0;
}

.streams-ui-selector-search-clear:hover {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-selector-dimension-members {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 35px;
    bottom: 0px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.streams-ui-selector-dimension-members-members {
    position: absolute;
    left: 0px;
    right: 30px;
    top: 0px;
    bottom: 0px;
    overflow: hidden;
}

.streams-ui-selector-dimension-member {
    position: relative;
    left: 0px;
    right: 0px;
    height: 25px;
    text-align: left;
    padding: 0 10px;
    padding-left: 22px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #000;
}

.streams-ui-selector-dimension-member-label {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 22px;
    right: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streams-ui-selector-dimension-member-include {
    background-image: url(images/check-black.gif);
    background-position: 5px 9px;
    background-repeat: no-repeat;
}

.streams-ui-selector-dimension-member-checkbox {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 22px;
}

.streams-ui-selector-dimension-member:hover {
    background-color: #1AAFD0;
    color: #fff;
}

.streams-ui-selector-dimension-alphasearch {
    position: absolute;
    right: 0px;
    width: 30px;
    top: 0px;
    bottom: 0px;
    padding: 5px 0px 5px 0px;
    text-align: center;
    color: #F8F8F9;
    font-weight: normal;
    background-color: #676D76;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    font-size: 12px;
}

.streams-ui-selector-dimension-letter {
    cursor: pointer;
}

.streams-ui-selector-dimension-letter-selected {
    color: #000;
    background-color: #fff;
}

.streams-ui-selector-anchors {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 40px;
    height: 125px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.streams-ui-selector-pager {
    position: absolute;
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 54px;
    color: #c0c0c0;
    font-size: 24px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}

.streams-ui-selector-pager-disabled {
    opacity: 0.1;
}

.streams-ui-selector-pager-hidden {
    display: none;
}

.streams-ui-selector-pager-left {
    left: 10px;
}

.streams-ui-selector-pager-right {
    right: 10px;
}

.streams-ui-selector-tags-search {
    position: absolute;
    bottom: 5px;
    left: 25%;
    right: 25%;
    color: #000;
    height: 30px;
    padding: 0 5px 0 5px;
    border: 1px solid #B9BCC0;
    border-radius: 18px;
}

.streams-ui-selector-tags-search form {
    position: relative;
    height: 100%;
    width: 100%;
}

.streams-ui-selector-tags-search-input {
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 0px;
    right: 25px;
}

.streams-ui-selector-tags-search-input input[type=text] {
    vertical-align: top;
}

.streams-ui-selector-tags-search-input input[type=text]:hover,
.streams-ui-selector-tags-search-input input[type=text]:focus {
    border: none;
}

.streams-ui-selector-tags-search-clear {
    position: absolute;
    top: 4px;
    right: 1px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 22px;
    font-size: 16px;
    text-align: center;
    border-color: transparent;
    color: #B9BCC0;
}

.streams-ui-selector-tags-search-clear:hover {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-selector-tags-search-button {
    position: absolute;
    right: -35px;
    padding: 0px;
    top: 0px;
    height: 28px;
    line-height: 28px;
    width: 28px;
    border: 1px solid #c0c0c0;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    color: #B9BCC0;
}

.streams-ui-selector-tags-search-matches {
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: 40px;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
}

.streams-ui-selector-tags-search-match {
    padding: 0 10px;
    padding-left: 22px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #000;
}

.streams-ui-selector-tags-search-match:hover {
    background-color: #1AAFD0;
    color: #fff;
}

.streams-ui-selector-nodimensions {
    min-height: 170px;
}

.streams-ui-selector-nodimensions .streams-ui-selector-search,
.streams-ui-selector-nodimensions .dimensions {
    display: none;
}

.streams-ui-hidden {
    display: none;
}

.streams-ui-invisible {
    visibility: hidden;
}

.streams-ui-filter-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
    background-color: inherit;
}

.streams-ui-filter-header {
    position: relative;
    padding: 0px 5px 0px 5px;
    background-color: #f4f5f6;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}

.streams-ui-filter-header-title {
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.streams-ui-filter-close {
    position: absolute;
    top: 50%;
    margin-top: -14.5px;
    right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #777;
    cursor: pointer;
}

.streams-ui-filter-close i {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
}

.streams-ui-filter-close:hover {
    color: #4A90E2;
}

.streams-ui-filter-body {
    position: absolute;
    top: 36px;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.streams-ui-filter-dimensions {
    position: absolute;
    top: 46px;
    left: 0px;
    right: 0px;
    bottom: 45px;
    overflow: hidden;
    white-space: nowrap;
}

.streams-ui-filter-dimension {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    min-width: 280px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.streams-ui-filter-contents > div:first-child {
    margin-left: 0px;
}

.streams-ui-filter-contents > div:last-child {
    margin-right: 0px;
}

.streams-ui-filter-dimension-title {
    float: left;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    margin-right: 5px;
    max-width: Calc(100% - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.streams-ui-filter-dimension-actions {
    float: left;
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
    color: #777;
}

.streams-ui-filter-dimension-actions > div {
    display: inline-block;
    margin: 3px 5px 0 5px;
}

.streams-ui-filter-dimension-action {
    text-decoration: underline;
    cursor: pointer;
}

.streams-ui-filter-dimension-action:hover {
    color: #4A90E2;
}

.streams-ui-filter-search {
    position: absolute;
    top: 10px;
    left: 25%;
    right: 25%;
    color: #000;
    height: 30px;
    padding: 0 5px 0 5px;
    border: 1px solid #B9BCC0;
    border-radius: 18px;
}

.streams-ui-filter-search form {
    position: relative;
    height: 100%;
    width: 100%;
}

.streams-ui-filter-search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    font-size: 16px;
    font-weight: 400;
    color: #B9BCC0;
    text-align: center;
}

.streams-ui-filter-search-input {
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 0px;
    right: 25px;
}

.streams-ui-filter-search-input input[type=text] {
    vertical-align: top;
}

.streams-ui-filter-search-input input[type=text]:hover,
.streams-ui-filter-search-input input[type=text]:focus {
    border: 1px solid transparent;
}

.streams-ui-filter-search-clear {
    position: absolute;
    top: 4px;
    right: 1px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 22px;
    font-size: 16px;
    text-align: center;
    border-color: transparent;
    color: #B9BCC0;
}

.streams-ui-filter-search-clear:hover {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-filter-dimension-members {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 35px;
    bottom: 25px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid #d8d8d8;
}

.streams-ui-filter-dimension-joins {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: visible;
    text-align: center;
}

.streams-ui-filter-dimension-join {
    position: absolute;
    left: -40px;
    top: 50%;
    margin-top: -9px;
    width: 40px;
    cursor: pointer;
    color: #4A90E2;
    text-align: center;
}

.streams-ui-filter-dimension-joins > .streams-ui-filter-member-join,
.streams-ui-filter-member-separator {
    display: inline-block;
    margin: 3px 5px 0 5px;
}

.streams-ui-filter-member-join {
    cursor: pointer;
}

.streams-ui-filter-member-join:hover {
    color: #4A90E2;
    text-decoration: underline;
}

.streams-ui-filter-member-join-selected {
    color: #4A90E2;
    text-decoration: underline;
}

.streams-ui-filter-dimension-members-members {
    position: absolute;
    left: 0px;
    right: 30px;
    top: 0px;
    bottom: 0px;
    overflow: hidden;
}

.streams-ui-filter-dimension-member {
    position: relative;
    left: 0px;
    right: 0px;
    height: 25px;
    text-align: left;
    padding: 0 10px;
    padding-left: 22px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #000;
}

.streams-ui-filter-dimension-member-label {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 22px;
    right: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streams-ui-filter-dimension-member-include {
    background-image: url(images/check-black.gif);
    background-position: 5px 9px;
    background-repeat: no-repeat;
}

.streams-ui-filter-dimension-member-checkbox {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 22px;
}

.streams-ui-filter-dimension-member:hover {
    background-color: #1AAFD0;
    color: #fff;
}

.streams-ui-filter-dimension-alphasearch {
    position: absolute;
    right: 0px;
    width: 30px;
    top: 0px;
    bottom: 0px;
    padding: 5px 0px 5px 0px;
    text-align: center;
    color: #F8F8F9;
    font-weight: normal;
    background-color: #676D76;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    font-size: 12px;
}

.streams-ui-filter-dimension-letter {
    cursor: pointer;
}

.streams-ui-filter-dimension-letter-selected {
    color: #000;
    background-color: #fff;
}

.streams-ui-filter-anchors {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 40px;
    height: 125px;
    overflow: hidden;
}

.streams-ui-filter-pager {
    position: absolute;
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 12px;
    color: #c0c0c0;
    font-size: 24px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}

.streams-ui-filter-pager-disabled {
    opacity: 0.1;
}

.streams-ui-filter-pager-hidden {
    display: none;
}

.streams-ui-filter-pager-left {
    left: 10px;
}

.streams-ui-filter-pager-right {
    right: 10px;
}

.streams-ui-filter-tags-search {
    position: absolute;
    bottom: 5px;
    left: 25%;
    right: 25%;
    color: #000;
    height: 30px;
    padding: 0 5px 0 5px;
    border: 1px solid #B9BCC0;
    border-radius: 18px;
}

.streams-ui-filter-tags-search form {
    position: relative;
    height: 100%;
    width: 100%;
}

.streams-ui-filter-tags-search-input {
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 0px;
    right: 25px;
}

.streams-ui-filter-tags-search-input input[type=text] {
    vertical-align: top;
}

.streams-ui-filter-tags-search-input input[type=text]:hover,
.streams-ui-filter-tags-search-input input[type=text]:focus {
    border: none;
}

.streams-ui-filter-tags-search-clear {
    position: absolute;
    top: 4px;
    right: 1px;
    display: table-cell;
    vertical-align: middle;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 16px;
    text-align: center;
    border-color: transparent;
    color: #B9BCC0;
}

.streams-ui-filter-tags-search-clear:hover {
    background-color: #4A90E2;
    color: white;
    fill: white;
}

.streams-ui-filter-tags-search-button {
    position: absolute;
    right: -35px;
    padding: 0px;
    top: 0px;
    height: 28px;
    line-height: 28px;
    width: 28px;
    border: 1px solid #c0c0c0;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    color: #B9BCC0;
}

.streams-ui-filter-tags-search-matches {
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: 40px;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
}

.streams-ui-filter-tags-search-match {
    padding: 0 10px;
    padding-left: 22px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #000;
}

.streams-ui-filter-tags-search-match:hover {
    background-color: #1AAFD0;
    color: #fff;
}

.streams-ui-filter-nodimensions {
    min-height: 170px;
}

.streams-ui-filter-nodimensions .streams-ui-filter-search,
.streams-ui-filter-nodimensions .dimensions {
    display: none;
}

.streams-ui-filter-buttons {
    position: absolute;
    left: 0;
    right: 10px;
    bottom: 10px;
}

.streams-ui-filter-button {
    background-color: #4A90E2;
    line-height: 12px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    min-width: 80px;
    float: right;
    border: 1px solid #4A90E2;
    font-weight: 700;
    font-size: 12px;
    text-shadow: none;
    border-radius: 20px;
    position: relative;
    margin-right: 10px;
}

.streams-ui-filter-button:hover {
    background-color: #3B73B5;
    color: #fff;
}

.streams-ui-list {
	position:absolute;
	-webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
	min-width: 150px;
	max-width: 40%;
	z-index: 9050;
	padding: 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.streams-ui-list * {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.streams-ui-list-container {
	position: relative;
    word-break: break-word;
	/*border: 1px solid #555;*/
}

.streams-ui-list-content {
	position: relative;
    word-break: break-word;
    padding: 8px 0;
    overflow: hidden;
    height: auto;
    width: auto;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.15px;
	color: #212121;
	background: #fff;
	box-shadow: 0 0 1px rgb(33 33 33 / 5%), 0 2px 4px rgb(33 33 33 / 10%);
	border: 1px solid rgb(33 33 33 / 25%);
	border-radius: 0 0 3.42px 3.42px;
}

.streams-ui-pointer {
	position: absolute;
    overflow: hidden;
    margin: 0;
}

.streams-ui-pointer-top {
	top: 0;
	left: 50%;
    transform: translate(-15px, 0px);
}

.streams-ui-pointer-bottom {
	bottom: 0;
	left: 50%;
    transform: translate(-15px, 0px);
}

.streams-ui-pointer-left {
	left: 0;
	top: 50%;
    transform: translate(0px, -15px);
}

.streams-ui-pointer-right {
	right: 0;
	top: 50%;
    transform: translate(0px, -15px);
}

.streams-ui-pointer-top, .streams-ui-pointer-bottom {
	width:30px;
	height:13px;
}


.streams-ui-pointer-left, .streams-ui-pointer-right {
	width:13px;
	height:30px;
}

.streams-ui-pointer:after {
	webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
	background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.streams-ui-pointer-top:after {
	left: 5px;
	top: 6px;
	box-shadow: -1px -1px 4px rgb(33 33 33 / 10%);
	border: 1px solid rgb(33 33 33 / 25%);
}

.streams-ui-pointer-right:after {
	top: 5px;
	right: 6px;
	box-shadow: 1px -1px 4px rgb(33 33 33 / 10%);
	border: 1px solid rgb(33 33 33 / 25%);
}

.streams-ui-pointer-bottom:after {
	left: 5px;
	bottom: 6px;
	box-shadow: 1px 1px 4px rgb(33 33 33 / 10%);
	border: 1px solid rgb(33 33 33 / 25%);
}

.streams-ui-pointer-left:after {
	top: 5px;
	left: 6px;
	box-shadow: -1px 1px 4px rgb(33 33 33 / 10%);
	border: 1px solid rgb(33 33 33 / 25%);
}

.streams-ui-list-actions {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 5px;
	padding: 0 20px;
}

.streams-ui-list-action-member {
	display: flex;
    cursor: pointer;
    color: #c4c4c4 !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100px;
}

.streams-ui-list-action-member:hover {
    color: #4A90E2 !important;
}

.streams-ui-list-action-member-checkbox {
    width: 26px;
    padding-left: 1px;
}

.streams-ui-list-action-member-checkbox:before {
	color: #999;
    content: "\f401";
    font-family: ionicons;
    font-size: 18px;
}

.streams-ui-list-action-member-selected .streams-ui-list-action-member-checkbox:before {
	content: "\f3fe";
    color: #4A90E2;
}

.streams-ui-list-action-member-label, .streams-ui-list-action-member-level {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	color: #212121 !important;
}

.streams-ui-list-action-member-label {
	width: 74px;
	text-align: left;
}

.streams-ui-list-search {
    color: #000;
    height: 30px;
    padding: 0 5px 0 5px;
    border: 1px solid transparent;
    width: Calc(100% - 100px);
}

.streams-ui-list-search:hover {
	border-color: #999;
}

.streams-ui-list-search form {
    position: relative;
    height: 100%;
    width: 100%;
}

.streams-ui-list-search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
    font-size: 16px;
    font-weight: 400;
    color: #999;
    text-align: center;
}

.streams-ui-list-search-input {
    position: absolute;
    left: 20px;
    top: 0px;
    bottom: 0px;
    right: 25px;
}

.streams-ui-list-search-input input[type=text] {
    vertical-align: top;
    height: calc(100% - 4px);
    width: 100%;
    margin-top: 2px;
    background-color: transparent !important;
    border: none;
    color: #212121 !important;
}

.streams-ui-list-search-input input[type=text]:hover,
.streams-ui-list-search-input input[type=text]:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
.streams-ui-list-searching {
	display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.streams-ui-list-searching > div {
	width: 12px;
    height: 12px;
    background-color: #fc880f;
    border-radius: 100%;
    -webkit-animation: searchingbounce 1.4s ease-in-out infinite both;
	animation: searchingbounce 1.4s ease-in-out infinite both;
}
.streams-ui-list-searching > div > div:nth-child(1) {
	-webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.streams-ui-list-searching > div > div:nth-child(2) {
	-webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes searchingbounce {
	0% { -webkit-transform: scale(0) }

	80% { -webkit-transform: scale(0) }

	100% { -webkit-transform: scale(0) }

	40% { -webkit-transform: scale(1.0) }
}

@keyframes searchingbounce {
	0% { -webkit-transform: scale(0); transform: scale(0); }

	80% { -webkit-transform: scale(0); transform: scale(0); }

	100% { -webkit-transform: scale(0); transform: scale(0); }

	40% { -webkit-transform: scale(1.0); transform: scale(1.0); }
}

.streams-ui-list-list {
	height: 300px;
	border-top: 1px solid #575757;
	border-bottom: 1px solid #575757;
	padding: 10px 0;
	overflow: hidden;
	min-width: 275px;
}

.streams-ui-list-buttons {
    position: relative;
    padding: 10px 20px 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-align: right;
    width: 100%;
    height: 35px;
}

.streams-ui-list-button {
    background-color: #4A90E2;
    line-height: 12px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    min-width: 80px;
    float: right;
    margin-left: 10px;
    border: 1px solid #4A90E2;
    font-weight: 700;
    font-size: 12px;
    text-shadow: none;
    border-radius: 20px;
}

.streams-ui-list-button:hover {
    background-color: #3B73B5;
    color: #fff;
}

.iScrollOuter {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.iScrollInner {
    height: 100%;
    width: 100%;
    overflow: visible;
}

.iScrollSection {
    overflow: visible;
}

.iScroll-dimension-member {
    position: relative;
    height: 25px;
    text-align: left;
    padding: 0 10px;
    padding-left: 22px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #000;
}

.iScroll-dimension-member-label {
    left: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iScroll-dimension-member-include {
    background-image: url(images/check-black.gif);
    background-position: 5px 9px;
    background-repeat: no-repeat;
}

.iScroll-dimension-member-checkbox {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 22px;
}

.iScroll-dimension-member:hover {
    background-color: #1AAFD0;
    color: #fff;
}

.stream-image-exploded {
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: transform .4s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background-color: #e6e6e6;
    white-space: nowrap;
}

.stream-image-exploded-close {
    position: absolute;
    display: table;
    height: 32px;
    width: 32px;
    top: -16px;
    right: -16px;
    background-color: #f4f5f6;
    border: 2px solid #ddd;
    border-radius: 50%;
}

.stream-image-exploded-close i {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;    
    font-weight: 500;
}

.stream-image-exploded i.streams-ui-image-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    font-size: 30px;
    color: #4A90E2;
    cursor: pointer;
}

.stream-image-exploded .streams-ui-images-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.stream-image-exploded .streams-ui-images-inner {
    transition: transform .4s;
    height: 100%;
}

.stream-image-exploded .streams-ui-image-placeholder {
    position: relative;
    display: inline-flex;
    height: 100%;
    width: 100%;
    vertical-align: top;
    align-items: center;
    justify-content: center;
}

.stream-image-exploded .streams-ui-image-placeholder.streams-ui-image-loading {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stream-image-exploded .streams-ui-image-placeholder.streams-ui-image-loading .cicd-iri-loader.streams-ui-image-loader {
    margin: 0;
}

.stream-image-exploded .streams-ui-image-placeholder.streams-ui-image-loading p {
    font-size: 12px;
}

.stream-image-exploded .streams-ui-image-placeholder img {
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
    border: 0;
}

.stream-image-exploded .streams-ui-image-placeholder.streams-ui-image-loading img {
    display: none;
}

.stream-comment-exploded {
    position: absolute;
    top: 10%;
    height: 80%;
    left: 10%;
    width: 80%;
    z-index: 2;
    transition: transform .4s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background-color: #e6e6e6;
    white-space: nowrap;
}

.stream-comment-exploded .stream-comment-exploded-comment {
    width: 100% !important;
    height: Calc(100% - 40px) !important;
}

.stream-comment-exploded .streams-ui-stream-compose-check {
    margin: 4px 10px 4px 10px;
}

.stream-comment-exploded .stream-comment-exploded-buttons {
    height: 40px;
    width: 100%;
    background-color: #fff;
    padding-right: 8px;
    padding-top: 8px;
}

.stream-comment-exploded .stream-comment-exploded-buttons .stream-comment-exploded-button {
    background-color: #4A90E2;
    line-height: 12px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    min-width: 80px;
    float: right;
    margin-left: 10px;
    border: 1px solid #4A90E2;
    font-weight: 700;
    font-size: 12px;
    text-shadow: 1px 1px 1px #555;
    border-radius: 20px;
}

.stream-comment-exploded .stream-comment-exploded-buttons .stream-comment-exploded-button:hover {
    background-color: #3B73B5;
    color: #fff;
}

.stream-comment-exploded .cke {
    height: 100% !important;
    width: 100% !important;
}

.stream-comment-exploded-close {
    position: absolute;
    display: table;
    height: 32px;
    width: 32px;
    top: -16px;
    right: -16px;
    background-color: #f4f5f6;
    border: 2px solid #ddd;
    border-radius: 50%;
}

.stream-comment-exploded-close i {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;    
    font-weight: 500;
}

.dark .streams-ui {
    background-color: #222;
    border: none;
    color: white;
}

.dark .streams-ui-header {
    background-color: #333;
    border-color: transparent;
}

.dark .streams-ui-body > div > div > div > div {
    background-color: #222;
}

.dark td.streams-ui-title .streams-ui-date {
    color: #fff;
}

.dark .streams-ui textarea, .dark .streams-ui input[type=text] {
    color: #fff;    
}

.dark .streams-ui .cke_textarea_inline, .dark .streams-ui .cke, .dark .streams-ui .cke_textarea_inline {
    color: #fff !important;
}

.dark .streams-ui-stream .streams-ui-avatar,
.dark .streams-ui-stream .streams-ui-user,
.dark .streams-ui-stream .streams-ui-date {
    color: #fff;    
}
    
.dark .streams-ui-stream-response-comment {
    color: #fff;    
}

.dark .streams-ui-chevron-down:after {
    border-top-color: #222;
    /*Chevron Color*/
}

.dark .streams-ui-chevron-up:after {
    border-bottom-color: #222;
    /*Chevron Color*/
}

.dark .streams-ui-chevron-right:after {
    border-left-color: #222;
    /*Chevron Color*/
}

.dark .streams-ui-chevron-left:after {
    border-right-color: #222;
    /*Chevron Color*/
}

.dark .streams-ui-stream-compose {
    background-color: #222;
}

.dark .streams-ui-selector-dimension-title, .dark .streams-ui-filter-dimension-title {
    color: #fff;
}

.dark .iScroll-dimension-member {
    color: #fff;
}

.dark .iScroll-dimension-member-include {
    background-image: url(images/check-white.gif);
}

.dark .stream-image-exploded, .dark .stream-comment-exploded {
    background-color: #222;
}

.dark .stream-image-exploded-close, .dark .stream-comment-exploded-close {
    background-color: #333;
}

.dark .streams-ui-streams-filter-list {
    background-color: #333;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    color: #fff;
    border: none;
}

.dark .streams-ui-streams-filter-list li.selected {    
    background-image: url(images/check-white.gif);
}

.dark .streams-ui-streams-filter-list li {
    color: #fff;
}

.dark .streams-ui-selector-tags-search-matches {
    background-color: #333;
    color: #fff;
    border: none;
}

.dark .streams-ui-selector-tags-search-match {
    color: #fff;
}

.dark .streams-ui-dialog-content {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #333;
}

.dark .streams-ui-streams-streams table tr.selected td input, .dark .streams-ui-streams-streams table tr.selected td .streams-ui-date, .dark .streams-ui-avatar div {
    color: #777;
}

.streams-ui-dialog-table {
    display: table;
    height: 100%;
    width: 100%;
}

.streams-ui-dialog-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 100%;
}

.streams-ui-dialog-contents {
    width: Calc(100% - 50px);
    height: Calc(100% - 50px);
    border: 1px solid #626262;
    background-color: white;
    z-index: 2;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.streams-ui-dialog-add-attachment .streams-ui-dialog-contents, .streams-ui-dialog-add-link .streams-ui-dialog-contents {
    max-height: 200px;
    max-width: 500px;
}

.streams-ui-dialog-add-attachment .streams-ui-dialog-contents li, .streams-ui-dialog-add-link .streams-ui-dialog-contents li {
    margin: 0 10px;
}

.streams-ui-dialog-add-attachment .streams-ui-dialog-contents li.streams-ui-dialog-field-title, .streams-ui-dialog-add-link .streams-ui-dialog-contents li.streams-ui-dialog-field-title {
    font-size: 12px;
    font-weight: bold;
}

.dark .streams-ui-dialog-contents {
    background-color: #222;
    border: none;
}

.streams-ui-dialog-contents * {
    box-sizing: border-box;
}

.streams-ui-dialog-header {
    position: relative;
    width: 100%;
    height: 45px;
    background-color: #f4f5f6;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.streams-ui-dialog-header .streams-ui-dialog-title {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 10px;
    bottom: 0;
    right: 50px;
    font-size: 14px;
    font-weight: 300;
}

.streams-ui-dialog-header .streams-ui-dialog-closer {
    position: absolute;
    top: 5px;
    right: 0px;
    width: 35px;
    height: 35px;
    background-color: transparent;
    color: #adadad;
    font-size: 16px;
    font-weight: bold;
    line-height: 34px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.streams-ui-dialog-header .streams-ui-dialog-closer i {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
}

.streams-ui-dialog-header .streams-ui-dialog-closer:hover {
    color: #4A90E2;
}

.dark .streams-ui-dialog-header {
    background: #333;
    border-color: transparent;
}

.streams-ui-dialog-body {
    position: relative;
    /*display: flex;
    flex-flow: column;
    flex: 2;*/
    width: Calc(100% - 30px);
    margin: 15px;
    height: calc(100% - 110px);
    overflow: hidden;    
    -webkit-overflow-scrolling: touch;
}

.streams-ui-dialog-body-scroll {
   /*overflow: hidden;*/
}

.streams-ui-dialog-help {
   /*overflow-y: auto;*/
    color: #222;
    background-color: #fff;
    border: none;
}
    
.streams-ui-dialog-help iframe {
    background-color: white;
    border: none;
    margin: 0px;
}

.streams-ui-dialog-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 0;
}

.streams-ui-dialog-body ul li * {
    display: inline-block;
    margin-right: 10px;
}

.streams-ui-dialog-add-attachment-filename, .streams-ui-dialog-add-link-title, .streams-ui-dialog-add-link-url {
    width: calc(100% - 110px);
    min-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #ddd;
    height: 26px;
    line-height: 26px;
    vertical-align: middle;
    text-indent: 5px;
}

.ion-ios-pricetags {
    cursor: pointer;
}

.streams-ui-help {
    background: transparent;
    border: none;
}

.streams-ui-help .streams-ui-dialog-header {
    color: #fff;
    background: #333;
    border: none;
}

.streams-ui-help .streams-ui-dialog-contents {
    color: #222;
    background-color: #fff;
    border: none;
}

.streams-ui-help iframe {
    color: #222;
    background: #fff;
    border: none;
}

.cicd-iri-loader.streams-ui-image-loader {
    position: absolute;
    display: inline-block;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
}

.cicd-iri-loader.streams-ui-image-loader svg {
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    height: 120px;
}

.cicd-iri-loader.streams-ui-image-loader.streams-ui-image-loader {
    position: relative;
    display: block;
    margin-left: calc(50% - 22.5px);
    height: 45px;
    width: 45px;
    left: auto;
    top: auto;
    overflow: hidden;
}

.cicd-iri-loader.streams-ui-image-loader.streams-ui-image-loader svg {
    width: 60px;
    height: 60px;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(1) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(2) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(3) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(4) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(5) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(6) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(7) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(8) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(9) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(10) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(11) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(12) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(13) {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(14) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(15) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(16) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(17) {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.cicd-iri-loader.streams-ui-image-loader path:nth-child(18) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.cicd-iri-loader.streams-ui-image-loader path {
    -webkit-animation:streams-ui-image-loader-animate 1.8s linear infinite;
    animation: streams-ui-image-loader-animate 1.8s linear infinite;
}
        
        
@-webkit-keyframes streams-ui-image-loader-animate {
    0% {
        fill: #cedc45;
        opacity: .5
    }

    20% {
        fill: #e5801d;
        opacity: .6
    }

    40% {
        fill: #ed592a;
        opacity: .7
    }

    60% {
        fill: #004385;
        opacity: .8
    }

    80% {
        fill: #00adee;
        opacity: .9
    }

    100% {
        fill: #26a046;
        opacity: 1
    }
}

@-moz-keyframes streams-ui-image-loader-animate {
    0% {
        fill: #cedc45;
        opacity: .5
    }

    20% {
        fill: #e5801d;
        opacity: .6
    }

    40% {
        fill: #ed592a;
        opacity: .7
    }

    60% {
        fill: #004385;
        opacity: .8
    }

    80% {
        fill: #00adee;
        opacity: .9
    }

    100% {
        fill: #26a046;
        opacity: 1
    }
}

@keyframes streams-ui-image-loader-animate {
    0% {
        fill: #cedc45;
        opacity: 1
    }

    20% {
        fill: #e5801d;
        opacity: .8
    }

    40% {
        fill: #ed592a;
        opacity: .6
    }

    60% {
        fill: #004385;
        opacity: .4
    }

    80% {
        fill: #00adee;
        opacity: .2
    }

    100% {
        fill: #26a046;
        opacity: 1
    }
}

/*Undo Unify Styles*/
.streams-ui .cke_textarea_inline figure, .streams-ui .streams-ui-stream-response-comment  figure {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 40px;
    margin-right: 40px;
}
.streams-ui .cke_textarea_inline ol, .streams-ui .streams-ui-stream-response-comment ol {
    list-style-type: decimal;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;   
}
.streams-ui .cke_textarea_inline  ul, .streams-ui .streams-ui-stream-response-comment  ul {
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}
.streams-ui .cke_textarea_inline  li, .streams-ui .streams-ui-stream-response-comment  li {
    list-style-type: inherit;
}
.streams-ui .cke_textarea_inline  h1, .streams-ui .streams-ui-stream-response-comment  h1 {
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;    
}
.streams-ui .cke_textarea_inline  h2, .streams-ui .streams-ui-stream-response-comment  h2 {
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;    
}
.streams-ui .cke_textarea_inline  h3, .streams-ui .streams-ui-stream-response-comment  h3 {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;    
} 
.streams-ui .cke_textarea_inline  h4, .streams-ui .streams-ui-stream-response-comment  h4 {
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;    
}
.streams-ui .cke_textarea_inline  fieldset, .streams-ui .streams-ui-stream-response-comment  fieldset {
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 0.35em;
    padding-bottom: 0.625em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border: 2px groove (internal value);    
}
.streams-ui .cke_textarea_inline  p, .streams-ui .streams-ui-stream-response-comment  p {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;    
}
.streams-ui .cke_textarea_inline strong, .streams-ui .streams-ui-stream-response-comment strong {
    font-weight: bold;
}
.streams-ui div[contentEditable=true]:empty:not(:focus):before{
    content:attr(placeholder)
}

.streams-ui .nicescroll-rails {
    z-index: 1500 !important;
}
.streams-ui-body > div > div:nth-child(1) > div > .nicescroll-rails {
    transform: translateX(5px);
}

.streams-ui-body > div > div:nth-child(2) > div > .nicescroll-rails {
    transform: translateX(10px);
}

.streams-ui.streams-ui-stand-alone {
    height: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
}

.streams-ui.streams-ui-stand-alone .streams-ui-header, .streams-ui.streams-ui-stand-alone .streams-ui-footer {
    display: none;
}

.streams-ui.streams-ui-stand-alone .streams-ui-body {
    top: 0;
    bottom: 0;
}

.streamTeams {
	z-index: 9500;
}