* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #eee;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', regular;
}

.content {
    min-height: calc(100vh - 130px - 90px);
}

p {
    opacity: 0.8;
}

/* Anchor Definitions - Bright and Dark and Nothing */

.abright {
    text-decoration: none;
    color: #ddd;
}

.abright:hover {
    text-decoration: none;
    color: #aaa;
}

.abright:active {
    text-decoration: none;
    color: #888;
}

.abright:visited {
    text-decoration: none;
    color: #ddd;
}

.an,
an:hover,
an:active,
an:visited {
    text-decoration: none;
    color: #000;
}

/* --- */
/* Header Style and Animation */

header {
    width: 100%;
    position: fixed;
    background-color: white;
    z-index: 1 !important;
    -webkit-transform: translate3d(0, 0, 0);
    margin: 0;
    padding: 0;
    text-align: center;
    height: auto;
}

header #navcontent {
    position: relative;
    margin: 0;
    padding: 0;
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    border-bottom: 1px solid #bbb;
    height: auto;
    width: auto;
    box-sizing: border-box;
}

header #iconwrapper {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    margin-bottom: 5px;
    height: auto;
    width: auto;
}

header #toggle {
    position: relative;
    display: inline-block;
    width: 0;
    margin-top: 16px;
    left: -24px;
    float: left;
    display: none;
}

header #instalogo {
    position: relative;
    display: inline-block;
    width: 0;
    margin-top: 16px;
    float: right;
}

header #navlogo {
    position: relative;
    display: inline-block;
    width: 200px;
    height: auto;
}

header ul {
    z-index: 1 !important;
    -webkit-transform: translate3d(0, 0, 0);
    margin: 0;
    padding: 0;
    text-align: center;
    height: auto;
    width: auto;
    list-style-type: none;
    display: inline-block;
}

header ul li {
    display: inline-block;
    height: auto;
    width: auto;
    float: left;
    margin-left: 10px;
}

header ul li:first-child {
    margin-left: 0;
}

header ul li a {
    font-weight: 700;
    display: block;
    text-align: center;
    position: relative;
    text-decoration: none;
    text-decoration-color: black;
    padding: 15px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    color: black;
    height: auto;
    width: auto;
}

header ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.1s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

header ul li a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.active_page:before {
    visibility: visible;
    -webkit-transform: scaleX(0.8);
    transform: scaleX(0.8);
}

header ul li a:hover {
    color: #000;
    text-decoration: none;
}

@media (max-width: 850px) {
    header #toggle {
        display: inline-block;
    }

    header #navcontent {
        margin: 0;
        width: 100%;
    }

    header ul {
        width: 100%;
        display: none;
        opacity: 0;
        z-index: 1 !important;
        -webkit-transform: translate3d(0, 0, 0);
    }

    header ul li {
        margin: 0;
        width: 100%;
    }

    .active {
        display: block;
        opacity: 1;
        z-index: 1 !important;
        -webkit-transform: translate3d(0, 0, 0);
    }
}

/* --- */

.wrapper {
    min-height: calc(100vh - 130px - 90px);
    flex: 1 0 auto;
    margin: 0 20% 0 20%;
}

@media only screen and (max-width: 850px) {
    .wrapper {
        min-height: calc(100vh - 76px - 90px);
        flex: 1 0 auto;
        margin: 0%;
    }
}

.topspace {
    margin-top: 135px;
}

@media (max-width: 850px) {
    .topspace {
        margin-top: 75px;
    }
}

/* --- */
/* Main Display IMG+text */

.maindisplay {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    height: 40vh;
    overflow: hidden;
    background-image: url(source/IMG_8952.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.maindisplay .displaytxt {
    color: white;
    width: auto;
    font-size: 18pt;
    font-weight: 700;
    margin-left: 6%;
    margin-top: 8%;
}

.maindisplay .displaytxt h1 {

    display: block;
    text-align: left;
    font-size: 2em;
    font-weight: 700;
    margin-left: 6%;
    margin-top: 8%;
}

/* --- */
/* Item Show Container */

.itemshow {
    display: block;
    background-color: #fff;
    margin: 0px 0px 15px 0px;
}

.itemcontainer {
    justify-content: space-evenly;
    display: flex;
    flex-flow: row wrap;
    flex-wrap: wrap;
}

h1 {
    display: block;
    width: 100%;
    font-size: 1.8em;
    text-align: center;
    height: auto;
    margin-top: 0;
    padding-top: 0.2em;
    margin-bottom: 0em;
}

.item {
    text-align: left;
    background-color: #fff;
    float: left;
    margin: 10px;
    display: inline-block;
    height: auto;
    max-width: 30vh;
    width: auto;
}

.item img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.item p {
    margin-top: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.itemtitle {
    font-weight: 600;
}

/* --- */
/* Product Page */

.productcontainer {
    background-color: #fff;
    padding: 20px 20px 20px 20px;
    margin: 5px 0 5px 0;
}

#carouselExampleControls {
    z-index: 0;
}

.carousel-indicators li {
    background-color: #000;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23222' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23222' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.productcontainer .tag {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 10pt;
}

.productcontainer h1 {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 24pt;
    font-weight: 900;
    text-align: left;
}

.productcontainer h2 {
    font-size: 16pt;
    font-weight: 200;
}

.productcontainer .sizeselect {
    margin-top: 40px;
    width: 80px;
}

.productcontainer .btn {
    width: 100%;
    display: block;
    margin-top: 90px;
}

@media (max-width: 767px) {
    .productcontainer button {
        width: 100%;
        display: block;
        margin-top: 15px;
    }
}

.seperator {
    height: 1.5px;
    background-color: #000;
    opacity: 0.2;
    width: 100%;
    margin: 20px 0 20px 0;
}

.subcontent ul {
    margin-left: 20px;
    opacity: 0.7;
}

/* --- */
/* Container */

.infcontainer {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: auto;
    background-color: #fff;
    margin: 0px 0px 15px 0px;
    padding: 10px 5% 0px 5%;
}

@media (max-width: 850px) {
    .infcontainer {
        padding: 10px 5px 0px 5px;
    }


}

@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

.row {
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    height: auto;
    width: auto;
    margin-bottom: 10px;
}

.white {
    background-color: #fff;
}

.grey {
    background-color: #ddd;
}

.image {
    display: block;
    object-fit: cover;
    width: auto;
    height: auto;
    flex: 1 0 0;
    margin: 0px;
    padding: 0px;
}

.image img {
    display: block;
    max-height: 250px;
    object-fit: cover;
    width: 100%;
}

.txt {
    flex: 1 0 0;
    margin: auto 15px auto 15px;
    display: block;
    height: auto;
}

.txt p {
    margin: 0px;
    text-align: justify;
    text-align-last: left;
    line-height: 1.7em;
}

/* --- */
/* Checkout */

#checkout {
    display: flex;
    max-width: 40%;
    height: 100%;
    align-self: center;
    justify-content: center;
    align-items: center;
}

#checkout p {
    text-align: center;
}

/* --- */
/* About Page */

.about {
    padding: 20px;
    padding-top: 0px;
}

.about p {
    color: #000;
    margin: 0px;
    margin-top: 5px;
    text-align: justify;
    text-align-last: left;
    line-height: 1.7em;
}

.gallery {
    display: block;
    margin-top: 20px;
}

.gallery .big img {
    display: block;
    width: 100%;
    height: auto;
}

.small {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row;
    justify-content: space-around;
}

.small .resi {
    vertical-align: middle;
    margin-top: 20px;
}

/* --- */
/* Footer */

footer {
    width: 100%;
    padding: 20px 0 20px 0;
    text-align: center;
    color: #fff;
    background-color: #222;
    min-height: 50px;
    height: 50px;
    display: flex;
    align-self: flex-end;
    justify-content: center;
}

/* --- */
