@import '../colors.scss';

.btn-group-toggle {
  .btn-primary, .btn-primary:not(:disabled):not(.disabled):active {
    color: #A3A3A3;
    background-color: $color-s1;
    border-color: $color-s1;
    border-radius: 0 !important;
    transform: none !important;
  }

  .btn-primary:focus, .btn-primary.focus,
  .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
  }

  label.btn.btn-primary.active {
    transform: scale(1.3);
    background-color: white;
    border-color: $color-d4;
    color: black;
    z-index: 1;
    border-radius: 8px;
    border: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .btn {
    font-size: 14px;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 0;
    width: 48px;
  }

  .btn.btn-primary:hover {
    z-index: 0;
  }
}

