
/* Pravila za sve stranice */
*{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

textarea:focus, input:focus{
    outline: none;
}

button:focus { outline: none; }

a{
	text-decoration: none;
	color: inherit;
}

ul {
  list-style-type: none;
}

.sakri{
	display: none;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
/* KRAJ: Pravila za sve stranice */

