/* ===== ART M SIZE SELECT ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

.t-product__option{
  position:relative !important;

  margin-top:14px !important;

  overflow:visible !important;

  z-index:999 !important;

  min-height:42px !important;
}

/* ===== ВРЕМЕННАЯ ЛИНИЯ И СТРЕЛКА ДО ЗАГРУЗКИ ===== */

/* линия */

.t-product__option:after{
  content:"";

  position:absolute;

  left:0;
  right:0;
  bottom:0;

  height:1px;

  background:#111;

  z-index:1;
}

/* стрелка */

.t-product__option:before{
  content:"";

  position:absolute;

  right:6px;
  top:14px;

  width:8px;
  height:8px;

  border-right:1px solid #111;
  border-bottom:1px solid #111;

  transform:rotate(45deg);

  z-index:1;
}

/* когда кастомный select загрузился */

.t-product__option:has(.artm-size-line):before,
.t-product__option:has(.artm-size-line):after{
  display:none !important;
}

/* ===== СКРЫВАЕМ СТАНДАРТНЫЕ ===== */

.t-product__option-item{
  display:none !important;
}

.t-product__option-title{
  display:none !important;
}

/* ===== СТРОКА ВЫБОРА ===== */

.artm-size-line{
  position:relative;

  display:flex;
  align-items:center;
  justify-content:space-between;

  width:100%;

  height:42px; /* ВЫСОТА СТРОКИ */

  border-bottom:1px solid #111;

  cursor:pointer;

  background:#fff;

  z-index:5;
}

/* ===== ТЕКСТ ===== */

.artm-size-value{
  font-family:'Inter',sans-serif !important;

  font-size:10px !important;

  font-weight:400;

  letter-spacing:.08em;

  text-transform:uppercase;

  color:#111;
}

/* ===== СТРЕЛКА ===== */

.artm-size-arrow{
  width:8px;
  height:8px;

  border-right:1px solid #111;
  border-bottom:1px solid #111;

  transform:rotate(45deg);

  margin-right:6px;

  background:transparent !important;
}

/* ===== ВЫПАДАЮЩИЙ СПИСОК ===== */

.artm-size-dropdown{
  display:none;

  position:absolute !important;

  left:0 !important;
  right:0 !important;

  top:43px !important; /* НИЖЕ / ВЫШЕ СПИСКА */

  width:100% !important;

  max-width:100% !important;

  max-height:180px !important; /* ВЫСОТА СПИСКА */

  overflow-y:auto !important;

  background:#fff !important;

  z-index:50 !important;

  padding:14px 0 16px !important;

  box-shadow:none !important;

  border:none !important;
}

.artm-size-dropdown.is-open{
  display:block !important;
}

/* ===== КНОПКИ ===== */

.artm-size-dropdown button{
  display:block;

  width:100%;

  border:0;

  background:#fff;

  padding:10px 0;

  text-align:center;

  font-family:'Inter',sans-serif !important;

  font-size:10px !important;

  font-weight:400;

  letter-spacing:.08em;

  text-transform:uppercase;

  color:#111;

  cursor:pointer;
}

.artm-size-dropdown button.is-active{
  opacity:1;
}

.artm-size-dropdown button.is-disabled{
  opacity:.35;

  text-decoration:line-through;

  pointer-events:none;
}

/* ===== SOLD OUT ===== */

.t-store__card__sold-out-msg{
  display:none !important;
}

.t-product__soldout,
.js-store-prod-sold-out{
  visibility:hidden;
}

.t-product__soldout:after,
.js-store-prod-sold-out:after{
  content:'SOLD OUT';

  visibility:visible;

  display:block;

  color:#ffffff;
}