/* The Modal (background) */
.mod {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
 /* .modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
  } */
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

#cart .cart-grid-body .custom-checkbox-cart {
	display: flex;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom {
	background: #fff;
	display: flex;
    align-items: center;
	width: 100%;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom p[for="input_gift"],
#cart .cart-grid-body .custom-checkbox-cart #messagecustom label {
	color: #000;
	text-align: center;
	font-family: "Raleway";
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom form textarea {
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
	border: 0;
	color: #000;
	font-family: "Raleway";
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom form {
	padding: 20px 40px;
	width: 100%;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .nom-gift-red {
	color: #FA002A;
	font-family: "Raleway";
	font-size: 15px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty {
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
	display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty > * {
	height: 100%;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty input {
	border: 0;
	color: #000;
	font-family: "Raleway";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 13px;
	text-align: center;
	padding: 0;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions #messagecustom_submit {
	border-radius: 10px;
	background: #FA002A;
	color: #FFF;
	font-family: "Raleway";
	font-size: 16px;
	max-width: 150px;
	width: 100%;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty .plus,
#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty .minus {
	cursor: pointer;
}


#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty .minus::before {
	content: "";
	background: #000;
    width: 12px;
    height: 3px;
    display: block;
    position: absolute;
    top: 18px;
    left: 19px;
}

#cart .cart-grid-body .custom-checkbox-cart #messagecustom .message-custom-actions .qty .plus::before {
	content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><rect x="0.912109" y="5.47656" width="12.9348" height="2.28261" fill="black"/><rect x="8.52148" y="0.152344" width="12.9348" height="2.28261" transform="rotate(90 8.52148 0.152344)" fill="black"/></svg>');
	position: absolute;
    top: 11px;
    left: 7px;
}

@media (min-width: 738px) {
	#cart .cart-grid-body .custom-checkbox-cart .img-background {
		width: 200px;
		height: 276px;
	}
}

@media (max-width: 737px) {
	#cart .cart-grid-body .custom-checkbox-cart #messagecustom form {
		padding: 20px;
		flex-direction: column;
	}
	
	#cart .cart-grid-body .custom-checkbox-cart .img-background {
		height: 110px;
		display: none;
	}
	
	#cart .cart-grid-body .custom-checkbox-cart {
		display: flex;
		flex-direction: column-reverse;
	}
}

#cart .cart-grid-body .custom-checkbox-cart .img-background {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


