.navbar {
    position: sticky;
    top: 0;
    background-color: transparent;
    z-index: 100;
    padding: unset;
}
.socials img{
    height: 3em;
}

.HeadText h2{
    text-align: center;
}

.HeadText p {
    color:black;
}
.row{
    margin-left:1em;
    margin-right:1em;
}
.overOns2  .col-sm-6, .overOns1 .col-sm-6{
    margin-top: auto;
    margin-bottom: auto;
}

.overOns2 img{
    max-height: 80vh;
}
.overOns2{
    margin-top: 2.5em;
    margin-bottom: 2.5em;    
}
.overOns1{
    margin-top: 5em;
    margin-bottom: 5em;
}
.overOns1 img, .overOns2 img{
    max-width: 100%;
}

.overOns1 .row,.overOns2 .row{
    text-align: center;
}

.HeadText{
    padding-left:2em;
    padding-right:2em;
    padding-top:5em;
    color:#362015;
    background: rgba(255, 255, 255, 0.9);
}
.FullHeader{
    border-style:solid;
    border-color: black;
    border-width: 2px;
    border: top 2px, bottom 2px;
    background: url(/images/background.png);
}
.headImg{
    background: white;
    padding-left:2em;
}

.headImg img{
    max-width: 100%;
    background: black;
}

.details{
    display: flex;
    justify-content: center;
    background: #1d1d1b;
    color:white;
    position: absolute;
}
.details a{
    margin-left: 2em;
}

.phoneDiv a:nth-child(2){
    margin-left:.1em;
}

.outterCard {
    margin-bottom: 10px;
}

.navbar-expand-lg {
    flex-flow: wrap;
}

ul.navbar-nav{
    margin-top: -3em;
    z-index: 90;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

#cart_content {
    margin-left: 1em;
    margin-right: 0.5em;
}

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

.tekst {
    word-break: break-word;
}

.container {
    top: 15px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.product-card {
    margin-left: 5px;
    margin-right: 5px;
}

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

.descriptionCard div {
    margin: auto;
    margin-bottom: 10px
}

.card-title {
    word-break: normal;
}

.descriptionCard {
    margin-bottom: 50px
}

.Tabs .productTab {
    display: inline-block;
    margin: auto;
}

.Tabs.row {
    margin: unset;
}

.tabContents .productTabCnt {
    margin: unset;
}

.productTabCnt.show {
    display: block;
}

.active {
    background-color: #D6D1D1;
}

.productTabCnt {
    display: none;
}

/* Slideshow container */

.slidesHolder {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */

.slide {
    display: none;
}

/* Next & previous buttons */

.prevSlide, .nextSlide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */

.nextSlide {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prevSlide:hover, .nextSlide:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */

.slideTabHolder {
    margin: auto;
    max-width: 80%;
}

.slideTab {
    cursor: pointer;
    margin: 0 4%;
    background-color: #B9B6B6;
    color: white;
    border-color: #707070;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slideTab.active, .slideTab:hover {
    background-color: #717171;
}

.slideImg {
    width: auto;
    max-width: 100%;
    max-height: 65vh;
}

/* use rgba(0,0,0,0) for transparent background for text field place thingy */

.slideCnt{
    width: 100%;
    position: absolute;
    bottom: 1vh;    
}

.slideText {
    max-width: 40vw;
    width: fit-content;
    margin-left:auto;
    margin-right: auto;
    padding: 8px 12px;
    background: rgb(255 255 255 / 71%);
    color: black;
    border-radius: 10px;
    /* text-align: center; */
}

.slideBtn {
    background-color: #347236;
    color: white;
}

.slideTabHolder {
    margin-left: 10%;
    margin-right: 10%;
}

/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

.tab-3 {
    flex: 0 0 33%;
    /* max-width:50; */
    text-align: center;
}

.addToCart {
    padding: 10px 20px;
}

.nav-logo {
    height: auto;
    border: black solid 1px;
    width: 8em;
    margin-top:1em;
    margin-bottom:1em;
    background:white;
}

/* inspired by w3-schools toastbar */

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 900;
    right: 10px;
    top: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

.cartModal {
    display: none;
    height: 0px;
    width: 0px;
    z-index: 99;
}

/* added css cart */

@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
.cartItemTemp {
    display: none;
}

.shopping-item {
    margin-bottom: 5px;
}

.shopping-cart {
    margin: 20px 0;
    float: right;
    background: white;
    width: 320px;
    position: relative;
    border-radius: 3px;
    padding: 20px;
    border-color: #cacaca;
    border-style: solid;
}

.shopping-cart .shopping-cart-header {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 15px;
}

.shopping-cart .shopping-cart-header .shopping-cart-total {
    float: right;
}

.shopping-cart .shopping-cart-items {
    padding-top: 20px;
}

.shopping-cart .shopping-cart-items li {
    margin-bottom: 18px;
}

.shopping-cart .shopping-cart-items img {
    float: left;
    margin-right: 12px;
}

.shopping-cart .shopping-cart-items .item-name {
    display: block;
    padding-top: 10px;
    font-size: 16px;
}

.shopping-cart .shopping-cart-items .item-price {
    color: #6394F8;
    margin-right: 8px;
}

.shopping-cart .shopping-cart-items .item-quantity {
    color: #ABB0BE;
}

.shopping-cart:after {
    bottom: 100%;
    left: 89%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: white;
    border-width: 8px;
    margin-left: -8px;
}

.cart-icon {
    color: #515783;
    font-size: 24px;
    margin-right: 7px;
    float: left;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.randProdsTitle{
    color:white
}

a:hover, a {
    text-decoration: unset;
    color: unset;
}

/* checkout form */

.checkout_form {
    min-height: 4em;
    width: 45%;
    float: left;
    margin-right: unset;
    background: #f6f6f6;
    padding: 1%;
    border-radius: 1em;
}

.cart_list {
    float: right;
    height: auto;
    width: 45%;
    background: #f6f6f6;
    padding: 1%;
    border-radius: 1em;
    margin-left: 10%;
}

body {
    background-color: white;
    /* background-color: #252427; */
    font-size: medium;
}

.no-margin {
    margin: unset;
}

.no-padding {
    padding: unset;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

.randProdsTitle {
    font-size: larger;
    font-weight: 600;
}

.cart-div {
    height: 0px;
    position: inherit;
    float: right;
    display: flex;
    top: 1em;
    right: 1px;
}

.tekst {
    text-align: center;
    color: white;
}

.contactPage {
    background: white;
    border-radius: 10px;
    padding-bottom: 1em;
    padding-top: 1em;
}

#lname {
    margin-left: 10px;
}

#subject {
    height: 200px;
    max-width: 500px;
    width: 100%;
}


@media only screen and (max-device-width: 550px) {

    .navbar-toggler-icon{
        height: 3em;
        width: 2e,;
        background-size: cover;
    }
    .cart-div{
        font-size: 1.5em;
    }

    body{
        font-size: xx-large!important;
    }
    nav {
        font-size: xx-large!important;
    }
    .nav-logo {
        height: 8em!important;
        width: auto!important;
    }
    #shoppingcart{
        height: 1.5em!important;
    }

    .overOns-Text{
        width: 100vw !important;
    }

    .overOns-img{
        width: 100vw !important;
    }
    h4{
        font-size: 2em;
    }
    h2{
        font-size: 2.5em;
    }
    .headImg{
        padding-left: unset;
    }
    .overOns-Text p {
        font-size: larger;
    }
}

.overOns-img{
    width: 50%;
}
.overOns-text{
    width: 50%;
}
@media only screen and (max-width: 992px) {

    .HeadText{
        padding-top: 2em;
    }

    .details{
        position: unset;
    }
    ul.navbar-nav{
        margin-top: 0em;
    }
    .navbar-toggler-icon{
        font-size:xx-large
    }
    .container {
        max-width: unset;
        padding-left: 10px;
        padding-right: 10px;
    }
    .navbar-toggler {
        float: right;
        top: 1em;
        position: inherit;
    }
    .nav-mail {
        left: 9em;
        font-size: x-large;
    }
    .nav-phone {
        left: 18em;
        font-size: x-large;
    }
    .slideCnt {
        font-size: x-large;
    }
    nav {
        font-size: x-large;
    }
    .cart_list, .checkout_form {
        float: unset;
        width: inherit;
        margin: unset;
        margin-bottom: 30px;
    }
    .tekst {
        font-size: xx-large;
    }
}

