/* -------
 * GENERAL
 * ------- */
.esicon {display: inline-block; position: relative;}

ui-template {display: none;}

body.grabbing * {
    cursor: grabbing !important;
    cursor: -webkit-grabbing !important;
    cursor: -moz-grabbing !important;
}

/* ---------
 * PRE TAGS
 * -------- */
pre[data-template],
pre[data-i18n],
pre[data-inline-script] {
    display: none;
}

/* ----------
 * ANIMATIONS
 * ---------- */
.ui-animation-spinning {
    animation: SPINNING infinite linear 800ms;
    -webkit-animation: SPINNING infinite linear 800ms;
}
@keyframes SPINNING {0% {transform: rotateZ(0deg);} 100% {transform: rotateZ(360deg);}}
@-webkit-keyframes SPINNING {0% {-webkit-transform: rotateZ(0deg);} 100% {-webkit-transform: rotateZ(360deg);}}

.ui-animation-spinning.ng-leave {display: none;}

.ui-animation-fullscreen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100000;
}

.ui-fade-in-down{
  animation: fadeInDown 0.3s ease-out 1;
}
@keyframes fadeInDown{
  0% {opacity: 0;transform: translate3d(0,-100%,0);}
  100% {opacity: 1;transform: none;}
}

.ui-fade-in-zoom{
  animation: fadeInZoom 0.3s ease-out 1;
}
@keyframes fadeInZoom{
  0% {opacity: 0;transform: scale(0.25);}
  100% {opacity: 1;transform: none;}
}


.ui-zoom-in-up {
    animation: zoomInUp 0.3s;
}
@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 10px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -10px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}


/* -------
 * BUTTONS
 * ------- */
.btn > .esicon.esicon-loader {
    width: 25px;
    position: relative;
    left: 6px;
    font-size: 20px;
    top: 4px;
    animation: SPINNING infinite linear 600ms;
    -webkit-animation: SPINNING infinite linear 600ms;
}
.btn > .esicon.esicon-loader.ng-animate {
    animation: none; -webkit-animation: none;
    transition: none; -webkit-transition: none;
}
.btn[data-ui-select-control] {
    padding: 0px 14px 0px 0px;
}
.btn-single-icon {
    font-size: 22px !important;
    max-height: 40px;
    padding: 1px !important;
    width: 40px;
}
.btn-trash:hover:active {
    background-color: #ff0000 !important;
    color: #fff !important;
}


/* -----
 * FIELD
 * ----- */
.ui-field {
    position: relative;
    width: 100%;
    color: #333c45;
    margin-bottom: 0;
}
.ui-field input {
    padding: 7px 0 0 10px;
    color: inherit;
}
.ui-field > a.form-control {
    color: inherit;
    font-size: 16px;
    line-height: 44px;
    padding: 0 12px;
    text-decoration: none;
    text-transform: uppercase;
}
.ui-field > a.form-control:focus {outline: 1px dotted black;}
.ui-field > a.form-control:hover {text-decoration:none;}

.ui-field .info-label{
    color: rgb(176, 176, 176);
}


/* ------------------
 * FIELD PLACEHOLDERS
 * ------------------ */
.ui-field-placeholder {
    cursor: text;
    font-size: 1em;
    left: 12px;
    position: absolute;
    top: 13px;
    color: rgb(176, 176, 176);
    font-weight: 600;
    z-index: 3;
}
.ui-field-placeholder a {
    color: inherit;
    opacity: 0.6;
    text-decoration: underline;
}
.ui-field-placeholder a:hover {opacity: 0.8; color: inherit;}
.ui-field-placeholder.ui-field-placeholder-active,
.ui-field-placeholder.ui-field-placeholder-always-active {
    text-transform: uppercase;
    color: #0cc9e3;
    font-size: 0.7em;
    font-weight: bold;
    top: 3px;
}
.ui-field-placeholder.ui-field-placeholder-animate {
    transition: all 60ms linear;
    -webkit-transition: all 60ms linear;
}

/* Error, warning */
.ui-field-placeholder-error {
    color: #e74c3c !important;
    display: none;
}
.ui-field-placeholder-warning {
    color: #ff8f00 !important;
    display: none;
}
.has-error .ui-field-placeholder.ui-field-placeholder-error {display: inline;}
.has-warning .ui-field-placeholder.ui-field-placeholder-warning {display: inline;}
.has-error .ui-field-placeholder,
.has-warning .ui-field-placeholder {
    display: none;
}
.ui-select-combo label span.ui-field-placeholder{
    margin-top: 0;
}


/* -----------
 * FIELD ICONS
 * ----------- */
.ui-field-icons {
    position: absolute;
    right: 6px;
    line-height: 42px;
    top: 0;
    bottom: 0;
    font-size: 20px;
}
.ui-field-icons > i,
.ui-field-icons > a {
    width: 35px;
    display: block;
    float: left;
    line-height: 40px;
    text-align: center;
    height: 40px;
    color: inherit;
}
.ui-field-icons > a {padding-top: 2px;}

/* Error */
.ui-field-icons .ui-field-icon-error {display: none; color: #e74c3c;}
.has-error .ui-field-icons .ui-field-icon-error {display: block;}

/* Warning */
.ui-field-icons .ui-field-icon-warning {display: none; color: #ff8f00;}
.has-warning .ui-field-icons .ui-field-icon-warning {display: block;}

/* Clear */
.ui-field-icons .ui-field-icon-clear:hover {color: #C2CCD3;}

/* Dropdown */
.ui-field-icons .ui-field-icon-dropdown {color: #333c45;}
.ui-field-icons .ui-field-icon-dropdown.active {color: #16a085;}
.has-error .ui-field-icons .ui-field-icon-dropdown {display: none;}


/* -----------
 * FIELD PILLS
 * ----------- */
.ui-field-pills {
    position: absolute !important;
    right: 7px !important;
    top: 6px !important;
    margin: 0 !important;
}
.ui-field-pill {
    margin: 0 4px;
    border: 2px solid #D9E2E8;
    font-size: 12px;
    color: #949EA9;
    height: 25px;
    display: block;
    line-height: 18px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-style: normal;
    padding: 2px 7px;
    font-weight: 600;
    float: left;
}
.ui-field-pill.valid {color: #0cc9e3;}
.ui-field-pill.invalid {color: #b83737;}
.ui-field-pill:first-child {margin-left: 0;}
.ui-field-pill:last-child {margin-right: 0;}


/* ---------
 * UI SELECT
 * --------- */

/* General */
.ui-select-combo {position: relative;}
.ui-select-combo label span {
    display: inline-block;
    margin: 7px 0 0;
}
.ui-select-combo label button{
    position: absolute;
    border: none;
    background: none;
    right: 2px;
    top: 0px;
    bottom: 0px;
    margin-top: 6px;
    font-size: 27px;
    color: #838B90;
}
.ui-select-combo label button:focus {
    outline: none;
    color: #424648;
}

.ui-select-combo.no-label label span{
  margin-top: 4px;
}
.ui-select-combo.no-label label button{
  margin-top: 2px;
}

/* List */
.ui-select-list {
    background-color: #FFF;
    border: 1px solid #ccdce6;
    border-radius: 4px;
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 600;
    left: 0;
    right: 0;
    position: absolute;
    top: 46px;
    overflow-x: hidden;
    overflow-y: auto;
    color: #586879;
    z-index: 100;
    max-height: 261px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.ui-select-list-content > a {
    display: block;
    height: 37px;
    line-height: 37px;
    color: #586879 !important;
    font-size: 14px;
    text-align: left;
    padding-left: 22px;
    text-decoration: none !important;
    cursor: default;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}
.ui-select-list-content > a.center {
    padding: 0;
    text-align: center;
}
.ui-select-list-content > a.selected {
    background: #22aae4 !important;
    color: white !important;
}
.ui-select-list-content > a.selected.highlight {outline: 1px dotted #666;}

.ui-select-list-content > a > .ui-checkbox label {top: 5px}

.ui-select-list-content > a.active {color: #22AAE4 !important;}
.ui-select-list-content > a.highlight {background-color: #e4f1f4;}
.ui-select-list-content > a.disabled {color: #aaa !important;}

.ui-select-list-content > strong {
    display: block;
    width: 100%;
    padding: 8px 10px;
}


/* --------
 * CHECKBOX
 * -------- */
.ui-checkbox {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}
.ui-checkbox label {
    border: 2px solid #D0D5D8;
    border-radius: 4px;
    height: 25px;
    width: 25px;
    margin: 0px;
    position: relative;
    background: white;
}

.ui-checkbox label.checked {
    border: 2px solid #D0D5D8;
    border-radius: 4px;
    height: 25px;
    width: 25px;
    margin: 0px;
    position: relative;
    background: #01B2CE;
}

.ui-checkbox label input {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}
.ui-checkbox label.disabledCheckBox {
    background-color: #EEF1F2;
    cursor: not-allowed;
}
.ui-checkbox label.disabledCheckBox:hover {
    border-color: #D0D5D8;
}
.ui-checkbox label.disabledCheckBox input {
    cursor: not-allowed;
}
.ui-checkbox label i {
    font-size: 22px;
    position: absolute;
    top: 0px;
    left: -1px;
}

/*.ui-checkbox label:hover,
.ui-checkbox label.checked:hover,
.ui-checkbox label.checked,
.ui-checkbox label.focused i,
.ui-checkbox label.expander.checked:hover {
    border-color: #2D97DE;
}*/

.ui-checkbox label:hover,
.ui-checkbox label.checked:hover,
.ui-checkbox label.checked,
.ui-checkbox label.focused i,
.ui-checkbox label.expander.checked:hover {
    border-color: #01B2CE;
}

/*.ui-checkbox label.focused i,
.ui-checkbox label.checked i {
    color: #2D97DE;
}*/
.ui-checkbox label.focused i,
.ui-checkbox label.checked i {
    color: white;
}

/* Expander */
.ui-checkbox label.checked i.esicon-less{color: white;}
.ui-checkbox label.expander {
    background-color: #d9e2e8;
    height: 40px;
    width: 40px;
    border: none;
}
.ui-checkbox label.expander > i {
    margin: 12px;
    position: static;
    font-size: 16px;
}
.ui-checkbox label.expander:hover {
    background-color: #c5d2db;
}
.ui-checkbox label.expander:hover:active {
    background-color: #22aae4;
    color: #fff;
}
.ui-checkbox label.expander.checked {
    background-color: #22aae4;
    color: #fff;
}

/* --------
 * CHECKBOX
 * -------- */
ui-radio {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    text-align: left;
}
ui-radio label {
    border: 2px solid #B1BBC5;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    margin: 0px;
    position: relative;
}
.jumbotron-buy-table .body .row:hover div ui-radio label {
    border: 2px solid #333C45;
}

ui-radio label a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
ui-radio label.focused {outline: 1px dotted #333;}
/*ui-radio label.checked {
    border-color: #2D97DE;
    color: #2D97DE;
}*/

ui-radio label.checked.disabled {
    border-color: gray;
}


ui-radio label.disabled .radio-on {
    background-color: gray;
}


ui-radio label.checked {
    border-color: #01B2CE;
    color: #01B2CE;
}

ui-radio label input {
    opacity: 0;
    position: absolute;
}
ui-radio label b {
    font-size: 41px;
    line-height: 13px;
    position: absolute;
    text-align: center;
    width: 21px;
    display: inline-block;
}
ui-radio label .radio-on {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    margin: -25%;
    background-color: #01B2CE;
    border-radius: 50%;
}

ui-radio.price-table label.checked {
    color: #333C45;
    border-color: #333C45;
}


/* ------
 * SWITCH
 * ------ */
.ui-switch {
    background: #d9e2e8;
    height: 41px;
    color: #333c45;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    min-width: 110px;
}
.ui-switch.disabled {background-color: #d9e2e8 !important; cursor: default;}
.ui-switch.disabled .ui-switch-handle {background-color: #B7B7B7;}
.ui-switch.disabled .ui-switch-active-text {color: #b7b7b7;}
.ui-switch.disabled .ui-switch-disabled-text {color: #b7b7b7;}

.ui-switch-active-text {display: none;}
.ui-switch-disabled-text {
    text-align: right;
    width: 100%;
    display: inline-block;
}

.ui-switch input {
    opacity: 0;
    position: absolute;
    cursor: inherit;
    pointer-events: none;
}

.ui-switch-handle {
    background: #333c45;
    width: 33px;
    height: 33px;
    display: inline-block;
    border-radius: 50px;
    position: absolute;
    top: 4px;
    left: 0%;
    margin-left: 5px;
}
.ui-switch:hover .ui-switch-handle , .ui-switch.checked:hover .ui-switch-handle{background: #173452;}

/* Checked */
.ui-switch.ng-animate,
.ui-switch.ng-animate .ui-switch-handle {
    -webkit-transition:all linear 150ms;
    transition:all linear 150ms;
}

.ui-switch.checked {
    background: #22aae4;
    color: white;
}
.ui-switch.checked .ui-switch-active-text {
    text-align: left;
    width: 100%;
    display: inline-block;
}
.ui-switch.checked .ui-switch-disabled-text {display: none;}
.ui-switch.checked .ui-switch-handle {
    left: 100%;
    margin-left: -38px;
}


/* ---------------
 * UI SEARCH INPUT
 * --------------- */
.ui-search-input {
  display: flex;
  flex-flow: row nowrap;
}
.ui-search-input .icon-container {
  border: 1px solid #D9E2E8;
  border-radius: 4px;
  color: #7B8186;
  width: 40px;
  height: 40px;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui-search-input .icon-container:hover {
  color: #CCD0D4;
}
.ui-search-input input{
  font-size: 14px;
  outline: none;
  width: 0px;
  border: none;
  transition: width ease-out 300ms;
  -webkit-transition: width ease-out 300ms;
  color: #7B8186;
  font-weight: normal;
}

.ui-search-input.active .icon-container {
    border-radius: 4px 0px 0px 4px;
}
.ui-search-input.active input {
    width: 160px;
    padding: 10px 11px;
    border: 1px solid #D9E2E8;
    border-left-width: 0px;
    border-radius: 0px 4px 4px 0px;
}

/*
ui-search-input {
    height: 40px;
    display: inline-block;
    width: 200px;
}
.ui-search-input {
    width: 90%;
    transition: width linear 120ms;
    font-size: 14px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.ui-search-input-placeholder {
    position: absolute;
    display: block;
    top: 0; bottom: 0; left: 0; right: 0;
    transition: left linear 140ms;
    line-height: 40px;
}
.ui-search-input-placeholder i {
    left: 12px;
    position: absolute;
    font-size: 20px;
    line-height: 36px;
    top: 2px;
    color: #586879;
}
.ui-search-input-placeholder span {
    left: 40px;
    position: absolute;
    top: 0px;
    color: #586879;
    font-weight: normal;
}
#layout-content .toolbar .toolbar-search input {
    border: none;
    display: none;
    padding: 0 40px 0 10px;
    width: 100%;
    background: transparent;
}

.ui-search-input.active {width: 100%;}
.ui-search-input.active .ui-search-input-placeholder {
    color: inherit !important;
    pointer-events: none;
    left: 100%;
    margin-left: -48px;
}
.ui-search-input.active input {padding-right: 40px;} */



/* --------------
 * UI LOADER RING
 * -------------- */
@-webkit-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); }

    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg); } }

@-moz-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); }

    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg); } }

@-ms-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); }

    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg); } }

@keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); }

    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

ui-loader-ring {
    background: none;
    width: 100px;
    height: 100px;
    display: inline-block;
    position: relative;
}
ui-loader-ring > div {
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 80px;
    box-shadow: 0px 2px 1px -1px;
    -ms-animation: uil-ring-anim 1s linear infinite;
    -moz-animation: uil-ring-anim 1s linear infinite;
    -webkit-animation: uil-ring-anim 1s linear infinite;
    -o-animation: uil-ring-anim 1s linear infinite;
    animation: uil-ring-anim 1s linear infinite;
}
.ui-loader-ring-center {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -70px;
}
.ui-loader-ring-center > p {
    font-size: 13px;
    text-transform: uppercase;
    color: #777;
    margin: 0 0 10px 0;
    height: 20px;
}


/* ------------------
 * UI LOADER ELLIPSIS
 * ------------------ */

ui-loader-ellipsis {
    text-align: center;
    display: inline-block;
    margin: 0px auto;
    height: 8px;
}
ui-loader-ellipsis i {
    height: 6px;
    width: 6px;
    float: left;
    display: block;
    border-radius: 50%;
    color: inherit;
    margin: 0px 2px;
    opacity: 0.4;
    border: 2px solid;
}
ui-loader-ellipsis i:nth-of-type(1) {
    -webkit-animation: 1s blink infinite 0.3333s;
    animation: 1s blink infinite 0.3333s;
}
ui-loader-ellipsis i:nth-of-type(2) {
    -webkit-animation: 1s blink infinite 0.6666s;
    animation: 1s blink infinite 0.6666s;
}
ui-loader-ellipsis i:nth-of-type(3) {
    -webkit-animation: 1s blink infinite 0.9999s;
    animation: 1s blink infinite 0.9999s;
}

@-webkit-keyframes blink {50% {opacity: 1;}}
@keyframes blink {50% {opacity: 1;}}


/* --------------
 * UI LOADER WAVE
 * -------------- */

ui-loader-wave {
    display: block;
    margin: 20px auto;
    text-align: center;
}

ui-loader-wave .loader-rects {
    height: 45px;
    text-align: right;
    width: auto;
    display: inline-block;
}

ui-loader-wave .loader-text {
    color: #778A99;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 45px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 20px;
    text-align: left;
    width: auto;
    display: inline-block;
}


ui-loader-wave .loader-rects > div {
    background-color: #778a99;
    height: 100%;
    width: 6px;
    display: inline-block;
    margin: 1px;

    -webkit-animation: loaderwave 1.2s infinite ease-in-out;
    animation: loaderwave 1.2s infinite ease-in-out;
}

ui-loader-wave .loader-rects .rect2 {-webkit-animation-delay: -1.1s; animation-delay: -1.1s;}
ui-loader-wave .loader-rects .rect3 {-webkit-animation-delay: -1.0s; animation-delay: -1.0s;}
ui-loader-wave .loader-rects .rect4 {-webkit-animation-delay: -0.9s; animation-delay: -0.9s;}
ui-loader-wave .loader-rects .rect5 {-webkit-animation-delay: -0.8s; animation-delay: -0.8s;}

@-webkit-keyframes loaderwave {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes loaderwave {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}



/* -------------
 * UI LOADER BTN
 * ------------- */

ui-loader-btn {
    text-align: center;
    height: 13px;
    width: 20px;
    display: inline-block;
    position: relative;
    top: 4px;
}

ui-loader-btn .loader-rects {
    height: 100%;
    width: 100%;
}

ui-loader-btn .loader-rects > div {
    //background-color: #778a99;
    color: inherit;
    height: 100%;
    width: 1px;
    display: inline-block;
    margin: 0.5px;
    border: 2px solid;
    -webkit-animation: loaderbtn 800ms infinite ease-in-out;
    animation: loaderbtn 800ms infinite ease-in-out;
}

ui-loader-btn .loader-rects .rect2 {-webkit-animation-delay: 200ms; animation-delay: 200ms;}
ui-loader-btn .loader-rects .rect3 {-webkit-animation-delay: 400ms; animation-delay: 400ms;}

@-webkit-keyframes loaderbtn {
    0%, 70%, 100% { -webkit-transform: scaleY(0.5) }
    20% { -webkit-transform: scaleY(1.0) }
}
@keyframes loaderbtn {
    0%, 70%, 100% {transform: scaleY(0.5); -webkit-transform: scaleY(0.5)}
    20% {transform: scaleY(1.0); -webkit-transform: scaleY(1.0)}
}


/* --------
 * UI PILLS
 * -------- */
.ui-pills {
    margin: 0;
    padding: 0;
}
.ui-pills li,
.ui-pills .ui-pill{
    line-height: 40px;
    float: left;
    list-style: none;
    padding: 0 10px;
    margin: 0 15px 15px 0;
}
.ui-pills .ui-pill {
    background-color: #F0F0F0;
    border-radius: 4px;
    font-weight: 600;
    cursor: default;
    position: relative;
}
.ui-pills .ui-pill span {
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left;
    padding-right: 16px;
    font-weight: 400;
}
.ui-pills .ui-pill span + a {
    top: 2px;
    position: absolute;
    color: inherit;
    float: right;
    width: 22px;
    right: 4px;
    text-align: center;
    cursor: pointer !important;
}

/* -----------------
 * UI PICKER CONTROL
 * ----------------- */
ui-maillist-picker, ui-campaign-picker {display: block;}
ui-maillist-picker button, ui-campaign-picker button {min-width: 160px;}
.ui-maillist-picker-pills .ui-pill {background-color: #CEF3F9;}
.ui-campaign-picker-pills .ui-pill {background-color: #fde2cc;}


/* --------------------------
 * UI SBS (SIDE BY SIDE LIST)
 * -------------------------- */

.ui-sbs {
    position: absolute;
    top: 25px;
    left: 2%;
    right: 2%;
    bottom: 25px;
}

.ui-sbs-toolbar {
    position: absolute;
    height: 150px;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20px;
}

.ui-sbs-columns {
    position: absolute;
    top: 150px;
    bottom: 0px;
    left: 0;
    right: 0;
}

.ui-sbs-column {
    height: 100%;
    width: 50%;
    float: left;
    position: relative;
}

.ui-sbs-column:first-child {padding-right: 1%;}
.ui-sbs-column:last-child {padding-left: 1%;}

.ui-sbs-column .move-all-button {
    position: absolute;
    top: -48px;
    background: #d9e2e8;
    color: #586879;
    width: 53px;
    min-height: 35px !important;
}
.ui-sbs-column .btn.add {right: 2%;}
.ui-sbs-column .btn.remove {left: 2%;}

.ui-sbs-column .move-all-button i {
    position: absolute;
    font-size: 31px;
}
.ui-sbs-column .move-all-button i:first-child {
    left: 7px;
    top: 1px;
}
.ui-sbs-column .move-all-button i:last-child {
    top: 1px;
    left: 15px;
}

.ui-sbs-column-list-container {
    position: relative;
    height: 100%;
    background: #f1f1f1;
    border-radius: 4px;
    margin-bottom: 100px;
}
.ui-sbs-column-list {
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    top: 0px;
    bottom: 10px;
    left: 10px;
    right: 3px;
    padding-right: 15px;
    padding-top: 10px;
    outline-color: #666;
}

/*section .maillists h2 {
    font-size: 32px;
    color: #8e989e;
    margin: -7px 12px 0 0;
    font-weight: 300;
}*/

/*.recipients-warning {
    text-align: center;
    position: absolute;
    width: 100%;
    margin-top: 95px;
    color: #939393;
}
.recipients-warning h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    line-height: 32px;
}*/

/* Item */
.ui-sbs-item {
    background: #e6e6e6;
    border-radius: 5px;
    margin-bottom: 10px;
    display: table;
    width: 100%;
    padding: 1px 13px 1px 26px;
    border-bottom: 2px solid #d3d2d3;
    cursor: pointer;
    margin-left: 1px;
    position: relative;
    left: 0;
    line-height: 60px;
}
.ui-sbs-item.disabled {opacity: 0.8; cursor: default !important;}
.ui-sbs-item.highlighted, .ui-sbs-item:hover {
    background: #DBDBDB;
    text-decoration: none;
}
.ui-sbs-item h3 {
    font-size: 18px;
    font-weight: 300;
    text-transform: none;
    overflow: hidden;
    color: #586879;
}
.ui-sbs-item.ui-sbs-item-added h3 {color: white;}
.ui-sbs-item.ui-sbs-item-added h3 i {color: #236390;}

.ui-sbs-item .ui-sbs-title {width: 45%;}
.ui-sbs-item .ui-sbs-info {
    text-align: center;
    width: 45%;
}
.ui-sbs-item .ui-sbs-icon {
    padding: 6px 0 0;
    font-size: 40px;
    color: #3598dc;
    margin-right: 16px;
    vertical-align: middle;
    text-align: right;
    cursor: pointer;
}

.ui-sbs-item > div {display: table-cell;}
.ui-sbs-item > div i {margin-right: 13px;}

.ui-sbs-item .ui-sbs-title h3 {
    color: #586879;
    font-size: 17.5px;
    font-weight: 300;
}
.ui-sbs-item.ui-sbs-item-added .ui-sbs-title h3{
    color: white;
}
.ui-sbs-item.ui-sbs-item-added .ui-sbs-icon > * {
    font-size: 40px;
    color: #1f73c1 !important;
    text-decoration: none;
    outline-color: #444;
}


.ui-sbs-item.ui-sbs-item-added {
    width: 100%;
    background: #3290d0;
    border-radius: 4px;
    border: none;
    color: #fff;
    margin-bottom: 8px;
    cursor: auto;
    border-bottom: 2px solid #2075b0;
    border-top: #57a4d8 2px solid;
}

.ui-sbs-item.ui-sbs-item-added:hover .ui-sbs-icon a{
    color: #1769b6;
}
.ui-sbs-item.ui-sbs-item-added:hover {
    background:#227cba
}
.ui-sbs-item.ui-sbs-item-added .ui-sbs-title small {
    color: white;
    left: 43px;
}
.ui-sbs-item.ui-sbs-item-added .ui-sbs-info small {
    color: #fff;
    padding-left: 25px;
}

h2.added-title {
    padding-left: 20px;
    margin-right: 0;
}
.ui-sbs-item.ui-sbs-item-added :hover {
    text-decoration: none;
}
.ui-sbs-item .ui-sbs-info h3 > span {
    font-size: 22px;
}
.ui-sbs-item.ui-sbs-item-added .ui-sbs-info h3 {
    padding-left: 38px;
}
.ui-sbs-item .ui-sbs-info h3 {
    padding-left: 12px;
    text-align: left;
}

.maillist-loader{
    position: absolute;
    width: 100%;
    top: 0px;
    background: rgba(255, 255, 255, 0.73);
    z-index: 1000;
    height: 100%;
    padding-top: 8%;
}

/* Item animation */
/*.ui-sbs-item.ng-animate {transition: all ease-in-out 260ms;}
.ui-sbs-item.ng-enter {left: 100%;}
.ui-sbs-item.ng-enter.ng-enter-active {left: 0;}
.ui-sbs-item.ng-leave {left: 0;}
.ui-sbs-item.ng-leave.ng-leave-active {left: 100%;}

.ui-sbs-item-added.ui-sbs-item.ng-enter {left: -100%;}
.ui-sbs-item-added.ui-sbs-item.ng-enter.ng-enter-active {left: 0;}
.ui-sbs-item-added.ui-sbs-item.ng-leave {left: 0;}
.ui-sbs-item-added.ui-sbs-item.ng-leave.ng-leave-active {left: -100%;} */


/* -----------------------
 * UI FILTER PICKER WINDOW
 * ----------------------- */

.advanced-filter-row  {margin: 0 0 15px 0;}
.advanced-filter-row .combo-col {
    width: 30%;
    float: left;
    padding-right: 10px;
    min-height: 40px;
    position: relative;
}
.advanced-filter-row .button-col {
    width: 10%;
    float: left;
    text-align: right;
}
.advanced-filter-row .combo-col .configuration-row {
    margin: 0 !important;
}




/* --------------
 * UI SWITCH FLAT
 * -------------- */

.ui-switch-flat{
    overflow: hidden;
    margin: 60px 110px;
}
.ui-switch-flat .ui-switch-flat-button{
    display: block;
    float: left;
    width: 33%;
    font-size: 31px;
    font-weight: 300;
    text-align: center;
    color: #91989e;
    cursor: pointer;
}
.ui-switch-flat .ui-switch-flat-button:hover, .ui-switch-flat-button.active {
    text-decoration: none;
    color:#24a5dc;
}
.ui-switch-flat:hover .ui-switch-flat-circle {background: #53C0EF;}

.ui-switch-flat-toggle{
    width: 33%;
    float: left;
    position: relative;
    text-align: center;
    margin-top: 13px;
}

.ui-switch-flat-bar{
    width: 85px;
    height: 23px;
    background: #333c45;
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}
.ui-switch-flat-circle{
    width: 33px;
    height: 33px;
    background: #22aae4;
    position: absolute;
    border-radius: 50px;
    top: -5px;
    left: -1px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.ui-switch-flat-toggle.active .ui-switch-flat-circle{
    left: 53px;
}


/* ----------------------
 * UI ADMINISTRATOR EMAIL
 * ---------------------- */
ui-administrator-email {
    position: relative;
    display: block;
}
ui-administrator-email .status-icon {
    position: absolute;
    right: 12px;
    top: 9px;
    font-size: 19px;
}
ui-administrator-email .status-icon .success {
    color: #D9E2E8;
    font-size: 24px;
}
ui-administrator-email input:focus ~ .status-icon .success {color: #0CC9E3;}
ui-administrator-email .ui-select-item.deleting {background-color: #FFE7E7 !important;}
ui-administrator-email .delete-prompt {
    top: 0px;
    right: 0px;
    position: absolute;
}
ui-administrator-email .delete-prompt .btn {
    margin-right: 4px;
    line-height: 24px;
    min-height: 24px;
}
ui-administrator-email .delete-button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 16px;
}
ui-administrator-email .delete-button:hover {color: #E42525;}


/* ----------
 * UI SEGMENT
 * ---------- */
ui-segment {
    position: relative;
    display: block;
}
ui-segment .status-icon {
    position: absolute;
    right: 12px;
    top: 9px;
    font-size: 19px;
}
ui-segment .status-icon .success {
    color: #D9E2E8;
    font-size: 24px;
}
ui-segment input:focus ~ .status-icon .success {color: #0CC9E3;}
ui-segment .ui-select-item.deleting {background-color: #FFE7E7 !important;}
ui-segment .delete-prompt {
    top: 0px;
    right: 0px;
    position: absolute;
}
ui-segment .delete-prompt .btn {
    margin-right: 4px;
    line-height: 24px;
    min-height: 24px;
}
ui-segment .action-button {
    background: none;
    border: none;
    width: 30px;
    height: 40px;
    font-size: 16px !important;
    box-shadow: none;
    outline: none;
}
ui-segment .delete-button:hover {color: #E42525;}
ui-segment .refresh-button:hover {color: #25E425;}
ui-segment .refresh-button[disabled] {
    animation: SPINNING infinite linear 800ms;
    -webkit-animation: SPINNING infinite linear 800ms;
    color: #25E425;
}

ui-segment label.disabled {
    background-color: #EEF1F2;
}


/* ----------------------
 * UI TEXTAREA CUSTOMFIELD TOKEN
 * ---------------------- */

ui-textarea-customfield-token{}
ui-textarea-customfield-token a{display: inline-block;margin-top:5px;}





/* ----------------------
 * UI SELECT LIST ACTIONS
 * ---------------------- */

.ui-select-actions{
    position: relative;
}

.ui-select-actions button {
    width: 41px;
    text-align: center;
    padding: 0;
    font-size: 27px;
    padding-top: 3px;
    height: 40px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
}
.ui-select-actions button:focus{
    background-color: #C6CED3;
    outline: none;
}
.ui-select-actions > a{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: 43px;
}