A:link {color: #CFDEFB; text-decoration: none}
A:visited {color: #CFDEFB; text-decoration: none}
A:hover { color: #CFDEFB; text-decoration: underline}

body {

	margin: 0px auto;
	font-family: Arial,Tahoma,sans-serif;
	color: #CFDEFB;
	background-color: #50c2fe;
}
 /* Stylizacja banera zgody */
    #consent-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: black;
      #opacity: 0.5;
      padding: 15px;
      text-align: center;
      #box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
      display: none;
      color:white;
      #height:80px;
      z-index:2;
    }
    #consent-banner button {
      margin: 5px;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
    }
    #accept-btn { background-color: #28a745; color: #fff; }
    #reject-btn { background-color: #dc3545; color: #fff; }
.faq-item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
 .ssl-form-wrapper.hidden {
  display: none;
}
.ssl-form-wrapper.visible {
  display: block;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-grid a {
  width: 150px;
  height: 150px;
  display: block;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.05);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.toggle-form-button {
  background-color: #44c206;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 10px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-form-button:hover {
  background-color: #369a0a;
}
.faq-label {
  display: block;
  background: #f4f4f4;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-label::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 20px;
}

.faq-checkbox:checked + .faq-label::after {
  content: "-";
}

.faq-checkbox {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  padding: 0 10px;
}

.faq-checkbox:checked + .faq-label + .faq-content {
  max-height: 500px;
  padding: 10px;
}
.boxes-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.info-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}
.ssl-form-wrapper form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.ssl-form-wrapper .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ssl-form-wrapper .form-group {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
}

.ssl-form-wrapper .form-group-full {
  flex: 1 1 100%;
}

.ssl-form-wrapper label {
  font-weight: bold;
  margin-bottom: 5px;
}

.ssl-form-wrapper input,
.ssl-form-wrapper select,
.ssl-form-wrapper textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.ssl-form-wrapper textarea {
  resize: vertical;
}

.ssl-form-wrapper hr {
  margin: 30px 0 10px;
  border: none;
  border-top: 1px solid #ccc;
}

.ssl-form-wrapper .form-checkbox {
  margin: 10px 0;
}

.ssl-form-wrapper button[type="submit"] {
  background-color: #44c206;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.ssl-form-wrapper button[type="submit"]:hover {
  background-color: #369a0a;
}

@media (max-width: 600px) {
  .ssl-form-wrapper .form-group {
    flex: 1 1 100%;
  }
}
.pushup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #444;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    max-width: 320px;
    font-size: 15px;
    opacity: 0;
    animation: fadeInOut 5s forwards;
}

.pushup.success { background-color: #44c206; }
.pushup.error { background-color: #d93025; }

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

.info-box img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .info-box {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 500px) {
  .info-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #44c206;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.toggle-label:hover {
  background-color: #369a0a;
}

.toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.toggle-checkbox:checked + .toggle-label + .toggle-content {
  max-height: 1000px;
  margin-top: 20px;
}

#strona {
	width: 1220px;
	background: #00BA00;
	margin: 0px auto;
padding: 0px;
}
#lewa {
  width: 99px;
	height: 807px;
	float: left;
	background: #007BB9;
	background-image: url(../Obrazki/index_01.jpg);
	line-height:47px;
  color: #FEAA05;

}

#header, #stopka {
	width: 1022px;
	}

#header {
	height: 212px;
	background-image: url(../Obrazki/index_02.jpg);
	float:left;
}


 #tresc {
	height: 524px;
	width: 1022px;
	float: left;
	z-index:2;
  background-image: url(../Obrazki/index_04.jpg);
  
  }
  
  #stopka {
	height: 71px;
	width: 1022px;
	z-index:1;
	float:left;
	background-image: url(../Obrazki/index_05.jpg);
	font-size:12px;
  font-style: normal;
  font-weight: normal;
    text-decoration: none;
    font-family: Arial,Tahoma,sans-serif;
  color:white;
}

#stopka2 {
	height: 0px;
	width: 1022px;
	z-index:1;
	margin-top:-70px;
	margin-left:-270px;
	float:left;
	#background-image: url(../Obrazki/index_05.jpg);
	font-size:12px;
  font-style: normal;
  font-weight: normal;
    text-decoration: none;
    font-family: Arial,Tahoma,sans-serif;
  color:white;
}

#prawa {
	height: 807px;
	width: 99px;
	float: right;
	background: #315A87;
  background-image: url(../Obrazki/index_03.jpg);
  }

#stopka_logo {
  position:relative;
  left: 50%;
  margin-left: -510px;
  top: -100px;
  width:300px;
  height:0px;
  z-index:2;
  visibility:visible;
}
#menugorne {
  position:absolute;
  left: 50%;
  margin-left: -200px;
  top: 0px;
  width:700px;
  height:60px;
  z-index:2;
  visibility:visible;
  background-image: url(../Obrazki/menugorne.png);
  font-family: Arial,Tahoma,sans-serif;
}
#logoduze {
  position:relative;
  left: 50%;
  margin-left: -520px;
  top: 50px;
  width:300px;
  height:0px;
  z-index:2;
  visibility:visible;
}
#domeny_cennik {
  position:relative;
  left: 50%;
  margin-left: 12px;
  top: -105px;
  width:486px;
  height:308px;
  z-index:4;
  visibility:visible;
  background-image: url(../Obrazki/ceny_domen_tlo.png);
  font-family: Verdana;
  font-size:17px;
  color:#1F6AB6;
 # background: #00BA00;
} 

 
#znalezione_domeny {
  position:relative;
  left: 50%;
  margin-left: -510px;
  top: 0px;
  width:508px;
  height:100px;
  z-index:2;
  visibility:visible;
  font-family: Verdana;
  font-size:17px;
  color:#1F6AB6;
} 
#lista_domen {
  position:relative;
  left: 50%;
  margin-left: -510px;
  top: 15px;
  width:1020px;
  height:328px;
  z-index:2;
  visibility:visible;
  
  font-family: Verdana;
  font-size:12px;
  color:#1F6AB6;
} 
#rejestracja_odnowienie {
  position:relative;
  left: 50%;
  margin-left: 30px;
  top: 10px;
  width:210px;
  height:0px;
  z-index:5;
  visibility:visible;
  font-family: Verdana;
  font-size:12px;
  color:white;
}  
#promocja {
  position:relative;
  left: 50%;
  margin-left: -230px;
  top: 52px;
  width:340px;
  height:0px;
  z-index:4;
  visibility:visible;
  font-family: Verdana;
  font-size:12px;
  color:white;
} 
#napis_wyszukiwarka {
  position:relative;
  left: 50%;
  margin-left: -230px;
  top: 8px;
  width:200px;
  height:0px;
  z-index:4;
  visibility:visible;
  font-family: Verdana;
  font-size:15px;
  color:white;
}  
#wiecej_domen {
  position:relative;
  left: 50%;
  margin-left: 47px;
  top: -30px;
  width:200px;
  height:0px;
  z-index:4;
  visibility:visible;
  font-family: Verdana;
  font-size:12px;
  color:white;
}    
#wyszukiwarka {
  position:relative;
  left: 50%;
  margin-left: -500px;
  top: 410px;
  width:487px;
  height:86px;
  z-index:3;
  visibility:visible;
  font-family: Verdana;
  font-size:12px;
  color:white;
  background-image: url(../Obrazki/wyszukiwarka.png);
}  
#tresc1 {
  position:relative;
  left: 50%;
  margin-left: 10px;
  top: -120px;
  width:500px;
  height:210px;
  z-index:3;
  visibility:visible;
  font-family: Verdana;
  font-size:12px;
  background-image: url(../Obrazki/domena_eu.png);
}  
#tresc2 {
  position:relative;
  left: 50%;
  margin-left: -500px;
  top: 10px;
  width:488px;
  height:0px;
  z-index:5;
  visibility:visible;
  font-family: Verdana;
  font-size:12px;
  background-image: url(../Obrazki/tresc.png);
}  
.formularz_domen {
position:relative;
  left: 50%;
  top:-8px;
    border: 0 none;
   color: #B6B5B5;
    font-size: 14px ;
    width: 173px;
    margin-top:-642px;
    margin-left:-148px;
    height:19px;
    background-color: #ffffff; 
    #filter:alpha(opacity=90);
    #opacity:0.9;
    #-moz-opacity:0.9; 
}

#poczta {
  position:relative;
  left: 50%;
  margin-left: 340px;
  top: 80px;
  width:50px;
  height:0px;
  z-index:1;
  visibility:visible;
}
#domeny {
  position:relative;
  left: 50%;
  margin-left: 400px;
  top: 80px;
  width:50px;
  height:0px;
  z-index:1;
  visibility:visible;
}
