.top-nav {
    width: 100%;
    height: 80px;
    background-color: var(--main-light-color);
    position: relative;
    top: 0;
    z-index: 100;
}

.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner-nav {
    height: 100%;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.drop-down-wrapper img {
    cursor: pointer;
    width: 32px;
    height: 32px;
}

.logo-wrapper, .log-btn-wrapper {
    width: 200px;
}

.logo-wrapper {
    display: flex;
}

.logo-wrapper img {
    align-self: center;
    height: 50px;
}

.nav-links-wrapper {
    
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    gap: 24px;
}

.drop-down {
    position: relative;
    display: none;
}

.drop-down-wrapper:hover .drop-down {
    display: block;
}

.drop-down .nav-links {
    flex-direction: column;
    position: absolute;
    background-color: var(--color-complimentary);
    padding: 20px;
    right: 0;
}

.log-btn-wrapper button {
    height: 52px;
    width: 108px;
    font-size: 14px;
    font-weight: bold;
    float: right;
    transition: 0.4s;
    border: none;
    background-color: var(--color-complimentary);
    box-shadow: 0 15px 15px 8px rgba(12, 76, 53, .1);
}

.log-btn-wrapper button:hover {
    background-color: #fff;
}

/* ONBOARDING TOP NAV */

.nav-tab-divider {
    width: 16px;
    height: 4px;
    background-color: black;
}

.checkout-progress > .active {
    color: var(--color-complimentary);
    opacity: 1;
}

.checkout-progress .active ~ li {
    opacity: 0.8;
}

@media screen and (min-width: 800px) {

    #app {
        margin: 30px;
    }

    .mobile-nav {
        display: none;
    }

    .inner-nav {
        display: flex;
    }
}

@media screen and (min-width: 1060px) {

    

}