/* CannaGrow 0.14.14 – Pflanzenwechsel dauerhaft an den Seiten */
.detail-head-copy{min-width:0}
.detail-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:3px;
}
.detail-title-row h2{
  min-width:0;
  margin:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.plant-detail-position{
  flex:0 0 auto;
  min-width:42px;
  padding:6px 9px;
  border:1px solid rgba(92,240,142,.14);
  border-radius:10px;
  background:rgba(5,16,9,.46);
  color:var(--muted);
  text-align:center;
  font-size:11px;
  font-weight:850;
  white-space:nowrap;
}
.plant-detail-side-nav{
  position:fixed;
  top:50%;
  z-index:112;
  width:54px;
  height:76px;
  display:grid;
  place-items:center;
  border:1px solid rgba(92,240,142,.24);
  border-radius:16px;
  background:rgba(5,24,13,.92);
  color:var(--green);
  box-shadow:0 12px 32px rgba(0,0,0,.36);
  backdrop-filter:blur(10px);
  font-size:29px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  transform:translateY(-50%);
}
.plant-detail-side-nav:hover{background:rgba(18,62,34,.96);border-color:rgba(92,240,142,.48)}
.plant-detail-side-nav:active{transform:translateY(-50%) scale(.96)}
.plant-detail-side-nav-prev{left:max(12px,calc(50vw - 430px))}
.plant-detail-side-nav-next{right:max(12px,calc(50vw - 430px))}
.plant-detail-side-nav.hidden{display:none!important}
.plant-detail-side-nav:disabled{display:none!important}

@media(max-width:820px){
  .plant-detail-side-nav{width:46px;height:66px;border-radius:14px;font-size:25px}
  .plant-detail-side-nav-prev{left:8px}
  .plant-detail-side-nav-next{right:8px}
}
@media(max-width:500px){
  .detail-title-row{gap:7px}
  .plant-detail-position{min-width:36px;padding:5px 7px;font-size:10px}
  .plant-detail-side-nav{
    width:40px;
    height:58px;
    border-radius:13px;
    font-size:22px;
    background:rgba(5,24,13,.86);
  }
  .plant-detail-side-nav-prev{left:5px}
  .plant-detail-side-nav-next{right:5px}
}
