html, body {
	margin: 0;
	padding: 0;
}

body {
	background: #ecf0f5;
	font-family: Arial, sans-serif;
	color: rgba(0, 0, 0, 0.87);
}

nav {
	background-color: #1E88E5;
	box-sizing: border-box;
	color: white;
	text-align: left;
	display: flex;
	align-items: stretch;
	position: relative;
}

nav .title {
	display: block;
	line-height: 40px;
	padding: 0 20px;
	font-size: 25px;
	flex: 1;
	white-space: nowrap;
	overflow-x: hidden;
}

nav .title .title-text {
	white-space: nowrap;
	overflow-x: auto;
}

nav .menu {
	list-style: none;
    margin: 0 10px 0 0;
	padding: 0;
	float: right;
}

nav .menu li {
	height: 100%;
	padding: 10px 10px;
	display: inline-block;
	position: relative; /* Za dropdown meni */
	color: white !important;
}
nav .menu li a {
	color: white !important;
}
nav .menu li:hover {
	background-color: #1565C0;
}

.dropdown {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-show {
	display: block;
}
nav .menu .dropdown-show {
	right: 0;
}
.dropdownbtn {
	cursor: pointer;
	position: relative;
	height: 100%;
	display: inline-flex;
	align-items: center;
}

.dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
/* Change color of dropdown links on hover */
.dropdown a:hover {background-color: #f1f1f1}


#back {
	float: left;
	opacity: 0.9;
	transition: opacity 0.2s;
	margin-right: 7px;
}
#back:hover {
	opacity: 1.0;
}
#back:active {
	opacity: 0.8;
}

#back img {
	width: 28px;
	height: 28px;
	position: relative;
	top: 5px;
	float: left; /* Da ne upoĹĄteva whitespace in naredi toolbar za brezveze previsok */
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

.container {
	padding: 10px;
	box-sizing: border-box;
	display: block;
	float: left;
}

.card {
	background: #ffffff;
	box-shadow: 0 1px 1px rgba(0,0,0,0.21);
	transition: background 0.1s;
	width: 100%;
	box-sizing: border-box;
	border-top: 3px solid #64B5F6;
}
a.card {
	text-decoration: none;
	color: inherit;
}
a.card:hover {
	background: #fafafa;
}

.card .card-head {
	border-bottom: 1px solid #f4f4f4;
	padding: 10px 12px;
	box-sizing: border-box;
	min-height: 44px;
	display: flex;
	align-items: center;
}
.card .card-head h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	flex: 1;
}
.card .card-body {
	padding: 12px;
}
.card .card-foot {
	border-top: 1px solid #f4f4f4;
	padding: 0;
	display: flex;
	align-items: center;
}
.card .card-foot .card-foot-text {
	display: inline-block;
	padding: 12px;
	flex: 1;
}
.card .card-foot.card-foot-buttons {
	padding: 0;
	text-align: right;
}

.mp3-card {
    display: flex;
	min-height: 130px;
}
/*.card:hover {
	background: #f0f0f0;
}*/

.track-no {
	padding-right: 5px;
}

.track-description {
	flex: 1;
}

.links a {
	float: left;
	margin-right: 10px;
}

.button {
	display: inline-flex;
	color: hsl(0, 0%, 100%);
	padding: 7px 13px;
	border-radius: 2px;
	margin-top: 10px;
	letter-spacing: .007px;
	font-weight: 500;
	background: #1976D2;
}
.button-red {
	background: hsl(0, 100%, 50%);
}
.button img {
	margin-right: 10px;
}

.button-image {
	padding: 4px;
}
.button-image img {
	margin-right: 0;
}

/* For mobile phones: */
[class*="col-"] {
	width: 100%;
}
@media only screen and (min-width: 720px) {
    .col-md-1 {width: 8.33%;}
	.col-md-2 {width: 16.66%;}
	.col-md-3 {width: 25%;}
	.col-md-4 {width: 33.33%;}
	.col-md-5 {width: 41.66%;}
	.col-md-6 {width: 50%;}
	.col-md-7 {width: 58.33%;}
	.col-md-8 {width: 66.66%;}
	.col-md-9 {width: 75%;}
	.col-md-10 {width: 83.33%;}
	.col-md-11 {width: 91.66%;}
	.col-md-12 {width: 100%;}
	
	#wrapper {
		padding: 10px;
		max-width: 1000px;
		margin: 0 auto;
	}
	
	nav .title {
		max-width: 1000px;
		margin: 0 auto;
	}
}