:root {
	--main-bg: #fff;
	--black-font: #191919;
	--gray-font: #777777;
	--red-font: #EC5353;
	--white-font: #fff;
	--gray-line: #C3C6CC;
	--gray-btn-hover: #F1F1F1;
	--module-bg: #F8F8F8;
	--gray-border: #e9e9e9;
	--scrollbar: #DCDCDC;
	--gradient1: rgba(248,248,248,0);
	--gradient2: rgba(248,248,248,1);
}

:root .darkMode {
	--main-bg: #fff;
	--black-font: #e1e1e1;
	--gray-font: #777777;
	--red-font: #EC5353;
	--white-font: #fff;
	--gray-line: #525252;
	--gray-btn-hover: #F1F1F1;
	--module-bg: #2a2a2a;
	--gray-border: transparent;
	--scrollbar: #525252;
	--gradient1: rgba(42,42,42,0);
	--gradient2: rgba(42,42,42,1);
}

:root.darkMode {
	--main-bg: #fff;
	--black-font: #e1e1e1;
	--gray-font: #777777;
	--red-font: #EC5353;
	--white-font: #fff;
	--gray-line: #525252;
	--gray-btn-hover: #F1F1F1;
	--module-bg: #2a2a2a;
	--gray-border: transparent;
	--scrollbar: #525252;
	--gradient1: rgba(42,42,42,0);
	--gradient2: rgba(42,42,42,1);
}




.mod-mn-newsplus {
	width: calc(33.333% - 15px);
/*	min-width: 320px;*/
/*	width: 100%;*/
font-family: 'Roboto', sans-serif;
grid-column: 3;
grid-row: 1/3;
}
@media screen and (max-width: 1200px){
	.mod-mn-newsplus{
		width: calc(40% - 15px);
/*min-width: unset;
max-width: unset;	*/	
}
}

.mod-mn-newsplus ::-webkit-scrollbar {
	width: 10px;
	cursor: pointer;
}

.mod-mn-newsplus ::-webkit-scrollbar-track {
	background: transparent;
}

.mod-mn-newsplus ::-webkit-scrollbar-thumb {
	background: var(--scrollbar);
	border-radius: 5px;
	z-index: 9;
}

.mod-mn-newsplus .newsplus__wrapper {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--gray-border);
	background-color: var(--module-bg);
	padding-top: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.mod-mn-newsplus .newsplus__wrapper:before {
	content: '';
	display: block;
	position: absolute;
	right: 0px;
	width: 20px;
	top: 57px;
	bottom: 20px;
	background-color: var(--module-bg);
	z-index: 1;
	visibility: visible;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.mod-mn-newsplus .newsplus__wrapper:hover:before {
	opacity: 0;
	visibility: hidden;
}

.mod-mn-newsplus .newsplus__header {
	height: 53px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 15px;
}

.mod-mn-newsplus .newsplus__info {
	border-radius: 14px;
	color: var(--black-font);
	letter-spacing: 0.92px;
	font-size: 23px;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	z-index: 2;
	margin: 0 auto 20px;
}

.mod-mn-newsplus .newsplus__info:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 5px;
	left: -5px;
	right: -5px;
	height: 7px;
	background-color: var(--red-font);
	z-index: -1;
}

.mod-mn-newsplus .newsplus__content {
	width: calc(100% - 5px);
	padding: 0 20px;
	position: relative;
	max-height: 565px;
	height: calc(100% - 53px - 65px);
	overflow: auto;
	padding: 10px 20px;
}

@media screen and (max-width: 1300px) {
	.mod-mn-newsplus .newsplus__content{
		max-height: 503px;
	}
}
@media screen and (max-width: 1200px) {
	.mod-mn-newsplus .newsplus__content {
		padding: 10px 15px;
	}
}

.mod-mn-newsplus .newsplus__news {
	width: 100%;
	padding-bottom: 25px;
	padding-left: 25px;
	position: relative;
}

@media screen and (max-width: 1200px) {
	.mod-mn-newsplus .newsplus__news {
		padding-bottom: 30px;
	}
}

.mod-mn-newsplus .newsplus__news .pulse-container {
    position: absolute;
	width: 40px;
	height: 40px;
	left: -17px;
	top: -10px;
}

.mod-mn-newsplus .newsplus__news .circle-main {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
   background-color: var(--colors-zinc-400);
    border-radius: 50%;
    z-index: 2;
}

.mod-mn-newsplus .newsplus__news.isNew .circle-main {
    background-color: #ec5353;
}

.mod-mn-newsplus .newsplus__news .circle-pulse {
   display: none;
}

.mod-mn-newsplus .newsplus__news.isNew .circle-pulse {
	display: block;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
    background-color: #ec5353;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        width: 16px;
        height: 16px;
        opacity: 0.6;
        top: 12px;
        left: 12px;
    }
    50% {
        width: 40px;
        height: 40px;
        opacity: 0;
        top: 0;
        left: 0;
    }
    50.01% {
        width: 16px;
        height: 16px;
        opacity: 0;
        top: 12px;
        left: 12px;
    }
    100% {
        width: 16px;
        height: 16px;
        opacity: 0;
        top: 12px;
        left: 12px;
    }
}

.mod-mn-newsplus .newsplus__news:after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	bottom: -5px;
	left: 3px;
	width: 2px;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	background-color: var(--gray-line);
	z-index: 1;
}

@media screen and (max-width: 1000px) {
	.mod-mn-newsplus .newsplus__news:after {
		bottom: -2px;
	}
}

@media screen and (max-width: 400px) {
	.mod-mn-newsplus .newsplus__news:after {
		left: -18px;
	}
}

.mod-mn-newsplus .newsplus__btn-wrapper {
	padding: 20px 0;
	position: relative;
}

.mod-mn-newsplus .newsplus__btn-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	z-index: 5;
	top: -65px;
	left: 0;
	right: 30px;
	height: 100px;
	background: #f8f8f8;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient1)), color-stop(55%, var(--gradient2)), to(var(--gradient2)));
	background: -o-linear-gradient(top, var(--gradient1) 0%, var(--gradient2) 55%, var(--gradient2) 100%);
	background: linear-gradient(180deg, var(--gradient1) 0%, var(--gradient2) 55%, var(--gradient2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f8f8",endColorstr="#f8f8f8",GradientType=1);
}

.mod-mn-newsplus .newsplus__btn {
	position: relative;
	width: 100%;
	max-width: 230px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 30px;
	color: var(--black-font);
	font-size: 17px;
	text-decoration: none;
	margin: 0 auto;
	z-index: 6;
}

.mod-mn-newsplus .newsplus__btn i {
	display: block;
	width: 10px;
	height: 16px;
	margin-left: 15px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5LjIwNCIgaGVpZ2h0PSIxNS41NzIiIHZpZXdCb3g9IjAgMCA5LjIwNCAxNS41NzIiPgogIDxwYXRoIGlkPSJleHBhbmRfbW9yZV9GSUxMMV93Z2h0MzAwX0dSQUQyMDBfb3BzejQ4IiBkPSJNMTkuOTg2LDI1Ljg1NCwxMi4yLDE4LjAzNmwxLjM4Ni0xLjM4Niw2LjQsNi40MzMsNi40MzMtNi40MzMsMS4zNTMsMS40MTlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYuNjUgMjcuNzcyKSByb3RhdGUoLTkwKSIgZmlsbD0iIzE5MTkxOSIvPgo8L3N2Zz4K");
}

.mod-mn-newsplus .news__date {
	font-size: 14px;
	color: var(--colors-zinc-500);
	line-height: 19px;
	margin-bottom: 5px;
}

.darkMode .mod-mn-newsplus .news__date {
	color: var(--colors-zinc-400);
}

.mod-mn-newsplus .news__title {
	font-size: 21px;
	font-weight: bold;
	line-height: 30px;
	color: var(--black-font);
}

@media screen and (max-width: 1200px) {
	.mod-mn-newsplus .news__title {
		font-size: 18px;
		line-height: 26px;
	}
}

.darkMode .mod-mn-newsplus .newsplus__btn i {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5LjIwNCIgaGVpZ2h0PSIxNS41NzIiIHZpZXdCb3g9IjAgMCA5LjIwNCAxNS41NzIiPgogIDxwYXRoIGlkPSJleHBhbmRfbW9yZV9GSUxMMV93Z2h0MzAwX0dSQUQyMDBfb3BzejQ4IiBkPSJNMTkuOTg2LDI1Ljg1NCwxMi4yLDE4LjAzNmwxLjM4Ni0xLjM4Niw2LjQsNi40MzMsNi40MzMtNi40MzMsMS4zNTMsMS40MTlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYuNjUgMjcuNzcyKSByb3RhdGUoLTkwKSIgZmlsbD0iI2UxZTFlMSIvPgo8L3N2Zz4K");
}






.new-modMnNewNews .innerHtml .premiddle-row {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}

.section-promo {
	position: relative;
	width: calc( 66.666% - 15px);
	height: 715px;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #E8E2D7;
	background: #F1EEE8;
	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-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

@media screen and (max-width: 1300px) {
	.section-promo {
		height: 650px;
	}
}

@media screen and (max-width: 1200px) {
	.section-promo {
		width: calc(50% - 15px);
	}
}

.section-promo .google-auto-placed {
	display: none;
}

.section-promo.santaDay {
	border: 0;
	background: radial-gradient(69.94% 57.15% at 69.87% 68.96%, #E92323 0%, #9A322E 100%);
	justify-content: flex-start;
	padding: 40px 60px;
	overflow: hidden;
}

.section-promo.calendarPromo {
	display: block;
	padding: 40px 50px;
	border-radius: 12px;
	background: radial-gradient(86.63% 81.59% at 75.73% 75.38%, #F42B2B 0%, #8E1F1F 100%), #000;
	color: #fff;
	overflow: hidden;
}

@media screen and (max-width: 1200px) {
	.section-promo.calendarPromo {
		padding: 30px 30px;
	}
}

@media screen and (max-width: 1200px) {
	.section-promo.santaDay {
		padding: 25px 40px;
	}
}

.section-promo * {
	font-family: "Inter", sans-serif !important;
}

.section-promo.calendarPromo .calendarPromo-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.section-promo.calendarPromo .calendarPromo-image img {
	object-fit: cover;
	object-position: right;
	width: 100%;
	height: 100%;
}

.section-promo.calendarPromo .calendarPromoName {
	color: #FFF;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 31.2px */
}

@media screen and (max-width: 1300px) {
	.section-promo.calendarPromo .calendarPromoName {
		font-size: 20px;
	}
}

.section-promo.calendarPromo .calendarPromoInfo {
	color: #FFF;
	font-size: 55px;
	font-style: normal;
	font-weight: 800;
	line-height: 115%;
	letter-spacing: 0.55px;
	margin-top: 10px;
}

@media screen and (max-width: 1300px) {
	.section-promo.calendarPromo .calendarPromoInfo {
		font-size: 40px;
	}
}



.section-promo.calendarPromo .calendarPromoBtn {
	display: inline-flex;
	padding: 15px 40px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 65px;
	border: 2px solid #FFF;
	color: #FFF;
	font-family: Inter;
	font-size: 19px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 19px */
	letter-spacing: 0.57px;
	text-transform: uppercase;
	margin-top: 25px;
	text-decoration: none;
}

.section-promo.calendarPromo .calendarPromoTable {
    margin-top: 86px;
}

@media screen and (max-width: 1200px) {
	.section-promo.calendarPromo .calendarPromoTable {
		margin-top: 110px;
	}
}

.section-promo.calendarPromo .calendarPromoTable td {
	padding: 25px 15px;
	text-align: center;
}

.section-promo.calendarPromo .calendarPromoTable tr:first-child td {
	border-bottom: 2px solid #ffffff40;
}

.section-promo.calendarPromo .calendarPromoTable td:first-child {
	border-right: 2px solid #ffffff40;
}

.section-promo.calendarPromo .calendarPromoTable td b {
	display: block;
	color: #FFF;
	text-align: center;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.078px;
}

@media screen and (max-width: 1200px) {
	.section-promo.calendarPromo .calendarPromoTable td b {
		font-size: 24px;
	}
}

.section-promo.calendarPromo .calendarPromoTable td i {
	font-style: normal;
	font-size: 60%;
}

.section-promo.calendarPromo .calendarPromoTable td span {
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 15.4px */
	letter-spacing: -0.042px;
}

@media screen and (max-width: 1200px) {
	.section-promo.calendarPromo .calendarPromoTable td span {
		font-size: 12px;
	}
}

.section-promo.calendarPromo .calendarPromoAInfo {
	color: rgba(255, 255, 255, 0.80);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.042px;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.section-promo.calendarPromo .calendarPromoPages {
	position: absolute;
	bottom: -345px;
	right: -185px;
}

@media screen and (max-width: 1300px) {
	.section-promo.calendarPromo .calendarPromoPages {
		width: 700px;
		bottom: -275px;
	}
}

@media screen and (max-width: 1200px) {
	.section-promo.calendarPromo .calendarPromoPages {
		width: 580px;
		bottom: -206px;
		right: -290px;
		transform: rotate(343deg);
	}
}

.section-promo .section-promo__content {
	width: 100%;
	position: relative;
	z-index: 2;
}

.section-promo .section-promo__subslogan {
	color: #1D1D1F;
	text-align: center;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.072px;
	margin-bottom: 5px;
}

@media screen and (max-width: 1300px) {
	.section-promo .section-promo__subslogan {
		font-size: 22px;
	}
}


.section-promo.santaDay .section-promo__subslogan {
	color: #FFF;
	font-size: 80px;
	font-style: normal;
	font-weight: 800;
	line-height: 115%;
	letter-spacing: -0.24px;
	text-align: left;
}

@media screen and (max-width: 1200px) {
	.section-promo.santaDay .section-promo__subslogan {
		font-size: 60px;
	}
}

.section-promo .section-promo__slogan {
	color: #1D1D1F;
	text-align: center;
	font-size: 47px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.141px;
	margin-bottom: 25px;
}

@media screen and (max-width: 1300px) {
	.section-promo .section-promo__slogan {
		font-size: 45px;
	}
}


.section-promo.santaDay .section-promo__slogan {
	color: #FFF;
	font-size: 80px;
	font-style: normal;
	font-weight: 800;
	line-height: 115%;
	letter-spacing: -0.24px;
	text-align: left;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	justify-content: flex-start;
}

@media screen and (max-width: 1200px) {
	.section-promo.santaDay .section-promo__slogan {
		font-size: 60px;
	}
}

.section-promo.santaDay .section-promo__slogan span {
	display: inline-flex;
	transform: rotate(-7deg) translate(0, 20%);
	padding: 13px 15px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 10px;
	background: #E8C22D;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	color: #202020;
	text-align: center;
	font-family: Inter;
	font-size: 27px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 27px */
	letter-spacing: -0.081px;
}

@media screen and (max-width: 1200px) {
	.section-promo.santaDay .section-promo__slogan span {
		font-size: 22px;
	}
}

.section-promo .section-promo__btn {
	width: 240px;
	height: 54px;
	border-radius: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	color: #FFF;
	font-size: 17px;
	font-weight: 500;
	line-height: 150%;
	background-color: #1D52C5;
	margin: 0 auto;
	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}

@media (hover: hover) {
	.section-promo .section-promo__btn:hover {
		background-color: #2f75e4;
		color: #FFF;
		text-decoration: none;
	}
}

.section-promo .section-promo__btn i {
	width: 20px;
	aspect-ratio: 1;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9ImFycm93LW5hcnJvdy1yaWdodCI+CjxwYXRoIGlkPSJJY29uIiBkPSJNMy4zMzM5OCAxMEgxNi42NjczTTE2LjY2NzMgMTBMMTEuNjY3MyA1TTE2LjY2NzMgMTBMMTEuNjY3MyAxNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8L3N2Zz4K");
}

.section-promo.santaDay .section-promo__btn2 {
	display: flex;
	width: 230px;
	padding: 20px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #FFF;
	font-family: Inter;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 25px */
	letter-spacing: 0.75px;
	text-transform: uppercase;
	border-radius: 12px;
	border: 2px solid #FFF;
	text-decoration: none;
}

@media screen and (max-width: 1200px) {
	.section-promo.santaDay .section-promo__btn2 {
		font-size: 20px;
		padding: 15px 20px;
	}
}

.section-promo .section-promo__img {
	width: 600px;
	margin: 0 auto;
}

@media screen and (max-width: 1300px) {
	.section-promo .section-promo__img {
		width: 550px;
	}
}

@media screen and (max-width: 1250px) {
	.section-promo .section-promo__img {
		width: calc(100% - 65px);
	}
}

.section-promo.santaDay .section-promo__img {
	width: 68% !important;
	margin: 0;
	position: absolute;
	right: 0;
	bottom: 0;
}

.section-promo .section-promo__bottom-info {
	color: rgba(29, 29, 31, 0.5);
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;/* 14px */
	letter-spacing: -0.042px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.section-promo.santaDay .section-promo__bottom-info {
	color: rgba(255, 255, 255, 0.80);
	font-size: 14px;
}

.section-promo .section-promo__code-info {
	color: #FFF;
	font-family: Inter;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 20.9px */
	letter-spacing: -0.057px;
	position: absolute;
	bottom: 30px;
	left: 60px;
}

@media screen and (max-width: 1200px) {
	.section-promo .section-promo__code-info {
		bottom: 25px;
		left: 45px;
	}
}

.section-promo .section-promo__code-info b {
	display: block;
	color: #FFF;
	text-align: center;
	text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.40);
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 800;
	line-height: 110%; /* 30.8px */
	text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
	.section-promo .section-promo__code-info b {
		font-size: 24px;
	}
}

.section-promo .section-promo__info-row{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	padding: 10px;
	text-align: center;
	border-radius: 0 0 5px 5px;
}

.section-promo .section-promo__info-row.cyberMonday {
	background-color: #008dfd;
}


.section-promo .section-promo__info-row .top-text{
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 3px;
	font-weight: 400;
	color: yellow;
}

.section-promo .section-promo__info-row.cyberMonday .top-text{
	color: #fff;
}

.section-promo .section-promo__info-row .bottom-text{
	margin: 0;
	color: yellow;
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
	text-shadow: 1px 1px 3px #42445a;
}

.section-promo .section-promo__info-row.cyberMonday .bottom-text{
	color: #fff;
}

.section-promo .section-promo__info-row .bottom-text span{
	font-size: 24px;
    font-weight: 400;
    margin-top: 4px;
}
.section-promo .section-promo__info-row .bottom-text span span{
	font-weight: bold;
}
