.order-top-wrap {
	position: absolute;
    top: 11px;
    right: 115px;
    color:#fff;
}

.summary-box {
	background-color: #fff;
	border-radius: 15px;
	width: 85%;
	padding-bottom: 25px;
    margin-right: auto;
    margin-left: auto;    margin-top:95px;    margin-bottom:35px;
}

.cart-header {
	background-color: #FF485B;
	height:44px;
}

.order-header {
	padding: 20px 50px; 
}

.order-header h1 {	padding: .5rem 1.5rem;
	font-size: 25px;
	border-top: 3px solid #FF485B;
    border-bottom: 3px solid #FF485B;
}

.order-item {
	padding: 0 50px;
	padding-bottom: 5px;
    margin-bottom: 10px;
    /*border-bottom: 3px solid #FF485B; */
}

.item-img
{
	position: relative;
	width: 100%;
	
}

.item-img img
{
	position: relative;
	max-width: 100%;
}

.item-description {
	padding-top:10px;
}

.item-description p {
	color:grey;
	font-size:16px;
}

.item-description p.name {
	font-weight: bold;
	color: black;
}
.item-description p.sku {
	margin-bottom: 0;
}

.rounded-btn {	background-color: #D0D2D3;	width:100px;	height:100px;	border-radius: 50%;	padding: 6px 10px;	font-weight: 700;	color:grey;	cursor: pointer;	transition: background-color .25s, color .25s;}.rounded-btn:hover{	background-color: #AAA;	color:#555;}

.qty {
	color:grey;
	font-weight:700;
	padding:0 10px;
}

.border {
	margin-top: 10px;
	background-color: #FF485B;
	height:3px;
	width:100%;
}

.item-price h1{
	font-size: 20px;
	color:#3c3c3c;
	text-align: right;
}

.total-wrap {
	padding: 0 50px;
}

.total-wrap h1 {
	font-size:16px;
}

.shipping-price h1 {
	font-size:20px;
	text-align: right;
	font-weight: 700;
}

.pricing-wrap {
	padding: 0 30px 0 40px;
}

.coupon-wrap h1{
	text-align: center;
	font-size:16px;

}

.line {
	margin-left: auto;
	margin-right: auto;
	width:180px;
	background-color: #FF485B;
	height:2px;
}

/*user cart markup in app.blade*/
.user-cart {
	position: fixed;
	top:45px;
	right:0;
	width:550px;
	z-index:111;
}

.user-cart {
	display:none;
}

.user-cart .summary-box {
	background-color: rgba(255,255,255,0.95);
	height:595px;
	border-radius: 15px 0 0 15px;
	width: 100%;
	margin-right: 0;
    margin-top:44px;
	overflow: auto;
}

.user-cart .order-header {
	padding:20px 10px;
	text-align: left;
}

.user-cart .order-item, .user-cart .pricing-wrap {
	padding:0;
}

.user-cart .item-description, .user-cart .total-wrap {
	text-align: left;
}

.user-cart .item-price {
	text-align: right;
}

.button-proceed {
	text-align: center;
	padding-top:10px;
}


.btn-proceed {
	border-radius: 0 !important;
	background-color: #E64360;
	margin: 4px;
	color:#fff;
	width: 210px;
}

.btn-proceed + .btn-proceed {
	margin-left: 0;
}

.btn-proceed:hover {
	background-color:#fff ;
	border:1px solid #E64360;
	color:#E64360 !important;
}


.animation-fadeinleft {
	animation: fadeinleft 0.5s ease-in-out;
	animation-fill-mode: forwards;
}

.animation-fadeinright {
	animation: fadeinright 0.5s ease-in-out;
	animation-fill-mode: forwards;
}

@keyframes fadeinleft {
	0% {
		opacity:0;
		transform: translateX(100px);
	}

	100% {
		opacity:1;
		transform: translateX(0px);
	}
}

@keyframes fadeinright {
	0% {
		opacity:1;
		transform: translateX(0);
	}
	100% {
		opacity:0;
		transform: translateX(100px);
	}
}

/*==================================================
                    MEDIA QUERIES
===================================================*/

/*========================
        IPAD
=========================*/

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1022px) {

}


/*========================
  PHONES (320PX - 414PX)
=========================*/

@media only screen 
and (min-device-width : 320px)
and (max-device-width : 414px) {

    .summary-box {
    	width:100%;
    	margin-top: 65px;
    	margin-bottom: 40px;
    }

    .order-header {
    	padding: 20px 10px;
    }

    .order-item {
    	padding: 0 10px;
    }

    .item-img img {
    	width:110px;
    }

    .pricing-wrap {
    	padding:0;
    }

    .item-description p {
    	font-size:14px;
    }

    .item-price h1 {
    	font-size:16px;
    }

    .item-description {
    	 padding-top: 0; 
	}

}


 /*========================
        IPHONE SE
=========================*/
@media only screen 
and (min-device-width : 320px)
and (max-device-width : 350px) {

}.item-price h1{	margin: 10px;}




.input-coupon
{
	display: inline-block;
	padding: .5rem;
	border: none;
	border-bottom: 2px solid #FF485B;
	margin: auto;
	appearance: none;
	-webkit-appearance: none;
}




.cart-item-delete
{
	padding: .5rem;
	cursor: pointer;
}

.cart-item-delete:hover
{
	font-weight: bold;
}