::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #919191;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #919191;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #919191;
}
.woocommerce {
	.quantity {
		@include grid();
		grid-template-columns: 1fr 3fr 1fr;
		grid-column-gap: 0.388rem;
		button {
			border: 1px solid #2d863e;
			background-color: #2D863E;
			height: 3rem;
			width: 3rem;
			color: #fff;
		}
		button:hover {
			background: transparent;
		    color: #2d863e;
		}
		input.qty {
			background-color: #fff;
			border: 1px solid #2D863E;
			color: #2D863E;
			width: 100%;
		}
	}
}

.woocommerce-notices-wrapper {
	@include flexbox();
	justify-content: flex-end;
	.woocommerce-message {
	    border-top: none;
	    border-right: 5px solid #FF9914;
	    width: 36%;
        background: #fff;
        @include grid();
        grid-template-columns: 3fr 1fr;
        align-items: center;
        padding: 2.667rem;
        -webkit-box-shadow: -9px 11px 5px -3px rgba(191,191,96,0.2); 
        box-shadow: -9px 11px 5px -3px rgba(191,191,96,0.2);
        span {
        	width: 90%;
        	a {
        		display: none;
        	}
        }
        .button-container {
        	a {
        		white-space: nowrap;
        		@include btn01();
				width: auto;
        	}
        	a:hover {
        		@include btn01_hover();
        	}
        }
	}
	.woocommerce-message:before {
		display: none;
	}
}

#related_products {
	ul.products {
		@include grid();
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-column-gap: 1.5rem;
		li {
			width: 100%;
		}
	}
	ul.products:before {
		display: none;
	}
}

.up-sells.upsells.products {
	display: none;
}