/*!
Theme Name: Bananowe projekty
*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
html body {
  font-family: "Lato", sans-serif;
}

.align_right {
  text-align: right;
}

.left_sidebar {
  background: white;
  width: 75px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  box-shadow: 5px 5px 13px -2px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  opacity: 0.6;
  z-index: 99;
}
.left_sidebar:hover {
  opacity: 1;
}
.left_sidebar.hide {
  left: -75px;
}
.left_sidebar .toggle_bar {
  position: absolute;
  left: 75px;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 9px 5px 7px -2px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  cursor: pointer;
}
.left_sidebar .logo {
  width: 75px;
  padding: 2px;
}
.left_sidebar .nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.left_sidebar .nav li {
  width: 75px;
  height: 75px;
  position: relative;
  cursor: pointer;
}
.left_sidebar .nav li.active, .left_sidebar .nav li:hover {
  background: #feda00;
}
.left_sidebar .nav li.active .numer, .left_sidebar .nav li:hover .numer {
  background: #feda00;
}
.left_sidebar .nav li .numer {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: black;
  font-weight: bold;
  position: relative;
  z-index: 9;
}
.left_sidebar .nav li .nazwa {
  position: absolute;
  height: 100%;
  color: black;
  white-space: nowrap;
  padding: 15px;
  display: grid;
  place-items: center;
  top: 0;
  font-size: 22px;
  background: #feda00;
  transition: 0.5s;
  left: -500%;
}
.left_sidebar .nav li:hover .nazwa {
  left: 75px;
}

.slides {
  padding: 0;
  list-style-type: none;
  margin: 0;
  position: relative;
  z-index: 9;
}
.slides img {
  max-width: 100%;
  height: auto;
}

#user-registration.user-registration input {
  display: block;
  border: 1px solid #dedada;
  padding: 10px;
}
#user-registration.user-registration.user-registration-form__label-for-checkbox input {
  display: inline-block;
  vertical-align: middle;
}

.password-input-group {
  display: block;
  width: 100%;
}
.password-input-group input {
  display: block;
  border: 1px solid #dedada;
  padding: 10px;
}

.ur-frontend-form input[type=submit] {
  background: #feda00;
}

.lost_password a {
  color: black;
}