﻿.esh-basketstatus {
  cursor: pointer;
  display: inline-block;
  float: right;
  position: relative;
  transition: all 0.35s;
}

.esh-basketstatus.is-disabled {
  opacity: .5;
  pointer-events: none;
}

.esh-basketstatus-image {
    margin-top: .5rem;
    border: 0.0px solid #000000;
}

.esh-basketstatus-badge {
    background-color: #000000;
    border-radius: 50%;
    color: #FFFFFF;
    display: block;
    height: 1.5rem;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 0;
    transform: translateX(-38%);
    transition: all 0.35s;
    width: 1.5rem;
}

.esh-basketstatus-badge-inoperative {
    background-color: #d09c1b;
    border-radius: 50%;
    color: #000000;
    display: block;
    height: 1.5rem;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 0;
    transform: translateX(-38%);
    transition: all 0.35s;
    width: 1.5rem;
}

.esh-basketstatus:hover .esh-basketstatus-badge {
    background-color: transparent;
    color: #d09c1b;
    transition: all 0.35s;
}

