@charset "UTF-8";
:root {
  --bg-color: #ffffff; /* KOLOR TŁA SAJTA */
  --tx-color: #242424; /* KOLOR TEKSTU */
  --tx-mobis: 23px; /* WIELKOŚĆ MOBILNA TEKSTU*/
  --tx-mobim: 18px; /* WIELKOŚĆ MOBILNA TEKSTU tam gdzie pomniejszyć */
  --czcionka: 'Arial', sans-serif;
}
.kolumna {max-width: 100%; width: 1200px; margin: auto; background: white;}
.row {padding: 0;}

a {color: black; text-decoration: none;}

body {
  font-family: 'Open Sans', sans-serif;
  background:  var(--bg-color);
  margin-top: 0;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 0;
}

.logotyp {height: 65px; width: 141px; margin: 10px 0 5px 0;position: relative; left: -12px;}
.topson {height: 80px; padding: 0;}
.cookieinfo { background: white; font-size: 12px; padding: 3px; margin-top: 20px; margin-bottom: 20px;}
.cookieinfo td {background: whitesmoke; padding: 7px; text-align: center; margin: 2px;border-bottom: 1px solid #ddd;}
.cookieinfo th {font-weight: bold; text-align: center; margin: 2px;border-bottom: 1px solid #ddd;}

/* Header*/
@media only screen and (max-width: 600px) {
 .header-pix {display: none;}
}
@media only screen and (min-width: 601px) {
  .header-pix {display: block; position: inherit; background: url('/img/top.png'); background-size: cover; height: 238px;}
}

.nahederze {display: inline-block; float: right;  position: relative; top: 120px; right: 10px; width: 280px; height: 100px; background: rgba(255,255,255,0.8); padding: 13px; border-radius: 3px; font-size: 14px; font-weight: bold; line-height: 17px;}

.header-counter {background: white;}
.in-header-counter {
  height: 100%; width: 100%;
  box-shadow: 0px 3px 10px #00000029;
  padding-top: 20px;
}

.cyfra {
  width: 66px; 
  height: 86px; 
  background: url('/img/cyfer.png'); 
  background-size: cover; 
  background-repeat: no-repeat; 
  font-size: 50px; 
  font-weight: bold;
  line-height: 80px; 
  padding: 0 10px 10px 20px;}

/* Elementy Strony */
h2 {width: 100%; font-weight: bold; border-bottom: solid 1px silver; text-align: center;}
.form-label {font-size: 13px; color: #808080; position: top: 8px; height: 12px;}
.form-check-label {font-size: 13px; color: #404040; position: top: 8px;}
input[type="text"] {width: 100%;}
input {
  box-shadow: 0px 3px 10px #00000029;
}
.divbutona {width: 100%; text-align: center;}

/* Reklama */
.reklama {display: flex; flex-direction: column; width: 100% !important;}
.reklama-ani1 {
  background: url(/img/animejszyn.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%; 
  height: 300px;
  box-shadow: 0px 3px 10px #00000029;
}
.reklama-ani2 {
  width: 100%; 
  height: 126px; 
  background: white; 
  align-items: center; 
  text-align: center; 
  padding-top: 20px; 
  margin-top: 20px;
  box-shadow: 0px 3px 10px #00000029;
 }
 .stopka {min-height: 200px; font-size: 14px; line-height: 17px;}
 .podziekowanie {width: 100%; text-align: center;padding-top: 30px;}
 .podziekowaniebtn {background: #dc005f; border: 0;}
 .rozowa {font-weight: bold; color: #dc005f}

 /* Przeładowanie */

body {
  animation: fadein 2s;
  -moz-animation: fadein 2s; /* Firefox */
  -webkit-animation: fadein 2s; /* Safari and Chrome */
  -o-animation: fadein 2s; /* Opera */
}
@keyframes fadein {
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-moz-keyframes fadein { /* Firefox */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-o-keyframes fadein { /* Opera */
  from {
      opacity:0;
  }
  to {
      opacity: 1;
  }
}


/* CookieConsent */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

.cookiealert.show {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline;
	color: white;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

/* AdultConsent */
.adultalert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
    margin: 0 !important;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: red;
}

.adultalert.show {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.adultalert a {
    text-decoration: underline;
	color: white;
}

.adultalert .acceptadult {
    margin-left: 10px;
    vertical-align: baseline;
}

