<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.stck-panel-wrap {
  position: fixed;
  bottom: 0px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  width: 100%;
  color: #fff;
	border-top: 1px solid rgba(255,255,255,0.2);
	z-index: 80;
}

.stck-panel-wrap-mobile {
  position: fixed;
  bottom: 0px;
  display: grid;
  grid-template-columns: 30% 70%;
  width: 100%;
  color: #fff;
	border-top: 1px solid rgba(255,255,255,0.2);
	z-index: 80;
}

.stck-panel-button-phone img {
  width: 36px;
  height: 36px;	
}

.stck-panel-button {
  background: #1c0120;
  display: flex;
  justify-content: center;
 align-items: center;
  height: 70px;
	border-right: 1px solid rgba(255,255,255,0.2);
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
	text-transform: uppercase;
	font-size: 17px;
}


.stck-panel-button:hover {
  background: #7c1c92;
}

.stck-panel-button p {
	margin: 0px;
	line-height: 20px;
	font-weight: 600;
}

.stck-panel-button p:after {
  content: url(/wp-content/uploads/2025/09/iko-next-wh-01.svg);
  display: inline-block;
  width: 18px;
  margin-left: 8px;
  transform: translateY(3px);
  opacity: 0.9;
  transition: 0.3s;
}

.stck-panel-button:hover p:after {
	filter: none;
}

#stck-button-01 p:after {
  content: url(/wp-content/uploads/2024/12/iko-link-wh-01.svg);
  display: inline-block;
  width: 16px;
  margin-left: 8px;
  transform: translateY(-5px);
  opacity: 0.9;
  transition: 0.3s;
	filter: invert(1);
}

.stck-modal {
    display: none; /* Ukryte na początku */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Ciemne tło */
    opacity: 0;
    transition: opacity 0.3s ease; /* Domyślne przejście dla fade-out */
}

.stck-modal.show {
    display: block; /* Pokazuje modal */
    opacity: 1; /* Pełna widoczność */
    transition: opacity 0.5s ease; /* Czas fade-in ustawiony na 1s */
}

.stck-modal.hide {
    opacity: 0; /* Niewidoczność */
    transition: opacity 0.3s ease; /* Czas fade-out */
}

.stck-modal-content {
background: #fbf8fd;
background-size: cover;
  margin: 15% auto;
  padding: 40px 0;
  border: 1px solid #888;
  width: 60%;
  position: relative;
}

.stck-modal-content h3 {
  text-align: center;
margin: 15px 25px;
}

.stck-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    cursor: pointer;
	color: #7c1c92;
}

.stck-close:hover,
.stck-close:focus {
    color: #a10c4b;
    cursor: pointer;
}

.stck-panel-wrap a {
  color: inherit;
}

.stck-no-scroll {
    overflow: hidden; /* Blokuje przewijanie */
    height: 100vh; /* Ustawia wysokość na 100% okna przeglądarki */
}

.phone-sticky-link .stck-panel-button.stck-panel-button-phone {
	font-size: 25px;
	font-weight: 600;
	background: #f78b01;
}

.phone-sticky-link .stck-panel-button-phone img {
  width: 30px;
  margin-right: 12px;
}

.stck-panel-wrap-mobile a {
  color: #fff;
}

.phone-sticky-link span {
  font-weight: lighter;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {  
  .stck-panel-wrap {
  display: none;
}
	.stck-modal-content {
  width: 90% !important;
}
	vvv.stck-panel-button p {
	line-height: 12px !important;
	font-size: 14px !important;
}
	.phone-mobile-ico .stck-panel-button-phone {
  background: #409f00;
}
	.stck-modal-content h3 {
font-size: 22px;
line-height: 25px;
}
}

@media only screen and (min-width: 768px) { 
  .stck-panel-wrap-mobile {
  display: none;
}
}</style>
<!-- end Simple Custom CSS and JS -->
