
.order {
	width: 100%;
	position: relative;
	background-color: #fff;
}
.order__subname {
	background-color: rgb(0, 40, 80);
	color: #fff;
	font-size: 25px;
	text-align: center;
	font-weight: 700;
	padding: 6px 0;
}
.order .container {
	display: flex;
	flex-direction: column;
}
.order__title {
	width: 100%;
	max-width: 380px;
	color: #000;
	margin: 30px auto 20px;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}
.order__semi-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.order__list {
	display: flex;
	flex-direction: column;
	list-style-type: disc;
	margin: 0 auto;
	gap: 5px;
}
.order__list_item {
	list-style-type: disc;
}
.order__form {
	display: flex;
	flex-direction: column;
}
.order__images {
	width: 100%;
	max-width: 500px;
	margin: 20px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.order__prod {
	width: 100%;
	max-height: 250px;
    object-fit: contain;
}
.order__images span {
	font-size: 44px;
}
.order__book {
	width: 100%;
	max-width: 200px;
}
.order__block {
	width: 100%;
	max-width: 525px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 20px;
}
.order__payments {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.order__payments span {
	font-size: 18px;
	font-weight: 300;
	padding-left: 4px;
}
.order__payments span strong {
	font-size: 19px;
	font-weight: 700;
}
.order__payments img {
	/* width: 100%; */
	max-width: 200px;
}
.order__offer {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #6f0505;
	border-radius: 6px;
	color: #fff;
	padding-bottom: 10px;
	width: 100%;
	max-width: 360px;
}
.order__offer_title {
	font-size: 18px;
	font-weight: 500;
	padding: 10px 24px;
	background-color: #910f0b;
	border-top-right-radius: 6px;
	border-top-left-radius: 6px;
}
.order__offer_price {
	padding-top: 8px;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 5px;
}
.order__offer_oldprice {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 5px;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.order__btn {
	width: 100%;
	max-width: 525px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #910f0b;
	padding: 12px 30px;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	margin-bottom: 20px;
	transition: 0.2s all ease-in-out;
	animation: pulse 1.8s ease-in-out infinite;
}
.order__btn:hover {
	text-decoration: underline;
	background-color: #ac1812;
}
.order__conditions {
	width: 100%;
	max-width: 475px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0 auto;
	margin-bottom: 10px;
}
.order__conditions_item span {
	font-size: 18px;
}
.pay-imgs img {
    max-width: 60px;
}

.order__payments img {
    /* width: 100%; */
    max-width: 200px;
}