/*общие настройки у кнопок*/
.js-store-prod-text a {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px; /*настраиваем отступы, первое число вертикальные, второе горизонтальные*/
  margin-right: 15px; /*отступ от второй до третьей кнопки, если третьей нет, то не работает*/
  margin-top: 20px; /*отступ от текста*/
  border-radius: 5px; /*скругление углов*/
  font-weight: 500; /*толщина шрифта*/
  font-size: 16px; /*размер шрифта*/
}

/*настройки цвета и фона первой кнопки*/
.js-store-prod-text a:first-of-type {
    background-color: #0088FE;
    color: #ffffff !important;
}

/*настройки цвета и фона второй кнопки*/
.js-store-prod-text a:nth-of-type(2) {
    background-color: #2AA81A;
    color: #ffffff !important;
}

/*настройки цвета и фона последней кнопки*/
.js-store-prod-text a:last-of-type {
    background-color: #29AAEB;
    color: #ffffff !important;
}

.t706__cartwin_showed {
  z-index:9999999;
}

.js-store-prod-text a:first-of-type:before {
    /*content: '';*/
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.js-store-prod-text a:nth-of-type(2):before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://static.tildacdn.com/tild6339-3934-4261-b837-396230333038/fi_4494494.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.js-store-prod-text a:last-of-type:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://static.tildacdn.com/tild3231-3631-4561-b863-313636646333/fi_5968804.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 10px;
}