.miao-dropdown {
    &-root {
        position: relative;
    }

    &-control {
        position: relative;
        overflow: hidden;
        border-radius: 2px;
        box-sizing: border-box;
        cursor: default;
        outline: none;
        //    padding: 8px 52px 8px 10px;
        transition: all 200ms ease;

        &:hover {
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
        }
    }

    &-placeholder {}

    &-option {
        box-sizing: border-box;
        color: rgba(51, 51, 51, 0.8);
        cursor: pointer;
        display: block;
        padding: 8px 10px;

        &:last-child {
            border-bottom-right-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        &:hover {
            background-color: #f2f9fc;
            color: #333;
        }

        &.is-selected {
            background-color: #f2f9fc;
            color: #333;
        }
    }


    &-arrow {
        border-color: #999 transparent transparent;
        border-style: solid;
        border-width: 5px 5px 0;
        content: ' ';
        display: block;
        height: 0;
        margin-top: -ceil(2.5);
        position: absolute;
        right: 10px;
        top: 14px;
        width: 0
    }

    &-menu {

        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
        box-sizing: border-box;
        overflow-y: auto;
        position: absolute;
        top: 100%;
        width: 100%;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
        left: 0;
        right: 0;
    }


    &-noresults {
        box-sizing: border-box;
        color: #ccc;
        cursor: default;
        display: block;
        padding: 8px 10px;
    }


    &-group {
        .miao-dropdown-option {
            padding-left: 20Px;
        }



        &>.miao-dropdown-title {
            padding: 8px 10px;
            color: rgba(51, 51, 51, 1);
            font-weight: bold;
            text-transform: capitalize;
        }
    }



    &-dialog {

        z-index: 9999;
        right: 5Px;
        top: 40Px;
        position: fixed;

        &-arrow {
            width: 0;
            height: 0;
            border-right: 10Px solid transparent;
            border-left: 10Px solid transparent;
            border-bottom: 10Px solid transparent;
        }

        &-menu {
            box-shadow: 5Px 5Px 10Px rgba(26, 26, 26, 0.2);
            margin-top: -1Px;
            width: 100%;
            height: 100%;
            border-radius: 4Px;

            .item {
                display: flex;
                align-items: center;

                &:active {
                    background-color: #e5e5e5;
                }

                [class*="EIcon-"] {
                    width: 30Px;
                }

                .text {
                    flex: 1;
                }
            }

        }
    }
}








.is-open .Dropdown-arrow {
    border-color: transparent transparent #999;
    border-width: 0 5px 5px;
}