.z-0 {
    z-index: 0 !important
}

.z-1 {
    z-index: 1 !important
}

.z-2 {
    z-index: 2 !important
}

/*Light and dark stroke icon*/
.light-svg-icon {
    stroke: #ffffff;
}

.light-svg-icon:hover {
    fill: #ffffff;
}

.dark-svg-icon {
    stroke: #050506;
    stroke-opacity: 0.75;
    stroke-width: 1.5;
}

.fill-svg-icon {
    fill: #ffffff;
}

.liked-icon {
    color: #05050633;
}

.unliked-icon {
    color: #FF3332;
}

/*Brand button*/
.brand-button {
    gap: 7px;
    background: rgba(255, 51, 50, 1);
    color: white;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.brand-button.muted {
    background: rgba(5, 5, 6, 0.1);
    color: rgba(5, 5, 6, 0.75);
    font-weight: 400;
}

.brand-button:hover,
.brand-button.muted:hover {
    text-decoration: none !important;
    color: white;
    background: rgb(230, 38, 37);
}

.brand-button.muted:hover .dark-svg-icon {
    stroke: #ffffff;
    fill: #ffffff;
}

.text-brand {
    color: rgba(255, 51, 50, 1) !important;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* adds some margin below the link sets  */
.navbar .dropdown-menu-lg div[class*="col"] {
    margin-bottom: 1rem;
}

.navbar .dropdown-menu-lg {
    border: none;
    background-color: #FFF9F9 !important;
}

/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 992px) {

    /* remove the padding from the navbar so the dropdown hover state is not broken */
    .navbar {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
    .navbar .nav-item {
        padding: .5rem .5rem;
        margin: 0 .25rem;
    }

    /* makes the dropdown full width  */
    .navbar .dropdown {
        position: static;
    }

    .navbar .dropdown-menu-lg {
        width: 100%;
        left: 0;
        right: 0;
        /*  height of nav-item  */
        top: 45px;

        display: block;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.3s linear;

    }

    .navbar .dropdown-menu-lg {
        border: 1px solid rgba(0, 0, 0, .15);
        background-color: #fff;
    }

}
