/* Drawer Component CSS Module */

._Backdrop_1p03n_3 {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999999;

  &[data-state='open'] {
    animation: _fade-in_1p03n_1 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  }

  &[data-state='closed'] {
    animation: _fade-out_1p03n_1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

._Positioner_1p03n_18 {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 99999999;

  &[data-swipe-direction='up'] {
    align-items: flex-start;
  }

  &[data-swipe-direction='left'] {
    justify-content: flex-start;
    align-items: stretch;
  }

  &[data-swipe-direction='right'] {
    justify-content: flex-end;
    align-items: stretch;
  }
}

._Content_1p03n_41 {
  --bleed: 3rem;

  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 70svh;
  padding: 0 1.25rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #ffffff;
  outline: none;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);

  /* Bottom bleed (default) */
  &::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 100%;
    height: var(--bleed);
    background-color: inherit;
    pointer-events: none;
  }

  &[data-state='open'] {
    animation-name: _slide-in-bottom_1p03n_1;
  }

  &[data-state='closed'] {
    animation: _slide-out-bottom_1p03n_1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  &[data-swipe-direction='up'] {
    border-radius: 0 0 16px 16px;

    &::after {
      top: auto;
      bottom: 100%;
    }

    &[data-state='open'] {
      animation-name: _slide-in-top_1p03n_1;
    }

    &[data-state='closed'] {
      animation: _slide-out-top_1p03n_1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
  }

  &[data-swipe-direction='left'] {
    max-height: none;
    max-width: 400px;
    border-radius: 0 16px 16px 0;

    &::after {
      inset-inline: auto;
      inset-block: 0;
      top: 0;
      width: var(--bleed);
      height: auto;
      right: 100%;
    }

    &[data-state='open'] {
      animation-name: _slide-in-left_1p03n_1;
    }

    &[data-state='closed'] {
      animation: _slide-out-left_1p03n_1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
  }

  &[data-swipe-direction='right'] {
    max-height: none;
    max-width: 400px;
    border-radius: 16px 0 0 16px;

    &::after {
      inset-inline: auto;
      inset-block: 0;
      top: 0;
      width: var(--bleed);
      height: auto;
      left: 100%;
    }

    &[data-state='open'] {
      animation-name: _slide-in-right_1p03n_1;
    }

    &[data-state='closed'] {
      animation: _slide-out-right_1p03n_1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
  }
}

._Grabber_1p03n_142 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  padding: 20px 0;
  cursor: grab;
  touch-action: none;
  user-select: none;

  &:active {
    cursor: grabbing;
  }
}

._GrabberIndicator_1p03n_158 {
  width: 100%;
  max-width: 7rem;
  height: 4px;
  background-color: #000000;
  border-radius: 1000px;

  ._Grabber_1p03n_142:hover & {
    background-color: var(--demo-neutral-emphasized);
  }
}

._Trigger_1p03n_170 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid var(--demo-border-emphasized);
  background: var(--demo-bg-popover);
  color: var(--demo-neutral-fg);
  cursor: pointer;

  &:hover {
    background: var(--demo-neutral-subtle);
    border-color: var(--demo-neutral-muted);
  }

  &:focus-visible {
    outline: 2px solid var(--demo-coral-focus-ring);
    outline-offset: 2px;
  }
}

@keyframes _fade-in_1p03n_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes _fade-out_1p03n_1 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes _slide-in-bottom_1p03n_1 {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
}

@keyframes _slide-out-bottom_1p03n_1 {
  from {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
  to {
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes _slide-in-top_1p03n_1 {
  from {
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
}

@keyframes _slide-out-top_1p03n_1 {
  from {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes _slide-in-left_1p03n_1 {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
}

@keyframes _slide-out-left_1p03n_1 {
  from {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes _slide-in-right_1p03n_1 {
  from {
    transform: translate3d(100%, 0, 0);
  }
  to {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
}

@keyframes _slide-out-right_1p03n_1 {
  from {
    transform: translate3d(var(--drawer-translate-x, 0), var(--drawer-translate-y, 0), 0);
  }
  to {
    transform: translate3d(100%, 0, 0);
  }
}
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}