﻿

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-toggle {
    background-color: lightseagreen;
    border-color: lightseagreen;
    color: white;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item div {
        display: flex;
        align-items: center;
    }

        .dropdown-item div span {
            color: black;
            text-decoration: none;
        }

      /*  .dropdown-item div .close {
            color: red;
            margin-left: 50px;
            font-weight: bold;
            font-size: 18px;
        }*/

    .dropdown-item:focus, .dropdown-item:active {
        color: black !important;
        text-decoration: none !important;
        background-color: transparent !important;
    }

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}
