.mf-control-required {
    color: #f00;
}

.coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    --border: 1px solid #E4E4E4;
    border: var(--border);
    border-radius: 10px;
}

.coupon-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    grid-gap: 15px;
    border-right: var(--border);
}

.coupon {
    --border: 1px solid #E4E4E4;
}

.coupon-info-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-family: 'Fregat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.2;
    color: #2B2928;
}

.coupon-info-icon svg {
    width: 80px;
    height: 80px;
    fill: #ff4300;
    margin-bottom: 30px;
}

.coupon-form {
    padding: 34px 60px 34px 50px;
    width: 50%;

}

.coupon-form__title {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    color: #2B2928;
    display: block;
    /*max-width: 70%;*/
    margin-bottom: 22px;
    padding-left: 6px;
}

.basket-btn-checkout {
    font-size: .733em;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding-top: 17px;
    padding-bottom: 17px;
    width: 100%;
    display: block;
}
@media screen and (max-width: 976px) {
.coupon {
	flex-direction: column;
}
.coupon-info {
	width: 100% !important;
}
.coupon-form {
	width: 100% !important;
}
}
