.toolbar {
    position: sticky;
    top: 0;
    background-color: #1EBEBD;
    display: grid;
    grid-auto-flow: column;
    width: 100%;
    justify-items: center;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    font-family: 'Satisfy', cursive;
    align-items: center;
    z-index: 999;
    margin-bottom: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07),
        0 2px 4px rgba(0, 0, 0, 0.07),
        0 4px 8px rgba(0, 0, 0, 0.07),
        0 8px 16px rgba(0, 0, 0, 0.07),
        0 16px 32px rgba(0, 0, 0, 0.07),
        0 32px 64px rgba(0, 0, 0, 0.07);
}
.location {
    min-width: 56px;
    color: teal;
    font-family: 'Mitr';
}
.search-field {
    min-width:200px;
    color: #E4178B;
    background: transparent;
    text-align: center;
    font-family: 'Mitr';
    font-weight: 300;
    font-feature-settings: 'tnum';
    border-color: white;
    //border: none;
}
.badge {
    min-width: 16px;
    background-color: #E4178B;
    color: antiquewhite;
    font-size: .5em;
    font-family: 'Mitr';
    font-weight: 300;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-color: antiquewhite;
    border-style: solid;
    border-width: .2px;
    border-radius: 50%;
    transform: translate(-75%,-25%);
}
.badge-ani {
    animation-name: grow;
    animation-duration: .3s;
    transform: translate(-75%, -25%);
}

.icons-wrapper {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
}

.search{
    //line-height: 50px;
    //align-items: start;
}

.cart-wrapper {
    max-width: 28px;
    max-height: 28px;
    white-space: nowrap;
    display: flex;
}
.cart {
    width: 28px;
    height: 28px;
}

.aisle-wrapper {
    /* height: 90vh;
    display: grid;
    align-content: center; */
}
.depo-1 {
    margin: 0 auto;
    width: 90%;
    height: 75px;
    //display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 75px;
    background: rgba(102, 80, 80, 0.14);
    border-radius: 25px;
    //z-index: -1;
}
.section-wrapper {
    display: grid;
    width: stretch;
    min-height: 60vh;
    grid-template-columns: repeat(2, 1fr);
    grid-row: auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    margin-right: 2px;
    margin-left: -2px;
}
.depo-2 {
    width: max-content;
    writing-mode: tb-rl;
    text-orientation: upright;
    text-align: center;
    vertical-align: middle;
    color: #5560AF;
    padding: 10px;
    cursor: pointer;
    background: linear-gradient(90deg, #5560AF 50%, transparent 50%), linear-gradient(90deg, #5560AF 50%, transparent 50%), linear-gradient(0deg, #5560AF 50%, transparent 50%), linear-gradient(0deg, #5560AF 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
    animation: border-dance 30s infinite linear;
}
.depo-3 {
    width: max-content;
    writing-mode: tb-rl;
    text-orientation: upright;
    text-align: center;
    vertical-align: middle;
    //color: #ccff00;
    color: #E5FF67;
    //color: #FF7B19;
    padding: 10px;
    //border-style: dashed;
    cursor: pointer;
    background: linear-gradient(90deg, #E5FF67 50%, transparent 50%), linear-gradient(90deg, #E5FF67 50%, transparent 50%), linear-gradient(0deg, #E5FF67 50%, transparent 50%), linear-gradient(0deg, #E5FF67 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
    animation: border-dance-opp 30s infinite linear;
}
.depo-4 {
    margin: 0 auto;
    width: 90%;
    height: 75px;
    //display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 75px;
    background: rgba(102, 80, 80, 0.14);
    border-radius: 25px;
    //z-index: -1;
}
.pet-corner {
    z-index:99;
}

.pushable:focus:not(:focus-visible) {
    //outline: none;
}
.pushable {
    padding: 0;
    cursor: pointer;
}
.front {
    margin: 0 auto;
    //width: 99%;
    line-height: 75px;
    display: block;
    padding: 0px 63px;
    border-radius: 25px;
    font-size: 1.5rem;
    background: black;
    color: #E4178B;
    transform: translateY(-6px);
}
.pushable:active .front {
    transform: translateY(4px);
}

@keyframes border-dance {
    0% {
        background-position: 0 0, 100% 100%, 0 100%, 100% 0;
    }

    100% {
        background-position: 100% 0, 0 100%, 0 0, 100% 100%;
    }
}
@keyframes border-dance-opp {
    0% {
        background-position: 100% 0, 0 100%, 0 0, 100% 100%;
    }

    100% {
        background-position: 0 0, 100% 100%, 0 100%, 100% 0;
    }
}
@-webkit-keyframes grow {
    from {
        -webkit-transform: scale(1);
    }

    to {
        -webkit-transform: scale(3.333);
    }
}
@keyframes grow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(3.333);
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes slide-from-bottom {
    from {
        top: 88%;
    }
    to {
        top: 6%;
    }
}
@keyframes slide-from-top {
    from {
        top: 6%;
    }
    to {
        top: 88%;
    }
}

.toggle-drawer {
    display: none;
    position: absoulte;
    top: 88%;
    animation-name: slide-from-top, fadeOut;
    animation-duration: .8s, .8s;
}
.hide-display {
    display: none;
}
.flex-layout {
    display: flex !important;
    flex-direction: column;
    height: 94%;
}
.slide-top {
    position: absolute;
    min-height: 600px;
    top: 6%;
    animation-name: slide-from-bottom, fadeIn;
    animation-duration: .8s, .8s;
}
.slide-down {
    position: absolute;
    min-height: 400px;
    top: 8%;
    animation-name: slide-from-top, fadeOut;
    animation-duration: .8s, .8s;
}

.search-results {
    position: abosulte;
    width: 100%;
    min-width: 50vw;
    min-height: 50vh;
    left: 0;
    background-color: white;
    text-align: left;
    font-family: 'Mitr';
    z-index: 1000 !important;
    margin-top: 45px;
}

.stock-header {
    width: 100%;
    position: absolute;
    min-height: 75px;
    line-height: 75px;
    text-align: center;
    margin: 0 auto;
    font-size: 1.5em;
    background-color: #1EBEBD;
    //margin-bottom: -15px;
}
.stock-drawer {
    width: 100vw;
    min-height: 94vh;
    background-color: #1EBEBD;
    z-index: 200;
    margin-top:75px;
    margin-bottom: -75px;
}

.scroll-container {
    min-height: 500px;
    max-height: 500px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    display: grid;
    font-size: .5em;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 60px;
    justify-items: center;
}
.stock-filler {
    //height:stretch;
    flex: 1;
}
.item-flipper {
    scroll-snap-align: start;
}
.item-wrapper {
    //min-width: 75px;
    min-height:100px;
    //width:100%;
    //height:100%;
    margin: 0 auto;
    display: flex;
    //flex-wrap: wrap;
    flex-direction: column;
    background-color: antiquewhite;
    padding-right: -6px;
    padding-left: -6px;
    align-items: center;
    border-radius: 10%;
}
.item-name {
    display: grid;
    height: 28px;
    line-height: 14px;
    align-content: center;
    text-align: center;
}
.item-price {
    line-height: 25px;
    color: black;
    margin-top: -6px;
    margin-bottom: -6px;
    font-size: .6em;
}
.pimg {
    max-height: 60px !important;
    max-width: 50px;
}
.snug {
    transform: translate(0,-10px);
    margin-bottom: -10px;
    background-color: white;
    border-radius: 50%;
}
.qty-wrapper {
    flex: 1;
    align-items: center;
    display: flex;
}
.qty-header {
    text-align: center;
}
.qty-content {
    display: flex;
}
.qty-input {
    font-family: 'Mitr';
    text-align: center;
    width: 22px;
    height: 22px;
}
.item-cta {
    //height: 33px;
    color: #39FF14;
    font-weight: 300;
    //background-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 15%;
    border-color: #39FF14;
    margin-bottom: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07),
            0 2px 4px rgba(0, 0, 0, 0.07),
            0 4px 8px rgba(0, 0, 0, 0.07),
            0 8px 16px rgba(0, 0, 0, 0.07),
            0 16px 32px rgba(0, 0, 0, 0.07),
            0 32px 64px rgba(0, 0, 0, 0.07);
}
.stock-action {
    display: flex;
    justify-content: center;
}
.pet-corner {
    position: absolute;
    bottom: 0;
}

.cart-header {
    width: 100%;
    position: absolute;
    min-height: 75px;
    line-height: 75px;
    //text-align: center;
    //margin: 0 auto;
    //font-size: 1.5em;
    color: antiquewhite;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    background-color: #1EBEBD;
}
.cart-btn {
    line-height: 30px;
    height: 30px;
    //position: absolute;
    bottom: 0;
    padding: 5px;
    border-width: 2px;
    border-style: outset;
    border-radius: 7%;
    border-color:antiquewhite;
}
.cart-drawer {
    width: 100vw;
    min-height: 94vh;
    background-color: #1EBEBD;
    z-index: 200;
    margin-top: 85px;
    margin-bottom: -85px;
}
.cart-scroll-wrapper {
    display: grid;
    justify-content: center;
    width: 100%;
}
.cart-scroll {
    display: grid;
    min-height: 450px;
    max-height: 450px;
    align-content: baseline;
    justify-content: center;
    row-gap: 5px;
    font-size: .75em;
    overflow-y: scroll;
}
.cart-item {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr 2fr;
    //width: 100vw;
    height: 50px;
    font-weight: 300;
    line-height: 50px;
    background-color: lightblue;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    touch-action: pan-x pan-y;
}
.cart-item-img {
    //max-width: 50px !important;
    max-height: 60px !important;
}
.cart-item-name {
    display: grid;
    height: 50px;
    line-height: 15px;
    align-content: center;
}
.cart-item-input-wrapper {
    //min-width: 25vw;
}
.cart-item-input {
    height: 25px;
    color:#E4178B;
    background: transparent;
    text-align: end;
    font-family: 'Mitr';
    font-weight: 300;
    font-feature-settings: 'tnum';
    border: none;
}
.cart-item-sum-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    //text-align: end;
}
.cart-item-sum {
    text-align: end;
    min-width: 60px;
    margin-left: -12px;
    margin-right: 12px;
}

.cart-item-slider {
    min-width: 100vw;
    scroll-snap-align: start;
}
.cart-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.cart-item::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.cart-action {
    display: flex;
    justify-content: center;
    font-size: 1.1em;
}

.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: .5em;
    color: teal;
    text-align: center;
    //z-index: -99
}

input {
    max-width:30px;
    font-size: 16px;
}

@media (min-width: 420px){
    .search-results {
        max-width: 90vw;
    }
    .cart-scroll {
        max-width: 90vw;
    }
}