.riskAndBufferDropdown {
    display: inline-block;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 4px;
    margin: 0 -10px;
}

    .riskAndBufferDropdown input {
        width: 100%;
        border: none;
        border: 1px solid transparent;
        font-family: 'GlowRegular';
        font-size: 14px;
        color: #4a4a4a;
        outline: none;
        box-shadow: none;
        position: relative;
        padding: 0 10px;
        cursor: pointer;
        height: 28px;
        background: transparent;
        border-radius: 4px;
    }

        .riskAndBufferDropdown input[disabled] {
            opacity: 0.4;
            cursor: default;
            background-color: transparent;
        }

    /* Arrow icon */
    .riskAndBufferDropdown .arrowIcon-container {
        width: 24px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        cursor: pointer;
        padding-top: 15px;
        padding-left: 8px;
    }

        .riskAndBufferDropdown .arrowIcon-container .arrowIcon {
            width: 6px;
            height: 3px;
            background: url('../../../../images/shared/smallDownArrow.png');
        }

        .riskAndBufferDropdown .arrowIcon-container.opened .arrowIcon {
            background: url('../../../../images/shared/smallUpArow.png');
        }

        .riskAndBufferDropdown .arrowIcon-container.disabled {
            opacity: 0.4;
            cursor: default;
        }

    .riskAndBufferDropdown .selectedItemLevel-container {
        position: absolute;
        right: 18px;
        z-index: 999;
        cursor: pointer;
        font-family: GlowRegular;
        font-size: 12px;
        line-height: 15px;
        text-align: right;
        top: 50%;
        transform: translateY(-50%);
    }

        .riskAndBufferDropdown .selectedItemLevel-container.disabled {
            cursor: default;
        }

        .riskAndBufferDropdown .selectedItemLevel-container.blue {
            color: #0090ff;
        }

        .riskAndBufferDropdown .selectedItemLevel-container.green {
            color: #0ac200;
        }

        .riskAndBufferDropdown .selectedItemLevel-container.yellow {
            color: #ffb400;
        }

        .riskAndBufferDropdown .selectedItemLevel-container.red {
            color: #ff002b;
        }

    .riskAndBufferDropdown .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: absolute;
        width: 100%;
        z-index: 1000;
        padding: 12px 0px;
        min-height: 43px;
        margin-top: 2px;
    }

        .riskAndBufferDropdown .dropdown-content .option {
            display: flex;
            padding: 2px 20px;
        }

            .riskAndBufferDropdown .dropdown-content .option:hover {
                background-color: #F6F7FE;
                cursor: pointer;
            }

            .riskAndBufferDropdown .dropdown-content .option .value-container {
                flex: 1 1 auto;
                font-family: GlowRegular;
                font-size: 14px;
                color: #4a4a4a;
                padding-top: 2px;
                word-break: break-word;
            }

            @supports ((-moz-appearance:none) or (-ms-ime-align:auto)) {
                .riskAndBufferDropdown .dropdown-content .option .value-container {
                    word-break: break-all;
                }
            }

            @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
                .riskAndBufferDropdown .dropdown-content .option .value-container {
                    word-break: break-all;
                }
            }

                .riskAndBufferDropdown .dropdown-content .option .value-container.selectedOption {
                    font-family: GlowSemibold;
                }

            .riskAndBufferDropdown .dropdown-content .option .label-container {
                flex: 1 1 auto;
                font-family: GlowRegular;
                font-size: 12px;
                padding-top: 2px;
                text-align: right;
            }

                .riskAndBufferDropdown .dropdown-content .option .label-container.blue {
                    color: #0090ff;
                }

                .riskAndBufferDropdown .dropdown-content .option .label-container.green {
                    color: #0ac200;
                }

                .riskAndBufferDropdown .dropdown-content .option .label-container.yellow {
                    color: #ffb400;
                }

                .riskAndBufferDropdown .dropdown-content .option .label-container.red {
                    color: #ff002b;
                }

.riskAndBufferDropdown [hidden] {
    display: none !important;
}

.riskAndBufferDropdown:not(.opened):hover {
    background: #F5F5F5;;
}

.riskAndBufferDropdown.opened input {
    border: 1px solid #dcdcdc;
}

.riskAndBufferDropdown.opened input:focus{
    border: 1px solid #5774e7;
}
