#holder {
    min-height: 100%;
	height: 610px;
    position:relative;
}

html,body{
	height: 96%;
    font-family: Cambria, sans-serif;
	background: transparent;
    margin: 0;
    padding: 0;
	margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
	background: #aaaaaa url(images/bg.jpg) repeat scroll 0 0 
}

#header {
	position: relative;
	font-size: 16px;
	bottom: 17px;
	width: 100%;
	text-align: center;
	text-shadow: 0.5px 0.5px #FFF;
}

#header a:hover {
	color: #8A0808 !important; /* graži kraujo spalva */	
	transition: all 500ms ease 0ms;
	font-weight: bold;
}

/* DI Šviesus tooltip kaip naršyklės title */
#header a::after {
    content: attr(data-tip);
    position: absolute;
    top: 125%; /* po nuoroda */
    left: 0;
    right: 0;
    margin: auto;            /* centravimas horizontaliai */
    display: block;          /* leidžia užimti tinkamą plotį */
    max-width: 400px;        /* maksimalus plotis */
    min-width: 120px;        /* minimalus plotis */
    width: auto;             /* pritaiko plotį pagal tekstą */
    background: #f8f8f8;
    color: #000;
    border: 1px solid #ccc;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: normal;
    text-shadow: none;
    white-space: normal;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease-in;
    z-index: 999;
}

/* Maža rankytė po dėžute */
#header a::before {
    content: "";                  /* pseudo-elementas turi turinį, čia tuščias */
    position: absolute;           /* absoliutus pozicionavimas tooltip'o kontekste */
    top: 120%;                    /* padedame truputį žemiau tooltip dėžutės */
	bottom: auto;
	border-top-color: transparent;
    left: 50%;                    /* centras pagal horizontalę */
    transform: translateX(-50%);  /* tiksliai centruojame rankytę */
    border: 5px solid transparent; /* rankytės „forma“: visi kraštai skaidrūs */
    border-bottom-color: #ccc;    /* apatinė dalis nuspalvinama – gaunasi trikampis */
    opacity: 0;                   /* kol pelė neužvedama, nematomas */
    transition: opacity 0.1s ease-in; /* sklandus atsiradimas */
    z-index: 998;                 /* kad būtų po tooltip dėžute */
}

/* Rodome tooltip'ą */
#header a:hover::after,
#header a:hover::before {
	opacity: 1;
}

/* Kad neišlįstų už ekrano ribų */
@media (max-width: 768px) {
	#header a::after {
		left: auto;
		right: 0;
		transform: none;
	}
}

.player {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
}

#playlist {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

#playlist li {
    padding: 7px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

#playlist li a {
    text-decoration: none;
    color: #7a3333;
	font-family: Cambria, sans-serif;
}

#playlist li.active {
    background-color: #ededed;
}


#footer {
	position: absolute;
	font-size: 16px;
	bottom: 25px;
	width: 100%;
	text-align: center;
	text-shadow: 0.5px 0.5px #FFF;
}

/*a: { Moz klaida "a:", o ne vien "a" ir g.b. nenaudojamas
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
	text-decoration: none;
} */

/* unvisited link */
a:link {
	color: #8A0808; /* graži kraujo spalva */	
	text-decoration: none;
	transition: all 500ms ease 0ms;
}

#footer a:hover {
	color: #8A0808 !important; /* graži kraujo spalva */	
	transition: all 500ms ease 0ms;
	text-decoration: underline;
}