/* stylelint-disable no-empty-source */
#tinkoff-button-wrapper {
    text-align:center;
}

.select__box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
                                }
.select__image { width: 36px; height: 36px; flex-shrink: 0; }
.select__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }

.select__option {
  display: flex;
  align-items: center;
  gap: 6px;
}

.select__option-image {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.select__option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
/* разрешаем выход за границы */
.select, .select_fill, .select_init,
.select__dropdown, .select__option { 
  position: relative;
  overflow: visible; 
}

/* ховер-увеличение прямо в списке */
.select__option-image { position: relative; }
.select__option-image img {
  transition: transform .2s ease, box-shadow .2s ease;
  transform-origin: left center;
  z-index: 1;
}
.select__option:hover .select__option-image img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(2.5);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  background: #fff;
  z-index: 9999;
  pointer-events: none; /* чтобы ховер не «скакал» */
}