body {
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
}

* { 
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

*:focus {
	outline: 0;
}

a {
	text-decoration: none;
	font-weight: bold;
}

@font-face {
	font-family: BPGMrgvlovaniCaps; src:url('../fonts/bpg_mrgvlovani_caps_2010.ttf');
}

@font-face {
	font-family: 'Conv_bpg_arial';
	src: url('../fonts/bpg_arial.eot');
	src: url('../fonts/bpg_arial.woff') format('woff'), url('../fonts/bpg_arial.ttf') format('truetype'), url('../fonts/bpg_arial.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@media all and (min-width: 1024px) {
	/* width */
	::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	
	/* Track */
	::-webkit-scrollbar-track {
		background: #fff;
	}
	
	/* Handle */
	::-webkit-scrollbar-thumb {
		background: #bd0a4e;
	}
	
	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: #bd0a4e;
	}
}

/* toast */
.toast {
	display: none;
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding-bottom: 20px;
	z-index: 2147483647;
}

.toast-dark .toast-content {
	background-color: rgba(0, 0, 0, 0.65);
	color: #ffffff;
}

.toast-light .toast-content {
	background-color: #c2c2c2;
	color: #3b3b3b;
}

.toast-content {
	max-width: 330px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	padding-top: 12px;
	padding-bottom: 12px;
	font-family: 'Conv_bpg_arial';
	font-size: 16px;
	text-align: center;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}