#cart_button
{
	position:fixed;
	bottom: 10px;
	right:10px;
	cursor:pointer;
	float:right;
}
#cart_button img
{
	width:60px;
	height:60px;
}
#cart_button input[type="button"]
{
	background:none;
	border:none;
	background-color:red;
	border-radius:100%;
	height:30px;
	width:30px;
	margin-top:0px;
	color:white;
	font-size:17px;
	cursor:pointer;
	position:relative;
	top:-4px;
	right:18px;
}
#mycart
{
	/*display:none;
	background:white;
	width:50%;
	border:2px solid #000;
	position:absolute; right:0px; top:90px;
	z-index:1;*/
}
#mycart .cart_items
{
	display: grid;
    grid-template-columns: 18% 42% 8% 11% 13%;
    grid-gap: 2%;
	border-bottom:1px dashed silver;
	padding:20px;
	padding-left:10px;
}
#mycart .cart_header
{
	display: grid;
    grid-template-columns: 18% 42% 8% 11% 13%;
    grid-gap: 2%;
	border-bottom:1px dashed silver;
	padding:20px;
	padding-left:10px;
	font-size:large;
	font-weight:bold;
}
#mycart .cart_items img
{
	width:70px;
	
	float:left;
}
#mycart .cart_items p
{
	margin:0px;
	font-size:17px;
	color:green;
}

#item_div{
	width:86%;
	margin:60px auto;
	}
.items{
	padding:20px;
	background-color:white;
	width:250px;
	height:350px;
	margin-top:20px;
	box-shadow:0px 0px 10px 0px #A4A4A4;
	box-sizing:border-box;
	float:left;
	margin:20px;
	position:relative;
	transition: all .2s ease-out;
}
#cart-total{
	
    font-size: xx-large;
    font-weight: 600;
}
.cart-quantity-input
{
	width:90%;
}
.items:hover {
    transform: scale(1.05);
}
.items:hover input[type="button"]
{
	display:block;
}
.items input[type="button"]
{
	display:none;
	background:none;
	background-color:#3ADF00;
	width:200px;
	height:50px;
	border:none;
	font-size:20px;
	color:white;
	position:absolute;
	top:150px;
	left:20px;
	cursor:pointer;
}
.items img
{
	width:200px;
	height:200px;
}
@media (orientation: portrait) {
#mycart .cart_items img
{
	width:50px;
	
	float:left;
}
#mycart .cart_header
{
	display: grid;
    grid-template-columns: 18% 35% 15% 11% 13%;
    grid-gap: 2%;
	border-bottom:1px dashed silver;
	padding:20px;
	padding-left:10px;
	font-size:large;
	font-weight:bold;
}
}
.items p
{
	color: green;
}
.cap_status{color:#fff; font-size:20px; float:right; margin-right:30px;  
}
/*--thank you pop starts here--*/
.thank-you-pop{
	width:100%;
 	padding:20px;
	text-align:center;
}
.thank-you-pop img{
	width:76px;
	height:auto;
	margin:0 auto;
	display:block;
	margin-bottom:25px;
}

.thank-you-pop h1{
	font-size: 42px;
    margin-bottom: 25px;
	color:#5C5C5C;
}
.thank-you-pop p{
	font-size: 20px;
    margin-bottom: 27px;
 	color:#5C5C5C;
}
.thank-you-pop h3.cupon-pop{
	font-size: 25px;
    margin-bottom: 40px;
	color:#222;
	display:inline-block;
	text-align:center;
	padding:10px 20px;
	border:2px dashed #222;
	clear:both;
	font-weight:normal;
}
.thank-you-pop h3.cupon-pop span{
	color:#03A9F4;
}
.thank-you-pop a{
	display: inline-block;
    margin: 0 auto;
    padding: 9px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #8BC34A;
    border-radius: 17px;
}
.thank-you-pop a i{
	margin-right:5px;
	color:#fff;
}
#ignismyModal .modal-header{
    border:0px;
}

