.counter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 1px solid #D8D8D8;
  border-radius: .4rem; }
  .counter.preloader {
    pointer-events: none; }
    .counter.preloader:before {
      width: 30px;
      height: 30px;
      border: 3px solid #eee;
      border-top-color: #00A19B; }
    .counter.preloader > * {
      filter: none; }

.disabled-text {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  width: 100%;
  text-align: center;
  color: #353535;
  font-size: 10px;
  line-height: 1;
  text-align: left;
  font-weight: 811;
  white-space: nowrap; }
  @media (max-width: 424px) {
    .disabled-text {
      font-size: 9px; } }
  .disabled-text.red {
    color: #FF0000; }

.counter-input {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: auto;
  min-width: 6rem;
  max-width: 9rem;
  height: 4rem;
  padding: 0.5rem 4px;
  text-align: center;
  color: #353535;
  outline: none;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0px 4px; }
  @media (max-width: 1023px) {
    .counter-input {
      max-width: 60px;
      height: 32px;
      font-size: 16px; } }

.counter-btn {
  position: relative;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  background: transparent;
  font-size: 0;
  transition: all .3s ease; }
  @media (max-width: 1023px) {
    .counter-btn {
      width: 32px;
      height: 32px; } }
  .counter-btn:before, .counter-btn:after {
    position: absolute;
    top: calc(50% - .1rem);
    left: calc(50% - .5rem);
    display: block;
    width: 1.2rem;
    height: .2rem;
    content: "";
    background: #6F7682;
    transition: all ease .3s; }
    @media (max-width: 1023px) {
      .counter-btn:before, .counter-btn:after {
        width: 10px;
        height: 1px; } }
  .counter-btn:before {
    transform: rotate(-90deg); }
  @media (min-width: 1024px) {
    .counter-btn:hover:before, .counter-btn:hover:after {
      background: #6AB4B9; } }
  .counter-btn:active:before, .counter-btn:active:after {
    background: #00A19B; }
  .counter-btn[disabled], .counter-btn.disabled {
    cursor: default;
    pointer-events: none; }
    .counter-btn[disabled]:before, .counter-btn[disabled]:after, .counter-btn.disabled:before, .counter-btn.disabled:after {
      background: #D8D8D8; }

.counter-minus {
  order: -1; }
  .counter-minus:before {
    display: none; }

.counter-plus[disabled] ~ .disabled-text, .counter-plus.disabled ~ .disabled-text {
  display: block; }

.disabled-text.active {
  display: block; }

@media (max-width: 1199px) {
  .fixed-card-body-wrap .disabled-text {
    bottom: 89%;
    width: 183px;
    font-size: 10px; } }
