@keyframes slideInLeft {
  0% {
    transform: translate3d(250px, 0, 0);
    visibility: visible; }
  100% {
    transform: translate3d(0, 0, 0); } }
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0); }
  100% {
    transform: translate3d(250px, 0, 0);
    visibility: hidden; } }
* {
  box-sizing: border-box; }

body { /*dzięki temu gdy menu wyjeżdża bokiem, po prostu znika*/
    overflow-x: hidden;
}

body:after {
  content:'';
  background: black;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  width: 100%; }
body.open {
  /*overflow: hidden;*/ }
body.open:after {
  opacity: 0.7;
  position: fixed; 
  z-index: 999;
  visibility: visible; }
.b-nav {
  position: absolute;
  top: 80px;
  right: 80px;
  z-index: 11; }
  .b-nav:not(.open) {
    visibility: hidden;
    }
  .b-nav li {
		width: 300px;
    color: white;
    list-style-type: none;
    margin-right: 0;
    text-align: right;
    transform: translateX(-250px); }
  .b-nav li:not(.open) {
    animation-duration: 0.4s;
    animation-fill-mode: both;  
    animation-name: slideOutLeft; }
  .b-nav.open {

    visibility: visible;
     }
    .b-nav.open li {
      animation-duration: 0.4s;
      animation-fill-mode: both;
      animation-name: slideInLeft; }

.b-link {
  background: transparent;
  border-left: rgba(255, 255, 255, 0) solid 2px;
  color: white;
  font-family: Helvetica-Neue, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.4s ease;
  width: auto; }
  
.b-menu {
  border-radius: 50%;
  cursor: pointer;
/*  top: 50px;
  right: 80px;*/
  display: inline-block;/*
  position: relative;*/
  transition: all 0.4s ease;
  width: 60px;
  z-index: 12; }

.navbar-burger .b-bun{
  background: black;
}
.b-black .b-bun {
  background: black;
}

.b-black .b-brand {
  color: black;
}
	
.b-bun {
  background: white;
  position: relative;
  transition: all 0.4s ease; }
  .b-bun--top {
    height: 3px;
    top: -2px;
    width: 36px; }
  .b-bun--mid {
    height: 3px;
    top: 5px;
    width: 36px; }
  .b-bun--bottom {
    height: 3px;
    top: 12px;
    width: 36px; }

.b-brand {
  color: white;
  font-family: Helvetica-Neue, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease;
  z-index: 13; }

.b-container {
  position: absolute;
  min-width: 140px;
  right: 2%;
  top: 3%; }

  .b-container:hover:not(.open) .bun-top,
  .b-container:hover:not(.open) .bun-mid,
  .b-container:hover:not(.open) .bun-bottom {
    background: white; }
  .b-container.open .b-main {
    border: white solid 2px; }
  .b-container.open .b-bun--top {
    background: white;
    top: 6px; 
    transform: rotate(45deg); }
  .b-container.open .b-bun--mid {
    opacity: 0; }
  .b-container.open .b-bun--bottom {
    background: white;
    top: 0px;
    transform: rotate(-45deg); }
  .b-container.open .b-brand {
    color: white; }
    


.rightRapper {
  padding-left: 10px;
  top: 5px;
  margin: 0px;
  position: relative;
  float: left;
}

.leftRapper {
  margin: 0px;
  float: left;
}

.content {
  background: white;
  border-color: white;
  
}

.content p, .content h1 {
  margin: 5px;
}

.content-pic {
  max-width: 100%;
  max-height: 100%;
}

.transparent {
    background-size: 0 0;  
}

.custom-white {
  background: white;
}

.no-padding {
  padding: 0 !important;
}

a:focus, a:hover {
  color: lightgray !important;
  text-decoration: none !important;
}

.hashtags {
  text-align: justify;
  width: 100%;
  /*top: 20px;*/
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
}

.menu-whole {
  position: fixed;
  z-index: 10000;
  top: 2%;
  right: 1%;
  height: 100%;
}

.navbar-custom { /*wyświetla się tylko na mobilkach*/
  background: white;
  position: fixed;
  width: 100%;
  height: 52px;
  z-index: 10000;
}


/* Dropdown Button */
.dropbtn {
  right: -8px;
  width: 45px;
  height: 45px;
  position: absolute;
    background-color: white;
    color: white;
    padding: 16px;
    margin: 4px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.navbar-burger {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.navbar-burger:first-child {
  padding-top: 20%;
}

.navbar-burger > div {
  width: 65%;
  margin: 0 auto;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
    right: 8px;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    right: -7px;
    top: 49px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

  /*.main-logo {
    position: absolute;
    top: 25px;
    left: 25px;
  }*/

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


@media (min-width: 1170px) { /*komputer*/
  .left-col {
    overflow-y: auto !important;
    overflow-x: hidden;
    height: 100%;
    max-width: 25%;
  }
  .navbar-custom{
    display:none;
  }

.hidden{
  display: none;
}

.navbar-collapse{
  display: none !important;
}

.hashtags {
  padding-bottom: 0px;
  position: absolute;
  bottom: 0px;
}

}


@media (max-width: 1169px) { /*mobilne*/
  body:after {
    background: white;  
  } 
  #mobilne-start:first-child {
    padding-top: 20px;
  }
  .left-col {
    position: relative !important;
  }
  .menu-whole {
    display: none;
  }
  .main-logo {
    position: absolute;
    top: 75px;
  }
}

#map{
  height: 600px;
  margin-top: 60px;
	margin-left: 15px !important;
	margin-right: 15px !important;
}

#done{
	display: none;
	
}

#send-message{

}

.form-group {padding-left: 15px; padding-right: 15px;}

#send_button{
    color: #000;
    border: 1px solid black;
    background: transparent;
    padding: 6px 30px;
    font-size: 16px;
    margin: auto;
    display: block;
}

/*# sourceMappingURL=burgerMod.css.map */
