.btn-comment {
	background: #125667;
	border: 0;
	padding: 5px 15px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
}

.btn-facebook {
	background: #3b5998;
	color: #fff;
	font-size: 12px;
	position: relative;
}

.btn-facebook:hover {
	color: #fff;
	background: #3b5998;
}

.login-modal .btn-facebook::after {
    content: "";
    position: absolute;
    background: #12306f !important;
    top: 0;
    left: -10px;
    width: 55px;
    height: 100%;
    transform: skew(-30deg);
    border-right: 2px solid #fff;
}

/*
	/*Custom Checkbox
*/

.mycheckbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
}

.mycheckbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border: 1px solid #ccc;
}

.mycheckbox:hover input ~ .checkmark {
	background-color: #ccc;
}

.mycheckbox input:checked ~ .checkmark {
	background-color: #13bf78;
	border: 1px solid #13bf78;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.mycheckbox input:checked ~ .checkmark:after {
	display: block;
}

.mycheckbox .checkmark:after {
	left: 7px;
    top: 3px;
    width: 5px;
    height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}