/*
nav {
    width:70vw;
}
*/
#left {
    width: 70vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    transition: transform 0.3s;
    overflow-y: scroll;
    display:block;
    scrollbar-width: none;
}
.sidebar {
    width: 30vw;
    background: #ffffff;
    border-left: 1px solid #F7AD45;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    transition: transform 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    display:block;
    scrollbar-width: none;
}
/*
#main {
    width: 70vw;
}
#options {
    width: 99%;
}
*/
#togBut {
    display: none;
}
.sidebar-header {
    /*border-bottom: 0.8px solid #5F8D37;*/
    height: 104px;
}
@media (max-width: 768px) {
    .sidebar {
        width:100%;
        /*display: none;*/
    }
    .sidebar.collapsed {
        transform: translateX(100%);
    }
    #togBut{
        border: 1px solid #d6d6d6;
        z-index: 10;
        transition: right 0.3s;
        height:40px !important;
        width: 40px;
    }
    .toggle-btn {
        right: 32px;
        display:inline-block !important;
        position: fixed;
        top:32px;
    }
    #options{
        width: 100vw;
    }
    #left {
        width:100vw;
    }
    #main {
        width: 100vw;
    }
    nav{
        width:100vw;
    }
    #checkOut {
        width: 100vw !important;
    }
    #numItems{
        display: none;
    }
}
.check{
    text-decoration: none;
}
#innerCheckOut {
    display:inline;
    /*background-color: orange;*/
}
#checkOut {
    position:sticky;
    bottom: 0;
    height: 75px;
    width: 30vw;
}