.attributesDropdown {
    display: inline-block;
    width: 100%;
    position: relative;
}

    .attributesDropdown.multiSelectMode {
        display: block;
    }

    .attributesDropdown.filterMode {
        max-width: none;
    }

    .attributesDropdown.filterMode .ui-input-bordered {
        width: auto !important;
    }

    .attributesDropdown.filterMode .filterModeInput {
        border: solid 1px #5774e7;
        min-width: 179px;
        max-width: 400px;
        padding: 1px 5px;
        display: flex;
        overflow: hidden;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues{
        max-width: 400px;
        display: flex;
    }

    .attributesDropdown.filterMode .filterModeInput .ui-input-bordered {
        height: 100%;
        background: transparent;
        outline: none;
        border: none;
        flex: 1 1 auto;
        font-family: GlowRegular;
        color: #4A4A4A;
        font-size: 14px;
        padding-bottom: 3px;
    }
    
    .attributesDropdown.filterMode .filterModeInput .searchInput {
        width: 40px !important;
    }

	.attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .equalitySign {
		padding-right: 5px;
		padding-bottom: 1px;
        cursor: pointer;
	}

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container {
        padding-left: 0;
        margin-top: 2px;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .attribute {
        margin: 0;
        margin-bottom: 1px;
        padding: 3px 7px;
        background: #F2EEFB;
        border-radius: 4px;
        min-height: auto;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .attribute.multi-select {
        background: none;
        font-size: 14px;
        padding: 3px 0px;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .attribute .attribute-type {
        color: #8669C6;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .attribute.hovered {
        background: #D3D3D3;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .removeIcon {
        background: linear-gradient(to right, rgba(95, 93, 98, 0) 0%, #F2EEFB 50%, #F2EEFB 100%);
        top: 0px;
        height: 21px;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .attribute.hovered .removeIcon {
        background: linear-gradient(to right, rgba(211, 211, 211, 0) 0%, #D3D3D3 50%, #D3D3D3 100%);
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .operationType {
        color:#5774E7;
        margin-right: 5px;
        margin-left: 5px;
		cursor: pointer;
    }

    .attributesDropdown.filterMode .filterModeInput .attributes-allValues.filterValues .attributes-container .operationType.redColored {
        color: #EC4A43;
    }

    .attributesDropdown .attributes-allValues.ui-input-bordered {
        padding-top: 4px;
        padding-left: 8px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .attributesDropdown .attributes-allValues.ui-input-bordered.multi-select {
        padding-right: 7px;
    }

    .attributesDropdown .ui-input-bordered {
        padding-left: 10px;
        width: 100% !important;
    }

        .attributesDropdown .ui-input-bordered.dropdownWithSearch {
            /* padding-right: 40px; */
            /* margin-right: -40px; */
        }

    /* Clear icon that is shown only when search is enabled */
    .attributesDropdown .clear-input {
        width: 10px;
        height: 10px;
        position: absolute;
        top: 10px;
        right: 8px;
        z-index: 999;
        cursor: pointer;
        background: url(../../../../images/shared/close.png);
    }

        .attributesDropdown .clear-input:hover {
            background: url(../../../../images/shared/close-hovered.png);
        }

    /* Arrow icon */
    .attributesDropdown .arrowIcon-container {
        width: 24px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        cursor: pointer;
        padding-top: 13px;
        padding-left: 8px;
    }

        .attributesDropdown .arrowIcon-container .arrowIcon {
            width: 6px;
            height: 3px;
            background: url('../../../../images/shared/smallDownArrow.png');
        }

        .attributesDropdown .arrowIcon-container.opened .arrowIcon {
            background: url('../../../../images/shared/smallUpArow.png');
        }

    .attributesDropdown .dropdown-content {
        border-radius: 4px;
        background-color: #ffffff;
        box-shadow: 0 2px 4px 0 rgba(0, 41, 199, 0.2), 0 0 2px 0 rgba(70, 89, 191, 0.3);
        position: fixed;
        width: 160px;
        max-width: 300px;
        z-index: 1000;
        padding: 12px 0px;
        font-size: 14px;
        /* min-height: 50px; */
        opacity: 0;
        -webkit-transition: opacity 0.1ms ease-in-out;
        -moz-transition: opacity 0.1ms ease-in-out;
        -ms-transition: opacity 0.1ms ease-in-out;
        -o-transition: opacity 0.1ms ease-in-out;
        transition: opacity 0.1ms ease-in-out;
    }

    .attributesDropdown .dropdown-content.rendered {
        opacity: 1;
    }

        .attributesDropdown .dropdown-content .option {
            padding: 0px 20px;
            line-height: 28px;
            display: flex;
            align-items: center;
        }

            .attributesDropdown .dropdown-content .option:hover {
                background-color: #F6F7FE;
                cursor: pointer;
            }

            .attributesDropdown .dropdown-content .option.multiSelectMode:hover {                
                cursor: unset;
            }

            .attributesDropdown .dropdown-content .option.selected .value-container {
                color: #5774e7;
            }

            .attributesDropdown .dropdown-content .option .rightArrowContainer{
                position: relative;
                padding: 9px 11px 9px 0px;
                cursor: pointer;
            }

            .attributesDropdown .dropdown-content .option .rightArrowContainer::after{
                content: "";
                position: absolute;
                left: -12px;
                top: 0;
                width: 28px;
                height: 28px;                
            }

            .attributesDropdown .dropdown-content .option .rightArrowContainer .rightArrowIcon {
                width: 6px;
                height: 10px;
                background: url('../../../../images/graphs/enter_resource_arrow_button.png');                
            }

            .attributesDropdown .dropdown-content .option .rightArrowContainer:hover .rightArrowIcon {
                background: url('../../../../images/graphs/enter_resource_arrow_button_hovered.png');                                
            }
    
            .attributesDropdown .dropdown-content .option .rightArrowContainer.opened .rightArrowIcon {
                -webkit-transform: rotate(90deg);
                -moz-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                transform: rotate(90deg);
            }

            .attributesDropdown .dropdown-content .option .value-container {
                font-family: GlowRegular;
                font-size: 14px;
                color: #4a4a4a;
            }

            .attributesDropdown .dropdown-content.targetGroupTitle .option .value-container {
                margin-right: auto;
            }

            .attributesDropdown .dropdown-content .option .iconsContainer {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

                .attributesDropdown .dropdown-content .option .iconsContainer img:not(:last-child) {
                    margin-right: 1px;
                }

                .attributesDropdown .dropdown-content .option .iconsContainer img:last-child {
                    margin-right: -1px;
                }

            .attributesDropdown .dropdown-content .targetGroup {
                border-bottom: 1px solid #E0E0E0;
                padding: 0 20px 7px;
                font-family: GlowRegular;
                font-size: 13px;
                color: #B6B6B6;
            }

                .attributesDropdown .dropdown-content .targetGroup .ui-btn-link.disabled {
                    color: #808080;
                    cursor: default;
                    pointer-events: none;
                }

            .attributesDropdown .dropdown-content .targetGroupTitle {
                font-family: GlowSemiBold;
                font-size: 14px;
                color: #4A4A4A;
                padding-bottom: 8px;
                display: flex;
                padding-left: 20px;
                padding-top: 10px;
            }

                .attributesDropdown .dropdown-content .targetGroupTitle .backBtn {
                    flex: 0 0 10px;
                    cursor: pointer;
                }

                .attributesDropdown .dropdown-content .targetGroupTitle .infoIcon {
                    flex: 0 0 20px;
                    text-align: right;
                }

            .attributesDropdown .dropdown-content .title-box {
                display: flex;
                align-items: center;
                padding-bottom: 8px;
            }

                .attributesDropdown .dropdown-content .title-box .title {
                    font-family: GlowSemiBold;
                    font-size: 14px;
                    color: #4A4A4A;
                    padding-left: 20px;
                    height: 20px;
                }

                .attributesDropdown .dropdown-content .title-box .clear-selected {
                    font-size: 13px;
                    line-height: 16px;                    
                    color: #5774E7;
                    opacity: 0.4;
                    margin-left: 8px;
                    cursor: pointer;
                }

                .attributesDropdown .dropdown-content .title-box .clear-selected.active {                    
                    opacity: 1;                    
                }

                .attributesDropdown .dropdown-content .title-box .clear-selected.active:hover {                    
                    cursor: pointer;
                    text-decoration: underline;
                    color: #5774e7;                  
                }
                
        .attributesDropdown .dropdown-content .sectionTitle{
            color: #8669C6;
        }

        .attributesDropdown .dropdown-content .noOptionsFound-container {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .attributesDropdown .dropdown-content .noOptionsFound-container .noFound {
                font-family: GlowRegular;
                font-size: 13px;
                text-align: center;
                color: #b6b6b6;
            }

            .attributesDropdown .dropdown-content .noOptionsFound-container .createNew-btn {
                font-family: GlowRegular;
                font-size: 13px;
                text-align: center;
                color: #5774e7;
                cursor: pointer;
            }

        .attributesDropdown perfect-scrollbar .ps-content {
            padding-right: 0 !important;
        }

        .attributesDropdown perfect-scrollbar .ps__rail-x .ps__thumb-x {
            height: 3px;
        }

        .attributesDropdown perfect-scrollbar .ps__rail-x:focus>.ps__thumb-x,
        .attributesDropdown perfect-scrollbar .ps__rail-x:hover>.ps__thumb-x     {
            height: 6px;
        }

.attributesDropdown .dropdown-content .option .attribute-checkbox {
    margin-right: 8px;
    margin-top: 3px;
}
