/* Start DropDown Menu------------------*/
.column
{
	font-size: 2.5vw;
	padding:0.5%;
	border-top:0.2vw solid red;
	border-left:0.2vw solid red;
	cursor: pointer;
	z-index: 11;
}
.column-mobile
{
	display: none;
	font-size: 5vw;
	padding:0 2%;
	border-top:2px solid red;
	border-left:2px solid red;
	z-index: 11;
}
p[class='choices-mobile']
{
	padding: 6% 0;
}
.column, .column-mobile
{
	position: fixed;
	background-color: black;
	bottom: 0;
	right: 0;
	color: white;
	border-top-left-radius: 5px;
}
.column p[class='choice']
{
	padding-bottom:1vw;
	padding-top:0.2vw;
	font-size: 2vw; 
	cursor: pointer;
}
.column-mobile p[class='choice-mobile']
{
	padding:5px; 
}
.column p[class='choice'], .column-mobile p[class='choice-mobile']
{
	display: none;
	color: white;
	text-align: center;
	border-bottom:solid 2px red;
}
/* End DropDown Menu--------------------*/