body {
	font-family: 'Nunito', sans-serif;
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
	height: 100%;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

#top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	background-color: #FF6B6B;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    z-index: 1000;
    line-height: 25px;
    font-weight: 600;
    text-decoration: none;
}

/* Stylizacja linków wewnątrz top-bar */
#top-bar a {
    color: white; /* Taki sam kolor jak tekst */
    text-decoration: none; /* Usunięcie podkreślenia */
}

#top-bar a:visited, #top-bar a:active, #top-bar a:hover {
    text-decoration: none; /* Brak podkreślenia po kliknięciu */
}

/* Stylizacja linków wewnątrz top-bar */
#top-bar2 a {
    color: white; /* Taki sam kolor jak tekst */
    text-decoration: none; /* Usunięcie podkreślenia */
}

#top-bar2 a:visited, #top-bar a:active, #top-bar a:hover {
    text-decoration: none; /* Brak podkreślenia po kliknięciu */
}

#top-bar2 {

    top: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
}

#countdown {
    background: #fff;
    color: #474747;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

#countdown2 {
    background: #fff;
    color: #474747;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

strong{
	font-weight: 800;
}

.logo {
   width: 50%;
   max-width: 353px;
	position: absolute;
	z-index: 1;
	margin-top: -16%;
	margin-left: 30px;

}

.hero-image {
    width: 100%; /* Upewnij się, że obraz hero zajmuje całą szerokość kontenera */
   border-bottom-right-radius: 90px;
}

.separator {
	background-color: #f8f9f9;
	height: 2px;
	width: 100%;
}

 .icon {
      margin-right: 10px;
      display: inline-block;
      width: 20px;
      text-align: center;

}

#hero {
	background-color: #f8f9f9;
}

#hero_text {
	margin-top: 0px;
	margin-left: 20px;
	margin-right: 20px;
	padding-bottom: 30px;
}

#hero_text h1{
	font-weight: 800;
	font-size: 30px;
	white-space: nowrap;
}

#hero_text p{
	font-weight: 200;
	font-size: 12px;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 0px;
	color: #6b6b6b;
}

#hero_list {
	background-color: #fff;
	width: 100%;
	margin-top: 20px;
	padding-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
}

#hero_list p{
	margin-left: 20px;
	margin-right: 20px;
}

.myButton {
      display: inline-block;
      background-color: #FF8C00; /* Kolor tła przycisku */
      color: #fff; /* Kolor tekstu przycisku */
      text-decoration: none;
      width: 100%; /* Przycisk na 100% szerokości kontenera */
      transition: background-color 0.3s ease;
      text-align: center;
      font-weight: bold;
      margin-top: 0px;
		border-radius: 35px; 
		font-size: 19px; 
		padding:18px 0;
    }

    #myButton:hover {
      background-color: #FF8C00; /* Kolor tła przycisku po najechaniu myszką */
    }


#content {
	max-width: 1060px;
	margin: auto;
}

.desc {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 40px;
}




.desc_text {
	font-size: 17px;
	line-height: 25px;
	margin-bottom: 40px;
}

.desc_title {
	font-size: 25px;
	font-weight: 800;
	margin-bottom: 15px;
}

.desc img {
 	display: block;
  	margin: 0 auto;
  	width: 100%;
  	
}

    .faq-container {
     
      background-color: #fff;
      padding: 0px;
      box-sizing: border-box;
	margin-left: 25px;
	margin-right: 25px;

    }

 .faq-header {
	font-size: 25px;
	font-weight: 800;
      margin-bottom: 30px;
      margin-top: 50px;
	margin-left: 25px;
	margin-right: 25px;
    }

    .faq-item {
      border-bottom: 1px solid #d7d7d7;
      padding: 20px 0;
      cursor: pointer;
      position: relative;
      padding-right: 30px;

    }

    .faq-answer {
      display: none;
      margin-top: 20px;
      max-width: 90%;
      color: #6b6b69;
    }

    .faq-item::before {
      content: "▼";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.faq-item.active::before {
  content: "▲";
}
    

    #hero img {
      max-width: 100%; /* Aby obraz nie przekraczał szerokości dostępnej na danej przeglądarki */
    }
    
#footer {
	color: #7e7e7c;
	font-size: 14px;
	padding: 40px;
	background: #f8f9f9;
	
}

#footer p{
	text-align: center;
	
}


.opinion-header {
      font-size: 25px;
      font-weight: 800;
	text-align: center;
	
	background-color: #f8f9f9;
	padding-top: 40px;

}

.opinion {
    display: none;
    text-align: center; /* Wycentrowanie zawartości w bloku opinii */
}

.opinion.active {
    display: block;
}

.profile-info {
    display: flex;
    flex-direction: column; /* Układ kolumnowy dla zdjęcia i nicku */
    align-items: center;
    margin-bottom: 10px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 5px; /* Odstęp między zdjęciem a nickiem */
   margin-top: 30px;
}

.opinion-content {
    flex: 1;
    margin-left: 10px;
    margin-right: 10px;
}

.opinion-text {
    line-height: 1.5;
    padding-bottom: 20px;
}

.opinion-author {
    margin-top: 20px;
    font-weight: 800;
    margin-bottom: -15px;
}

.opinion-author-desc {
    font-size: 14px;
    margin-bottom: -10px;
    color: #8a8a8a;
}





.footer-menu {
	padding-bottom: 30px;
}



.footer-menu-links {
  display: none;
  width: 100%;

}

.footer-menu-links a {
  display: block;
  margin: 15px 0;
  color: #6b6b69;
  text-decoration: none;

}

.footer-menu-links a:hover {
  text-decoration: underline;
}

.footer-menu-separator {
  margin: 10px 0;
  border: none;
  height: 20px;
}

.footer-separator {
  border: none;
  border-top: 1px solid #d7d7d7;
}

.footer-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 16px;
}



.footer-menu-item span {
  margin-left: 10px;
}



/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding-bottom: 30px;
  background: #f8f9f9;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 5px;
  width: 25px;
  margin: 0 2px;
  background-color: #c8c6c6;

  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.dot-active, .dot:hover {
  background-color: #04aa6d;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}
    
 .zakup-container {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;

}

.zakup-box {
  width: 100%;

  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 15px;
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  background-color: #fff;
}

.zakup-box strong{
	font-weight: 700px;
	font-size: 20px;
}

.zakup-box.active {
  background-color: #04aa6d;
  color: #fff;

}
.zakup-content {
  font-size: 15px;
  line-height: 40px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  padding-bottom: 10px;
  font-weight: 600;
}

.zakup-warranty {
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: #ffffff;
  margin-top: 20px;
}

.zakup-purchase {
  background-color: #04aa6d;
  color: #fff;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;

}

.myButton_buy {
      display: inline-block;
      background-color: #04aa6d; /* Kolor tła przycisku */
      color: #fff; /* Kolor tekstu przycisku */
      text-decoration: none;
      width: 100%; /* Przycisk na 100% szerokości kontenera */
      transition: background-color 0.3s ease;
      text-align: center;
  	font-weight: 700;
  margin-top: 20px;
  		border-radius: 35px; 
		font-size: 20px; 
		padding:18px 0;
    }
    
 .buttons {
      display: inline-block;
      background-color: #04aa6d; /* Kolor tła przycisku */
      color: #fff; /* Kolor tekstu przycisku */
      text-decoration: none;
      border: 0px;
      width: 100%; /* Przycisk na 100% szerokości kontenera */
      transition: background-color 0.3s ease;
      text-align: center;
	font-weight: 600;
 	margin-bottom: 20px;
 	margin-top: 5px;
 		border-radius: 35px; 
		font-size: 18px; 
		padding:18px 0;
 }

.description {
  margin-top: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #6b6b69;
  margin-right: 10px;
}
.arrow {
  float: right;

  font-size: 12px;
}
ul {
  list-style-type: none;
  padding-left: 0;
}

.circle-number {
	background-color: #ffe1c6; 
	border-radius: 50%; 
	padding: 5px; 
	color: #000000; 
	display: inline-block; 
	width: 20px; 
	height: 20px; 
	text-align: center; 
	line-height: 20px;
	margin-right: 7px;
}

.steps-desc {
	margin-left: 43px;
	margin-top: -5px;
	margin-bottom: 27px;
}
   
#rabat {
	font-size: 12px; 
	font-color: #8d8d8d;
	background-color: #fdd52a; 
	border-radius: 10px; 
	padding-left: 10px; 
	padding-right: 10px; 
	color: #000;"
}

.posilek {
	height: 100px;	
}


.posilek_rodzaj {
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 14px; 
	line-height: normal;
	color: #8a8a8a;
}

.posilek_nazwa {
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 16px; 
	line-height: normal;
	font-weight: bold;
}

.opis_kcal {
	color: #8a8a8a; 
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 14px; 
	line-height: normal;
	
}

.separator-1day {

	width: 100%; 
	height: 1px; 
	background-color: #d7d7d7; 
	margin-top: 10px; 
	margin-bottom: 10px;
}

.posilek img{
	border-radius: 15px; 
	width: 100px; 
	height: 100px; 
	float: left; 
	margin-right: 10px;
}



label {
    display: block;
    margin-bottom: 8px;
}

input,
textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.checkbox-group {
    display: block;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 5px; /* Odstęp między checkboxem a etykietą */
    vertical-align: middle;
}

.checkbox-group label {
    display: inline;
}

.error_message {
    color: white;
    background-color: #e57373;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.good_message {
    color: white;
    background-color: #4CAF50;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
}

@media (max-width: 1768px) {
    .menu {
        display: none;
    }

    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    padding-left: 24px;
    margin: 10px 0;
    background-color: white;
    border-radius: 25px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: border 0.2s ease;
    height: 37px;
}

.payment-option:hover {
    border: 1px solid #04aa6d;
}

.payment-option input[type="radio"] {
    appearance: none;
    margin: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.payment-option input[type="radio"]:checked {
    border-color: #04aa6d;
    background-color: #04aa6d;
}

.payment-option input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.payment-option span {
    flex: 1;
    margin-left: 15px;

    font-size: 16px;
    color: #333;
    font-size: 15px;
}

.payment-option img {
    width: 70px;
    margin-right: 10px;
}
