/* Common css: */

/* DEBUG: */

/*
*{
	border: 1px solid red;
}
*/


/* Drag from top prevent refresh: */
html, body{
	overscroll-behavior-y: contain;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~ COLORS: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.grey-text-light{
	color: #cccccc;
}
.grey-text-dark{
	color: #555;
}

.blue-text-light {
	color: #66bbff;
}

.blue-text-dark {
	color: #3399cc;
}

.white-text{
	color: #ffffff;
}

.dark-grey-bg{
	background-color: #313131;
	background-color: rgba(25,25,25,0.85);
	color: #fff;
}
.blue-bg{
	background-color: #3399cc;
	color: #fff;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~ OBECNE: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
h1, h2, h3, h4, h5 {
	margin: 0px;
}
.gap-10px{
	min-height: 10px;
}
.no-padding-horizontal{
	padding-left: 0px;
	padding-right: 0px;
}
.inline{ /* pro napr <h4>*/
	display: inline !important;
	padding: 0px 10px 0px 10px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~ OBECNE BUTTONS: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.btn-blue{
	color: #fff;
	background-color: #3399cc;
	transition: 0.3s;
}

.btn-blue:hover {
	color: #fff;
	background-color: #0070a7;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
