body {
	margin: 0;
	font-family: Tahoma, Verdana, sans-serif;
	font-weight: normal;
	color: #000000;
	font-size: 1.25rem;
	font-size: 1rem;
	background-color: #a19688;
}

/* New */

#page-container {
	/* width: 1280px; */
	margin: 2rem auto;
}

body.over {
	/* filter: blur(3px); */
	height: 100vh;
	overflow: hidden;
}


#top-container {
	background-color: #fff;
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: center;
	padding: 0 1rem;
	min-height: 8rem;
}
#top-container h1 {
	position: relative;
	max-height: 6rem;
}
#top-container h1 .logo {
	position: absolute;
	top: -1.5rem;
	left: 1rem;
}

@media (max-width: 1200px) {
	#top-container {
		min-height: 6rem;
	}
	#top-container h1 .logo img {
		width: 150px;
	}
}
@media (max-width: 992px) {
	#top-container {
		min-height: 5rem;
	}
	#top-container h1 .logo img {
		width: 120px;
	}
}

@media (max-width: 800px) {
	#top-container {
		min-height: 4rem;
	}
	#top-container h1 .logo {
		top: -1rem;
		left: -1rem;
	}
	#top-container h1 .logo img {
		width: 80px;
	}
}



#baner img {
	width: 100%;
}


/* MENU */
button#hamb {
	background: none;
	border: none;
	width: 2rem;
	height: 2rem;
	padding: .5rem;
	display: none;
	background-color: white;
	text-align: center;
}

button#hamb img {
	margin: 0 auto;
	object-fit: contain;
	width: 100%;
	height: 100%;
}

#galleries {
	width: 16rem;
	background-color: #eee;
	position: absolute;
	top: 2.5rem;
	left: 0rem;
	padding: 0;
}
#galleries li {
	margin: 0;
	padding: 0;
}
#galleries a {
	padding: 0.5rem 1rem;
	display: block;
}
#galleries a:hover {
	background-color: #07457E;
	color: white
}

#menu .label.show > a,
#menu .label:hover > a {
	background-color: #07457E;
	color: white
}

#menu .label {
	margin: 0 1rem;
}

#menu #bottommenu {
	position: relative;
}

/* #menu #bottommenu:hover > #galleries */
#menu #bottommenu.show #galleries {
	display: block;
}


@media (max-width: 800px) {
	button#hamb {
		display: block;
		z-index: 100;
	}

	#menu:not(.show) {
		display: none;
	}

	#menu {
		position: fixed;
		top: 0rem;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .4);
		z-index: 2;
	}

	#menu > .nav {
		position: relative;
		top: 8rem;
		background-color: white;
		width: 90%;
		padding: 1rem 0;
		border-radius: 30px;
		max-width: 25rem;
	}

	#menu > .nav > ul {
		flex-direction: column;
		width: 100%;
	}
	#menu > .nav .label {
		margin: .125rem 1rem;
	}

	#menu > .nav .label >a {
		display: block;
	}

	#menu #bottommenu #galleries {
		display: block;
		position: relative;
		top: initial;
		left: initial;
		width: 100%;
		background-color: initial;
		padding-left: 1rem;
	}
	
}

/* end MENU */


/* contact */

#contact {
	border-top: 3px solid #fff;
	background-color: #07457E;
	color: #fff;
	padding: 1.5rem 3rem;
	display: flex;
	flex-direction: column;
}

@media (min-width: 458px) {
	#contact {
		flex-direction: row;
		justify-content: space-around;
	}
}

#contact .sec {
	display: flex;
	flex-direction: column;
	padding-top: 1rem;
	/* justify-content: space-around; */
	color: #fff;
}

@media (min-width: 992px) {
	#contact .sec {
		padding-top: 0;
		flex-direction: row;
		justify-content: space-around;
	}
}

#contact .sec .item {
	min-width: 12rem; 
	line-height: 1.4;
	flex-direction: row;
}

@media (min-width: 458px) {
	#contact .sec .item {
		flex-direction: column;
	}
}

#contact .sec .item span {
	text-transform: uppercase;
	font-size: .675rem;
	margin-bottom: .5rem;
	display: block;
}

#contact .sec .item .text {
	text-align: left;
}

#contact .sec .item p {
	margin: 3px 0;
}

#contact .sec .item a {
	color: white
}

#contact .sec table td {
	color: #fff;
	border: none;
}

.icomobile {
	background: url('/img/a3m/icomobile.svg') no-repeat center left;
	padding-left: 1.5rem;
}
.icowhatsapp {
	background: url('/img/a3m/icowhatsapp.svg') no-repeat center left;
	padding-left: 1.5rem;
}
.icomail {
	background: url('/img/a3m/icomail.svg') no-repeat center left;
	padding-left: 1.5rem;
}
.icophone {
	background: url('/img/a3m/icophone.svg') no-repeat center left;
	padding-left: 1.5rem;
}
.icofacebook {
	background: url('/img/a3m/icofacebook.svg') no-repeat center left;
	padding-left: 1.5rem;
}

/* end contact */


.img-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .75rem;
	overflow: hidden;
}

.img-box img {
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}

#gallery-breadcrumb,
#gallery-breadcrumb > a {
	font-size: .775rem;
}

/* GALERIES */
.galleries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.gallery-box a.lightbox {
	display: block;
	overflow: hidden;
}
.gallery-box a>img {
	width: 110%;
	margin-left: -5%;
}
.gallery-box h3 {
	margin: 0;
	padding: .5rem 0 1rem;
}
.gallery-box h3 a {
	font-size: 1.125rem;
	line-height: 1.2;
}
.gallery-box .txt {
	font-size: .875rem;
}

.link-more {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.link-more a {
	padding: 1rem .5rem;
}

@media (max-width: 992px) {
	.galleries {		
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.galleries {		
		grid-template-columns: repeat(1, 1fr);
	}

	.link-more {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	.link-more a {
		display: block;
		text-align: center;
		width: 100%;
	}

	.link-more a:first-of-type {
		text-align: left;
	}


	.link-more a:nth-last-of-type(1) {
		text-align: right;
	}

}
/* end GALERIES */






/* Home */

    #main-text {
      text-align: center;
      margin-bottom: 4rem;
    }

    #main-text h2 {
      color: #A19688;
      font-size: 1.3rem;
    }

    #oferta-main {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-bottom: 4rem;
    }

    

    #oferta-main>.oferta-item {
      position: relative;
    }

    #oferta-main>.oferta-item img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      position: relative;
    }

    #oferta-main>.oferta-item p {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: white;
      padding: .5rem;
      font-weight: bold;
      font-size: 1rem;
      color: #07457e;
      text-transform: uppercase;
      margin-bottom: 0;
      max-width: 70%;
    }
    
    #main-box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 4rem;
    }

    #main-box .box-item {
      margin-bottom: 2rem;
    }

    #main-box h3 {
      color: #A19688;
      font-size: 1.25rem;
      margin: 0;
    }

    @media (max-width: 1200px) {
      #oferta-main {
        grid-template-columns: repeat(3, 1fr);
      }
      #oferta-main>.oferta-item p {
        max-width: 80%;
      }
    }

    @media (max-width: 992px) {
      #oferta-main {
        grid-template-columns: repeat(3, 1fr);
      }
      #oferta-main>.oferta-item p {
        max-width: 80%;
      }
      #main-box {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      #oferta-main {
        grid-template-columns: repeat(2, 1fr);
      }
      #oferta-main>.oferta-item p {
        max-width: 80%;
      }
    }
    @media (max-width: 460px) {
      #oferta-main {
        grid-template-columns: repeat(1, 1fr);
      }
      #oferta-main img {
        max-height: 14rem;
      }
    }

/* end Home */

/* New */


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

#top-banner {
	padding: 3px 0 4px;
	background-color: #07457e;
	border-top: 5px solid #A19688;
	text-align: center;
}

#top-banner img {
	position: relative;
	left: 260px;
}

#top-banner>h3 {
	display: inline;
	margin: 0;
	padding: 0 50px;
	background: url(/rolety_sosnowiec_mini.png) no-repeat left center;
	font-weight: 700;
	color: #fff;
	margin: 0 auto;
	text-align: center;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 1);
}

.information {
	padding: 15px 30px;
	margin: 0 14px;
	background-color: #095999;
	color: #fff;
	font-size: 24px;
	font-size: lighter;
	position: relative;
	text-align: center;
	text-shadow: -1px -1px 0 #081F33;
}

.information .icon {
	width: 48px;
	height: 48px;
	position: absolute;
	top: -16px;
	left: -16px;
	background: url(/alert.png) no-repeat;
}

.cookie-notice {
	background-color: #055A91;
	padding: 15px;
	text-align: left;
	color: #fff;
	font-size: 1rem;
	position: relative;
	/* margin: 0 15px 15px; */
}

.cookie-notice a {
	/* font: 14px Arial; */
	color: #fff;
}

.cookie-notice a.accept {
	/* position: absolute;
	right: 15px;
	bottom: 15px; */
	background-color: #fff;
	color: #055A91;
	padding: 10px;
	display: block;
	text-decoration: none;
}

.mainpage-banners>a {
	display: block;
	margin-top: 15px;
}

.mainpage-banners>a:first-child {
	margin-top: 0;
}

.clear {
	clear: both !important;
	height: 0px;
	font-size: 0px !important;
	line-height: 0px !important;
	float: none !important;
}




#left-sidebar {
	width: 200px;
	float: left;
	position: relative;
	top: -10px;
}

#content-container {
	padding: 35px;
	background-color: #fff;
	min-height: 100%;
	height: 100%;
	border-radius: 0 0 10px 10px;
	/* margin-bottom: 4rem */
}

#content-container>h1:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #716554;
	margin: 0 15px 15px;
}

#content-container>h2:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 15px 15px;
}

#content-container>h3:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 15px 15px;
}

#content-container>h4:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 15px 15px;
}

#content-container>h5:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 15px 15px;
}

#content-container>div>h1:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: bold;
	letter-spacing: -1px;
	color: #716554;
	margin: 0 0 15px;
}

#content-container>div>h2:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 0 15px;
}

#content-container>div>h3:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif;*/
	font-size: 1.425rem;
	font-weight: normal; 
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 0 15px;
}

#content-container>div>h4:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 0 15px;
}

#content-container>div>h5:first-child {
	/* font: 28px "PT Sans Caption", arial, sans-serif; */
	font-size: 1.425rem;
	font-weight: normal;
	letter-spacing: -1px;
	color: #07457E;
	margin: 0 0 15px;
}


#right-sidebar {
	width: 280px;
	float: right;
	position: relative;
	top: -10px;
}

p.informacja {
	font-size: 1rem;
	font-weight: bold;
	color: #000;
	line-height: 20px;
}

p.info {
	font-size: 1rem;
	font-weight: normal;
	color: #000;
	line-height: 18px;
}

#navcontainer table {
	width: 95%
}

#navcontainer p {
	margin: 5px 15px 0px 15px;
}

ul#navlist {
	margin: 0px 0px 0px 10px;
	padding: 10px 0px 0px 0px;
	white-space: nowrap;
	background: url(images/marmenu.jpg) no-repeat;
}

#navlist li {
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}

#navlist a {
	margin: 0;
	padding: 5px 10px 5px 10px;
}

#navlist a:link,
#navlist a:visited {
	color: #333;
	text-decoration: none;
}

#navlist a:hover {
	color: #666;
	background-color: #fff;
	text-decoration: none;
}

#navlist li#active a {
	color: #000;
	background-color: #fff;
	text-decoration: none;

}

#gray li {
	margin-left: 0px;
	text-indent: 0px;
	margin-right: 30px;
	font-size:  0.9375rem;
	font-weight: normal;
	list-style: none outside url(images/arrow02.gif);
	list-style-position: outside;
	line-height: 16px;
	vertical-align: text-bottom;
}

#oferta h3 {
	
	font-size: 1rem;
	margin: 5px 0px 0px 0px;
	padding: 0px;
}

#oferta h4 {
	
	font-size: 1rem;
	margin: 15px 0px 0px 0px;
	padding: 0px;
}

#oferta h5 {
	
	font-size: 1rem;
	margin: 25px 0px 0px 0px;
	padding: 0px;
}

#oferta h6 {
	
	font-size:  0.875rem;
	font-weight: bold;
	margin: 15px 0px 0px 0px;
	padding: 0px;
	color: #ff0000
}

#oferta {
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

#oferta img {
	float: right;
	display: block
}

#oferta li {
	margin-left: 5px;
}

#gialli table {
	width: 100%;
	background: #fc6;
	padding: 0px;
	margin: 0px;
	float: center;
}

td {
	font-size:  0.9375rem;
	
	font-weight: normal;
	text-decoration: none;
	color: #555555;
}

.wyr {
	font-size:  0.875rem;
	font-weight: normal;
	text-decoration: none;
	color: #DFDCD9;
}

.ob {
	font-size:  0.875rem;
	
	font-weight: normal;
	color: #000000;
}

dfg {
	margin-left: 30px;
	text-indent: 0px;
	margin-left: 30px;
	margin-right: 30px;
	font-size:  0.9375rem;
	font-weight: normal;
	list-style: none outside url(images/arrow02.gif);
	list-style-position: outside;
	line-height: 15px;
	vertical-align: text-bottom;
}

fieldset {
	border: 1px dotted #222222;
	padding: 10px;
	
	font-size:  0.9375rem;
	text-align: left;
}

.sub {
	font-size:  0.875rem;
	
	font-weight: normal;
	color: #DDDDDD;
}

.table01 {
	font-size:  0.9375rem;
	
	font-weight: normal;
	text-align: center;
	color: #666666;
	border-bottom: 1px dashed Olive;
}

.table02 {
	background: #fff;
	background-image: url(images/tloheader.jpg) repeat right;
	font-size:  0.9375rem;
	
	text-align: left;
	font-weight: normal;
	color: #666666;
	border-bottom: 1px solid #aaa;
}

#table02 {
	background-image: url(images/tloheader.jpg);
	background-position: top right;
	background-repeat: no-repeat;
	width: 540px;
	margin: 0px;
	float: left;
	text-align: left;
	padding: 0 5px 0 5px;
	font-size:  0.9375rem;
	
	font-weight: normal;
	color: #666666;
	border-bottom: 1px solid #aaa;
}


#table022 {
	background-image: url(images/tloheader.jpg);
	background-position: top right;
	background-repeat: no-repeat;
	width: 530px;
	margin: 0px;
	float: left;
	font-size:  0.9375rem;
	
	font-weight: normal;
	color: #666666;
	border-bottom: 1px solid #aaa;
}



#table0222 {
	background-image: url(images/tloheader.jpg);
	background-position: top right;
	background-repeat: no-repeat;
	width: 530px;
	margin: 0px;
	float: left;
	font-size:  0.9375rem;
	
	font-weight: normal;
	color: #666666;
	border-bottom: 1px solid #aaa;
}





#side {
	float: right;
	padding: 0px;
}

.table03 {
	font-size:  0.9375rem;
	
	font-weight: normal;
	color: #666666;
	border: 1px dashed Silver;
}

a {
	font-size:  0.9375rem;
	
	font-weight: normal;
	text-decoration: none;
	color: #07457E;
}


a.et {
	font-size:  0.9375rem;

	font-weight: normal;
	text-decoration: none;
	color: #07457E;
}

a.et:hover {
	font-size:  0.9375rem;
	
	font-weight: normal;
	text-decoration: underline;
	color: #07457E;
}

a.zd {
	font-size:  0.9375rem;
	
	font-weight: normal;
	text-decoration: underline;
	color: 07457E;
}

a.zd:hover {
	font-size:  0.9375rem;
	
	font-weight: normal;
	text-decoration: underline;
	color: Black;
}


a.cennik {
	font-size:  0.875rem;
	
	font-weight: normal;
	text-decoration: underline;
	color: #D20309;
}

a.cennik:hover {
	font-size:  0.875rem;
	
	font-weight: normal;
	text-decoration: underline;
	color: Black;
}

.menu {
	BACKGROUND-COLOR: #787269;
	COLOR: #DDDDDD;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	PADDING-LEFT: 0px;
	PADDING-RIGHT: 10px;
	PADDING-TOP: 2px;
	PADDING-BOTTOM: 2px;
	TEXT-ALIGN: right;
	WIDTH: 185px;
	text-decoration: none;
}

.menu:hover {
	BACKGROUND-COLOR: #857C71;
	COLOR: #FFFFFF;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	WIDTH: 100%
}


.menu2 {
	BACKGROUND-COLOR: #56534C;
	COLOR: #DDDDDD;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	PADDING-LEFT: 0px;
	PADDING-RIGHT: 10px;
	PADDING-TOP: 2px;
	PADDING-BOTTOM: 2px;
	TEXT-ALIGN: right;
	WIDTH: 100%
}

.menu2:hover {
	BACKGROUND-COLOR: #625E57;
	COLOR: #FFFFFF;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	WIDTH: 100%
}


.menu3 {
	BACKGROUND-COLOR: #625E57;
	COLOR: #DDDDDD;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	PADDING-LEFT: 0px;
	PADDING-RIGHT: 10px;
	PADDING-TOP: 2px;
	PADDING-BOTTOM: 2px;
	TEXT-ALIGN: right;
	WIDTH: 100%
}

.menu3:hover {
	BACKGROUND-COLOR: #787269;
	COLOR: #FFFFFF;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	WIDTH: 100%
}


.menu4 {
	BACKGROUND-COLOR: #4E4841;
	COLOR: #DDDDDD;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	PADDING-LEFT: 0px;
	PADDING-RIGHT: 10px;
	PADDING-TOP: 2px;
	PADDING-BOTTOM: 2px;
	TEXT-ALIGN: right;
	WIDTH: 100%
}

.menu4:hover {
	BACKGROUND-COLOR: #787269;
	COLOR: #FFFFFF;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	WIDTH: 100%
}

.menu5 {
	BACKGROUND-COLOR: #920000;
	COLOR: #DDDDDD;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	PADDING-LEFT: 0px;
	PADDING-RIGHT: 10px;
	PADDING-TOP: 2px;
	PADDING-BOTTOM: 2px;
	TEXT-ALIGN: right;
	WIDTH: 100%
}


.menu5:hover {
	BACKGROUND-COLOR: #AC0000;
	COLOR: #FFFFFF;
	
	font-size:  0.9375rem;
	FONT-WEIGHT: normal;
	WIDTH: 100%
}

select {
	BACKGROUND-COLOR: #FFFFFF;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	COLOR: Black;
	FONT: 10px Verdana;
	font-weight: bold;
	float: center;
}

option {
	BACKGROUND-COLOR: #FFFFFF;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	COLOR: Black;
	FONT: 10px Verdana;
	font-weight: bold;
	float: none;
}

legend {
	color: Black;
}

input {
	font-size: 8pt;
	
	font-weight: normal;
}

.zap {
	background-color: #EAE0D3;
	font-size: 8pt;
	color: #000000;
	
}



textarea {
	background-color: #EAE0D3;
	font-size: 9pt;
	
}


/* moje dodatki budowa strony zawartoÂśĂŚ */

#content p,
h1,
h2,
h3,
h4,
h5 ul,
li {
	margin: 0px 15px 10px 10px;
	padding: 0px;
}

h3 {
	font-size: 1.125rem;
	margin: 5px 15px 5px 10px;
	padding: 0px;
}

#content h3 {
	font-size: 1.125rem;
}

#content h4 {
	font-size: 1rem;
}

#content h5 {
	font-size: 1rem;
	text-align: center;
	margin: 10px 0px 10px 0px;
	line-height: 100%;
}

#content img {
	border: none;
	margin: 0px 10px 10px 15px;
	padding: 0px;
}

#box {
	width: 550px;
	float: left;
	margin: 0px;
	padding: 6px 0px;
	background-image: url(images/boxback.jpg);
	background-position: top right;
	background-repeat: no-repeat;
}

#box img {
	border: none;
}

.thin p {
	text-align: left;
}

#box h5.caps {
	text-align: left;
	margin: 5px 0px 10px 10px;
	font-size: 1rem;
	font-variant: small-caps;
	color: #333;
}

#box table {
	margin: 5px 0px 15px;
}

#box p.przypis {
	clear: right;
	text-align: right;
	margin: 0 20px 10px 0px;
	font-size:  1rem;
	font-variant: small-caps;
	color: #333;
}

.newlook h2 {
	font-size: 1.375rem;
	margin: 5px 0px 0 10px;
	padding: 0px;
	color: #763931;
}

.newlook h2 strong {
	color: #835d58;
}

.newlook h3 {
	font-size: 1.125rem;
	margin: 2px 0px 0px 5px;
	padding: 0px;
	color: #835d58;
	font-style: italic;
}

.newlook h4 {
	font-size: 1.25rem;
	margin: 22px 0px 0px 0px;
	padding: 0 0 0px 0;
	color: #835d58;
	font-style: italic;
}

.newlook h5 {
	font-size: 1.125rem;
	margin: 10px 0px 0px 0px;
	padding: 2px 12px;
	color: #666;
	text-align: left;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	background: #f9f9f9;
	font-style: normal;
	font-weight: bold;
	display: block;
}

.newlook h5 a {
	
	font-weight: bold;
	font-size: 1.125rem;
}

.newlook h5 a:hover {
	color: #999;
}

.newlook h6 {
	
	font-size: 1.125rem;
	margin: 5px 0px 0px 0px;
	padding: 0 0 0px 0;
	color: #835d58;
	font-style: italic;
}

.newlook p {
	
	font-size:  0.9375rem;
	margin: 10px 0px 15px 5px;
	padding: 0px;
	color: #666;
}

.newlook ul {
	margin: 10px 0 10px 15px;
	padding: 0;
}

.newlook ul li {
	line-height: 12px;
	list-style: disc #aaa;
}

.newlook table td {
	vertical-align: top;
}

table.opis {
	background: #f2f2f2;
	border-bottom: 1px solid #999;
	border-top: 1px solid #999;
	width: 100%;
	line-height: 18px;
}

.newlooktop p {
	width: 350px;
}

.seealso {
	position: absolute;
	left: 600px;
	top: 180px;
	width: 100px;
	padding: 4px 10px;
	border-left: dotted 2px #333;
	background-image: url(images/seealsoback.jpg) repeat;
}


ul#minitabs {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #CCC;
	font-weight: bold;
	text-align: center;
	white-space: nowrap
}

ul#minitabs li {
	display: inline;
	margin: 0 8px
}

ul#minitabs a {
	text-decoration: none;
	padding: 0 0 5px;
	border-bottom: 4px solid #eee;
	color: #666
}

ul#minitabs a#current {
	border-color: #9c3224;
	color: #000
}

ul#minitabs a:hover {
	border-color: #f5e7cd;
	color: #000
}

/* menu glowne */

/* div.nav {
	padding: 0;
	margin: 10px 0 0 40px;
	float: left;
}*/

div.nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
} 

div.nav li {
	font-size:  1.0625rem;

	/* float: left;
	width: 190px;
	margin: 0px;
	line-height: 19px;
	padding: 1px 0px;
	display: block;
	text-align: left;
	list-style: none;
	font-style: normal;
	padding-left: 10px; */

}

div.nav a {
	text-transform: normal;
	font-size: 1rem;
	font-style: normal;
	display: inline-block;
	padding: .5rem 1rem;
}

div.nav li.label {
	font-weight: bold;
	color: #07457E;
}

div.nav li.label > a + ul {
	display: none;
}

div.nav li.sublabel {
	margin-top: 0px;
	text-transform: none;
	font-size: 1rem;
	font-style: normal;
	color: #fff;

}

div.nav h2 {
	font-size: 1.125rem;
	color: #fff;
	font-weight: bold;
	margin-left: 0;
}

div.nav p {
	font-size: 1rem;
	color: #fff;
	line-height: 16px;
	padding-right: 10px;
}

div.podmenu {
	margin: 10px 0 0 10px;
	float: left;
}



div.podmenu img {
	margin-left: 10px;
}


div.medale {
	margin: 40px 0 0 40px;
	text-align: center;
}


div.dane {
	margin: 0px 15px 20px 50px;
	padding-left: 15px;
	border-left: 1px solid #645d50;
	display: block;
}

img.ikona {
	float: left;
	margin-left: 10px;
}

p.tekst {
	font-size: 24px;
	text-shadow: 0 -1px 1px #645d50;
}

h4.adres {
	font-size: 1.125rem;
	font-weight: bold;
	padding-bottom: 5px;
	text-shadow: 0 -1px 1px #645d50;
	color: #fff;
}

h4.godziny {
	font-size: 1.125rem;
	font-weight: bold;
	padding-bottom: 5px;
	text-shadow: 0 -1px 1px #645d50;
	background-image: transparent url("../img/godziny.png") left 32px no-repeat;
}

h4.kontakt {
	font-size: 1.125rem;
	font-weight: bold;
	padding-bottom: 5px;
	text-shadow: 0 -1px 1px #645d50;
	background-image: url("../img/kontakt.png") left 32px no-repeat;
}

li.main {
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: 5px;
	text-shadow: 0 -1px 1px #645d50;
}

div.informacja {
	background-image: url("../img/info_tlo.png");
	width: 260px;
}

div.informacja h5 {
	font-size: 1rem;
	font-weight: bold;
	padding: 15px 0 5px 15px;
	text-shadow: 0 -1px 1px #645d50;
}

div.informacja p {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 20px;
	padding: 0px 30px 25px 50px;
	text-shadow: 0 -1px 1px #645d50;
}

.slideshow {
	overflow: hidden;
	margin: auto
}

.slideshow img {
	background-color: #eee;
}



div.paginaton {
	margin-top: 2rem;
	text-align: center;
}

div.paginaton a {
	display: inline-block;
	padding: 3px 7px;
	font-size: 1rem;
}

div.paginaton a.active {
	padding: .125rem .5rem;
	font-weight: bold;
	border: 1px solid #ccc;
	color: white;
	background: #055A91;
}

div.paginaton a:hover {
	color: #000;
}

#newsletter {
	margin: 15px 0 0 30px;
	font-size:  1.0625rem;
}

#newsletter input {
	font-size:  1.0625rem;
}

#newsletter h2 {
	margin: 0 0 5px !important;
	padding: 0;
	color: #fff !important;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, .3);
}

#newsletter label {
	display: block;
}

#newsletter input.sub {
	width: 44px;
	height: 25px;
	border: 0;
	background: transparent url("img/newsletter_submit.png") no-repeat;
	position: relative;
	top: 2px;
	left: -8px;
	cursor: pointer;
}

.mobilemenu {
	display: none;
}

.mobilebottommenu {
	display: none;
}

@media screen and (max-width: 523px) {
	.mobilebottommenu {
		display: block;
		font-size: 1.5rem;
		font-weight: bold;
		text-align: center;
		border-bottom: #ddd solid 1px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.mobilemenu {
		display: block;
		clear: both;
		width: 100%;
		text-align: center;
		color: #fff;
	}

	.menublock {
		background-color: #0c518c;
		padding: 3px 10px;
		margin: 10px;
		width: 200px;
		font-size: 1.375rem;
	}

	.menublock {
		color: #fff;
	}

	#content-container {
		width: 100%;
	}

	#left-sidebar {
		width: 100%;
		float: none;
	}

	#right-sidebar {
		width: 100%;
		float: none;
	}

	#page-container {
		width: 100%;
	}

	.mainpage-banners img {
		width: 100%;
	}

	#footer-container {
		display: none;
	}

	.logosbottom {
		width: 100%;
	}

	.logosbottom p {
		color: #111 !important;
		text-align: center;
	}

	#right-sidebar {
		display: none;
	}

	#left-sidebar li a {
		color: #111 !important;
	}

	#left-sidebar li {
		color: #111 !important;
	}
}