.booking-service{
  position:relative;
  padding-right:150px;
  min-height:154px;
}

.booking-service-price{
  position:absolute;
  top:20px;
  right:20px;
}

.booking-service::after{
  content:"Välj →";
  position:absolute;
  right:20px;
  bottom:20px;
  min-width:104px;
  padding:11px 16px;
  border-radius:12px;
  background:var(--accent);
  color:#fff;
  text-align:center;
  font-size:13px;
  font-weight:800;
  box-shadow:0 8px 20px rgba(23,23,23,.16);
}

.booking-service:hover::after{
  transform:translateY(-1px);
}

.booking-service-list + .booking-actions{
  display:none;
}

@media(max-width:640px){
  .booking-service{
    min-height:0;
    padding:18px;
    padding-right:18px;
  }

  .booking-service.selected{
    padding:17px;
  }

  .booking-service-price{
    position:static;
    margin-top:14px;
  }

  .booking-service::after{
    position:static;
    display:block;
    width:100%;
    margin-top:16px;
    padding:13px 16px;
  }
}
