.dropcontainer {
    position: relative;
    font-size: 16px;
    color: #777;
}

.trigger {
    color: #777;
    padding: 10px;
    font-size: 16px;
    width: 50%;
  
    display: block;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .trigger:hover {
        color: #777;
        background: #f5f5f5 url(../images/select-arrow-open.png) 98% center no-repeat;
    }

.activetrigger {
    color: #777;
    padding: 10px;
    font-size: 16px;
    width: 50%;
    background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
    display: block;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .activetrigger:hover {
        background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
        color: #777;
    }

    .activetrigger:active {
        background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
        color: #777;
    }

.dropcontainer ul {
    font-size: 16px;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    list-style-type: none;
    padding: 10px;
    margin: 0;
    width: 50%;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	list-style:none;
}

    .dropcontainer ul li {
        padding: 5px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
		list-style:none;
    }

        .dropcontainer ul li:hover {
            background: #f5f5f5;
            outline: none;
			list-style:none;
        }

        .dropcontainer ul li:last-child {
            border-bottom: none;
			list-style:none;
        }

.dropdownhidden {
    display: none;
}

.dropdownvisible {
    height: auto;
}

a.trigger, a.activetrigger {
    color: #222 !important;
    display:block !important;
    background-size: 20px 20px !important;
    border-radius: 7px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    height: 26px;
    padding: 3px 0 0 10px;
    text-decoration: none;
    transition: none;
    width: 190px;
}

    a.trigger:hover {
        color: #222;
        background-size: 20px;
    }

a.activetrigger {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.dropcontainer ul {
    width: 190px;
    padding: 0;
    position: absolute;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border: 1px solid #AAA;
    border-top: none;
}

    .dropcontainer ul li {
        padding: 2px 1px;
    }

        .dropcontainer ul li a {
            color: #222;
            display: block !important;
            padding-left: 10px;
            text-decoration: none;
        }

            .dropcontainer ul li a:hover {
                color: #fff;
                background-color: #D66A0C;
            }


@media only screen and (min-width: 180px) and (max-width: 767px) {
    a.trigger, a.activetrigger {
        width: 100%;
    }

    .dropcontainer {
        position: relative;
    }

        .dropcontainer ul {
            width: 100%;
        }
}
