.boldText {
	font-weight: 700;
}
.italicText {
	font-style: oblique;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0 !important;
	background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
	margin: 0;
}
a,
li {
	text-decoration: none;
}
a {
	cursor: pointer;
	color: inherit;
}
.new_price_cur,
.new_price_val {
	padding: 0;
}
ol.list-1,
ul.list-1 {
	list-style: none;
	margin: 0;
}
ol.list-1 {
	counter-reset: section;
}
ol.list-1 li {
	counter-increment: section;
}
ol.list-1 li::before {
	content: counters(section, '.') '. ';
	margin-right: 5px;
	margin-left: -24px;
	text-align: right;
}
.list-0 {
	display: inline-block;
	margin-left: 24px;
}
ul.list-1 li::before {
	content: '•';
	margin-right: 14px;
	margin-left: -22px;
	text-align: right;
}
ul.list-1 ol,
ul.list-2 div ol {
	counter-reset: listStyle;
}
ul.list-1 ol li,
ul.list-2 div ol li {
	counter-increment: listStyle;
}
ul.list-1 ol li::before,
ul.list-2 div ol li::before {
	content: counter(listStyle, lower-alpha);
}
ol li.listCircle,
ul li.listCircle {
	list-style-type: none;
}
ol li.listCircle::before,
ul li.listCircle::before {
	content: '∘';
	margin-right: 14px;
	margin-left: -22px;
	text-align: right;
}
.imgBox__wrapper {
	margin: 0 auto;
	width: 100%;
	height: fit-content;
	max-width: 100px;
}
.imgBox__wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ctContainer {
	margin: 0 auto;
	width: 100%;
	background: 0 0;
}
.ctContent {
	max-width: 1025px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ctContent,
.ctContentFluid {
	
	background: #fff;
}
.btnWrapper {
	display: flex;
	justify-content: center;
	padding: 15px;
	width: 100%;
	max-width: 1000px;
}
.btnWrapper__btn {
	border: 0;
	border-radius: 15px;
	padding: 15px;
	font-family: sans-serif;
	font-size: 24px;
	word-break: break-word;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: red;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}
.btnWrapper__btn:hover {
	background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
}
.line {
	width: 100%;
	background-color: transparent;
}
.line__container {
	padding: 3px 0;
	width: 100%;
}
.line__bg {
	width: 100%;
	height: 3px;
	background: #000;
}
.lineParagraph__wrapper {
	padding: 15px 75px;
	width: 100%;
}
.lineParagraph__paragraph {
	margin: 0 0 0 10px;
	border-left: 2px solid #095683;
	padding: 10px 25px;
	box-sizing: border-box;
	font-family: sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	word-break: break-word;
}
.oneImageWidget {
	padding: 15px;
}
.oneImageWidget__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
	padding: 20px 0;
	max-width: 800px;
}
.oneImageWidget__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.paragraphWidget__text {
	margin: 0;
	padding: 15px;
	font-family: sans-serif;
	line-height: 30px;
	word-break: break-word;
	text-align: left;
}
@media screen and (max-width: 767px) {
	.textMedia {
		padding: 5px;
	}
	.textHeightMedia {
		line-height: normal;
	}
	.textLetterMedia {
		letter-spacing: normal;
	}
}
@media (max-width: 767px) {
	.btnWrapper__btn {
		font-size: 20px;
	}
	.lineParagraph__paragraph {
		padding: 10px;
	}
}

.day {
	display: block;
	text-align: center;
	color: #fff;
	background-color: red;
	margin-top: 2rem;
}
.info__day {
	padding: 15px;
	border-bottom: 1px solid #f56100;
	border-right: 1px solid #f56100;
	border-left: 1px solid #f56100;
}
.info__day {
	border-color: red !important;
}
.arrow-list {
	img {
		width: 18px;
		display: inline-block;
		margin-right: 10px;
	}
}
.arrow-list {
	display: block;
	width: 100%;
	/* align-items: center; */
	color: #fff;
	padding: 15px;
	margin-top: 10px;
	cursor: pointer;
	background-color: #b6cbdc;
	text-align: justify;
}

.animated__btn {
	animation: heartRate 2s infinite linear;
}

@keyframes heartRate {
	0% {
		transform: scale(1);
		animation-timing-function: linear;
	}

	50% {
		transform: scale(1.2);
		animation-timing-function: linear;
	}
	100% {
		transform: scale(1);
	}
}

@media (max-width: 500px) {
	.animated__btn {
		max-width: 87%;
	}
}

.pulse:after {
	-webkit-animation: pulse 2s 0.4s infinite linear;
	animation: pulse 2s 0.4s infinite linear;
}

.pulse:hover:after,
.pulse:hover:before {
	display: none;
}
