* {
  margin: 0px 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #29a6dc;
  width: 100vw;
  margin: 0 auto;
  position: relative;
}

.latajacy {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  top: 5px;
  height: 35px;
  overflow: hidden;
  z-index: 2;
  -webkit-animation: latajacy_obrazek 1 6s ease-in-out;
          animation: latajacy_obrazek 1 6s ease-in-out;
}

img {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes latajacy_obrazek {
  0% {
    visibility: visible;
    left: 0%;
    top: 1%;
  }
  25% {
    left: 90%;
  }
  50% {
    left: -50%;
  }
  75% {
    left: 90%;
  }
  100% {
    left: 50%;
  }
}

@keyframes latajacy_obrazek {
  0% {
    visibility: visible;
    left: 0%;
    top: 1%;
  }
  25% {
    left: 90%;
  }
  50% {
    left: -50%;
  }
  75% {
    left: 90%;
  }
  100% {
    left: 50%;
  }
}

.galeria {
  position: relative;
  display: block;
  text-align: center;
  padding: 2px;
  height: 100%;
  width: 100%;
  background-color: #29a6dc;
  margin: 0 auto;
}

.wyswietlacz {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto auto;
      grid-template-columns: auto auto auto auto auto auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  width: 100%;
  font-size: 24px;
}

.sortowanie {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto;
      grid-template-columns: auto auto auto auto auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  margin-top: 55px;
  margin-bottom: 10px;
  text-align: center;
  background-color: transparent;
}

.sortowanie button {
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 16px;
  background-color: lightblue;
}

.nic {
  display: block;
  height: 200px;
  width: 100%;
  padding: 2px;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

.klik {
  position: fixed;
  height: 100%;
  width: auto;
  left: 50%;
  top: 50%;
  z-index: 1000;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.wyswietlacz img:hover {
  border: 2px solid red;
}

.menu_contener {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 120px;
      grid-template-columns: 30px 120px;
  position: fixed;
  width: auto;
  height: auto;
  right: -100px;
  top: 10px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 100;
}

.menu_contener:hover {
  right: 10px;
}

.menu_contener:hover .menu_click {
  visibility: hidden;
}

.menu_show {
  right: 10px;
}

.menu_click {
  border: 2px solid black;
  padding: 5px 5px;
  text-align: center;
  width: auto;
  height: 30px;
  font-weight: 600;
}

.menu_choice {
  display: block;
  background-color: 0;
  width: auto;
  padding-left: 20px;
}

.menu_choice a {
  display: block;
  text-decoration: none;
  color: #000000;
  background-color: #29a6dc;
  font-size: 18px;
  text-align: center;
  border: 1px solid lightgray;
  padding: 3px 5px;
  margin-bottom: 7px;
}

.stopka {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 6px 0px;
  background: rgba(0, 0, 0, 0.3);
  color: beige;
  font-size: 18px;
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

p:hover {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.zamknij_podglad {
  display: none;
}

.zamknij_podglad_klik {
  display: block;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  padding: 5px 25px;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0;
  z-index: 9999;
}

.divContainer {
  display: none;
}

.spiner_show {
  display: block;
}

.spiner_off {
  display: none;
}

.listki {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 0px;
  height: 10px;
  border: 2px solid black;
  border-radius: 25%;
  position: absolute;
  left: 45%;
  top: 50px;
  background-color: black;
  -webkit-transform-origin: center 14px;
          transform-origin: center 14px;
  z-index: 100;
}

.listek1 {
  rotate: 0deg;
  -webkit-animation: list 1.5s infinite;
          animation: list 1.5s infinite;
}

.listek2 {
  -webkit-animation: list 1.5s infinite 0.15s;
          animation: list 1.5s infinite 0.15s;
  rotate: 36deg;
}

.listek3 {
  rotate: 72deg;
  -webkit-animation: list 1.5s infinite 0.30s;
          animation: list 1.5s infinite 0.30s;
}

.listek4 {
  -webkit-animation: list 1.5s infinite 0.45s;
          animation: list 1.5s infinite 0.45s;
  rotate: 108deg;
}

.listek5 {
  rotate: 144deg;
  -webkit-animation: list 1.5s infinite 0.6s;
          animation: list 1.5s infinite 0.6s;
}

.listek6 {
  rotate: 180deg;
  -webkit-animation: list 1.5s infinite 0.75s;
          animation: list 1.5s infinite 0.75s;
}

.listek7 {
  rotate: 216deg;
  -webkit-animation: list 1.5s infinite 0.90s;
          animation: list 1.5s infinite 0.90s;
}

.listek8 {
  -webkit-animation: list 1.5s infinite 1.05s;
          animation: list 1.5s infinite 1.05s;
  rotate: 252deg;
}

.listek9 {
  rotate: 288deg;
  -webkit-animation: list 1.5s infinite 1.20s;
          animation: list 1.5s infinite 1.20s;
}

.listek10 {
  rotate: 324deg;
  -webkit-animation: list 1.5s infinite 1.35s;
          animation: list 1.5s infinite 1.35s;
}

@-webkit-keyframes list {
  0% {
    border-color: black;
  }
  100% {
    border-color: white;
  }
}

@keyframes list {
  0% {
    border-color: black;
  }
  100% {
    border-color: white;
  }
}

@media (min-width: 900px) and (orientation: landscape) {
  .body {
    width: 100vw;
  }
  .galeria {
    min-width: 1450px;
    max-width: 2000px;
    margin: 0 auto;
  }
  .wyswietlacz {
    -ms-grid-columns: auto auto auto auto auto auto;
        grid-template-columns: auto auto auto auto auto auto;
  }
  .sortowanie {
    max-width: 600px;
  }
  .nic {
    padding: 2px;
  }
}

@media (min-width: 650px) and (max-width: 899px) and (orientation: landscape) {
  body {
    width: 100%;
  }
  .latajacy {
    height: 32px;
  }
  .wyswietlacz {
    -ms-grid-columns: auto auto auto auto;
        grid-template-columns: auto auto auto auto;
  }
  .sortowanie {
    max-width: 600px;
  }
  .sortowanie button {
    font-size: 12px;
  }
  .nic {
    height: 110px;
    padding: 2px;
  }
  .klik {
    height: 100%;
    width: auto;
    left: 50%;
  }
  .stopka p {
    font-size: 16px;
  }
  .zamknij_podglad_klik {
    font-size: 20px;
  }
}

@media (min-width: 300px) and (max-width: 649px) and (orientation: landscape) {
  .latajacy {
    height: 28px;
  }
  .wyswietlacz {
    -ms-grid-columns: auto auto auto;
        grid-template-columns: auto auto auto;
  }
  .sortowanie {
    max-width: 500px;
  }
  .sortowanie button {
    font-size: 14px;
  }
  .nic {
    height: 110px;
  }
}

@media (orientation: portrait) {
  body {
    min-width: 350px;
    width: 100vw;
  }
  .latajacy {
    margin-top: 0px;
    height: 23px;
  }
  .sortowanie {
    width: 92%;
  }
  .wyswietlacz {
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
    position: relative;
  }
  .sortowanie button {
    padding: 5px 5px;
    font-size: 12px;
  }
  .nic {
    display: block;
    height: 130px;
  }
  .klik {
    height: auto;
    width: 98%;
    left: 50%;
    top: 40%;
  }
  .zamknij_podglad_klik {
    font-size: 16px;
    top: 30%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .stopka p {
    font-size: 10px;
  }
}

button.active {
  border-bottom: 3px solid black;
  background-color: white;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
}
/*# sourceMappingURL=galeria.css.map */