div.specialty {
    width: 482px;
    height: 33px;

    border: 1px solid #7B3EB3;
    margin: 0 auto;
}

div.specialty div {
    display: inline-block;
}

div.specialty div:first-child {
    width: 105px;
    height: 100%;
    float:left;
    background-color: #7B3EB3;
    color: #CEAEEB;
    font-family: "MarkOTBold";
    font-size: 14px;
    text-transform: uppercase;

    display: flex;  
    align-items: center;
}

div.specialty div:first-child p {
    width: 100%;
}

div.specialty div:nth-of-type(2) {
    color: #7B3EB3;
    font-family: "MarkOT";
    font-size: 18px;
}


div.specialty div:last-child {
}

/* To be applied to dropdown on visualization first load, this adds the drop shadow REMEMBER: SHOULD BE POSITIONED VERTICALLY CENTER*/
div.unselected {
    box-shadow: 0px 0px 70px RGBA(0,0,0,0.25);
}


/* Dropdown Styling */
*,*:after,*:before {
    box-sizing: border-box;
}
.dropdown-wrapper {
    position: relative;
    width: 375px;
    margin: 0 auto;
    padding: 4px 32px 4px 0px;
 
    /* Styles */
    cursor: pointer;
    outline: none;
}

/* Dropdown Arrow */
.dropdown-wrapper:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #7B3EB3 transparent;
}

/* Left Border for Dropdown Arrow */
.dropdown-wrapper:before {
    content: "";
    width: 1px;
    height: 33px;
    position: absolute;
    right: 32px;
    top: 0;
    margin-top: -1px;
    border-right: 1px solid #7B3EB3;
}

/* Positioning and Style for Dropdown Contents */
.dropdown-wrapper .dropdown {
  /* Size & position */
    position: absolute;
    top: 14px;
    right: 32px;
    padding-left: 0;
    z-index: 300;
    width: 344px;
 
    /* Styles */
    background: #f2f2f2;
    transition: all 0.3s ease-out;
    list-style: none;
 
    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

/* Dropdown Text Idle State */
.dropdown-wrapper .dropdown li a {
    display: block;
    text-decoration: none;
    color: #7B3EB3;
    border-left: 1px solid #7B3EB3;
    border-right: 1px solid #7B3EB3;
    border-bottom: 1px solid #7B3EB3;
    padding: 4px;
    transition: all 0.3s ease-out;
    background-color: #f2f2f2;
}
 
 
/* Hover state */
 .dropdown-wrapper .dropdown li:hover a {
    color: #fff;
    background-color: #7B3EB3;
}

.dropdown-wrapper.active:after {
    border-width: 0 6px 6px 6px;
}
 
.dropdown-wrapper.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}