#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #fff;
    opacity: 0.9;
}
#loader {
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    z-index: 10001;
}

#loader {
  position: relative;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
}

#loader > div {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #d0021b;
  transform: scale(0);
  transform-origin: center center;
  animation: loader 2s infinite linear;
}
#loader > div:nth-of-type(1), #loader > div:nth-of-type(5), #loader > div:nth-of-type(9) {
  animation-delay: 0.4s;
}
#loader > div:nth-of-type(4), #loader > div:nth-of-type(8) {
  animation-delay: 0.2s;
}
#loader > div:nth-of-type(2), #loader > div:nth-of-type(6) {
  animation-delay: 0.6s;
}
#loader > div:nth-of-type(3) {
  animation-delay: 0.8s;
}

#loader:after {
  content: "Ładowanie...";
  font-size: 18px;
  color: #d0021b;
  padding-top: 10px;
}
 
@keyframes loader {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222;
    z-index: 1000;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
#loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(-100%);  /* IE 9 */
            transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
#loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(100%);  /* IE 9 */
            transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loading #loader {
	opacity: 0.6;
}
#loader-wrapper {
    visibility: hidden;
}

.loading #loader-wrapper {
    visibility: visible;

    -webkit-transform: translateY(0%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateY(0%);  /* IE 9 */
            transform: translateY(0%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.success2 {
  color: #00a031;
  font-weight: bold;
}
.error2 {
  color: #eb0000;
  font-weight: bold;  
}

#error_info {
	width: 100%;
}

.panel.callout {
  border-width: 1px;
  border-style: solid;
}
.panel.callout.info {
  border-color: #b6edff;
  background: #ecfaff;
}
.panel.callout.info-yellow {
  border-color: #ffd98c;
  background: #f9ffd2;
}
.panel.callout.error {
	border-color: #ffb6b6;
	background: #ffecef;
	/*font-weight: bold;*/
	color: #000;
}
.panel.callout.success {
	border-color: #1db42b;
  background: #daffdd;
	/*font-weight: bold;*/
	color: #000;
}
.panel.callout.success,
.panel.callout.error,
.panel.callout.info,
.panel.callout.info-yellow {
  border-radius: 0px;
  color: #000;
}

.lang-panel {
	padding: 14px 15px;
	float: left;
}
.lang-panel #form-language {
	display: none;
}
.flag-ico {
	width: 25px;
	height: 25px;
	cursor: pointer;
}
.flag-ico:hover{
	opacity: 1 !important;
}
.opacity20 {
	opacity: 0.2;
}

.help-gray-info:before {
	clear: both;
}
.help-gray-info {
	color: #ACACAC;
	font-size: 11px;
	font-style: italic;
}
/*.help-gray-info:hover {
	font-size: 16px;
	color: #000;
	padding: 5px;
	background-color: #81CADF;
	display: block;
}*/

/* Dropdown menu */

.topmenu {
  position: relative;
  text-align: center;
  padding-top: 10px;
  margin: 0 auto;
  clear: both;
}

.topmenu ul {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.topmenu ul > li {
  display: inline-block;
}

.topmenu ul > li > a {
  display: block;
  min-height: 41px;
}

.topmenu a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

div.dropdown{
  display: none;
  position: absolute;
  border: 1px solid gray;
  outline-style: none;
  overflow: hidden;
  word-spacing: 3px;
  background-color: #000;
  z-index: 10000;
  top: 30px;
  width: 170px;
}

.has-dropdown:hover .dropdown, 
div.dropdown:hover{
  display: block;
}

div.dropdown a {
  height: 41px;
  line-height: 41px; 
  margin-left: 15px;
  margin-right: 15px;
  color: white;
}

div.dropdown > ul {
  display: block;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

div.dropdown > ul > li {
  display: block;
  position: relative;
  overflow: visible;
  vertical-align: middle;  
  list-style-type: none;
  border: 0px;
  padding: 0px;
}
div.dropdown > ul > li:hover{
  color: black;
  background-color: gray;
}
div.dropdown > ul > li > a {
  display: block;
  overflow: hidden;
  border: 0px;
}
div.dropdown > ul > li > a:hover{
  color: black;
  background-color: gray;
}


/*  BUDOWA */


.panel_gray {
    border: 1px solid #C5C6C5;
    background-color: #F1F0EE;
}
.panel_gray > .panel-heading {
    background-color: transparent;;
}

.btn-primary {
    background-color: #5D5D5D;
    border-color: #c0bbbb;
}

.btn-primary:hover {
    background-color: #464444;
    border-color: #c0bbbb;
}

.navbar-header-search,
.logged-user-info {
    padding-top: 14px;
    padding-bottom: 14px;
}

#app-navbar-collapse li {
    display: inline-block;
}

#app-navbar-collapse .dropdown-menu li {
    display: block;
}

.navbar-brand {
    float: none;
    display: inline-block;
}

.logged-user-info {
    font-weight: bold;
}

.header_top {
    float: none;
    padding-top: 10px;
    text-transform: uppercase;
}

#register_page{
  width: auto;
}

#register_page div div {
  padding-left: 0px;
}

#menu_top3 {
  text-align: center;
}

#outside3 {
  width: 100%;
  margin-bottom: 20px;
}

#menu_top3 .wrapper {
  display: inline-block;
}

.main_col {
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
    color: #000;
    /*overflow: hidden;*/
}
.col-md-5.main_col {
  overflow: hidden;
  display: inline-block;
}

span.fr-emoticon-img { 
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.1em 0.1em 0.1em;
  line-height: 1;
  vertical-align: middle;
}



.text-right {
  text-align: right;
}

.text-right input {
  float: right !important;
}

@media screen and (min-width: 992px) {
  .container, #header_bar {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .container, #header_bar {
    width: 1180px;
  }
}


@media screen and (max-width: 767px) {

    #app-navbar-collapse ul.navbar-nav:first-child {
        display: none;
    }

    #app-navbar-collapse ul.navbar-nav {
        text-align: center;
        background-color: #f2f2f2;
        margin-top: 0px;
    }

    #app-navbar-collapse .dropdown-menu {
        display: inline-block;
        position: relative;
        padding: 0px;
        margin-bottom: 10px;
        box-shadow: none;
        border-radius: 0px;
    }

    #app-navbar-collapse .dropdown-toggle .caret {
        display: none;
    }

    .img-100 {
        text-align: center;
    }
}

@media screen and (max-width: 991px) {

    .navbar-brand {
        float: left;
    }

    .ads-left, .ads-right {
        display: none;
    }

    .text-right input {
      float: left !important;
    }

    .col-md-5.main_col {
      width: 100%;
    }
}

@media screen and (min-width:992px){
  .fin-right input {
    float: right !important;
  }
  .textUnder.katalog .col-md-4.r,
  .textUnder.katalog .col-md-3.r,
  .textUnder.katalog .col-md-2.r {
    text-align: right;
  }
  .textUnder.katalog .col-md-4.r label,
  .textUnder.katalog .col-md-3.r label,
  .textUnder.katalog .col-md-2.r label {
    padding-top: 8px;
  }

  .textUnder.katalog .h select {
    font-size: 12px;
    padding-left: 5px;
  }
}



.katalog .row {
  margin-bottom: 10px;
}

.katalog .row label {
}

.block_checkbox_r {
  display: block; 
  padding-right: 10px;
  min-height: 20px;
}

.block_checkbox_l {
  display: block; 
  padding-left: 10px;
}

.inline_checkbox_r {
  display: inline-block; 
  padding-right: 10px;
}

.inline_checkbox_l {
  display: inline-block; 
  padding-left: 10px;
}

.inline_checkbox_r input, .inline_checkbox_l input,
.block_checkbox_r input, .block_checkbox_l input {
  margin-right: 5px;
}

#wymagane, .required {
  font-size: 14px;
  color: #f00;
  background-color: transparent;
  padding: 0px 5px;
}

.textUnder.katalog {
  float: none;
  width: 100%;
  overflow: hidden;
}

.add_button {
  padding: 5px 15px;
  font-size: 14px;
}

.lang-panel {
    float: none;
    display: inline-block;
    display: none;
}

.inline-block {
	display: inline-block !important;
}

.w100 {
  width: 100%;	
  margin: 5px 0px 0px 0px;
  overflow: hidden;
}

.hidden {
	display: none !important;
}

/* styl stronicowanie */

.img-100 img {
    height: 100%;
}

.ib {
  display: inline-block;
}

.in {
  display: inline;
}

.bb1 {
  border-bottom: 1px solid #bbbbbb;
}

.p10 {
  padding: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pt15 {
  padding-top: 15px;
}

.mb10 {
  margin-bottom: 10px;
}

.pl0 {
  padding-left: 0px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

