/*skalowanie css przenieść do osobnego pliku*/
/*wielkosc kontenera*/

/*czas skalowania, zmieniac wszystkie trzy pozycje*/
/*wielkosc kontenera*/
.HoverDiv {
  position: relative;
  width:40px;
  height: 40px;
  margin: 1px;

}
/*czas skalowania, zmieniac wszystkie trzy pozycje*/
.HoverDiv img {
  max-width: 100%;
  text-align:center;
  postion:  absolute;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
}
/*skalowanie, najmnie to 1 wtedy nie powiększa*/
.HoverDiv:hover img {
  -moz-transform: scale(5);
  -webkit-transform: scale(5);
  transform: scale(5);
  position:absolute;
  z-index:4;
  transition: all 0.9s;
}
img {
    display: inline-block;
    padding: 1px;
    transition: 0.1s;
    z-index: 0;
    
}


.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: #1a1a1a;
            opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
            color: #1a1a1a;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
            color: #1a1a1a;
 }

/* glowny wyglad strony: */

@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');
body {
  margin: 0;

  background: #222;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  color: #bdc1c6;
}


/* glowny wyglad navbaru: */

header {
  background: #222; /* kolor tla nav */
  width: 100%;
  margin: 0 0;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 1vw;
}
header img{
  height: 50px;
}
header::after {
  content: '';
  display: table;
  clear: both;
}

.logo {
  float: left;
  padding: 0% 0;
  margin: 0 2%;

}
.name{
  float: right;
}
nav {
  float: center;
}

.user {
  margin: 0;
  justify-content: flex-end;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 20px;
  padding-top: 15px;

  position: relative;
}

nav a {
  color: #bdc1c6;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1vmax;
}

nav a:hover {
  color: #444;
}

nav a::before {
  content: '';
  display: block;
  height: 10px;
  background-color: #bdc1c6;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}



/*collapse  */

.panel-title {
  position: relative;

}
  
.panel-title::after {
  content: "\f107";
  color: #999;
  top: -2px;
  right: 0px;
  position: absolute;
  font-family: "FontAwesome"
}

.panel-title[aria-expanded="true"]::after {
  content: "\f106";
}

/*
 * Added 12-27-20 to showcase full title clickthrough
 */

.panel-heading-full.panel-heading {
  padding: 0;
}

.panel-heading-full .panel-title {
  padding: 10px 15px;
}

.panel-heading-full .panel-title::after {
  top: 10px;
  right: 15px;
}