// Lightning Design System 2.29.1
// Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license

@mixin calendar-selection-fill {
  content: '';
  position: absolute;
  background: $brand-accessible;
  top: 0;
  left: -50%;
  height: 100%;
  width: ($square-icon-medium-content-alt + $square-icon-utility-small + $square-icon-small-content);
  transform: translateX($spacing-x-small * -1);
  z-index: -1;
  box-shadow: 0 1px 0 0 var(--slds-g-color-brand-base-20), 0 -1px 0 0 var(--slds-g-color-brand-base-20);
}

@mixin calendar-selection-outline {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -2;
  width: $square-icon-medium-boundary;
  box-shadow: 0 0 0 1px var(--slds-g-color-brand-base-20);
}

