/* каждый выбранный блок становится контейнером и обрезает всё, что вылезает */
#rec1666960071, #rec1678631301{
  position: relative;
  overflow: hidden; /* чтобы не залезало на следующий блок */
}

/* позиция кнопки внутри блока */
#rec1666960071 .bvi-inline-wrap,
#rec1678631301 .bvi-inline-wrap{
  position: absolute;
  top: 105px;     /* опустить/поднять */
  right: 10px;   /* левее/правее */
  z-index: 10;
}

/* кнопка */
.bvi-inline-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  color: #000;

  font-size: 14px;
  line-height: 1;
  cursor: pointer;

  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* глазик */
.bvi-inline-btn .bvi-eye{
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}