 /* CUSTOMNE CSS */
.panel-img {
  width:40px;
  -moz-transition:all 2s;
  -webkit-transition:all 2s;
  -o-transition:all 2s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */ 
}
.panel-img:hover {
  -moz-transition:all 1s;
  -webkit-transition:all 1s;
  -o-transition:all 1s;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: none; /* IE 6-9 */ 
}
.glow {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .50);
  -moz-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .50);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .50); 
}
.menu-item {
  text-decoration:none;
  background:rgba(255,250,250,0.3);
  padding:5px;
  color:#E6E6E6;
  font-size:20px;
  -webkit-transition:all 0.5s;
  -moz-transition:all 0.5s;
  -o-transition:all 0.5s;
  margin-right:15px;
}
.menu-item:hover, .menu-active {
  background:rgba(255,250,250,0.8);
  padding:5px;
  color:#000;
  font-size:20px;
  -webkit-transition:all 0.5s;
  -moz-transition:all 0.5s;
  -o-transition:all 0.5s; 
}


/* Oznacovanie */
::-moz-selection{ background: rgba(0,0,0,1); color:rgba(255,250,250,1); text-shadow: none; }
::selection { background:rgba(0,0,0,1); color:rgba(255,250,250,1); text-shadow: none; }
a:link { -webkit-tap-highlight-color: rgba(255,250,250,1); }


::-webkit-scrollbar {
    width: 15px;
}
 
/* dráha slideu */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
 
/* colory */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: rgba(255,165,0,0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
}
