﻿@import url('https://fonts.googleapis.com/css?family=Titillium+Web:200,300,400,600,700,900&subset=latin-ext');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	font-family: 'Titillium Web', sans-serif;
	background: #f4f7f6;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/******************************************************/
/********************	Main	***********************/
/******************************************************/


a {
	color: #333;
	text-decoration: none;
	outline: none;
	-webkit-transition: all 0.5s 0s ease;
	-moz-transition: all 0.5s 0s ease;
	-ms-transition: all 0.5s 0s ease;
	-o-transition: all 0.5s 0s ease;
	transition: all 0.5s 0s ease;
}

a:hover {
	color: #133e6b;
}

b,
strong{
 	font-weight:bold;
}

i {
	font-style: italic;
}

p {
	margin: 0px;
	padding-bottom: 20px;
	line-height: 25px;
}
	
body{
	width: 100%;
	font-size: 15px;
	overflow-x: hidden;
}

.wrapper {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.floatfix:after {
    content: '';
    display: block;
    clear: both;
}

/******************************************************/
/**************     Dodatkowe     *********************/
/******************************************************/

.center {
	text-align: center;
}

.icon {
	padding-right: 10px;
	vertical-align: middle;
}

.clear {
	clear: both;
	height: 0px;
	display: block;
	width: 100%;
}

.clear5 {
	clear: both;
	height:5px;
	display: block;
	width: 100%;
}

.clear10 {
	clear: both;
	height:10px;
	display: block;
	width: 100%;
}

.clear20 {
	clear: both;
	height:20px;
	display: block;
	width: 100%;
}

.clear30 {
	clear: both;
	height:30px;
	display: block;
	width: 100%;
}

.clear40 {
	clear: both;
	height:40px;
	display: block;
	width: 100%;
}

.clear50 {
	clear: both;
	height:50px;
	display: block;
	width: 100%;
}

.clear60 {
	clear: both;
	height: 60px;
	display: block;
	width: 100%;
}

.clear70 {
	clear: both;
	height: 70px;
	display: block;
	width: 100%;
}

.clear80 {
	clear: both;
	height: 80px;
	display: block;
	width: 100%;
}

.clear90 {
	clear: both;
	height: 90px;
	display: block;
	width: 100%;
}

.clear100 {
	clear: both;
	height: 100px;
	display: block;
	width: 100%;
}

.clear120 {
	clear: both;
	height: 120px;
	display: block;
	width: 100%;
}


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

.right {
	float: right;
	margin: 0px;
	padding: 0px;
}

/******************************************************/
/*****************    Effects     *********************/
/******************************************************/

/* Scale */

.transition {
		transition: all 0.9s ease;
    	-moz-transition: all 0.9s ease;
    	-webkit-transition: all 0.9s ease;
}
	
.transition:hover {
		transform: scale(0.96);
}

/* Fade */

.fade {
	opacity: 1;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.fade:hover {
	opacity: 0.8;
}

.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}

.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
  background-color: #d5f3ea;
  color: white;
}


/* Radial Out */

.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f0f0f0;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
  color: white;
}

.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/******************************************************/
/*******************   Header     *********************/
/******************************************************/

#wrapper-header {
	width: 100%;
	padding-top: 20px;	
}

#wrapper-header img {
	max-width: 95%;
	height: auto;
}

#wrapper-header .nag {
	font-size: 36px;
	font-weight: 600;
	color: #000;
	text-transform: uppercase;
	float: left;
}

#wrapper-header .button-section {
	padding-top: 20px;
	float: right;
}

#wrapper-header .button-section div {
	width: 160px;
	height: 40px;
	line-height: 40px;
	float: left;
	background-repeat: no-repeat;
}

#wrapper-header .button-section div img {
	vertical-align: middle;
	padding-right: 5px;
}

#wrapper-header .button-section div a {
	width: 100%;
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
}

#wrapper-header div.my-favorite {
	background: #006634;
	width: 50px;
	margin-right: 10px;
}

#wrapper-header div.my-favorite img {
	padding-right: 0px;
}

#wrapper-header .my-account {
	background: #1f2349;
	margin-right: 10px;
}

#wrapper-header .add-ad {
	background: #006634;
}

/******************************************************/
/*******************     Main     *********************/
/******************************************************/

#wrapper-main {
	width: 100%;
}

#wrapper-main .left-column {
	width: 250px;
	margin-right: 10px;
	float: left;
}

#wrapper-main .right-column {
	width: 940px;
	float: left;
}

#menu-category {
	width: 100%;
	background: #f9f9f9;
	border: 1px solid #ced0d4;
	box-sizing: border-box;
}

#menu-category li {
	line-height: 45px;
	border-bottom: 1px solid #ced0d4;
}

#menu-category li a {
	width: 100%;
	display: block;
	padding: 5px 0px;
	padding-left: 20px;
	box-sizing: border-box;
    color: #202121;
}

#menu-category li.poziom1 a {
	background: #d5f3ea;
	padding-left: 30px;
}

#menu-category li.poziom1 a:hover {
	background: #fafafa;
}

#menu-category li a img {
	vertical-align: middle;
	padding-right: 15px;
}

#banner-left {
	width: 100%;
}

#banner-left a {
	display: block;
	width: 250px;
	height: 200px;
	margin-bottom: 5px;
}

#banner-left img {
	margin: 0px;
	padding: 0px;
	width: 250px;
	height: 200px;	
}

#search {
	width: 100%;
}

#search input::-webkit-input-placeholder { 
	opacity: 1;
	color: #202121;
}

#search input:-moz-placeholder { 
	opacity: 1;
	color: #202121;
}

#search input::-moz-placeholder { 
	opacity: 1;
	color: #202121;
}

#search input:-ms-input-placeholder { 
	opacity: 1;
	color: #202121;
}

#search .search-input {
	display: block;
	float: left;
	width: 770px;
	height: 55px;
	line-height: 55px;
	text-indent: 25px;
	font-size: 15px;
	font-weight: 300;
	color: #202121;
	background: #f9f9f9;
	outline: none;
	border: 1px solid #ccc;
	font-family: 'Titillium Web', sans-serif;
	box-sizing: border-box;
	-webkit-transition: all 0.2s 0s ease;
    -moz-transition: all 0.2s 0s ease;
    -ms-transition: all 0.2s 0s ease;
    -o-transition: all 0.2s 0s ease;
    transition: all 0.2s 0s ease;
}

#search .search-input:focus {
	text-indent: 40px;
}

#search .search-button {
	display: block;
	float: left;
	margin-left: 10px;
	width: 160px;
	height: 55px;
	line-height: 55px;
	background: #1c1f42 url(../img/search-button.png) center center no-repeat;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 0px;
}

/* Ogłoszenie */

#announcement {
	float: left;
	width: 730px;	
}

#announcement .offer {
	width: 100%;
	height: 176px;
	box-sizing: border-box;
	margin-bottom: 15px;
}

#announcement .offer .images {
	position: relative;
	float: left;
	width: 174px;
	height: 174px;
	overflow: hidden;

}

#announcement .offer .images .ribbon {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 79px;
	height: 65px;
	background-image: url(../img/promoted.png);
	background-repeat: no-repeat;
	background-position: left top;
}

#announcement .offer .content {
	float: left;
	height: 100%;
}

.parm-left {
	float: left;
	padding-left: 25px;
	padding-top: 14px;
	height: 100%;
	max-width: 362px;
	width: 100%;
	box-sizing: border-box;
}

.parm-right {
	float: left;
	width: 192px;
	height: 100%;
	padding-top: 20px;
	text-align: center;
	box-sizing: border-box;
}

.parm-right .price {
	font-size: 30px;
	color: #3f4c52;
	padding-bottom: 20px;
}

.parm-right .button-see {
	display: inline-block;
	width: 167px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #dad8d7;
    background: -moz-linear-gradient( -45deg, rgb(255,255,255) 0%, rgba(249,249,249,0.13) 45%, rgba(248,248,248,0.03137) 50%, rgb(243,243,243) 100%);
    background: -webkit-linear-gradient( -45deg, rgb(255,255,255) 0%, rgba(249,249,249,0.13) 45%, rgba(248,248,248,0.03137) 50%, rgb(243,243,243) 100%);
    background: -ms-linear-gradient( -45deg, rgb(255,255,255) 0%, rgba(249,249,249,0.13) 45%, rgba(248,248,248,0.03137) 50%, rgb(243,243,243) 100%);
}

.parm-right .button-see a {
  font-size: 13px;
  color: rgb(102, 102, 102);
  font-weight: 600;
  text-transform: uppercase;
}

.parm-right .option a {
	display: inline-block;
	margin: 18px 10px;
}

#announcement .offer .content .nag {
	font-size: 17px;
	text-transform: uppercase;
}

#announcement .offer .content .hr {
	width: 45px;
	height: 1px;
	border: none;
	margin: 10px 0px;
}

#announcement .offer .content .txt {
	font-size: 15px;
	line-height: 22px;
	height: 88px;
}

#announcement .offer .content .date {
	font-size: 13px;
	margin-top: 10px;
}

#announcement .promoted {
	background: #d5f3ea;
	border: 1px solid #ccccff;
}

#announcement .promoted .nag {
	font-weight: 700;
	color: #303463;
}

#announcement .promoted .hr {
	background: #ced2d5;
}

#announcement .normal {
	background: #f4f4f4;
	border: 1px solid #c2c2c2;
}

#announcement .normal .nag {
	font-weight: 600;
	color: #303463;
}

#announcement .normal .hr {
	background: #ced0d4;
}

/* banner-right */

#banner-right {
	float: left;
	width: 200px;
	margin-left: 10px;
}

#banner-right a {
	display: block;
	width: 200px;
	height: 200px;
	margin-bottom: 5px;
}

#banner-right img {
	margin: 0px;
	padding: 0px;
	width: 200px;
	height: 200px;	
}

/******************************************************/
/***************      Pagination       ****************/
/******************************************************/

#pagination {
	text-align: center;
}

#pagination .page {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border: 1px solid #ced0d4;
	background: #f6f7f9;
	transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
	margin-right: 4px;
}

#pagination .page a {
	color: #676e7d;
	font-weight: 600;
	font-size: 17px;
	display: block;
}

#pagination .page:hover {
	background: #e9ebee;
}

#pagination .page:hover a {
	color: #646b7a;
}

#pagination .active {
	background: #e9ebee;
}

#pagination .active:hover {
	background: #f6f7f9;
}

#pagination .active a {
	color: #676e7d;
}

#pagination .active a {
	color: #646b7a;
}

#pagination .dotted {
	display: inline-block;
	width: 26px;
	color: #676e7d;
}

/******************************************************/
/***************        Footer         ****************/
/******************************************************/

#wrapper-footer {
	width: 100%;
	height: 84px;
	border-top: 1px solid #e2e2e2;
	box-sizing: border-box;
	background: #fcfcfc;
}

#wrapper-footer .footer-left,
#wrapper-footer .footer-right {
	float: left;
	width: 50%;
}

#menu-footer {
	padding-top: 24px;
}

#menu-footer li {
	float: left;
	padding-right: 8px;
	padding-left: 20px;
	font-weight: 600;
	font-size: 15px;
	background: url(../img/menu-fotter-sep.png) center left no-repeat;
}

#menu-footer li:first-child {
	padding-left: 0px;
	background: none;
}

#menu-footer li a {
	color: #202121;
}

#wrapper-footer .copy {
	font-weight: 600;
	color: #202121;
	font-size: 14px;
}

#wrapper-footer .copy {
	font-weight: 600;
	color: #202121;
	font-size: 14px;
}

#wrapper-footer .footer-button {
	float: right;
	margin-top: 27px;
}

#wrapper-footer .footer-button > div {
	float: left;
	background: #f8f8f8;
	border: 1px solid #d3d3d3;
	padding: 10px;
	margin-left: 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#wrapper-footer .footer-button > div a {
	color: #333;
	font-size: 13px;
	font-weight: 600;
}

#wrapper-footer .footer-button > div a img {
	padding-right: 5px;
	padding-left: 5px;
	vertical-align: middle;
}

#wrapper-footer .footer-button > div > a img {
	padding-right: 5px;
	vertical-align: middle;
}


/******************************************************/
/***************      Mobline Menu     ****************/
/******************************************************/

#mobilmenu {
	display: none;
	width: 100%;
	height: 50px;
	border-top: 1px solid #ccc;
	position: fixed;
	z-index: 99;
	bottom: 0px;
	left: 0px;
	background: #FFF;
	-webkit-box-shadow: 0px 0px 25px 1px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 25px 1px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 25px 1px rgba(0,0,0,0.25);
}

#select {
	float: left;
	width: 50%;
	height: 100%;
}

#filtruj {
	height: 100%;
	width: 50%;
	float: right;
	font-size: 20px;
	font-weight: 600;
	color: #202121;
	text-align: right;
	box-sizing: border-box;
	padding-right: 25px;
	padding-top: 15px;
}

#select img {
	padding-top: 9px;
	padding-left: 19px;
	padding-right: 10px;
	display: block;
	float: left;
}

#select div {
	line-height: 50px;
}

#select div span.max {
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	padding-top: 5px;
}

#select div span.min {
	display: block;
	font-size: 15px;
	line-height: 20px;
	color: #444;
}

#kategorie {
	display: none;
	width: calc(100% - 40px);
	height: calc(100% - 90px);
	position: fixed;
	z-index: 99;
	top: 20px;
	left: 20px;
	background: #FFF;
	border: 1px solid #ccc;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
}

#kategorie .nag {
	width: 100%;
	padding-left: 25px;
	height: 50px;
	line-height: 50px;
	font-weight: 600;
	text-transform: uppercase;
	background: #f4f4f4;
	box-sizing: border-box;
}

#kategorie .anuluj {
	position: relative;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: #FFF;
	border-top: 3px solid #efefef;
	color: #8bc34a;
	text-align: center;
	box-sizing: border-box;
}

.pok {
	width: 100%;
    overflow-y: scroll;
	height: calc(100% - 100px);
}

.pok li {
	line-height: 45px;
	border-bottom: 1px solid #e0e0e0;
}

.pok li a {
	display: block;
	padding-left: 30px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.pok li:last-child {
	border-bottom: none;
}


/******************************************************/
/*************		Dodaj ogłoszenie		***********/
/******************************************************/			   		
					
#announcement h1 {
	font-size: 25px;	
	text-transform: uppercase;
	font-weight: 600;
}

#announcement hr {
	display: block;
	margin-left: 0px;
	width: 50%;
	height: 1px;
	border: none;
	background: #ccc;
	margin-bottom: 25px;
}

#announcement form label {
	display: block;
	width: 100%;
	height: 20px;
	font-size: 14px;
	font-weight: 600;
	box-sizing: border-box;
	padding-left: 5px;
}

#announcement form input[type="text"],
#announcement form input[type="number"],
#announcement form input[type="email"],
#announcement form input[type="tel"]{
	display: block;
	float: left;
	width: 100%;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
	padding-left: 10px;
	font-family: 'Titillium Web', sans-serif;
	border: 1px solid #ced0d4;
}

#announcement form select {
	width: 100%;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
	outline: none;
	font-family: 'Titillium Web', sans-serif;
	border: 1px solid #ced0d4;
}

.box33 {
	width: 33.33%;
	float: left;
}

#announcement > form > div:nth-child(5) {
	padding: 0px 2%;
	box-sizing: border-box;
}
		
#announcement form textarea {
	display: block;
	float: left;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	line-height: 25px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
	padding-left: 10px;
	font-family: 'Titillium Web', sans-serif;
	border: 1px solid #ced0d4;
}

.box50 {
	width: 50%;
	float: left;
}

#announcement form .box50 input[type="text"] {
	width: 98%;
}

#announcement form .box50 input[type="text"] {
	width: 98%;
}

#announcement form .box50 input[type="email"],
#announcement form .box50 input[type="tel"]{
	width: 98%;
	margin-left: 2%;
}

input[type='number'] {
	-moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.announcement-add-button {
	float: right;
}

#announcement form input[type="submit"] {
	padding: 0px 20px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	float: left;
	border: none;
	margin: 5px;
	outline: none;
	font-family: 'Titillium Web', sans-serif;
	cursor: pointer;
}

#announcement form .see {
	background: #1f2349;
	color: #FFF;
}

#announcement form input.add {
	margin-right: 0px;
	background: #006634;
	color: #FFF;
}

#map {
	width: 100%;
	height: 300px;
	border: 1px solid #ced0d4;
	box-sizing: border-box;
}

#announcement form .nap {
    display: block;
    width: 100%;
    height: 20px;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    padding-left: 5px;
}

#announcement form .snap {
	padding-left: 5px;
    font-size: 14px;
	line-height: 22px;
	height: 22px;
    font-weight: 600;
    box-sizing: border-box;
	display: inline-block;
}

/******************************************************/
/***************      Responsive       ****************/
/******************************************************/

@media all and (max-width:1220px) {

	.wrapper {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
	}
	
	#wrapper-main .right-column {
		width: 740px;
	}
	
	#search .search-input {
		width: 570px;
    }
	
	#banner-right {
		display: none;
	}
}

@media all and (max-width:1050px) {
	
	#mobilmenu{
		display: block;
	}
		
	#wrapper-header .nag {
		width: 100%;
		float: none;
		text-align: center;
		padding-bottom: 20px;
	}

	#wrapper-header .button-section {
		padding-top: 0px;
		float: none;
		width: 100%;
		text-align: center;
	}
	
	#wrapper-header .button-section div {
		display: inline-block;
		float: none;
	}

	#wrapper-main .left-column {
		display: none;
	}
	
	#search .search-input {
		width: 70%;
	}
	
	#search .search-button {
	   	width: 30%;
		margin-left: 0px;
	}
	
	#search {
    	width: 90%;
		margin: 0px auto;
	}
	
	#slider {
		display: block;
    	width: 90%;
		margin: 0px auto;
	}
	
	/* left-column */
	
	#banner-left {
		display: none;
	}
	
	/* right-column */
	
	#announcement {
		float: none;
		width: 100%;
		text-align: center;
	}
	
	#announcement .offer {
		display: inline-block;
		margin-right: 6px;
		width: 100%;
		max-width: 250px;
		height: auto;
	}
	
	#announcement .offer .images {
		float: none;
		width: 100%;
		margin: 0px auto;
	}
	
	#announcement .offer .content {
		float: none;
	}
	
	#announcement .offer .content .hr {
		width: 45px;
		height: 1px;
		border: none;
		margin: 10px auto;
	}
	
	.parm-left {
		float: none;
		padding-left: 5px;
		padding-right: 5px;
	}
	
	.parm-right {
		float: none;
		margin: 0px auto;
	}

	#announcement .offer .content .txt {
		display: none;
	}

	#wrapper-main .right-column {
		width: 100%;
		float: none;
	}

	#banner-right {
		display: none;
	}
	
	#pagination .page {
		display: none;
	}
	
	#pagination .arrow-left {
		display: inline-block;
	}
	
	#pagination .arrow-right {
		display: inline-block;
	}
	
	#pagination .active {
		display: inline-block;
	}
	
	#pagination .dotted {
		display: none;
	}
	
	/* Footer */
	
	#wrapper-footer {
		height: auto;
	}
	
	#wrapper-footer .footer-left,
	#wrapper-footer .footer-right {
		float: none;
		width: 100%;
	}
	
	#menu-footer li {
		float: none;
		padding-right: 0px;
		padding-left: 0px;
		width: 100%;
		text-align: center;
		line-height: 35px;
		font-size: 17px;
		background: none;
	}
	
	#wrapper-footer .copy {
		text-align: center;
	}
	
	#wrapper-footer .footer-button {
		float: none;
	}
	
	#wrapper-footer .footer-button > div {
		float: none;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 10px;
		width: 40%;
		text-align: center;
	}
	
		
	.select2-container {
		width: 100% !important;
	}
}

@media all and (max-width:768px) {
		
	.box33 {
		width: 100%;
		float: none;
	}
	
	.box50 {
		width: 100%;
		float: none;
	}
	
	#announcement > form > div:nth-child(5),
	#announcement > form > div:nth-child(6) {
		margin-top: 10px;
	}
	
	#announcement > form > div:nth-child(19) {
		margin-top: 10px;
	}
	
	#announcement form input[type="submit"] {
		float: none;
	}
	
	#announcement > form > div:nth-child(5) {
		padding: 0px;
	}
	
	#announcement form .box50 input[type="email"],
	#announcement form .box50 input[type="tel"] {
		width: 100%;
		margin-left: 0%;
	}
	
	#announcement form .box50 input[type="text"] {
    	width: 100%;
	}
	
	.announcement_add {
		width: 90% !important;
		margin: 0px auto;
	}
}

@media all and (max-width:515px) {
	#slider,
	.nivo-controlNav {
		display: none;
	}
}

@media all and (max-width:340px) {
	#wrapper-header .my-account {
		margin-right: 0px;
	}
	
	#wrapper-header .add-ad {
		margin-top: 10px;
	}
}