/* general styles */

html {
    overflow-y: scroll;
    height: 101%;
}

body {
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
    line-height: 1.9;
	letter-spacing: 1px;
	font-weight: 300;
    opacity:1;
    transition: opacity 2s;
    -webkit-transition: opacity 2s; /* Safari */

}

::-moz-focus-inner {
  	border: 0;
  	padding: 0;
}

a {
	outline: medium none !important;
}

button {
	outline: medium none !important;
}

p {
	font-size: 16px;	
}

h1 {
	font-size: 34px;
	line-height: 54px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

#page {
	
}



/* Custom Styles for Carousel at the top*/
#carouselExample .carousel-caption {
    background: rgba(0, 0, 0, 0.3);  /* Lower opacity */
    border: none;  /* Remove border */
    border-radius: 0;  /* Remove border-radius */
    padding: 20px;
}

#carouselExample .carousel-control {
    background: none;  /* Remove background */
    filter: none;  /* Reset filter */
}

#carouselExample .carousel-indicators li {
    background-color: #888;  /* Neutral color */
}

#carouselExample .carousel-indicators .active {
    background-color: #555;  /* Slightly darker for active indicator */
}






body.modal-active {
    overflow: hidden;
}

.modal-active > .modal {
    filter: none; 
}

.modal-active > *:not(.modal) {
    filter: blur(5px);
    pointer-events: none; 
    user-select: none; 
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s linear;
    align-items: center;  
    justify-content: center; 
}

.modal.active {
    display: flex; 
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    padding: 40px; /* Increased padding */
    border: 1px solid #888;
    width: 80%;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Shadow for 3D effect */
    text-align: left; /* Left-aligned text */
    font-size: 18px; /* Larger font size */
}

.modal-content h2 {
    color: #333;
    font-size: 24px; 
    margin-bottom: 15px;
}

.modal-content button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: white;
    color: black;
    border: 1px solid #4CAF50;
}

.modal-content p {
    margin-bottom: 20px; /* Space between paragraphs */
}

.modal-content h1,
.modal-content h2 {
    color: #333; /* Darker text for headings */
}




#form{
	background-color: white;
	padding:30;
	margin-top: 20px;
	margin-bottom: 20px;
}
.btn-group .btn {
	margin-bottom: 5px;
	flex: 1 1 auto; 
}
.btn img {
	height: 30px;
	margin-right: 5px;
}
.loading-overlay {
	display: none;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background: rgba(255, 255, 255, 0.7);
	z-index: 1000;
}
.loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -1.5rem;
	margin-top: -1.5rem;
	width: 3rem;
	height: 3rem;
	border: 0.4rem solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top: 0.4rem solid #000;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}




.item {
	
}

/* margins and paddings */
.ml20 {
	margin-left: 20px;
}

.mr20 {
	margin-right: 20px;
}

.mb20 {
	margin-bottom: 20px;
}

.mt20 {
	margin-top: 20px;
}

.ml40 {
	margin-left: 40px;
}

.mr40 {
	margin-right: 40px;
}

.mb40 {
	margin-bottom: 40px;
}

.mt40 {
	margin-top: 40px;
}

.nopadding {
   padding: 0 !important;
}

.nomargin {
	margin: 0 !important;
}

.nopaddingnomargin {
   padding: 0 !important;
   margin: 0 !important;
}

.nopaddingleft {
   padding-left: 0 !important;
}

.nopaddingright {
   padding-right: 0 !important;
}

.green {
	color: #62b151 !important;
}

.dark {
	color: #282828 !important;
}

.orange {
	color: #fec107 !important;
}
/* header */
header {
	width: 100%;
    height: 100%;
	min-height: 670px;
    background: no-repeat center center;
	background-attachment: scroll;
	background-color: #b7b7b7;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
	position: relative;
}

/* buttons */
.btn-default {
	border-radius: 40px;
	padding: 12px 24px;
	border: 1px solid #b7b7b7;
}

.btn-default:hover {
	background: #b7b7b7;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-transparent {
	background: transparent;
	border-radius: 40px;
	padding: 12px 24px;
	border: 1px solid #fff;
	color: #fff;
}

.btn-default-transparent:hover {
	border: 1px solid #b7b7b7;
	color: #b7b7b7;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-pink-transparent, .btn-default-pink-transparent:focus {
	background: transparent;
	border-radius: 40px;
	padding: 12px 24px;
	border: 1px solid #fff;
	color: #fff;
}

.btn-default-pink-transparent:hover {
	border: 1px solid #f06097;
	color: #fff;
	background-color: #f06097;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-pink, .btn-default-pink:focus {
	border-radius: 40px;
	padding: 12px 24px;
	border: 1px solid #f06097;
	color: #fff;
	background-color: #f06097;
}

.btn-default-pink:hover {
	border: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-yellow, .btn-default-yellowk:focus {
	border-radius: 40px;
	padding: 12px 24px;
	border: 1px solid #f8e71c;
	color: #fff;
	background-color: #f8e71c;
}

.btn-default-yellow:hover {
	border: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-green-transparent {
	border-radius: 2px !important;
	background: transparent;
	padding: 12px 24px;
	border: 1px solid #62b151;
	color: #62b151;
}

.btn-default-green-transparent:hover {
	border: 1px solid #62b151;
	color: #fff;
	background: #62b151;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-green, .btn-default-green:focus {
	background-color: #62b151;
	border-radius: 2px;
	padding: 12px 24px;
	border: 1px solid #62b151;
	color: #fff;
}

.btn-default-green:hover {
	border: 1px solid #62b151;
	color: #fff;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-black, .btn-default-black:focus {
	background-color: #000;
	border-radius: 2px;
	padding: 12px 24px;
	border: 1px solid #000;
	color: #fff;
}

.btn-default-black:hover {
	border: 1px solid #000;
	color: #000;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-green-transparent-tiny, .btn-default-green-transparent-tiny:focus {
	border-radius: 2px !important;
	background: transparent;
	border-radius: 40px;
	padding: 8px 24px;
	border: 1px solid #62b151;
	color: #62b151;
}

.btn-default-green-transparent-tiny:hover {
	border: 1px solid #62b151;
	color: #fff;
	background: #62b151;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-green-tiny {
	border-radius: 2px !important;
	background: #62b151;
	border-radius: 40px;
	padding: 8px 24px;
	border: 1px solid #62b151;
	color: #fff;
}

.btn-default-green-tiny:hover {
	border: 1px solid #62b151;
	color: #62b151;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-orange {
	border-radius: 4px !important;
	background: transparent;
	border-radius: 40px;
	padding: 10px 24px;
	border: 1px solid #e74c3c;
	color: #e74c3c;
}

.btn-default-orange:hover {
	border: 1px solid #e74c3c;
	color: #fff;
	background: #e74c3c;
}

.btn-default-orange-light, .btn-default-orange-light:focus {
	border-radius: 4px !important;
	background: #fec107;
	border-radius: 40px;
	padding: 10px 24px;
	border: 1px solid #fec107;
	color: #fff;
}

.btn-default-orange-light:hover {
	border: 1px solid #fec107;
	color: #fec107;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-orange-light-transparent, .btn-default-orange-light-transparent:focus {
	border-radius: 4px !important;
	background: transparent;
	border-radius: 40px;
	padding: 10px 24px;
	border: 1px solid #fec107;
	color: #fec107;
}

.btn-default-orange-light-transparent:hover {
	border: 1px solid #fec107;
	color: #fff;
	background: #fec107;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-orange-tiny {
	border-radius: 2px !important;
	background: transparent;
	border-radius: 40px;
	padding: 6px 24px;
	border: 1px solid #e74c3c;
	color: #e74c3c;
	
}

.btn-default-orange-tiny:hover {
	border: 1px solid #e74c3c;
	color: #fff;
	background: #e74c3c;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-orange-tiny-no-t {
	border-radius: 2px !important;
	background: #e74c3c;
	border-radius: 40px;
	padding: 6px 24px;
	border: 1px solid #e74c3c;
	color: #fff;
}

.btn-default-orange-tiny-no-t:hover {
	border: 1px solid #e74c3c;
	color: #e74c3c;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-blue-tiny {
	border-radius: 2px !important;
	background: #3498db;
	border-radius: 40px;
	padding: 8px 24px;
	border: 1px solid #3498db;
	color: #fff !important;
}

.btn-default-blue-tiny:hover {
	border: 1px solid #3498db;
	color: #3498db !important;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-dark-tiny {
	border-radius: 2px !important;
	background: #282828;
	border-radius: 40px;
	padding: 8px 24px;
	border: 1px solid #282828;
	color: #fff !important;
}

.btn-default-dark-tiny:hover {
	border: 1px solid #282828;
	color: #282828 !important;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

.btn-default-white-transparent, .btn-default-white-transparent:focus {
	border-radius: 2px !important;
	background: rgba(237, 237, 237, 0.3);
	padding: 12px 24px;
	border: 1px solid #ededed;
	color: #fff;
}

.btn-default-white-transparent:hover {
	border: 1px solid rgba(237, 237, 237, 0.8);
	color: #fff;
	background: rgba(237, 237, 237, 0.6);
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	     -o-transition: all 0.5s ease;
	        transition: all 0.5s ease;
}

/* inputs */

.input-group .form-control
{
	
	float: none;
}


.bg-grey
{
  background-color: #7E7E7E;
}

.tekst-na-obrazku {
    bottom: 10;
    right: 18;
    position: absolute;
	font-size: 20px;
	color:#001c72;
	font-weight: 500;
	
}

.tekst-na-obrazku-czerwony {
    top: 11;
    right: 70;
    position: absolute;
	font-size: 30px;
	color:#ff0000;
	font-weight: 700;
	
}

.tekst-na-obrazku-zielony {
    top: 11;
    right: 70;
    position: absolute;
	font-size: 30px;
	color:#147705;
	font-weight: 700;
	
}


.tekst-na-obrazku-nowosc {
    bottom: 10;
    right: 18;
    position: absolute;
	font-size: 19px;
	color:red;
	font-weight: bold;

}


.strzalka-na-obrazku
{
		
	top: 15;
    right: 20;

    position: absolute;
	font-size: 40px;
}


.zlotyjasny
{
	background-image: url("/images/bglaminat1.jpg");
	background-color: #C09A58;
	color: black;
}

.zlotymetal
{
	background-image: url("/images/bglaminat2.jpg");
	background-color: #8E6527;
	color: black;
}

.srebrnymetal
{
	background-image: url("/images/bglaminat7.jpg");
	background-color: #919191;
	color: black;
}

.zlotyciemny
{	
	background-image: url("/images/bglaminat3.jpg");
	background-color: #B07120;
	color: black;
}

.srebrnyjasny
{
	background-image: url("/images/bglaminat4.jpg");
	background-color: #C1C1C1;
	color: black;
}

.srebrnyjasnyszczotkowany
{
	background-image: url("/images/bglaminat5.jpg");
	background-color: #B3B3B3;
	color: black
}



.zlotyjasnyszczotkowany
{
	background-image: url("/images/bglaminat.jpg");
	background-color: #E0C998;
	color: black;
	
}


.bialozielony
{
	background-color: white;
	color: green;
}

.bialoczerwony
{
	background-color: white;
	color: red;
}

.zielonobialy
{
	background-color: green;
	color: white;
}

.zoltoczarny
{
	background-color: yellow;
	color: black;
}

.niebieskobialy
{
	background-color: blue;
	color: white;
}

.czerwonobialy
{
	background-color: red;
	color: white;
}

.bialoczarny
{
	background-color: white;
	color: black;
}

.czarnobialy
{
	background-color: black;
	color: white;
}


.f01
{
	background-color: #333230;
	color: white;
}

.f03
{
	background-color: #8F9190;
	color: white;
}


.f05
{
	background-color: #EE783B;
	color: white;
}

.f06
{
	background-color: #D72E31;
	color: white;
}

.f10a
{
	background-color: #4274B1;
	color: white;
}

.f13
{
	background-color: #08754C;
	color: white;
}

.f14
{
	background-color: #00A3D6;
	color: white;
}

.f16
{
	background-color: #ED8BA2;
	color: white;
}

.f17
{
	background-color: #6DB33F;
	color: white;
}

.f19
{
	background-color: #68398A;
	color: white;
}

.f20
{
	background-color: #F3F4F6;
	color: gray;
}

.f21
{
	background-color: #F3CF00;
	color: gray;
}


.f22
{
	background-color: #696971;
	color: white;
}
.f24
{
	background-color: #2d4375;
	color: white;
}





.czarny
{
	background-color: #EEE;
}

.czarny :a
{
	color:#001c72;
}

.szampanski
{
	background-color: #7E7EEE;
}



@media (max-width: 880px) {
	.tekst-na-obrazku {
		font-size: 10px;
		bottom: 5;
		right: 10;
	}

	.tekst-na-obrazku-czerwony {
		top: 11;
		right: 20;
		font-size: 20px;
		font-weight: 600;
	}

	.tekst-na-obrazku-zielony {
		top: 11;
		right: 20;
		font-size: 20px;
		font-weight: 600;
	}

	
	.tekst-na-obrazku-nowosc {
		font-size: 10px;
		bottom: 5;
		right: 10;
	}
	
	.strzalka-na-obrazku
	{
	top: 5;
    right: 7;
    position: absolute;
	
	}
	
	/* prettyPhoto styling for small screens */
.pp_pic_holder.pp_default { width: 100%!important; left: 0!important; overflow: hidden; }
div.pp_default .pp_content_container .pp_left { padding-left: 0!important; }
div.pp_default .pp_content_container .pp_right { padding-right: 0!important; }
.pp_content { width: 100%!important; height: auto!important; }
.pp_fade { width: 100%!important; height: 100%!important; }
a.pp_expand, a.pp_contract, .pp_hoverContainer, .pp_gallery, .pp_top, .pp_bottom { display: none!important; }
#pp_full_res img { width: 100%!important; height: auto!important; }
.pp_details { width: 100%!important; padding-left: 3%; padding-right: 4%; padding-top: 10px; padding-bottom: 10px; background-color: #fff; margin-top: -2px!important; }
a.pp_close { right: 10px!important; top: 10px!important; }


}
@media (max-width: 500px) {
	.tekst-na-obrazku {
		font-size: 7px;
		bottom: 2;
		right: 4;
	}

	.tekst-na-obrazku-czerwony {
		top: 4;
		right: 23;
		font-size: 8px;
		font-weight: 600;
	}

	.tekst-na-obrazku-zielony {
		top: 4;
		right: 23;
		font-size: 8px;
		font-weight: 600;
	}

	
	.tekst-na-obrazku-nowosc {
		font-size: 10px;
		bottom: 5;
		right: 10;
	}
	
	.strzalka-na-obrazku
	{
	top: 3;
    right: 3;
    position: absolute;
	
	}
	
}


.slider {
    width:420px;
}

