.dropmenubtn {
    background: none;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0);
    cursor: pointer;
    margin-left: 15px;
    width: 70px;
    height: 60px;
    border-radius: 6px 6px 0 0px;
    margin-top: 5px;
    position: relative;
    z-index: 10;
    top: 2px;
}
.choice-icon:before{
    display: inline-block;
    width: 100%;
    font-size: 70px;
    color: #ff8735;
    text-align: center;
    margin: 20px auto;
}
.flaticon-user:before{
    font-size: 30px;
    color: #7161ae;
    position: absolute;
    display: inline-block;
    left: 0;
    top: -10px;
}
.dropmenudown {
    position: relative;
    display: inline-block;
    float: right;
}

.dropmenudown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0px;
    border: 1px solid #ff8735;
    border-radius: 6px 0px 6px 6px;
    overflow: hidden;
    text-align: left;
}

.dropmenudown-content a,.dropmenudown-content span {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space:nowrap;
}

.dropmenudown-content a:hover {background-color: #f1f1f1}

.dropmenudown:hover .dropmenudown-content {
    display: block;
}

.dropmenudown:hover .dropmenubtn {
    border: 1px solid #ff8735;
    border-bottom: 1px solid #fff;
    background: #fff;
}

.dropdownarrow:after {
    content: "\f107";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 7px;
    top: 15px;
    font-weight: 600;
    color: #7161ae;
    transition: all 0.1s ease 0s;
}
.dropmenudown:hover .dropdownarrow:after {
    -ms-transform: rotate(180deg); 
    -webkit-transform: rotate(180deg); 
    transform: rotate(180deg);
}
@media (max-width: 1200px) {  
    .dropmenubtn {
        width: 60px;
        height: 40px;
        right: 5px;
    }
    .dropdownarrow:after {
        right: 5px;
        top: 10px;
    }
    .flaticon-user:before {
        top: -15px;
    }
    .dropmenudown-content {
        right: 5px;
    }
}