.navbar {
    font-family: "Roboto", sans-serif;    
    font-size: .875rem!important;
}

.animated-icon1{
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.animated-icon1 span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.animated-icon1 span {
    background: #ffffff;
}

.animated-icon1 span:nth-child(1) {
    top: 0px;
}

.animated-icon1 span:nth-child(2) {
    top: 10px;
}

.animated-icon1 span:nth-child(3) {
    top: 18px;
}

.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.navbar-toggler {
    padding: 8px 10px; 
    border: none !important; 
    background-color: transparent !important; 
    outline: none !important;
    box-shadow: none !important; 
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.pulseOn {
    background-color: rgb(34, 197, 94);
}
.pulseOff {
    background-color: rgb(220, 38, 38);
}
.pulseOn:before, 
.pulseOn:after {
    background-color: rgb(34, 197, 94);
}
.pulseOff:before, 
.pulseOff:after {
    background-color: rgb(220, 38, 38);
}
.pulse:before, 
.pulse:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: pulse 3s cubic-bezier(.4,0,.6,1) infinite;
}

.pulse:after {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}
#pulse_text {
    color: white;
}
#pulse_text span {
    font-weight: 800!important;
}
.navbar-brand {
    font-weight: 400;
    font-size: .775rem;
}
.nav-link {
    margin: 15px;
    font-weight: 500!important;
}
.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.sklep_btn {
    color: white!important;
    padding: 15px 35px !important;
    border-radius: 8px;
    background: linear-gradient(270deg, #eb5e6c 0, #8c22d0)!important;
}
@media (max-width: 991px) {
    .navbar-nav { 
        align-items: start;
    }

  }
  @media (max-width: 991px) {
    .nav-link {
        margin-left: 0;
        margin-top: 7px;
        margin-bottom: 7px;
        font-weight: 500!important;
    }

  }
