.sf-button {
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

.sf-button-gradient {
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

@supports (background-image: linear-gradient(to right, #00F0F0, #0000AF)) and (background-size: 100%) and (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
	.sf-button-gradient {
		font-style: italic;
		font-weight: bold;
		text-decoration: none;
		background-image: linear-gradient(to right, #00F0F0, #0000AF);
		background-size: 100%;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

@supports (background-image: linear-gradient(to right, #00F0F0, #0000AF)) and (background-size: 100%) and (-moz-background-clip: text) and (-moz-text-fill-color: transparent) {
	.sf-button-gradient {
		font-style: italic;
		font-weight: bold;
		text-decoration: none;
		background-image: linear-gradient(to right, #00F0F0, #0000AF);
		background-size: 100%;
		-moz-background-clip: text;
		-moz-text-fill-color: transparent;
}
}

.sf-thumb {
	padding: 2px;
	margin: 2px;
	border: 1px solid #000000;
}

.sf-padding-xlarge {
	padding: 12px 32px!important;
}

.sf-header-animate-fading {
	animation: fading 10s infinite
}

@keyframes fading {
	0% {opacity:0}
	50% {opacity:0.65}
	100% {opacity:0.65}
}

.sf-modal {
	display: none;
	z-index: 1;
	position: fixed;
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.8);
}

.sf-modal-back {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.sf-modal-img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.sf-modal-close {
	margin-top: 15px!important;
	margin-right: 15px!important;
	cursor: pointer;
}

.sf-modal-left {
	margin-left: 15px!important;
	cursor: pointer;
}

.sf-modal-right {
	margin-right: 15px!important;
	cursor: pointer;
}

input {
	border: 1px solid #ccc !important;
	background-color: #fff;
	outline: none;
}

input:focus {
	border: 1px solid #2196F3 !important;
}

/* Customize the label (the container) for check boxes */
.sf-check-container {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default check box */
.sf-check-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom check box */
.sf-checkmark {
	position: absolute;
	height: 22.5px;
	width: 22.5px;
	background-color: #fff;
	border: 1px solid #ccc !important;
}

/* When the check box is checked, add a blue background */
.sf-check-container input:checked ~ .sf-checkmark {
	background-color: #2196F3;
}

/* Create the check mark */
.sf-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the check mark when checked */
.sf-check-container input:checked ~ .sf-checkmark:after {
	display: block;
}

/* Style the check mark */
.sf-check-container .sf-checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Create a custom radio button box */
.sf-checkmark-radio {
	position: absolute;
	height: 22.5px;
	width: 22.5px;
	background-color: #fff;
	border: 1px solid #ccc !important;
	border-radius: 50%;
}

/* When the radio button is checked, add a blue background */
.sf-check-container input:checked ~ .sf-checkmark-radio {
	background-color: #2196F3;
}

/* Create the radio button check mark */
.sf-checkmark-radio:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the radio button check mark when checked */
.sf-check-container input:checked ~ .sf-checkmark-radio:after {
	display: block;
}

/* Style the radio button check mark */
.sf-check-container .sf-checkmark-radio:after {
	left: 7px;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}