.spin__section {
	--width_polos: 2px;
	--heigh_polos: 32px;
	--heigh_polos_lg: 64px;
  --spin_width: 300px;
  --spin_width_lg: 400px;
}
.spin__section .button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
}
.spin__line {
	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;
	/* top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); */
	position: absolute;
	gap: 32px;
	padding-top: calc(var(--heigh_polos) + 32px);
}
.spin__wrapper {
	height: calc(var(--heigh_polos) * 2 + 32px * 2 + 250px);
	position: relative;
	/* margin: 64px 0; */
	overflow: hidden;
}
.spin__wrapper::before {
	width: var(--width_polos);
	height: var(--heigh_polos);
	background-color: #e5062f;
	content: "";
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	position: absolute;
}
.spin__wrapper::after {
	width: var(--width_polos);
	height: var(--heigh_polos);
	background-color: #e5062f;
	content: "";
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	position: absolute;
}
.item {
	border: 1px solid #171717;
	position: relative;
	width: var(--spin_width);
	display: flex;
	flex-direction: column-reverse;
	padding: 32px;
}
.item__top {
	/* position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none; */
}
.item__top::before {
	/* width: 128px;
  height: 1px;
  background-color: #fff;
  content: "";
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); */
}
.item__img {
	height: 130px;
	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;
	text-align: center;
}
.spin_txt {
	border: 1px solid #FFF;
	padding: 10px 4px;
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 0.06em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}
.item .ps {
	/* position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	pointer-events: none; */
}
.item .ps::after {
	/* content: "";
	position: absolute;
	left: -2px;
	bottom: -2px;
	width: 9px;
	height: 9px;
	pointer-events: none;
	background: url(../img/3.svg) no-repeat; */
}
.item .ps::before {
	/* content: "";
	position: absolute;
	right: -2px;
	bottom: -2px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	width: 9px;
	height: 9px;
	pointer-events: none;
	background: url(../img/4.svg) no-repeat; */
}
.item::after {
	/* content: "";
	position: absolute;
	left: -2px;
	top: -2px;
	width: 9px;
	height: 9px;
	pointer-events: none;
	background: url(../img/1.svg) no-repeat; */
}
.item::before {
	/* content: "";
	position: absolute;
	right: -2px;
	top: -2px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	width: 9px;
	height: 9px;
	pointer-events: none;
	background: url(../img/2.svg) no-repeat; */
}
@media (width >= 48rem /* 768px */) {
	.spin__wrapper::after,
	.spin__wrapper::before {
		height: var(--heigh_polos_lg);
	}
	.spin__line {
		padding-top: calc(var(--heigh_polos_lg) + 32px);
	}
  .item{
    width: var(--spin_width_lg);
  }
  .spin_txt{
    padding: 10px 18px;
  }
  .spin__wrapper {
    height: calc(var(--heigh_polos) * 2 + 32px * 2 + 320px);
  }
}