@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700');
@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,700&subset=latin-ext');

body {
	position: relative;
	font-family: 'Dosis', sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans Condensed', sans-serif;
}
.menu-fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 0 25px;
	background-color: white;
	border-bottom: 1px solid lightgray;
}
.poradnia-wrap {
	margin-bottom: 50px; 
	text-align: center;
	min-height: calc(100vh - 106px);
}
.logo {
	margin: 50px auto 30px;
	width: 400px;
	max-width: 100%;
	height: auto;
}
.poradnia-title {
	color: #A94128;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.box, .qbox.question-question {
	margin-top: 15px;
	display: flex;
    flex-direction: column;
    align-items: center;
}
label { margin-top: 10px; text-transform: uppercase; letter-spacing: 2px; }
input[type=text], input[type=password], textarea {
	width: 100% !important;
	max-width: 500px !important;
	padding: 10px;
	border: 1px solid #FFD5CB;
	border-radius: 5px;
}
.qbigbox:last-child {
	margin-top: 20px;
	width: 100% !important;
	float: initial !important;
}
.qbox.question-submit > a, button.ask-question, .submit-login {
	width: 500px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 10px;
	border-radius: 5px;
	color: white !important;
	background-color: #74b2b3;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.submit-login { margin-top: 15px; }
.question-confirm h1 { font-weight: bold; }
.question-confirm .qc-info { color: green; font-weight: bold; }

footer {
	background-color: #373434;
}


/* CHECKBOX ANIMATED */
@-webkit-keyframes check {
  0% { height: 0; width: 0; }
  25% { height: 0; width: 9px; }
  50% { height: 17px; width: 9px; }
}
@-moz-keyframes check {
  0% { height: 0; width: 0; }
  25% { height: 0; width: 9px; }
  50% { height: 17px; width: 9px; }
}
@-ms-keyframes check {
  0% { height: 0; width: 0; }
  25% { height: 0; width: 9px; }
  50% { height: 17px; width: 9px; }
}
@keyframes check {
  0% { height: 0; width: 0; }
  25% { height: 0; width: 9px; }
  50% { height: 17px; width: 9px; }
}

.checkbox-wrapper { width: 100% !important; max-width: 500px !important; margin: 0 auto 30px; }
.checkbox-wrapper > input { display: none; }
.checkbox-wrapper > input + label { position: relative; padding-left: 35px; text-transform: initial; letter-spacing: initial; text-align: left; }
.checkbox-wrapper > input + label:before {
	content: '';
	position: absolute;
	top: calc(50% - 13px);
	left: 0;
	width: 25px;
	height: 25px;
	border: 2px solid gray;
	border-radius: 5px;
	-webkit-transition: all 0.8s;
    transition: all 0.8s;
}
.checkbox-wrapper > input:checked + label:before {
	border: 2px solid #A94128;
}
.checkbox-wrapper > input + label:after {
	content: '';
	position: absolute;
    top: 50%;
    left: 3px;
    width: 9px;
    height: 17px;
	border-top: 4px solid rgba(0,0,0,0);
	border-right: 4px solid rgba(0,0,0,0);
	-moz-transform: scaleX(-1) rotate(135deg);
	-ms-transform: scaleX(-1) rotate(135deg);
	-webkit-transform: scaleX(-1) rotate(135deg);
	transform: scaleX(-1) rotate(135deg);
	-moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.checkbox-wrapper > input:checked + label:after {
	border-color: #A94128;
	-webkit-animation: check 0.8s;
  -moz-animation: check 0.8s;
  -o-animation: check 0.8s;
  animation: check 0.8s;
}


/* COOKIES */

.szansa-cookies { 
	position: fixed;
    bottom: -300px;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 20px;
    text-align: center; 
    background-color: #373434;
    opacity: 0.98;
    -webkit-transition: all 1s;
    transition: all 1s;
   }
.szansa-cookies > .cookies-close {   		
	width: 250px;
	margin: 0 auto;
	padding: 10px 20px;
	letter-spacing: 2px;
	color: #ffde7c;
	border: 1px solid #ffde7c;
	cursor: pointer;
}
.szansa-cookies	> p {
	max-width: 1100px;
	margin: 5px auto 20px;
    font-size: 1rem;
    color: #ffde7c;
}
.szansa-cookies	> p > a { color: white; }