/* Nav */

nav {
    background: transparent;
    padding: 0 0.5rem;
    position: sticky;
    top: 0;
    background-color: var(--dark-blue);
    z-index: 1000;
}

.gpst-nav_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding-left: 0;
}

.gpst-nav_menu,
.gpst-nav_submenu {
    list-style-type: none;
}
.gpst-nav_menu ul.gpst-nav_menus {
    height: auto;
    width: 230px;
    background: var(--dark-blue);
    position: absolute;
    z-index: 99;
    display: none;
    border: 0;
    padding: 0;
    text-align: left;
}

.gpst-nav_menu ul.gpst-nav_menus li {
    display: block;
    width: 100%;
    font: 13px Arial;
    text-transform: none;
    padding-top: 5px;
}

.gpst-nav_menu li:hover ul.gpst-nav_menus {
    display: block;
}
.gpst-nav_menu .prett {
    padding: 0 27px 0 8px;
    color: #fff;
}

.gpst-nav_menu .prett::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 6px 5px;
    border-style: solid;
    border-color: #eee transparent transparent transparent;
    position: absolute;
    top: 8px;
    right: 9px
}

.gpst-nav_menu .prett.open::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 6px 5px;
    border-style: solid;
    border-color: transparent transparent #eee transparent;
    position: absolute;
    top: 9px;
    right: 9px
}
.gpst-nav_menu li#articles{
    display: none;
}

.gpst-nav_menu ul.gpst-nav_menus a:hover {
    color: white;
    text-decoration: underline;
}
    
.gpst-nav_logo {
    font-size: 20px;
    /*padding: 7.5px 10px 7.5px 0;*/
}

.gpst-nav_item {
    padding: 10px 20px;
}

.gpst-nav_item.button {
    padding: 9px 5px;
}

/* Mobile menu */

.gpst-nav_menu li a {
    display: block;
    padding: 5px;
    color: #fff;
    text-decoration: none;
}

.gpst-nav_menu li.subitem a {
    padding: 15px;
}

.gpst-nav_logo-img {
    max-width: 210px;
}
.gpst-nav_btn {
    display: inline-block;
    color: var(--sky-blue);
    background-color: transparent;
    font-weight: 500;
    border: 2px solid var(--sky-blue);
    border-radius: 5px;
    padding: 0.75rem;
    transition: 0.25s;
    cursor: pointer;
}
.gpst-nav_menu .btn {
    color: var(--off-white);
    border-color: var(--off-white);
}
.gpst-nav_btn:hover {
    color: var(--white);
    background-color: var(--sky-blue);
    cursor: pointer;
}
.gpst-nav_toggle {
    order: 1;
    font-size: 20px;
}

.gpst-nav_item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
}
.gpst-nav_active .gpst-nav_item {
    display: block;
}
/* #cartBadge, #cartBadge-mobile {
    font-size: .75em;
    background: #ff0000;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
} */
/* .gpst-nav_badge {
    padding-left: 9px;
    padding-right: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
} */

/* Tablet menu */
@media screen and (min-width: 700px) {
    .gpst-nav_menu {
    justify-content: center;
    }

    .gpst-nav_logo {
    flex: 1;
    }

    .gpst-nav_item.button {
    width: auto;
    order: 1;
    display: block;
    }

    .gpst-nav_toggle {
    flex: 1;
    text-align: right;
    order: 2;
    }
}

/* Desktop menu */
@media screen and (min-width: 1055px) {
    .gpst-nav_hero {
    margin-top: -80px;
    }

    .gpst-nav_menu {
    flex-wrap: nowrap;
    background: none;
    }

    .gpst-nav_logo {
    order: 0;
    }

    .gpst-nav_item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
    padding: 0 20px;
    }

    .gpst-nav_toggle {
    display: none;
    }
    .gpst-nav_cart-main {
    width: 350px;
    }
}

/* cart preview begins here */
.gpst-nav_cart-container {
    line-height: 1.2;
}
.gpst-nav_cart{
    color: var(--main-fgc);
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}
.gpst-nav_badge {
    font-size: .75em;
    background: #00aeff;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
    border-radius: 9px;
    height: 15px;
}
.gpst-nav_cart-preview {
    transform: scale(1);
    overflow: hidden;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.25);
    transition: background-color .4s, transform 0s;
    text-align: left;
}
.gpst-nav_cart-preview:not(.cart-active) {
    background-color: transparent;
    transform: scale(0);
    transition: background-color .4s,transform 0s .4s;
}
.gpst-nav_cart-preview:not(.cart-show) .cart-main {
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
}
.gpst-nav_cart-main {
    position: fixed;
    left: auto;
    right: 0;
    transform: translateX(0);
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 14px;
    min-height: 200px;
    max-width: 100%;
    transition: .3s;
    padding: 20px 30px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-style: none;
    border-color: initial;
    border-radius: 0;
    margin-top: 0;
}
.gpst-nav_cart-close {
    width: var(--cart-close-icon-size,25px);
    height: var(--cart-close-icon-size,25px);
    position: relative;
    align-self: flex-end;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-family: eicons;
    font-size: 20px;
    font-display: swap;
    line-height: 1;
    transition: .3s;
}
.gpst-nav_cart-close:hover {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 7px;
}
.gpst-nav_cart-remove {
    font-size: 12px;
    width: 20px;
    height: 20px;
    position: relative;
    align-self: flex-end;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-family: eicons;
    font-display: swap;
    line-height: 1;
    transition: .3s;
}
.gpst-nav_cart-remove:hover {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}
.gpst-nav_cart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.gpst-nav_cart-price-container {
    display: flex;
    justify-content: space-between;
}
.gpst-nav_cart-row{
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #dbd9d9;
}
.gpst-nav_cart-subtotal {
    font-size: 25px;
    justify-content: center;
    padding: 10px;
}
.gpst-nav_cart-subtotal-label {
    padding-right: 10px;
}
.gpst-nav_cart-buttons-container {
    justify-content: space-evenly;
}
.gpst-nav_cart-thumbnail {
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 50px;
}
.gpst-nav_cart-section-row {
    display: flex;    
}
.gpst-nav_cart-one-third {
    width: 33.33%;
}
.gpst-nav_cart-four-sixth {
    width: 66.666%;
}
.gpst-nav_cart-image-container {
    display: flex;
    align-items: center;
}
.gpst-nav_cart-h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
.gpst-nav_cart-blue-button {
    background-color: var(--sky-blue);
    color: var(--white);
    border: 2px solid var(--sky-blue);
    border-radius: 5px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.75rem;
    transition: 0.25s;
}
.gpst-nav_cart-blue-button:hover{
    color: var(--sky-blue);
    background-color: transparent;
    cursor: pointer;
}
.gpst-nav_padded_top_bottom_diet_extra_small {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.gpst-nav_nav-links li a.cart-blue-button {
    color: #ffffff;
    border-radius: 28px;
    font-size: 14px;
    /* font-weight: 600; */
}
.gpst-nav_nav-links li a.cart-blue-button:hover {
    background-color:#00aeff;
    color:white;
    border:1px solid #00aeff;
}
/* [FULL SCREEN SPINNER] */
.gpst-nav_spinner-front {
    z-index: 999;
    text-align: center;
    height: 100%;
    width: 100%;
    display: none;
    align-items:center;
    flex-direction:column;
    transition: all 1s;
    visibility: hidden;
    opacity: 0;
}
.gpst-nav_spinner-front img{
    display: block;
}
.gpst-nav_spinner-back.load-show, .gpst-nav_spinner-front.load-show {
    visibility: visible;
    opacity: 1;
    display: flex;
}

.gpst-nav_mobile-flex-container {
    display: none;
}
/* cart related media rules */
@media screen and (max-width: 1055px) {
    .gpst-nav_mobile-flex-container {
    display: flex;
    align-items: center;
    }
    .gpst-nav_cart-container {
    display: none;
    }
    .gpst-nav_menu .prett{
    display:none;
    }
    .gpst-nav_active li#articles{
    display: block;
    }
}

/* cart preview ends here */