.gorilla-dropdown {
    margin: auto;
    display: block;
    vertical-align: top;
    width: 75%;
}
@media (max-width: 640px) {
	.gorilla-dropdown {
		width: 100%;
	}
}

.gorilla-dropdown .container {
    position: relative;
}

.gorilla-dropdown .container > .current {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border-style: solid;
    padding: 2px 5px !important;
    margin-top: 20px;
    border: 2px solid #cf011c !important;
}
@media (max-width: 640px) {
	.gorilla-dropdown .container > .current {
		margin-top: 0px;
	}
}

.gorilla-dropdown .container > .current .arrow{
    top: 50% !important;
    transform: translateY(-50%);
    color: #cf011c !important;
}
.gorilla-dropdown .container > .current .content{
    height: 40px;
    display: flex;
    align-items: center;
}
.gorilla-dropdown .container > .current .content img{
    height: 40px;
}
.gorilla-dropdown#category_select .container > .current .content img{
    height: 30px;
}
.gorilla-dropdown .container > .current .content .text{
    color: #cf011c !important;
}

.gorilla-dropdown .container > .ddlist {
    position: absolute;
    display: none;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
	border: 1px solid #ccc;
}

.gorilla-dropdown .container > .ddlist > .dditem {
    width: 100%;
    list-style-type: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-style: solid;
    border-top: none;
	border-right: none;
	border-left: none;
    display: flex;
    align-items: center;
    height: 60px;
}

.gorilla-dropdown .container > .ddlist > .dditem img{
    height: 40px;
}

.gorilla-dropdown#category_select .container > .ddlist > .dditem img{
    height: 30px;
}

.gorilla-dropdown .-clear-both {
    clear: both;
}
