* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "akzidenz-grotesk-condensed",Helvetica,sans-serif;
}

img {
    max-width: 12rem;
    max-height: 10rem;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
}

html {
    position: fixed;
    height: 100%;
    width: 100%;
    margin: 0;
    min-width: 100%;
    padding: 0px;
    overflow: hidden;
    scroll-behavior: smooth;
    background-color: whitesmoke;
    margin-bottom: 2vh;
}

form {
    min-height: 90%;
    margin-bottom: 1vh;
}

form-wrap {
    height: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    margin: 0;
}

footer {
    height: auto;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

header {
    background-color: whitesmoke; /*#00519d;*/
    /*background-image: url(../img/membership.png);*/
    color: #00529b;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    margin: 0 0 1vh 0;*/
    width: 100%;
    min-width: 100%;
/*    box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
    border-radius: 5px;*/
}

.header-sep-blue {
    background-color: #00529b;
    width: 100%;
    height: 3vh;
}

.header-sep-green {
    background-color: #70af16;
    width: 100%;
    height: 3vh;
    margin: 0 0 1vh 0;
    box-shadow: 0 0px 10px 1px rgba(0,0,0,0.5);

}

body {
    margin: 0;
    height: 100%;
    width: 100%;
}

.banner {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.banner img {
    max-height: 80px;
}

.banner-text {
    margin-left: 20px;
    justify-self: flex-start;
    cursor: pointer;
}

.banner-text h1 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.banner-text p {
    font-size: 18px;
    margin: 0;
}

.toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-button {
    width: 50px;
    height: 50px;
    background-image: url("../img/search-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
}

.search-bar {
    width: 0;
    height: 50px;
    border: none;
    padding: 0 10px;
    transition: width 0.3s ease;
}

.search-bar:focus {
    width: 200px;
}

.cart-button {
    display: flex;
    background-color: #00529b;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    margin-left: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.1s;
}

.cart-button:hover, .btn:hover {
    background-color: #70af16;
    transition: 0.1s;
}

.btn {
    background-color: #00529b;
    border: 0;
}

.container {
    display: flex;
    flex-direction: row;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0 0 0 0;
}

.store-container {
    display: flex;
    flex-direction: row;
    margin: auto;
    width: 100%;
    height: auto;
/*    min-height: 90%;
    max-width: 100%;
    max-height: 100%;*/
}

.sidebar {
    width: 18%;
    min-height: 75vh;
    max-height: 75vh;
    margin: 1vh 1vw 12vh 1vw;
    padding: 1.5vh;
    background-color: whitesmoke;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    color: #00519d;
/*    align-content: center;*/
    justify-content: center;
    border-radius: 5px;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar h3 {
    margin-top: 20px;
}

.sidebar label {
    display: block;
    margin: 10px 0;
}

.sidebar-categories {
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.sidebar-categories div {
    cursor: pointer;
    padding-bottom: 1.5vh;
}

.sidebar-categories label:hover {
    color: #70af16;
}

.sidebar-categories li:hover {
    color: #70af16;
}

.sidebar-categories label {
    cursor: pointer;
}

.main_container {
width: 100%;
background-color: white;
padding-left: 20px;
/*margin: 0vh;*/
height: auto;
margin-bottom: 10vh;
overflow: hidden;
}

.main {
    width: 100%;
    max-height: 75vh;
   /* min-height: fit-content;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: auto;
}

.main_header {
    width: 75%;
    padding: 5px 0 0 0;
}


.cart-added {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card-header {
    width: 100%;
}

.addCart_item {
    display: flex;
    flex-direction: column;
    width: 35%;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    margin: 0.5vw;
    background-color: rgba(201, 169, 166,0.2);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    border-radius: 5px;
}

.item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 23%;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    margin: 0.5vw;
    background-color: rgba(201, 169, 166,0.2);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    border-radius: 5px;
    min-width: 300px;
    min-height: 335px;
}

.item img, .addCart_item img {
    align-content: center;
    max-width: 12rem;
    max-height: 10rem;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    background-color: white;
}

.item img:hover, .addCart_item img:hover, .item-images img:hover {
    cursor: zoom-in;
}


.item h3, .addCart_item h3 {
    font-size: 1vw;
    margin: 10px 0;
}

.item p, .addCart_item p {
    display: flex;
    font-size: 18px;
    margin: 0 0 10px 0;
    justify-content: center;
    align-items: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}


.qty_text {
    width: 25%;
    margin: 0 0 0 5px;
    text-align: center;
}

.size {
    margin-left: 0.5vw;
}

.item select {
    width: 30%;
    margin: 0 0 0 5px;
    padding: 0vh;
    text-align: center;
}

.item button {
    background-color: #2196F3;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.quantity {
    padding-left: 0.5vw;
}

.cart-item-count {
    display: flex;
    color: black;
    font-weight: bold;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

.info_icon {
/*    display: flex;
    width: 100%;
    justify-content: right;*/
    position: absolute;
    top: 5px;
    right: 10px;
}

.info_icon i:hover {
    cursor: pointer;
}

#fullpage {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*background-size: contain;*/
    transform: scale(1.5);
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: zoom-out;
}

