button:active{
  border: none !important;
  outline: none !important;
}
.t-head{
	display: flex;
	justify-content: space-between;
	background: #f8991d;
	padding: 5px 50px;
	margin: 10px 0px!important;
	border-radius: 5px !important;
  //box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.t-head h4{
  margin-bottom: 0;
}

.t-head-price{
  padding-right: 8rem !important;
}

.cart-sec{
	margin: 20px 0;
	padding: 60px 0;
	position: relative;
}
.back-to-menu{
	position: absolute;
	right: 0;
	top: 0;
	transition: all .8s;
	border-radius: 50%;
}
.back-to-menu a {
	text-decoration: none;
	transition: all .5s !important;
}
.Btn{
	transition: all .5s !important;
}
.back-to-menu a .Btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .5s !important;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(0, 0, 0);
  padding-left: 10px;
}

/* plus sign */
.back-to-menu .Btn .sign {
   width: 100%;
  transition-duration: .5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-menu .Btn .sign svg {
  width: 20px;
}

.back-to-menu .Btn .sign svg path {
  fill: white;
}

/* text */
.back-to-menu .Btn .text {
  opacity: 0;
  width: 0;
  white-space: nowrap;
  color: white;
  font-size: 1em;
  font-weight: 600;
  transition: all .5s ease-in-out;
  margin-left: 5px;
  margin-right: 5px;
}

/* hover effect on button width */
.back-to-menu a .Btn:hover {
  width: fit-content;
  transition: all .5s ease-in;
  border-radius: 40px;
}

/* hover effect on button's text */
.back-to-menu a .Btn:hover .text {
  opacity: 1;
  width: auto;
}

/* button click effect */
.back-to-menu a .Btn:active {
  transform: translate(2px, 2px);
}

.total-price{
	padding-bottom: 15px;
}
.cart-item{
	background-color: #FAE5CD;
	border-radius: 10px;
	padding: 15px 20px;
	margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.remove-item{
	border: none;
	background: none;
}
.center-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cart-item img{
	width: 115px;
	height: 90px;
	border-radius:8px ;
}
.cart-item h5{
    padding: 0 45px;
}
.cart-item .remove-item{
	width: 25px!important;
}
.btn-default:hover{
	color: #fff;
}
.cart-item .form-control{
	background-color: #F6F5FA;
	border: none;
    width: 65px;
    border-radius: 10px!important;
    font-weight: 700;
    font-size: 20px;
}
.input-group{
	width: unset;
	flex-wrap: nowrap;
}
.status{
	text-align: right;
}
.check-out{
    float: right;
    padding: 10px 30px;
	font-size: 19px;
	background-color: #2FBE70;
	border: none;
}
@media(min-width:1400px){
	.center-right{
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
}
}
@media (max-width:1200px){
  .t-head-price{
    padding-right: 4rem !important;
  }
}
@media (max-width:1000px){
  .t-head-price{
    padding-right: 2rem !important;
  }
}

@media(min-width:500px) and (max-width:768px){
		.cart-item h5{
    padding: 0 50px;
	
}
.center-item{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
}
@media(min-width:768px) and (max-width:991px){
		.cart-item h5{
    padding: 0 30px;
}
}
@media(max-width:410px){
	.cart-item h5{
    padding: 0 15px;
}

}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.prev-btn {
  right: 20px;
}

.next-btn {
  right: 20px;
}
.plus-btn, .minus-btn{
  z-index: 0 !important;
}
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
