.stock-manager-popup {
	background-size: 100% 100%;
	display: grid;
	place-items: center;
}

.stock-pop-body {
    position: relative;
    padding: 5rem 3rem 2rem;
    background: #fbf4f6;
    text-align: center;
    border-radius: 0.25rem;
    border: 0.06rem solid #ece8f1;
	-webkit-box-shadow: 0rem 1rem 2.5rem rgba(63, 20, 115, 0.07);
    box-shadow: 0rem 1rem 2.5rem rgba(63, 20, 115, 0.07);
}

.stock-pop-image img {
	padding: 0 0 1rem;
	height: 13rem;
	margin: auto;
}

.stock-popup-header {
	font-size: 2rem;
	margin: 0 0 1rem;
	font-weight: 700;
}

p.stock-pop-content {
	font-size: 1rem;
	line-height: 1.6;
	padding: 0 0 1.5rem;
}

.stock-pop-btn {
	background: #e03c32 !important;
	color: #f9f8fb !important;
	border-radius: 0.25rem !important;
	text-transform: capitalize;
	font-size: 1.25rem;
	padding: 0.25rem 2rem 0.5rem;
	line-height: 1.2;
	border: 0;
}

@media only screen and (max-width: 992px) {
.stock-pop-image img {
	height: 10rem;
	}
}
@media only screen and (max-width: 575px) {
	.stock-pop-image img {
		height: 4rem;
	}
	html {
		font-size: 70%;
	}
}