body{
    font-family: cursive;
}

.a-div{
    color: black;
}

.a-div:hover{
    text-decoration: none;
    color: black;
}

#cart-icon{
    width:25px;
    /* margin:  top right bottom left */
    margin: 10px 0px 0px 8px;
}

#cart-total{
	text-align: center;
	color:#fff;
	background-color: red;
	width: 20px;
	height: 20px;
	border-radius: 50%;
    font-size: 13px; 
}

.col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12{
	margin-top: 10px;
}

.box-element{
    box-shadow:hsl(0, 0%, 80%) 0 0 16px;
    background-color: #fff;
    border-radius: 0px 0px 4px 4px;
    padding: 10px;
}

.product{
    text-align: center;
    margin-bottom: 20px;
}

.thumbnail{
    width: 100%;
    height: 180px;
}

.thumbnail-view{
    margin-top: 10px;
    box-shadow: 0 8px 6px -6px black;
    min-height: 200px;
    border-radius: 5px;
}

.box{
    padding: 20px;
    margin: 20px;
    border: 1px solid rgb(185, 185, 185);
    border-radius: 5px;
    font-weight: bold;
}

.right{
    float: right;
}

.cart-row{
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ececec;
    height: 80px;
}

.row-image{
    width: 100px;
    height: 100%;
    margin-left: 20%;
}

.flex-1{
    flex: 1;
}

.flex-2{
    flex: 2;
}

.quantity{
    margin-top: -10px;
    display: inline-block;
    padding-right: 10px;
}

.chg-quantity{
    width: 12px;
    cursor: pointer;
    display: block;
    margin-top: 5px;
    transition: .1s;
}

.chg-quantity:hover{
    opacity: .6;
}

.form-field{
    width: 250px;
    display: inline-block;
    padding: 5px;
}

.hidden{
    display: none!important;
}

.default{
    margin: 0px;
}

.center{
    width: 550px;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.form-header a{
    font-weight: bold;
    color: black;
    text-decoration: underline;
}

.form-header a:hover{
    color: rgb(87, 74, 3);
}

.form-header h3{
    text-align: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .row-image{
        margin-left: 0px;
    }

    .center{
        width: 450px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /* body{
        background-color: pink;
    } */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .box{
        margin-top: 0px;
        padding: 10px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .box{
        margin-top: 0px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .box{
        margin-top: 0px;
    }
}
