.ngpluginparashopcoupon {
    display: flex;
    margin: 0 0 20px 0;
    padding: 0;
}

.ngpluginparashopcoupon input[type=text]
{
	border-color: #9b9b9b;
	border-width: 1px;
	border-style: solid;
	padding: 7px;
	background: #ffffff;
	font: 16px 'Fira Sans',Helvetica,sans-serif;
	color: #5a5a5a;
	letter-spacing: 0px;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
	border-radius: 3px;
    width: 90px;
    box-sizing: border-box;
    display: block;
  	margin: 0;
  	-webkit-appearance: none;
    margin-right: 10px;
}

.ngpluginparashopcoupon input[type=text]:focus {
    border-color: #c07508;
    background: #f9f3ea;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
}

.ngpluginparashopcoupon input[type=submit]
{
	border-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	padding: 10px 22px 10px 22px;
	background: #c07508;
	font: 14px 'Fira Sans',Helvetica,sans-serif;
	color: #ffffff;
	letter-spacing: 0px;
	text-transform: uppercase;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	border-radius: 0px;
	display: block;
	cursor: pointer;
    -webkit-appearance: none;
    box-sizing: border-box;
    margin: 0;
}

.ngpluginparashopcoupon input[type=submit]:hover
{
	border-color: #ffffff;
	background: #870019;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	color: #ffffff;
}

.ngpluginparashopcoupon input[type=submit]:focus
{
	border-color: #ffffff;
    background: #5d7c2d;    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);	font-weight: normal;
    font-style: normal;
	text-transform: uppercase;
	color: #ffffff;
    outline: none;
}

@media (min-width: 768px) {
    .ngpluginparashopcouponleft {
        justify-content: flex-start;
    }

    .ngpluginparashopcouponright {
        justify-content: flex-end;
    }

    .ngpluginparashopcouponcenter {
        justify-content: center;
    }

    .ngpluginparashopcouponstretch input[type=text] {
        flex-grow: 1;
    }
}

@media (max-width: 767px) {
   .ngpluginparashopcoupon {
        display: block;
    }

    .ngpluginparashopcoupon input[type=text],
    .ngpluginparashopcoupon input[type=submit] {
        margin: 0 0 10px 0;
        width: 100%;
        display: block;
    }

}

