@import 'https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700';

body {
    font-family: "PT Sans", sans-serif;
    color: #333;
    background: #FAFAFA;
    font-size: 1.1em;
}

.hidden {
    display: none !important;
}

.preis {
    font-weight: bold;
}

.clear {
    clear: both;
}


/* HEADER */


header {
    position: relative;
    height: 56px;
    font-size: 21pt;
    background-color: #FFEB3B;
    color: #333333;
    z-index: 2;
    margin-bottom: 30px;
}

.title{
    font-size: 21pt;
    font-weight: bold;
    line-height: 56px;
    float: left;
}

.logo{
    margin: 8px 10px;
    height: 40px;
    float: left;
}


/* SHOPPING CART */


.shopping-cart{
    display: none;
    border: 3px solid #000000;
    padding: 10px;
    position: absolute;
    top: 75px;
    right: 15px;
    background-color: #fff;
    width: calc(100% - 30px);
}

.shopping-cart-wrapper{
    position: absolute;
    right: 15px;
    top:6px;
    background-color: #ffeb3b;
}

.shopping-cart-icon{
    height: 35px;
}

.shopping-cart-icon:hover{
    cursor: pointer;
}

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid black;
    position: relative;
    top: -28px;
    float: right;
}

.shopping-cart-count {
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: -6px;
    font-size: 10px;
    color: #FFF;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 10px;
    width: 15px;
    height: 15px;
    text-align: center;
    
}

.shopping-cart h2 {
    margin-bottom: .75rem;
}

.shopping-cart .cart-itm {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    overflow: hidden;
}

.p-name {
    font-weight: bold;
}

.p-qty {
    float: left;
}

.p-price {
    float: right;
}

.shopping-cart .remove-itm {
    font-size: 1em;
    float: right;
    background: #D5D5D5;
    padding: 4px;
    line-height: 8px;
    border-radius: 3px;
}

.shopping-cart .remove-itm:hover {
    background: #C4C4C4;
}

.shopping-cart .remove-itm a {
    color: #2A2A2A;
    text-shadow: 1px 1px 1px #ECECEC;
    text-decoration: none;
}

span.cart-total {
    float: right;
}

.shopping-cart button {
    margin-top: .5rem;
}

@media screen and (min-width: 40em) {
    .shopping-cart {
        width: unset;
        right: 20px;
    }
    .shopping-cart .cart-itm {
        width: 300px;
    }
}


/* PRODUCT */


.product-style{
    border: 3px solid #000000;
    padding:10px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.product-thumb {
    height: 200px;
}

.product-thumb img {
    width: auto;
    max-width: 100%;
    max-height: 200px;

}

.product-qty{
    width: 60px;
    display: inline-block;
}
 
h3.product-name {
    margin: 0;
}

span.preis {
    margin: .75rem 0;
    display: block;
}

.product-infobox-icon {
    height: 2rem;
    position: absolute;
    top: .75rem;
    right: 1rem;
    cursor: pointer;
}

.product-infobox-icon img {
    height: 100%;
}

.product-infobox {
    position: absolute;
    width: calc(100% - 1.25rem);
}

.alert-dismissible {
    padding: .75rem 1.25rem;
}

.product-infobox hr {
    margin: .5rem 0;
}

/* VIEW CART */


.view-cart .cart-itm,
.total,
.cart-additional-info {
    border: 3px solid #000000;
    padding: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.cart-additional-info {
    padding-bottom: 15px;
}

.view-cart .cart-itm .product-thumb img {
    padding: 5px;
    margin-left: calc(50%);
    transform: translateX(-50%);
}

.view-cart .cart-itm .p-price {
    float: right;
    margin-right: 10px;
    font-weight: bold;
}

.total {
    font-weight: bold;
}

.total span {
    float: right;
}

.input-group-text {
    width: 125px;
}

.cart-additional-info button[type="submit"] {
    color: #333;
    background-color: #FFEB3B;
    border-color: #FFEB3B;
}

div#submit-problem-alert {
    margin-top: 20px;
}

@media screen and (min-width: 40em) {
    .view-cart .cart-itm .product-thumb {
        float: left;
        width: 20%;
    }

    .view-cart .cart-itm .product-thumb img {
        padding: 5px;
    }

    .view-cart .cart-itm .product-info {
        float: left;
        width: 70%;
    }
}

/* MISC */

#copyright{
    text-align: center;
    font-size: 0.8em;
    padding-top: 0.5em;
    background-color: #2e2e2e;
    color: #999999;
    width: 100%;
    max-width: 100%;
}

/* .more-desc{
    width: 200px;
    min-height: 200px;
    position: relative;
    left: calc(50% - 100px);
    top: 10px;
    font-size: 14px;
} */