.b-dropdown {
    font-family: PTSerif-Regular;
    position: relative;
    display: inline-block;
    height: 52px;
    width: 280px;
    border: 1px solid rgba(0, 0, 0, .2);
}

    .b-dropdown-e-button {
        font-family: PTSerif-Regular;
        background-color: #fff;
        border: none;
        color: #000;
        opacity: 0.5;
        font-size: 17px;
        line-height: 26px;
        width: 90%;
        height: 100%;
        white-space: nowrap;
        overflow: hidden;
        outline: none;
        text-align: left;
        cursor: pointer;
    }

    .b-dropdown-e-arrow {
        color: #000;
        opacity: 0.5;
        cursor: pointer;
    }

    .b-dropdown-e-button:hover {
        background-color: #fff;
    }

    .b-dropdown-m-position {
        margin-right: 15px;
        margin-left: 15px;
    }

.b-dropdown-content {
    text-align: left;
    background-color: #fff;
    color: #000;
    display: none;
    position: absolute;
    min-width: 280px;
    z-index: 900;
    border: 1px solid rgba(0, 0, 0, .2);
    left: -1px;
    width: 100%;
}

    .b-dropdown-content-e-link {
        font-size: 17px;
        line-height: 26px;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        cursor: pointer;
        opacity: 0.5;
    }

    .b-dropdown-content-e-link:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, .2);
    }

    .b-dropdown-content-e-link:hover {
        opacity: 1;
        text-decoration: none;
        color: #ff3000;
    }

.b-dropdown-list-divider {
    display: none;
}

@media screen and (max-width: 1000px) {
    .b-dropdown-m-position {
        margin: 15px;
    }

    .b-dropdown-list-divider {
        display: block;
        width: 100%;
    }
}
