/* Userrights menu */
.userrights_button {
	position: fixed;
	left: 0;
	bottom: 0;
	margin-left: 12px;
	margin-bottom: 12px;
	border: 3px solid var(--main-color);
	border-radius: 50%;
	z-index: 999;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.userrights_button a {
	float: left;
	width: 40px;
	height: 30px;
	text-align: center;
	padding-top: 10px;
	background-color: var(--main-color);
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 0 #f0324b;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
	-webkit-appearance: none;
	cursor: pointer;
}

.userrights_button a:hover {
	background-color: white;
	color: var(--main-color);
}

.userright_div_left {
	float: left;
	width: 50%;
	padding-right: 2%;
}

.userright_div_right {
	float: left;
	width: 50%;
	padding-left: 2%;
}

.bigbutton {
	float: left;
	width: 100%;
	cursor: pointer;
	font-size: 20px;
    font-family: 'Lato', sans-serif;
	margin-top: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #ffffff;
	background-color: var(--main-color);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 2px;
	text-shadow: 3px 3px #ccc;
	-moz-box-shadow:
		0px 0px 0px rgba(000,000,000,0.5),
		inset 0px 0px 0px rgba(087,087,087,0.7);
	-webkit-box-shadow:
		0px 0px 0px rgba(000,000,000,0.5),
		inset 0px 0px 0px rgba(087,087,087,0.7);
	box-shadow:
		0px 0px 0px rgba(000,000,000,0.5),
		inset 0px 0px 0px rgba(087,087,087,0.7);
	text-shadow:
		0px -1px 0px rgba(0,0,0,0.2),
		0px 1px 0px rgba(255,255,255,0.3);
}

.bigbutton:hover {
	background-color: #2f2f2f;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
    text-decoration: none;
}

@media only screen and (max-width: 479px) {
	.userright_div_left {
		float: left;
		width: 100%;
		padding-right: 0;
	}
	
	.userright_div_right {
		float: left;
		width: 100%;
		padding-left: 0;
	}
}