body {
    margin: 0;
    padding: 0;
}

.nav-wrap {
    top: 0;
    position: sticky;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 40px 57px -26px rgb(0 0 0 / 5%);
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-right: 15px;
    align-content: flex-end;
    margin-left: auto;
}

.nav {
    float: right;
    overflow: hidden;
    font-weight: 500;
    font-family: var(--lt-font-primair);
    height: 41px;
    user-select: none;
}

.cart {
    margin-top: 20px;
}

.cart {
    padding-top: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    font-weight: 600;
}

.cart:active {
    opacity: 0.5;
}

.cart-icon {
    width: 28px;
}

.cart-quant {
    position: absolute;
    margin-top: -12px;

    background-image: linear-gradient(#3376f6, #33a4f6);
    color: white;

    padding-right: 8px;
    padding-left: 8px;

    padding-top: 5px;
    padding-bottom: 4px;

    margin-left: 18px;
    border-radius: 12px;

    border: 3px solid #fff;

    font-size: 12px;
}

.header-logo {
    padding-top: 9px;
    height: 32px;
    user-select: none;
}

.respo-header {
    margin: auto;
    max-width: 1200px;
    height: auto;
    padding-right: 25px;
    padding-left: 25px;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
}


@keyframes pulse-2 {
    0% {
        transform: scale(1);
        -moz-box-shadow: 0 0 0 0 rgba(51, 118, 246, 0.5);
        box-shadow: 0 0 0 0 rgba(51, 118, 246, 0.5);
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        -moz-box-shadow: 0 0 0 200px rgba(51, 118, 246, 0);
        box-shadow: 0 0 0 200px rgba(51, 118, 246, 0);
        transform: scale(1);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(51, 118, 246, 0);
        box-shadow: 0 0 0 0 rgba(51, 118, 246, 0);
        transform: scale(1);
    }
}

.pulse-animation {
    -webkit-animation-name: pulse-2;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
}



.avatar {
  height: 40px;
  width: 40px;
  border-radius: 50px;
  top: 5px;
  position: relative;

  display: flex;
  float: right;
}

.logo-wrap{
    display: flex;
    justify-content: start;
}