body{
    padding-top: 35px;
    font-family: 'Nunito', sans-serif !important;
}


/* Styl dla przycisku "Na górę" */
#scrollToTopBtn{
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 9907;

    /*--bs-btn-active-bg: #d4af37;
    --bs-btn-active-border-color: #d4af37;*/
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* Styl dla okrągłego progressu */
.progress-circle{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /*background: conic-gradient(gold 0%, transparent 0%);*/
    z-index: 9906;
    pointer-events: none;
}

.rounded-circle{
    border-radius: 50%;
}

/* Gdy przycisk jest aktywny (widoczny) */
#scrollToTopBtn.show{
    display: flex;
}


/* Styl dla przycisku "Facebook" */
#facebookBtn{
    width: 50px;
    height: 50px;
    top: 400px;
    right: 20px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 9907;
    display: flex;
    /*background-color: #d4af37;*/
}

.icon-size {
    width: 95%;
    height: 95%;
    object-fit: contain; /* Zapewnia zachowanie proporcji obrazu */
    filter: invert(1); /* Odwraca kolory */
}







/* Styl dla przycisku "Kontakt Telefoniczny" */
#callBtn{
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 9907;
    /*background-color: #d4af37;*/
    border: none;
    outline: none;
    border-radius: 50%;
    position: fixed;

    /*--bs-btn-active-bg: #d4af37;
    --bs-btn-active-border-color: #d4af37;*/
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    overflow: hidden; /* Zapobiega wyjściu efektów poza przycisk */
}

/* Efekt kropli */
#callBtn::before{
    content: '';
    position: fixed;
    width: 50px;
    height: 50px;
    /*border: 2px solid #d4af37;*/
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite;
}

/* Pierwsza fala */
#callBtn::before{
    animation-delay: 0s;
}

/* Styl dla animacji */
@keyframes ripple{
    0%{
        transform: scale(0.8);
        opacity: 0.6;
    }
    100%{
        transform: scale(2.5);
        opacity: 0;
    }
}








.toast-container{
    z-index: 5245;
}








/* width */
::-webkit-scrollbar{
    width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track{
    background: #f1f1f1; 
}
   
/* Handle */
::-webkit-scrollbar-thumb{
    background: #155345; 
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
    background: #155345; 
}