/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	/*Image only BG fallback*/
		background-color: #000000; /* Used if the image is unavailable */
    height: 900; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */	
	background-size: cover;
	
  background-attachment: fixed;
	
	
/*POZADINSKA SLIKA*/	
background-image: url("http://loyality.gradiliste.com/images/faktor1.jpg");	
}

body {
	font-family: Montserrat, arial, verdana;
}

/*BOJA BRANDA*/

:root {
  --bojaBranda1: #8cc63e !important;
  --bojaBranda2: white !important;
}

    td{
        padding-left: 15px;
        padding-bottom: 5px;
        padding-top: 5px;
    }
    
    .purchase table, th, td {
        border: 1px solid black;
        padding: 5px;
    }
    
table, th, td {
  border: 0px solid black !important;
}
    
ul#menu li {
        display:inline;
        background: var(--bojaBranda1);
        padding: 10px;
        font-family: Montserrat, arial, verdana;
        color: var(--bojaBranda2);
        font-weight: bold;
        text-decoration: none;
        font-size: 0.85em;
}
 
    
    a:-webkit-any-link{
        text-decoration: none;
    }
    .actionBtn{
        color: black;
        background: white;
        padding: 5px;
    }


/*form styles*/
#msform {
	max-width: 70em !important;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: rgba(255, 255, 255, 0.85);
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 10px 10px;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, select, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 0.85em;
	text-align: center;
}
/*buttons*/
#msform .action-button {
	width: 150px;
	/*BOJA GUMBA*/
	background: var(--bojaBranda1);
	font-weight: bold;
	color: var(--bojaBranda2);
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px black;
}
/*headings*/
.fs-title {
	font-size: 1em !important;
	text-transform: uppercase;
	color: black;
	margin-bottom: 10px;
	font-weight: 900;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 0.7em !important;
	color: grey;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 30px;
	line-height: 30px;
	display: block;
	font-size: 10px;
	color: #333;
	background: var(--bojaBranda1);
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: black;
	color: white;
}



