@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap";

/* CssModules:Expander.79ceb47.css-module */
.Expander_Expander_79ceb47 {
  max-height: 0;
  overflow: hidden;
  will-change: height;
}

/* CssModules:Toggle.214c380.css-module */
.Toggle_Toggle_214c380 {
  display: inline-flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.Toggle_Toggle_214c380 > span {
  color: black;
}
.Toggle_Toggle_214c380 > input {
  position: relative;
  appearance: none;
  outline: none;
  height: 1em;
  width: 1.5em;
  border-radius: 1em;
  transition: 200ms all;
  background-color: lightgray;
  cursor: pointer;
}
.Toggle_Toggle_214c380 > input::before {
  content: " ";
  top: 50%;
  left: 7%;
  transform: translate(0, -51%);
  position: absolute;
  width: 50%;
  padding-top: 50%;
  border-radius: 1em;
  background-color: white;
  transition: 200ms all;
}
.Toggle_Toggle_214c380 > input:checked::before {
  left: 42%;
}
.Toggle_Toggle_214c380 > input:checked {
  background-color: palegreen;
}
.Toggle_Toggle_214c380 > input:active {
}

/* CssModules:TextBox.22f110e.css-module */
.readonly_TextBox_22f110e {
  cursor: default;
  opacity: 0.3;
}

/* CssModules:ListSelector.e001884.css-module */
.ListSelector_ListSelector_e001884::-webkit-scrollbar {
  display: none;
}
.ListSelector_ListSelector_e001884 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ListSelector_ListSelector_e001884 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.listItem_ListSelector_e001884:hover {
  background-color: #EFEFEF;
  cursor: pointer;
}
.listItemSelected_ListSelector_e001884 {
  background-color: #DDDDDD;
}

/* CssModules:AddressLookup.f6d333a.css-module */
.AddressLookup_AddressLookup_f6d333a {
  position: relative;
  display: inline-block;
}
.listContainer_AddressLookup_f6d333a {
  border: 2px solid green;
}

/* CssModules:PopupListSelector.d3f4170.css-module */
.PopupListSelector_PopupListSelector_d3f4170 {
  z-index: 1;
  position: absolute;
}
.list_PopupListSelector_d3f4170 {
  max-height: 10em;
  background-color: white;
  border: 1px solid lightgray;
  padding: 0.2em 0;
}
ul.placeholder_PopupListSelector_d3f4170 {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
p.placeholder_PopupListSelector_d3f4170 {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #B0B8C7;
  display: flex;
  justify-content: space-between;
  user-select: none;
}
p.placeholder_PopupListSelector_d3f4170 > i {
  margin-top: 5px;
  color: black;
}
p.placeholder_PopupListSelector_d3f4170:hover {
  background-color: white;
  cursor: default;
}
.list_PopupListSelector_d3f4170 ul > li {
  padding: 0.2em;
}

/* CssModules:Modal.b070d92.css-module */
.ModalPane_Modal_b070d92 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
}
.ModalPaneCentered_Modal_b070d92 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.ModalContentCentered_Modal_b070d92 {
  transform: translateX(-50%);
}
.ModalPane_Modal_b070d92 > * {
  width: fit-content;
}
.blur_Modal_b070d92 {
  background-color: #00000099;
  animation: blurAnimation_Modal_b070d92 200ms ease-out forwards;
}
@keyframes blurAnimation_Modal_b070d92 {
  0% {
    backdrop-filter: blur(0);
  }
  100% {
    backdrop-filter: blur(0.1em);
  }
}

/* CssModules:DatePickerHeader.6b862a2.css-module */
.DatePickerHeader_DatePickerHeader_6b862a2 {
  display: flex;
  flex-direction: column;
}
.nudgeSelector_DatePickerHeader_6b862a2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.nudgeLeft_DatePickerHeader_6b862a2::before {
  content: "<";
}
.nudgeSelectorText_DatePickerHeader_6b862a2 {
  cursor: pointer;
}
.nudgeRight_DatePickerHeader_6b862a2::before {
  content: ">";
}

/* CssModules:DatePicker.6d8a94e.css-module */
.DatePicker_DatePicker_6d8a94e {
  background-color: white;
  border: 1px solid lightgray;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}

/* CssModules:MonthTable.b53f877.css-module */
.DatePickerMonthTable_MonthTable_b53f877 {
  table-layout: fixed;
  text-align: center;
}
.DatePickerMonthTable_MonthTable_b53f877 th {
  text-align: center;
  padding: 0.5em;
}
.DatePickerMonthTable_MonthTable_b53f877 td {
  border: 1px solid lightgray;
  text-align: center;
  vertical-align: middle;
}
.allDays_MonthTable_b53f877 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 2em;
  cursor: pointer;
}
.outMonth_MonthTable_b53f877 {
  opacity: 50%;
}
.inMonth_MonthTable_b53f877 {
}
.disabled_MonthTable_b53f877 {
  text-decoration: line-through;
  opacity: 25%;
  cursor: not-allowed;
}
.selected_MonthTable_b53f877 {
  font-weight: bold;
}
.today_MonthTable_b53f877 {
}
.weekend_MonthTable_b53f877 {
}
.weekday_MonthTable_b53f877 {
}

/* CssModules:Spinner.d1fa161.css-module */
.Modal_Spinner_d1fa161 {
  cursor: wait;
  pointer-events: all;
  z-index: 100;
  background: #FFFFFFBB;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Spinner_Spinner_d1fa161 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3em;
}
.Dot_Spinner_d1fa161 {
  background-color: var(--peachy-pink);
  border-radius: 50%;
  animation: pulse_Spinner_d1fa161 400ms ease-out infinite alternate;
  height: 80px;
  width: 80px;
}
@media screen and (max-width: 900px) {
  .Dot_Spinner_d1fa161 {
    height: 50px;
    width: 50px;
  }
}
.Dot_Spinner_d1fa161:nth-child(2) {
  animation-delay: 125ms;
}
.Dot_Spinner_d1fa161:nth-child(3) {
  animation-delay: 250ms;
}
@keyframes pulse_Spinner_d1fa161 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
clickable:hover {
  cursor: pointer;
}

/* CssModules:TreeNode.b12e4ef.css-module */
.TreeNode_TreeNode_b12e4ef {
  display: flex;
  position: relative;
  flex-direction: column;
  line-height: 2em;
}
.TreeNode_TreeNode_b12e4ef:not(:empty):before {
  position: absolute;
  content: " ";
  height: 100%;
  width: 100%;
  border-left: 2px dashed lightgray;
  border-radius: 1em;
}
.TreeNode_TreeNode_b12e4ef > li {
  padding: 0 0 0 0.2em;
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.TreeNode_TreeNode_b12e4ef > li::before {
  position: absolute;
  pointer-events: none;
  left: 0.8em;
  content: "";
  display: inline;
}
.TreeNode_TreeNode_b12e4ef dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1em;
  padding-left: 1em;
  width: auto;
}
.TreeNode_TreeNode_b12e4ef dt,
.TreeNode_TreeNode_b12e4ef dd {
  display: inline-block;
  margin-inline: 0;
}
.TreeNode_TreeNode_b12e4ef dt {
  font-weight: normal;
}
.TreeNode_TreeNode_b12e4ef li:first-child > dl {
  border-top-left-radius: 1em;
}
.TreeNode_TreeNode_b12e4ef li:last-child > dl {
  border-bottom-left-radius: 1em;
}
.TreeNode_TreeNode_b12e4ef dl:hover {
  background-color: aliceblue;
}
.metaPressed .TreeNode_TreeNode_b12e4ef dl:hover {
  background-color: mistyrose;
  cursor: context-menu;
}
.altPressed .TreeNode_TreeNode_b12e4ef dl:hover {
  background-color: lavender;
  cursor: grabbing;
}
.shiftPressed .TreeNode_TreeNode_b12e4ef dl:hover {
  background-color: lightyellow;
  cursor: grabbing;
}
.TreeNode_TreeNode_b12e4ef > li > ul {
  padding-left: 1.2em;
}
.TreeNode_TreeNode_b12e4ef > li[data-open=true] {
}
.TreeNode_TreeNode_b12e4ef > li[data-open=true] > dl {
  cursor: pointer;
}
.TreeNode_TreeNode_b12e4ef > li[data-open=true] > span:last-child {
}
.TreeNode_TreeNode_b12e4ef > li[data-open=false] > dl {
  cursor: pointer;
}
.TreeNode_TreeNode_b12e4ef > li[data-open=true]::before {
  content: "";
}
.TreeNode_TreeNode_b12e4ef > li[data-open=false]::before {
  content: "";
}

/* CssModules:DragScope.28b6f79.css-module */
.DragPane_DragScope_28b6f79 {
  height: 100vh;
  width: 100vw;
}
.DragPane_DragScope_28b6f79[data-drag-state=draggable] {
  cursor: grab;
}
.DragPane_DragScope_28b6f79[data-drag-state=dragging] {
  cursor: grabbing;
}
.spacePressed *[data-grabbed=true] {
}

/* CssModules:Autocomplete.c0e5ecb.css-module */
.Autocomplete_Autocomplete_c0e5ecb {
  position: relative;
  display: inline-block;
}
.clickable_Autocomplete_c0e5ecb:hover {
  cursor: pointer;
}
.hidden_Autocomplete_c0e5ecb {
  display: none;
}
.choiceList_Autocomplete_c0e5ecb {
  border: 2px solid var(--peachy-pink);
  background-color: white;
  border-radius: 0.5em;
  outline: none;
  height: 7em;
  transform: translateY(2.4em);
  min-width: 25em;
}
.choiceListItem_Autocomplete_c0e5ecb {
  display: block;
  padding: 0.2em 1em;
}
.choiceListItem_Autocomplete_c0e5ecb:hover {
  cursor: pointer;
  background-color: mistyrose;
}
.selectedChoiceListItem_Autocomplete_c0e5ecb {
  background-color: var(--peachy-pink);
  color: white;
}
.tag_Autocomplete_c0e5ecb {
  display: inline-block;
  background-color: var(--peachy-green-light);
  padding: 0.5ch;
  border-radius: 0.5ch;
  margin-top: 0.5ch;
  margin-left: 0.5ch;
}

/* CssModules:ErrorWrapped.d818588.css-module */
.invalidField_ErrorWrapped_d818588 input,
.invalidField_ErrorWrapped_d818588 select {
  border-color: var(--error);
}
.invalidField_ErrorWrapped_d818588 .message_ErrorWrapped_d818588 {
  color: var(--error);
}
.warningField_ErrorWrapped_d818588 input,
.warningField_ErrorWrapped_d818588 select {
  border-color: var(--warning);
}
.warningField_ErrorWrapped_d818588 .message_ErrorWrapped_d818588 {
  color: var(--warning);
}
.message_ErrorWrapped_d818588 {
  position: absolute;
  bottom: -6px;
  right: 8px;
  font-size: small;
  padding-left: 2px;
  padding-right: 2px;
  background: white;
  white-space: nowrap;
}

/* CssModules:PeachyTabs.d266b18.css-module */
.Tabs_PeachyTabs_d266b18 {
  width: 100%;
}
.Tabs_PeachyTabs_d266b18 > ul {
  display: flex;
  flex-direction: row;
}
.Tabs_PeachyTabs_d266b18 > ul > li {
  padding: 0.5em;
  cursor: pointer;
  background-color: white;
  border-radius: 0.5em 0.5em 0 0;
  opacity: 0.6;
  color: var(--text-color);
  border: 1px solid var(--pencil-color);
}
.Tabs_PeachyTabs_d266b18 > ul > li[data-is-selected=true] {
  border-bottom: none;
  opacity: 1;
}
.Tabs_PeachyTabs_d266b18 > div {
  padding: 1em;
  background-color: white;
  border: 1px solid var(--pencil-color);
  border-top: none;
  border-radius: 0 0 0.5em 0.5em;
}

/* CssModules:DashboardTable.f8f9e5c.css-module */
.listContainer_DashboardTable_f8f9e5c {
  margin: 0 150px;
  align-self: normal;
}
.listContainer_DashboardTable_f8f9e5c > section {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  margin-top: 4em;
}
.table_DashboardTable_f8f9e5c {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.table_DashboardTable_f8f9e5c tbody:before {
  content: "@";
  line-height: 20px;
  visibility: hidden;
}
.table_DashboardTable_f8f9e5c :where(th) {
  color: var(--neutral-dark);
}
.table_DashboardTable_f8f9e5c :where(th, td) {
  background-color: white;
  font-size: medium;
  font-weight: normal;
  padding: 2em;
  font-size: var(--font-size-root-xxsmall);
}
.table_DashboardTable_f8f9e5c :where(th, td):first-child {
  border-radius: 10px 0 0 10px;
}
.table_DashboardTable_f8f9e5c :where(th, td):last-child {
  border-radius: 0 10px 10px 0;
}
.dateIssued_DashboardTable_f8f9e5c {
  width: 60%;
}
.link_DashboardTable_f8f9e5c {
  color: initial;
}

/* CssModules:InfoPanels.4685a1d.css-module */
.infoPanels_InfoPanels_4685a1d {
  display: grid;
}
.infoPanels_InfoPanels_4685a1d > div {
  min-height: 150px;
}
.infoPanels_InfoPanels_4685a1d > div:nth-child(2) {
  justify-self: center;
}
.infoPanels_InfoPanels_4685a1d > div:last-child {
  justify-self: end;
}
.infoPanels_InfoPanels_4685a1d span {
  color: var(--primary-color-1);
  font-weight: bold;
}
.yourPlanInfoPanels_InfoPanels_4685a1d {
  grid-template-columns: 1fr 1fr 1fr;
}
.billingInfoPanels_InfoPanels_4685a1d {
  grid-template-columns: 1fr 1fr;
  width: 38em;
}

/* CssModules:SubHeader.36856c9.css-module */
.SubHeader_SubHeader_36856c9 {
  display: grid;
  grid-template-columns: auto 16px;
}
.SubHeader_SubHeader_36856c9 * {
  font-size: inherit;
}
.Edit_SubHeader_36856c9 {
  text-align: right;
}
.Edit_SubHeader_36856c9 > button {
  padding: unset;
  border: unset;
  background-color: unset;
  color: initial;
  font-weight: normal;
  font-size: var(--font-size-xsmall);
}

/* CssModules:Button.ba362a3.css-module */
.button_Button_ba362a3 {
  text-align: center;
  border-radius: 0.5em;
  font-weight: bold;
  transition: all 200ms;
  font-size: var(--font-size-normal);
}
.button_Button_ba362a3:disabled {
  background-color: var(--neutral-dark);
  opacity: 0.5;
}
.solid_Button_ba362a3 {
  padding: 0.75em 4em;
}
.solid_Button_ba362a3:focus {
  filter: var(--button-focus);
}
.solid_Button_ba362a3:not(:disabled):hover {
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.1)) drop-shadow(2px 4px 3px rgba(0, 0, 0, 0.1));
  transform: scale(1.05);
}
.link_Button_ba362a3 {
  border: none !important;
}
.primary_Button_ba362a3 {
  background-color: var(--button-primary-bg-color);
  color: var(--button-primary-font-color);
}
.secondary_Button_ba362a3 {
  background-color: var(--button-secondary-bg-color);
  color: var(--button-secondary-font-color);
  border: 2px solid var(--button-secondary-font-color);
}
.secondary_Button_ba362a3:disabled {
  background-color: var(--button-secondary-bg-color);
  color: var(--neutral-dark);
  border-color: var(--neutral-dark);
}
.light_Button_ba362a3 {
  background-color: var(--button-light-bg-color);
  color: var(--button-light-font-color);
}
.dark_Button_ba362a3 {
  background-color: var(--button-dark-bg-color);
  color: var(--button-dark-font-color);
}
.darkSecondary_Button_ba362a3 {
  background-color: var(--button-secondary-bg-color);
  color: var(--button-dark-bg-color);
  border: 2px solid var(--button-dark-bg-color);
}

/* CssModules:Spinner.532cc02.css-module */
.spinner_Spinner_532cc02 {
  -webkit-animation: peachy-spinner__spin 1s linear infinite;
  animation: peachySpinner__spin_Spinner_532cc02 1s linear infinite;
}
@-webkit-keyframes peachy-spinner__spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes peachySpinner__spin_Spinner_532cc02 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* CssModules:InfoPanel.63ee9a0.css-module */
.infoPanel_InfoPanel_63ee9a0 {
  display: flex;
  flex-direction: column;
  width: 17em;
  background-color: white;
  border-radius: 10px;
  row-gap: 0.5em;
  padding: 1em;
}
.infoPanel_InfoPanel_63ee9a0 > h5 {
  font-size: var(--font-size-normal);
}
.infoPanel_InfoPanel_63ee9a0 p {
  font-size: 0.75rem;
}

/* CssModules:Billing.63bd459.css-module */
.downloadColumn_Billing_63bd459 {
  width: 60%;
  text-align: end;
}
.redHighlight_Billing_63bd459 {
  color: var(--primary-color-1);
  font-weight: bold;
}

/* CssModules:Members.971012e.css-module */
.listContainer_Members_971012e {
  margin: 0 200px;
  align-self: normal;
}
.members_Members_971012e {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  margin-top: 4em;
}
.members_Members_971012e .header_Members_971012e {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
}
.members_Members_971012e .searchBar_Members_971012e {
  grid-column-start: 3;
  display: flex;
}
.members_Members_971012e .searchBar_Members_971012e input[type=text] {
  max-width: fit-content;
  margin-left: auto;
  position: relative;
  padding-left: 2em;
}
.members_Members_971012e .searchBar_Members_971012e i {
  padding: 0.5em;
  position: relative;
  z-index: 1;
  left: 2em;
  top: 3px;
  pointer-events: none;
}
.edit_Members_971012e {
  color: initial;
}
.membersTable_Members_971012e {
  border-collapse: collapse;
  border-spacing: unset;
}
.membersTable_Members_971012e :where(th, td) {
  padding: 2em 2em 2em 0;
}
.membersTable_Members_971012e :where(th, td):first-child,
.membersTable_Members_971012e :where(th, td):last-child {
  width: 5px;
}
.membersTable_Members_971012e .rowGap_Members_971012e {
  opacity: 1;
  visibility: hidden;
  padding: 0.5em;
}
.middleRows_Members_971012e > td:first-child,
.middleRows_Members_971012e > td:last-child {
  border-radius: 0;
}
.middleRows_Members_971012e > td:not(:first-child):not(:last-child),
.lastRow_Members_971012e > td:not(:first-child):not(:last-child) {
  border-top: 2px solid var(--neutral-dark);
}
.firstRow_Members_971012e > td:first-child {
  border-radius: 10px 0 0 0;
}
.firstRow_Members_971012e > td:last-child {
  border-radius: 0 10px 0 0;
}
.lastRow_Members_971012e > td:first-child {
  border-radius: 0 0 0 10px;
}
.lastRow_Members_971012e > td:last-child {
  border-radius: 0 0 10px 0;
}
.manageButton_Members_971012e {
  max-width: 20em;
}

/* CssModules:ManageMembers.6607ba1.css-module */
.manageButton_ManageMembers_6607ba1 {
  height: 3em;
  padding: 6px;
}

/* CssModules:ManageMembersModal.180686b.css-module */
.modal_ManageMembersModal_180686b {
  max-width: 80%;
  min-width: 70em;
}
.modal_ManageMembersModal_180686b section {
  padding: 2em 2em 1em 2em;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  overflow-y: scroll;
  align-items: center;
}
.modal_ManageMembersModal_180686b section,
.modal_ManageMembersModal_180686b .footerContainer_ManageMembersModal_180686b {
  width: 100%;
}
.modal_ManageMembersModal_180686b p {
  font-size: var(--font-size-small);
  padding: 0 15%;
  text-align: justify;
  text-align-last: center;
}
.modal_ManageMembersModal_180686b h3,
p {
  cursor: default;
}
.table_ManageMembersModal_180686b {
  width: inherit;
}
.footerContainer_ManageMembersModal_180686b {
  padding-bottom: 1em;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.footerContainer_ManageMembersModal_180686b button {
  padding-left: 2em;
  padding-right: 2em;
}
.footerContainer_ManageMembersModal_180686b .add_ManageMembersModal_180686b {
  grid-column-start: 1;
  width: max-content;
}
.footerContainer_ManageMembersModal_180686b .add_ManageMembersModal_180686b button {
  font-weight: normal;
  margin-right: 1em;
}
.footerContainer_ManageMembersModal_180686b .done_ManageMembersModal_180686b {
  text-align: right;
}

/* CssModules:DismissibleModal.f2306d0.css-module */
.modal_DismissibleModal_f2306d0 {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--surface-color);
  border: 1px solid var(--neutral-dark);
  border-radius: 0.5em;
  filter: var(--modal-shadow);
  margin: auto;
  max-height: 70vh;
  position: relative;
  overflow-y: scroll;
  row-gap: 1em;
}

/* CssModules:PolicyRow.e2fdda8.css-module */
.AddressLookup_PolicyRow_e2fdda8 > label {
  width: 100%;
}
.inputOverflow_PolicyRow_e2fdda8 input[type=text] {
  box-sizing: border-box;
  padding-right: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.invalidField_PolicyRow_e2fdda8 input[type=text],
label.invalidField_PolicyRow_e2fdda8 {
  background-color: var(--peachy-pink-light-pale);
}

/* CssModules:Child.e281eb3.css-module */
.child_Child_e281eb3 {
  fill: var(--pencil-color);
}

/* CssModules:ManageMembersTable.dbdc387.css-module */
.table_ManageMembersTable_dbdc387 {
  position: relative;
  text-align: left;
  width: 100%;
}
.table_ManageMembersTable_dbdc387 th {
  text-align: center;
  cursor: default;
  white-space: nowrap;
}
.table_ManageMembersTable_dbdc387 th:first-child {
  position: sticky;
  position: -webkit-sticky;
  left: 0px;
  z-index: 11;
}
.table_ManageMembersTable_dbdc387 :where(th, td) {
  padding: 0.5rem;
  position: relative;
  vertical-align: middle;
  font-size: medium;
}
.table_ManageMembersTable_dbdc387 :where(thead, tfoot) :where(th, td) {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.index_ManageMembersTable_dbdc387 {
  width: 40px;
}
.name_ManageMembersTable_dbdc387 {
  min-width: 10em;
}
.dob_ManageMembersTable_dbdc387 {
  min-width: 10em;
  max-width: 10em;
}
.dob_ManageMembersTable_dbdc387 input::placeholder {
  font-size: 0.9em;
}
.address_ManageMembersTable_dbdc387 {
  width: 20em;
}
.email_ManageMembersTable_dbdc387 {
  width: 17em;
}
.plan_ManageMembersTable_dbdc387 {
  width: 9em;
}
.dependants_ManageMembersTable_dbdc387 {
  display: inline-grid;
  grid-auto-flow: column;
  width: 80px;
}
.dependants_ManageMembersTable_dbdc387 span {
  width: 2em;
  margin-top: 3px;
}
.dependants_ManageMembersTable_dbdc387 span:hover {
  cursor: default;
}
.dependants_ManageMembersTable_dbdc387 span.addBtn_ManageMembersTable_dbdc387:hover {
  cursor: pointer;
}
.plan_ManageMembersTable_dbdc387 i {
  position: relative;
  right: 15px;
}
.delete_ManageMembersTable_dbdc387 {
  min-width: 20px;
}

/* CssModules:TableCell.02c07fa.css-module */
.icon_TableCell_02c07fa {
  position: absolute;
  top: 17px;
  right: 19px;
  pointer-events: none;
  transform: scale(1.2);
  color: var(--peachy-purple);
}

/* CssModules:AddPartner.88fb123.css-module */
.addPartner_AddPartner_88fb123 {
  fill: var(--primary-color-1);
}

/* CssModules:AddChild.a782a0d.css-module */
.addChild_AddChild_a782a0d {
  fill: var(--primary-color-1);
}

/* CssModules:AddressLookup.00bfc50.css-module */
.addressList_AddressLookup_00bfc50 {
  border: 2px solid var(--peachy-pink);
  background-color: var(--form-input-bg-color);
  border-radius: 0.5em;
  outline: none;
  transform: translateY(2.1em);
  height: 7em;
  min-width: 25em;
}
.addressItem_AddressLookup_00bfc50 {
  display: block;
  padding: 0.2em 1em;
}
.addressItem_AddressLookup_00bfc50:hover {
  cursor: pointer;
  background-color: var(--form-hover);
}
.selectedAddress_AddressLookup_00bfc50,
.selectedAddress_AddressLookup_00bfc50:hover {
  background-color: var(--form-selected);
  color: var(--form-input-bg-color);
}
.invalidField_AddressLookup_00bfc50 input[type=text] {
  border-color: var(--form-error);
}

/* CssModules:PlanSelector.1322bac.css-module */
.planSelector_PlanSelector_1322bac {
  display: flex;
  align-items: center;
  border: 1px solid var(--pencil-color);
  padding: 0.5em 1em 0.5em 0.5em;
  border-radius: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  box-sizing: border-box;
}
.planSelector_PlanSelector_1322bac > i {
  position: absolute;
  right: 15px;
  pointer-events: none;
}

/* CssModules:PopupListSelector.6487ad9.css-module */
.list_PopupListSelector_6487ad9 {
  border: 2px solid var(--peachy-pink);
  border-radius: 0.5em;
  font-size: var(--font-size-small);
  overflow-y: scroll;
}
.listItem_PopupListSelector_6487ad9 {
  padding: 0.2em 0.5em;
}
.listItem_PopupListSelector_6487ad9:hover {
  background-color: var(--form-hover);
  cursor: pointer;
}
.selectedItem_PopupListSelector_6487ad9 {
  color: white;
}
.selectedItem_PopupListSelector_6487ad9,
.selectedItem_PopupListSelector_6487ad9:hover {
  background-color: var(--peachy-pink);
}

/* CssModules:Partner.b8bd5df.css-module */
.partner_Partner_b8bd5df {
  fill: var(--pencil-color);
}

/* CssModules:BulkAddMembers.7e88e60.css-module */
.progressMessage_BulkAddMembers_7e88e60 {
  width: 100%;
  text-align: center;
}
.progressMessageError_BulkAddMembers_7e88e60 {
  color: red;
}
.buttonsContainer_BulkAddMembers_7e88e60 button {
  font-weight: normal;
  margin: 0.5em;
}

/* CssModules:MoreInfoModal.a339b69.css-module */
.moreInfoModal_MoreInfoModal_a339b69 {
  padding: 2em 6em;
  max-width: 50em;
  min-width: 35em;
  font-size: var(--font-size-small);
}
.moreInfoModal_MoreInfoModal_a339b69 > section {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  gap: 0.6em;
  margin-top: 1em;
}
.moreInfoModal_MoreInfoModal_a339b69 ul {
  display: flex;
  flex-direction: column;
  list-style: disc inside;
  gap: 0.3em;
  padding-top: 0.3em;
  padding-left: 1.5em;
  text-indent: -1.2rem;
}

/* CssModules:PlanEmployeeAssignment.25ed8ff.css-module */
.planEmployees_PlanEmployeeAssignment_25ed8ff {
  display: grid;
  grid-template-columns: var(--col-width-benefit-options) repeat(auto-fit, minmax(var(--col-width-plan), auto));
  column-gap: 2em;
}
.planEmployees_PlanEmployeeAssignment_25ed8ff .panel_PlanEmployeeAssignment_25ed8ff {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.planEmployees_PlanEmployeeAssignment_25ed8ff .bench_PlanEmployeeAssignment_25ed8ff {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: var(--col-width-benefit-options);
  height: max-content;
  gap: 5px;
}
.employee_PlanEmployeeAssignment_25ed8ff,
.addEmployee_PlanEmployeeAssignment_25ed8ff {
  width: var(--col-width-plan);
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 6px;
  text-align: center;
  min-height: 3em;
}
.employee_PlanEmployeeAssignment_25ed8ff {
  border: 1px solid var(--primary-color-1);
}
.portal_PlanEmployeeAssignment_25ed8ff .employee_PlanEmployeeAssignment_25ed8ff.changed_PlanEmployeeAssignment_25ed8ff {
  border-color: var(--peachy-purple);
  background-color: #e7e0ec;
  border-width: 2px;
}
.employee_PlanEmployeeAssignment_25ed8ff.readonly_PlanEmployeeAssignment_25ed8ff:not(.changed_PlanEmployeeAssignment_25ed8ff) {
  border: unset;
}
.employee_PlanEmployeeAssignment_25ed8ff.readonly_PlanEmployeeAssignment_25ed8ff:hover {
  cursor: default;
}
.employee_PlanEmployeeAssignment_25ed8ff.deleted_PlanEmployeeAssignment_25ed8ff {
  text-decoration: line-through;
}
.addEmployee_PlanEmployeeAssignment_25ed8ff {
  border: unset;
}
.addEmployee_PlanEmployeeAssignment_25ed8ff:hover {
  cursor: pointer;
}
.addEmployee_PlanEmployeeAssignment_25ed8ff > span {
  font-size: 0.8em;
}
.dragging_PlanEmployeeAssignment_25ed8ff {
  opacity: 0.25;
}
.overlay_PlanEmployeeAssignment_25ed8ff .readonly_PlanEmployeeAssignment_25ed8ff:hover {
  cursor: not-allowed;
}
.employee_PlanEmployeeAssignment_25ed8ff:hover {
  cursor: grab;
}
.employee_PlanEmployeeAssignment_25ed8ff .firstName_PlanEmployeeAssignment_25ed8ff {
  font-size: var(--font-size-xsmall);
  position: relative;
  top: 0;
}
.employee_PlanEmployeeAssignment_25ed8ff .dependantCount_PlanEmployeeAssignment_25ed8ff {
  font-size: var(--font-size-root-xxsmall);
}
.employee_PlanEmployeeAssignment_25ed8ff .lastName_PlanEmployeeAssignment_25ed8ff {
  font-weight: 700;
}
.employee_PlanEmployeeAssignment_25ed8ff .firstName_PlanEmployeeAssignment_25ed8ff,
.employee_PlanEmployeeAssignment_25ed8ff .lastName_PlanEmployeeAssignment_25ed8ff {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidePanel_PlanEmployeeAssignment_25ed8ff {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.sidePanel_PlanEmployeeAssignment_25ed8ff .benchContainer_PlanEmployeeAssignment_25ed8ff {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.sidePanel_PlanEmployeeAssignment_25ed8ff .benchContainer_PlanEmployeeAssignment_25ed8ff header {
  display: inline-flex;
}
.sidePanel_PlanEmployeeAssignment_25ed8ff > .benchContainer_PlanEmployeeAssignment_25ed8ff i {
  margin-left: auto;
  cursor: pointer;
}
.cancel_PlanEmployeeAssignment_25ed8ff,
.edit_PlanEmployeeAssignment_25ed8ff {
  height: 3em;
  padding: 6px;
}
.benchArea_PlanEmployeeAssignment_25ed8ff {
  min-height: 190px;
  border-radius: 10px;
  border: 4px dashed var(--pencil-color);
  display: flex;
  padding: 5px 3px;
}

/* CssModules:Toggle.86d3cf9.css-module */
input.toggle_Toggle_86d3cf9 {
  background-color: var(--neutral-dark);
  font-size: 0.6em;
  height: 2em;
  min-width: 4em;
  border-radius: 2em;
  align-items: center;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  border: 3px solid var(--neutral-dark);
  box-sizing: content-box;
  appearance: none;
}
input.toggle_Toggle_86d3cf9:focus,
input[type=checkbox].toggle_Toggle_86d3cf9:focus {
  border-color: transparent;
  filter: var(--button-focus);
}
.toggle_Toggle_86d3cf9:checked {
  background-color: var(--peachy-green);
  border: 3px solid var(--peachy-green);
}
.toggle_Toggle_86d3cf9::after {
  transition: all 0.2s;
  position: absolute;
  content: " ";
  background-color: white;
  height: 2em;
  width: 2em;
  left: 0;
  border-radius: 2em;
  transform-origin: center;
}
.toggle_Toggle_86d3cf9:checked::after {
  left: 100%;
  transform: translateX(-100%);
}

/* CssModules:Limit.00b8fdb.css-module */
.text_Limit_00b8fdb:hover {
  cursor: pointer;
}
.list_Limit_00b8fdb {
  border: 2px solid var(--peachy-pink);
  border-radius: 0.5em;
  font-size: var(--font-size-small);
  overflow-y: scroll;
}
.listItem_Limit_00b8fdb {
  padding: 0.2em 0.5em;
}
.listItem_Limit_00b8fdb:hover {
  background-color: var(--form-hover);
  cursor: pointer;
}
.selectedItem_Limit_00b8fdb {
  color: white;
}
.selectedItem_Limit_00b8fdb,
.selectedItem_Limit_00b8fdb:hover {
  background-color: var(--peachy-pink);
}

/* CssModules:MoreInfo.01a1610.css-module */
.moreInfoModal_MoreInfo_01a1610 {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--surface-color);
  border: 1px solid var(--neutral-dark);
  border-radius: 0.5em;
  filter: var(--modal-shadow);
  margin: auto;
  max-height: 70vh;
  position: relative;
  overflow-y: scroll;
  row-gap: 1em;
  padding: 2em 6em;
  max-width: 50em;
  min-width: 35em;
  font-size: var(--font-size-small);
}
.moreInfoModal_MoreInfo_01a1610 > section {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  gap: 0.6em;
  margin-top: 1em;
}
.moreInfoModal_MoreInfo_01a1610 ul {
  display: flex;
  flex-direction: column;
  list-style: disc inside;
  gap: 0.3em;
  padding-top: 0.3em;
  padding-left: 1.5em;
  text-indent: -1.2rem;
}

/* CssModules:PlanConfiguration.707177c.css-module */
:root {
  --plan-border-active-color: lime;
  --plan-border: 2px solid var(--surface-color);
  --plan-row-height: 80px;
}
.MyComp_PlanConfiguration_707177c {
  width: 100px;
}
.icon_PlanConfiguration_707177c {
  display: contents;
}
.crossIcon_PlanConfiguration_707177c {
  transform: scale(0.5);
}
.planConfig_PlanConfiguration_707177c {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: var(--col-width-benefit-options) repeat(auto-fit, minmax(var(--col-width-plan), auto));
  grid-template-rows: 40px repeat(7, minmax(50px, var(--plan-row-height)));
  column-gap: 2em;
  margin-bottom: 2em;
}
.planExcessConfig_PlanConfiguration_707177c,
.planDownload_PlanConfiguration_707177c,
.planEmployeeCounter_PlanConfiguration_707177c,
.planSampleConfig_PlanConfiguration_707177c {
  grid-template-rows: var(--plan-row-height);
}
.planConfig_PlanConfiguration_707177c .title_PlanConfiguration_707177c,
.planConfig_PlanConfiguration_707177c div {
  background-color: var(--surface-color);
}
.planConfig_PlanConfiguration_707177c .title_PlanConfiguration_707177c,
.planConfig_PlanConfiguration_707177c .planBenefitValue_PlanConfiguration_707177c {
  row-gap: 2px;
  padding: 15px;
}
.planConfig_PlanConfiguration_707177c .planBenefitValue_PlanConfiguration_707177c .optionalBenefitLimit_PlanConfiguration_707177c {
  font-size: var(--font-size-root-xxsmall);
}
.planConfig_PlanConfiguration_707177c .benefitOption_PlanConfiguration_707177c,
.planConfig_PlanConfiguration_707177c .excessOption_PlanConfiguration_707177c {
  padding: 0 15px 0 0;
}
.planConfig_PlanConfiguration_707177c .card_PlanConfiguration_707177c {
  display: contents;
}
.planConfig_PlanConfiguration_707177c .card_PlanConfiguration_707177c > :first-child {
  border-radius: 10px 10px 0 0;
}
.planConfig_PlanConfiguration_707177c .card_PlanConfiguration_707177c > :last-child {
  border-radius: 0 0 10px 10px;
}
.planConfig_PlanConfiguration_707177c .card_PlanConfiguration_707177c > :only-child {
  border-radius: 10px;
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c {
  text-align: center;
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c > * {
  width: var(--col-width-plan);
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c > * {
  border: var(--plan-border);
  border-top: none;
  border-bottom: none;
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c > :where(:first-child) {
  border-top: var(--plan-border);
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c > :where(:last-child) {
  border-bottom: var(--plan-border);
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c.activeEdit_PlanConfiguration_707177c > * {
  border-color: var(--plan-border-active-color);
}
.planConfig_PlanConfiguration_707177c .planCard_PlanConfiguration_707177c.activeView_PlanConfiguration_707177c > * {
  border-color: var(--neutral-dark);
}
.title_PlanConfiguration_707177c {
  text-align: center;
  font-weight: 700;
}
.benefitOption_PlanConfiguration_707177c,
.excessOption_PlanConfiguration_707177c,
.samplePlanOption_PlanConfiguration_707177c {
  display: inline-grid;
  grid-template-columns: 5em 1fr 20px;
  align-items: center;
  column-gap: 0.5em;
  text-transform: uppercase;
}
.benefitOption_PlanConfiguration_707177c:hover,
.excessOption_PlanConfiguration_707177c:hover {
  cursor: pointer;
}
.benefitOption_PlanConfiguration_707177c .name_PlanConfiguration_707177c,
.excessOption_PlanConfiguration_707177c .name_PlanConfiguration_707177c,
.samplePlanOption_PlanConfiguration_707177c .name_PlanConfiguration_707177c {
  font-weight: 700;
  font-size: var(--font-size-normal);
}
.benefitOption_PlanConfiguration_707177c .moreInfo_PlanConfiguration_707177c,
.excessOption_PlanConfiguration_707177c .moreInfo_PlanConfiguration_707177c,
.samplePlanOption_PlanConfiguration_707177c .moreInfo_PlanConfiguration_707177c {
  text-align: center;
}
.planBenefitValue_PlanConfiguration_707177c,
.planExcessValue_PlanConfiguration_707177c,
.planDownload_PlanConfiguration_707177c {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.planDownloadIcon_PlanConfiguration_707177c {
  width: 3em;
}
.planDownloadIcon_PlanConfiguration_707177c:hover {
  cursor: pointer;
}
.transparent_PlanConfiguration_707177c {
  opacity: 0;
}

/* CssModules:PlanBuilder.be9ea15.css-module */
:root {
  --col-width-benefit-options: calc(var(--col-width-plan) * 2 + 20px);
  --col-width-plan: 170px;
}
.planBuilder_PlanBuilder_be9ea15 {
  margin-bottom: 15px;
}

/* CssModules:FormattedPrice.449e2a6.css-module */
.FormattedPrice_FormattedPrice_449e2a6 {
  font-family: var(--display-font);
  text-transform: uppercase;
  display: inline-block;
  transition: all 300ms;
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}
.FormattedPrice_FormattedPrice_449e2a6 > span:first-child {
  font-size: 2.5em;
}
.FormattedPrice_FormattedPrice_449e2a6 > span:nth-child(2) {
  font-size: 1.5em;
}

/* CssModules:QuoteFooter.14d0dd2.css-module */
.Footer_QuoteFooter_14d0dd2 {
  position: sticky;
  bottom: 0;
  color: white;
  font-family: var(--display-font);
  width: 100vw;
  max-height: 90px;
  height: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.Footer_QuoteFooter_14d0dd2 label {
  font-size: 2rem;
  text-transform: uppercase;
  margin-right: 10px;
}
.Footer_QuoteFooter_14d0dd2 > div {
  padding: 0 4em 0 2em;
}
.Footer_QuoteFooter_14d0dd2 .CurrentPrice_QuoteFooter_14d0dd2 {
  background-color: var(--primary-color-1);
  display: flex;
  align-items: center;
}
.Footer_QuoteFooter_14d0dd2 .NewPrice_QuoteFooter_14d0dd2 {
  background-color: var(--peachy-purple);
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-right: 5em;
}
.Footer_QuoteFooter_14d0dd2 .NewPrice_QuoteFooter_14d0dd2 button {
  padding-left: 2em;
  padding-right: 2em;
}
.ProceedButton_QuoteFooter_14d0dd2 {
  background-color: #99579a;
}

/* CssModules:YourPlan.095d13f.css-module */
.YourPlan_YourPlan_095d13f {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  margin: 4em 1em;
}

/* CssModules:Card.f7f416d.css-module */
.Card_Card_f7f416d {
  border-radius: 0.5em;
  padding: 1em 0;
  text-align: center;
  width: 20em;
}
.Default_Card_f7f416d {
  background-color: var(--neutral-dark);
  color: var(--button-primary-font-color);
}

/* CssModules:Summary.31cd3c7.css-module */
.Summary_Summary_31cd3c7 {
  display: flex;
  flex-direction: column;
  margin-top: 3em;
  margin-bottom: 5em;
  width: 500px;
  gap: 3em;
}
.Content_Summary_31cd3c7 {
  display: flex;
  flex-direction: column;
  gap: 2em;
  font-size: var(--font-size-root-xsmall);
}
.SummaryChanges_Summary_31cd3c7 {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
.SummaryChanges_Summary_31cd3c7 > ul {
  margin-inline-start: 0.5em;
  list-style: disc inside;
}
.Content_Summary_31cd3c7 h5 {
  font-size: var(--font-size-root-xsmall);
}
.ButtonContainer_Summary_31cd3c7 {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.ButtonContainer_Summary_31cd3c7 button {
  padding-left: 2em;
  padding-right: 2em;
}
.CurrentPremium_Summary_31cd3c7 {
  font-size: var(--font-size-root-xsmall);
}
.Premiums_Summary_31cd3c7 {
  row-gap: 2em;
  align-items: center;
  display: flex;
  flex-direction: column;
  & div {
    font-size: 1.5em;
    border-radius: 20px;
  }
}
.NewPremium_Summary_31cd3c7 {
  background-color: var(--button-primary-bg-color);
  color: var(--button-primary-font-color);
}
.NewAnnualPremium_Summary_31cd3c7 {
  background-color: var(--button-dark-bg-color);
  color: var(--button-primary-font-color);
}
.PremiumText_Summary_31cd3c7 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* CssModules:TouchScreen.660d80f.css-module */
.TouchScreen_TouchScreen_660d80f {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 90vh;
  min-width: 320px;
  padding: 1em;
  max-width: 600px;
}
@media (min-width: 768px) {
  .TouchScreen_TouchScreen_660d80f {
    font-size: 1.3em;
  }
}
@media (min-width: 900px) {
  .TouchScreen_TouchScreen_660d80f {
    font-size: 1.6em;
  }
}

/* src/App.css */
:root {
  --max-width: 1400px;
  --break-width: 900px;
  --primary-color-1: var(--peachy-pink);
  --button-primary-bg-color: var(--primary-color-1);
  --button-primary-font-color: white;
  --button-secondary-bg-color: white;
  --button-secondary-font-color: var(--primary-color-1);
  --button-light-bg-color: var(--peachy-pink-pale);
  --button-light-font-color: white;
  --button-dark-bg-color: var(--peachy-purple);
  --button-dark-font-color: white;
  --link-color: var(--primary-color-1);
  --form-input-bg-color: white;
  --form-highlight: var(--primary-color-1);
  --form-success: limegreen;
  --form-error: var(--peachy-pink);
  --form-hover: mistyrose;
  --form-selected: var(--primary-color-1);
  --header-color: white;
  --header-height: 4em;
  --fullscreen-with-header-height: calc(100vh - var(--header-height));
  --surface-color: white;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: var(--fullscreen-with-header-height);
}
form .toggle-options {
  flex-direction: column;
  gap: 1em;
}
form .toggle-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}
form .toggle-options label,
form p {
  font-size: var(--font-size-small);
}
.icon-info::before {
  content: "\f05a";
  font: var(--fa-font-regular);
}
.icon-calendar::before {
  content: "\f133";
  font: var(--fa-font-light);
}
.icon-warning::before {
  content: "\f071";
  font: var(--fa-font-regular);
}
.icon-edit::before {
  content: "\f044";
  font: var(--fa-font-regular);
}
.icon-search::before {
  content: "\f002";
  font: var(--fa-font-regular);
}
.clickable:hover {
  cursor: pointer;
}
.blur {
  background-color: #FFFFFF77;
  animation: blurAnimation 200ms ease-out forwards;
}
@keyframes blurAnimation {
  0% {
    backdrop-filter: blur(0);
  }
  100% {
    backdrop-filter: blur(0.1em);
  }
}

/* CssModules:PeachyLogo.76fec6e.css-module */
.peachyLogo_PeachyLogo_76fec6e {
  width: 8.8em;
  height: auto;
}

/* CssModules:Header.3eae864.css-module */
.header_Header_3eae864 {
  height: var(--header-height);
  align-items: center;
  justify-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--header-color);
}
.header_Header_3eae864 button {
  font-size: 2em;
}

/* CssModules:DashboardHeader.606fc81.css-module */
.header_DashboardHeader_606fc81 > div {
  display: flex;
  column-gap: 2em;
}
.header_DashboardHeader_606fc81 > div:first-of-type {
  margin-right: auto;
  padding-left: 2em;
}
.header_DashboardHeader_606fc81 > div:last-of-type {
  margin-left: auto;
  padding-right: 2em;
}
.header_DashboardHeader_606fc81 a,
.headerDisabled_DashboardHeader_606fc81 {
  font-size: 1rem;
  font-weight: normal;
  color: unset;
}
.headerDisabled_DashboardHeader_606fc81 {
  opacity: 0.3;
  cursor: default;
}

/* CssModules:BrokerDashboardHeader.f41e05d.css-module */
.header_BrokerDashboardHeader_f41e05d > div {
  display: flex;
  column-gap: 2em;
  padding: 0 150px;
}
.header_BrokerDashboardHeader_f41e05d > div:first-of-type {
  margin-right: auto;
}
.header_BrokerDashboardHeader_f41e05d > div:last-of-type {
  margin-left: auto;
}
.header_BrokerDashboardHeader_f41e05d a {
  font-size: 1rem;
  font-weight: normal;
  color: unset;
}

/* CssModules:CompanyTypeahead.fb56616.css-module */
.CompanyTypeahead_CompanyTypeahead_fb56616 {
  display: flex;
  flex-direction: column;
  min-width: -webkit-fill-available;
}
.SuggestionsList_CompanyTypeahead_fb56616 {
  border: 2px solid var(--peachy-pink);
  background-color: var(--form-input-bg-color);
  border-radius: 0.5em;
  transform: translateY(0.2em);
  min-height: 4em;
  max-height: 14em;
}
.SuggestionsItem_CompanyTypeahead_fb56616 {
  display: block;
  padding: 0.2em 1em;
}
.SuggestionsItem_CompanyTypeahead_fb56616:hover {
  cursor: pointer;
  background-color: var(--form-hover);
}
.selectedSuggestions_CompanyTypeahead_fb56616,
.selectedSuggestions_CompanyTypeahead_fb56616:hover {
  background-color: var(--form-selected);
  color: var(--form-input-bg-color);
}

/* CssModules:ValidationErrors.740389b.css-module */
.errors_ValidationErrors_740389b {
  color: var(--peachy-purple);
  font-size: var(--font-size-small);
}
.errorItem_ValidationErrors_740389b::before {
  content: "!";
  border: 2px solid var(--peachy-purple);
  border-radius: 100%;
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 1em;
}
.errorItem_ValidationErrors_740389b {
  display: none;
}
.errorItem_ValidationErrors_740389b:first-child {
  display: block;
}

/* CssModules:CaptureForm.908eb11.css-module */
.captureForm_CaptureForm_908eb11 {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 1.5em;
  width: 29em;
  padding: 2em;
}
.captureForm_CaptureForm_908eb11 fieldset {
  align-self: stretch;
  display: flex;
  column-gap: 1em;
}
.captureForm_CaptureForm_908eb11 button {
  margin-top: 1em;
  align-self: center;
}
.captureForm_CaptureForm_908eb11 input:focus {
  border-color: var(--form-highlight);
}

/* CssModules:TextBox.05a8a17.css-module */
.textBox_TextBox_05a8a17 {
  border: 1px solid var(--neutral-dark);
  background-color: white;
  border-radius: 0.5em;
  padding: 0.5em 0.75em;
  line-height: 1em;
}
.label_TextBox_05a8a17 {
  width: 100%;
}

/* CssModules:CaptureAdminEmail.13161b3.css-module */
.header_CaptureAdminEmail_13161b3 {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}

/* CssModules:QuoteHeader.83bd73e.css-module */
.quoteHeader_QuoteHeader_83bd73e {
  background-color: white;
  padding: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  width: 100vw;
}
.quoteHeader_QuoteHeader_83bd73e > p {
  max-width: 32em;
  text-align: center;
}
.quoteHeader_QuoteHeader_83bd73e span {
  font-weight: 700;
  font-size: var(--font-size-small);
  cursor: default;
}
.quoteHeader_QuoteHeader_83bd73e a {
  text-decoration: underline;
}

/* CssModules:QuoteFooter.7493759.css-module */
.quoteFooter_QuoteFooter_7493759 {
  position: sticky;
  bottom: 0;
  background-color: var(--primary-color-1);
  color: white;
  padding: 0 8em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 90px;
  max-height: 90px;
}
@media screen and (max-width: 1400px) {
  .quoteFooter_QuoteFooter_7493759 {
    font-size: var(--font-size-small);
  }
}
@media screen and (max-width: 800px) {
  .quoteFooter_QuoteFooter_7493759 {
    padding-left: 2em;
    padding-right: 6em;
  }
  .quoteFooter_QuoteFooter_7493759 button {
    padding-left: 2em;
    padding-right: 2em;
  }
}

/* CssModules:PriceBreakdownModal.a9503df.css-module */
.priceArticle_PriceBreakdownModal_a9503df {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.priceExplained_PriceBreakdownModal_a9503df {
  font-size: var(--font-size-xsmall);
}
.priceBreakdownModal_PriceBreakdownModal_a9503df {
  max-width: 51em;
  padding: 2em 7em 2em 7em;
}
@media screen and (max-width: 600px) {
  .priceBreakdownModal_PriceBreakdownModal_a9503df {
    padding: 5em 1em;
  }
}

/* CssModules:PriceBreakdown.6fae66d.css-module */
.priceBreakdown_PriceBreakdown_6fae66d {
  margin-top: 2em;
}
.priceBreakdown_PriceBreakdown_6fae66d tr > * {
  padding: 0.5em 1em;
}
.priceBreakdown_PriceBreakdown_6fae66d td:last-child {
  width: 40%;
}
.priceBreakdown_PriceBreakdown_6fae66d td:nth-child(2) {
  text-align: right;
}
.priceBreakdown_PriceBreakdown_6fae66d th:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}

/* CssModules:AnnualLimitInfo.bc15013.css-module */
.annualLimitInfo_AnnualLimitInfo_bc15013 {
  cursor: default;
}
.annualLimitInfo_AnnualLimitInfo_bc15013 > mark {
  font-weight: 700;
}
.annualLimitInfoModal_AnnualLimitInfo_bc15013 {
  background-color: var(--surface-color);
  border: 1px solid var(--neutral-dark);
  border-radius: 0.5em;
  filter: var(--modal-shadow);
  position: relative;
}
.annualLimitInfoModal_AnnualLimitInfo_bc15013 > section {
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  row-gap: 2em;
  margin-top: 1em;
  margin-bottom: 2em;
  padding: 2em 6em;
  max-width: 50em;
  min-width: 35em;
  max-height: 70vh;
  overflow: scroll;
}
.annualLimitInfoModal_AnnualLimitInfo_bc15013 > section dl {
  display: grid;
  column-gap: 1em;
  grid-template: auto / 1fr 1fr;
  width: fit-content;
}
.annualLimitInfoModal_AnnualLimitInfo_bc15013 > section h6 {
  font-weight: bold;
}
.annualLimitInfoModal_AnnualLimitInfo_bc15013 > section :is(dl, p) {
  line-height: 1.5em;
}
.annualLimitInfoModal_AnnualLimitInfo_bc15013 > section cite {
  font-size: var(--font-size-small);
}

/* CssModules:Help.7251236.css-module */
.Help_Help_7251236 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
  padding: 3rem;
  cursor: default;
}
.Help_Help_7251236 > p {
  text-align: center;
  max-width: 23rem;
}
.Help_Help_7251236 > div {
  display: flex;
  column-gap: 1rem;
}
.Help_Help_7251236 > div button {
  border-width: 2px;
}

/* CssModules:WhatsNotCovered.aebf211.css-module */
.whatsNotCovered_WhatsNotCovered_aebf211 {
  background-color: white;
  display: flex;
  gap: 3em;
  flex-direction: column;
  align-items: center;
  padding: 4em 8em;
  margin-top: 2em;
  width: 100vw;
}
.whatsNotCovered_WhatsNotCovered_aebf211 ul {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  max-width: 1600px;
  width: 100%;
}

/* CssModules:Exclusion.4eddb62.css-module */
.Exclusion_Exclusion_4eddb62 {
  background-color: var(--neutral-color);
  border-radius: 0.5em;
}
.Exclusion_Exclusion_4eddb62 > div {
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.Exclusion_Exclusion_4eddb62 article {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  cursor: default;
  padding: 0 2em;
  font-size: var(--font-size-small);
}
.Exclusion_Exclusion_4eddb62 article > *:last-child {
  padding-bottom: 2em;
}
.Exclusion_Exclusion_4eddb62 span {
  font-size: 2em;
}
.Exclusion_Exclusion_4eddb62 h6 {
  font-weight: 700;
}
.Exclusion_Exclusion_4eddb62 article > ul {
  list-style: disc;
  padding-left: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3em;
  grid-row-gap: 5px;
}
.Exclusion_Exclusion_4eddb62 article > p {
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .Exclusion_Exclusion_4eddb62 article > ul {
    column-count: 1;
  }
}

/* CssModules:StartDate.633032c.css-module */
.startDate_StartDate_633032c {
  display: flex;
  flex-direction: column;
  padding: 2em 0;
  gap: 1em;
}
.startDate_StartDate_633032c > div {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1em;
}
.startDate_StartDate_633032c > div label {
  max-width: 9rem;
}
.startDate_StartDate_633032c i {
  font-size: 1.5em;
  color: var(--peachy-pink);
  cursor: pointer;
}
.startDate_StartDate_633032c i:focus {
  filter: var(--button-focus);
}
.invalidField_StartDate_633032c input[type=text] {
  border-color: var(--form-error);
}

/* CssModules:PeachyDatePicker.ee2cb12.css-module */
.modal_PeachyDatePicker_ee2cb12 {
  row-gap: 1em;
  padding: 2em 7em;
  border: 1px solid var(--neutral-dark);
  border-radius: 1em;
  cursor: default;
}
.header_PeachyDatePicker_ee2cb12 {
  text-align: center;
  row-gap: 2em;
}
.nudgeSelectors_PeachyDatePicker_ee2cb12 {
  line-height: 2em;
}
.nudgeSelectorText_PeachyDatePicker_ee2cb12 {
  font-weight: bold;
}
.nudgeSelectorList_PeachyDatePicker_ee2cb12 {
  border-radius: 0.5em;
}
.nudgeSelectorListItem_PeachyDatePicker_ee2cb12 {
  padding: 0.2em 0.5em;
}
.nudgeSelectorListItem_PeachyDatePicker_ee2cb12:hover {
  background-color: var(--form-hover);
}
.nudgeSelectorListItemSelected_PeachyDatePicker_ee2cb12 {
  background-color: var(--peachy-pink);
  color: white;
}
.nudgeSelectorListItemSelected_PeachyDatePicker_ee2cb12:hover {
  background-color: var(--peachy-pink);
}
.nudgeLeft_PeachyDatePicker_ee2cb12 {
  color: unset;
  padding: 0;
  width: 2em;
  background-color: transparent;
}
.nudgeRight_PeachyDatePicker_ee2cb12 {
  color: unset;
  padding: 0;
  width: 2em;
  background-color: transparent;
}
.monthTable_PeachyDatePicker_ee2cb12 {
  font-size: 0.8em;
}
.monthTable_PeachyDatePicker_ee2cb12 th {
  font-weight: 500;
}
.monthTable_PeachyDatePicker_ee2cb12 td {
  border: none;
}
.weekNames_PeachyDatePicker_ee2cb12 {
  text-transform: uppercase;
}
.allDays_PeachyDatePicker_ee2cb12 {
  border-radius: 5em;
  height: 3em;
  width: 3em;
  margin: 0.5em;
}
.inMonth_PeachyDatePicker_ee2cb12 {
  background-color: var(--neutral-color);
}
.outMonth_PeachyDatePicker_ee2cb12 {
  opacity: 50%;
}
.selected_PeachyDatePicker_ee2cb12 {
  background-color: var(--peachy-pink);
  color: white;
  font-weight: normal;
}

/* CssModules:CapturePlanDetails.be0897e.css-module */
.planDetails_CapturePlanDetails_be0897e {
  font-size: var(--font-size-small);
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
.planDocLinks_CapturePlanDetails_be0897e > a {
  font-weight: 700;
}

/* CssModules:CardElements.e19564b.css-module */
div:has(#cardNumber, #cardCvc, #cardExpiry) .focus_CardElements_e19564b {
  border-color: var(--form-highlight);
}

/* CssModules:BillingDetails.4a718a0.css-module */
.AddressLookup_BillingDetails_4a718a0 > label {
  width: 100%;
}

/* CssModules:CapturePaymentDetails.ede60fd.css-module */
.form_CapturePaymentDetails_ede60fd {
  display: flex;
  flex-direction: column;
  row-gap: 1.5em;
}
.form_CapturePaymentDetails_ede60fd fieldset {
  line-height: 1em;
  align-self: stretch;
  display: flex;
  column-gap: 1em;
}
.form_CapturePaymentDetails_ede60fd fieldset div {
  border: 1px solid var(--neutral-dark);
  background-color: white;
  border-radius: 0.5em;
  padding: 0.5em 0.75em;
  width: 100%;
  line-height: 1em;
}
.form_CapturePaymentDetails_ede60fd button {
  align-self: center;
}

/* CssModules:Summary.9e27640.css-module */
.Summary_Summary_9e27640 {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.Summary_Summary_9e27640 section {
  padding: 2em 0 2em 0;
}
.WhiteSection_Summary_9e27640 {
  align-items: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100vw;
}
.Heading_Summary_9e27640 {
  padding-top: 3em;
}
.DetailsContainer_Summary_9e27640 {
  width: 470px;
}
.WhiteSection_Summary_9e27640 p,
#payment-form span:nth-of-type(1),
.StartDate_Summary_9e27640 {
  font-size: var(--font-size-root-xsmall);
}
.PlanConfig_Summary_9e27640 {
  font-size: var(--font-size-small);
}

/* CssModules:SubHeader.a407426.css-module */
.SubHeader_SubHeader_a407426 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.SubHeader_SubHeader_a407426 * {
  font-size: var(--font-size-root-xsmall);
}
.Edit_SubHeader_a407426 {
  text-align: right;
}
.Edit_SubHeader_a407426 > button {
  padding: unset;
  border: unset;
  background-color: unset;
  font-weight: normal;
}
.Edit_SubHeader_a407426 i {
  margin-left: 5px;
}

/* CssModules:BusinessDetails.6cbdef4.css-module */
.Contents_BusinessDetails_6cbdef4 {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.Details_BusinessDetails_6cbdef4 {
  display: inline-grid;
  grid-template-columns: 10em 1fr;
}
.Details_BusinessDetails_6cbdef4 p {
  line-height: unset;
}

/* CssModules:PlanMemberCounter.a2c0a24.css-module */
.planMembers_PlanMemberCounter_a2c0a24 {
  width: 100%;
}
.member_PlanMemberCounter_a2c0a24 {
  width: var(--col-width-plan);
  background-color: var(--surface-color);
  border-radius: 10px;
  text-align: center;
  height: 3em;
  line-height: 3em;
  font-weight: bold;
  pointer-events: none;
}

/* CssModules:PlanDetails.5c26a89.css-module */
.PlanDetails_PlanDetails_5c26a89 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1em;
}

/* CssModules:PremiumDetails.a11831e.css-module */
.PremiumDetails_PremiumDetails_a11831e {
  margin-top: 1em;
  row-gap: 2em;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.Cost_PremiumDetails_a11831e {
  border-radius: 0.5em;
  padding: 1em 0;
  text-align: center;
  width: 20em;
}
.Month_PremiumDetails_a11831e {
  background-color: var(--button-primary-bg-color);
  color: var(--button-primary-font-color);
}
.Year_PremiumDetails_a11831e {
  background-color: var(--button-dark-bg-color);
  color: var(--button-dark-font-color);
}

/* CssModules:QuoteAndBuy.f00e2e7.css-module */
.header_QuoteAndBuy_f00e2e7 {
  grid-template-columns: 1fr 9fr 1fr;
}

/* CssModules:WelcomeHeader.1018d57.css-module */
.header_WelcomeHeader_1018d57 {
  display: flex;
  justify-content: center;
  background-color: var(--primary-color-1);
}
.header_WelcomeHeader_1018d57 > svg {
  filter: invert(1);
}

/* CssModules:Welcome.a18ce60.css-module */
.WelcomeContainer_Welcome_a18ce60 {
  background-color: var(--primary-color-1);
  position: absolute;
  top: var(--header-height);
  overflow: hidden;
  bottom: 0;
  left: 0;
  right: 0;
}
.Welcome_Welcome_a18ce60 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  row-gap: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.Welcome_Welcome_a18ce60 p {
  line-height: unset;
}
.textContent_Welcome_a18ce60 {
  width: 30em;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  padding-bottom: 1em;
}
.email_Welcome_a18ce60,
.email_Welcome_a18ce60 > button {
  font-size: var(--font-size-root-xsmall);
  vertical-align: unset;
}
.navigation_Welcome_a18ce60 {
  display: flex;
  flex-direction: row;
  column-gap: 1em;
}
.navigation_Welcome_a18ce60 button {
  padding: 0.75em;
}

/* CssModules:Pdf.467461b.css-module */
.pdf_Pdf_467461b {
  width: 100vw;
  height: 100vh;
}

/* CssModules:LoginHeader.3e7827f.css-module */
.header_LoginHeader_3e7827f {
  display: flex;
  justify-content: center;
}

/* CssModules:PasswordBox.b239d4c.css-module */
.PasswordBox_PasswordBox_b239d4c {
  position: relative;
  display: flex;
}
.PasswordBox_PasswordBox_b239d4c i {
  position: absolute;
  transform: translateY(-50%);
  display: flex;
  right: 0.5em;
  color: var(--peachy-pink);
  top: 50%;
}

/* CssModules:Card.7564aaf.css-module */
.Card_Card_7564aaf {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: white;
  border-radius: 1em;
  padding: 1em;
  filter: var(--card-shadow);
}
.highlight_Card_7564aaf {
  background-color: var(--peachy-purple-light);
}

/* CssModules:IamModal.9965fb4.css-module */
.IamModal_IamModal_9965fb4 {
  min-width: 25em;
  flex-direction: column;
  padding: 1.5em 3em;
}
.IamModal_IamModal_9965fb4 a {
  text-align: right;
  font-size: 0.8em;
}
.IamModal_IamModal_9965fb4 ul {
  color: var(--peachy-purple);
  margin-left: 1em;
  list-style-type: disc;
  font-size: 0.7em;
}
.IamModal_IamModal_9965fb4 mark {
  background-color: white;
  color: var(--peachy-pink);
  font-size: 0.8em;
  font-weight: 600;
}
.IamModal_IamModal_9965fb4 mark::before {
  content: "!";
  width: 1em;
  display: inline-block;
  background-color: var(--peachy-pink);
  color: white;
  text-align: center;
  margin-right: 0.5em;
  border-radius: 100%;
}

/* CssModules:Documents.5652663.css-module */
.name_Documents_5652663 {
  width: 300px;
}
.dateIssued_Documents_5652663 {
  width: 150px;
}
.view_Documents_5652663 {
  text-align: end;
}

/* CssModules:MyQuotes.5973b81.css-module */
.myQuotesHeader_MyQuotes_5973b81 {
  display: flex;
  justify-content: space-between;
}
.goToQuote_MyQuotes_5973b81 {
  color: black;
  text-decoration: underline;
}
.addQuote_MyQuotes_5973b81 {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
.addQuote_MyQuotes_5973b81 > button {
  width: fit-content;
  padding: 1rem 2rem;
  font-size: var(--font-size-normal);
}

/* CssModules:BrokerQuote.fd3baa0.css-module */
.container_BrokerQuote_fd3baa0 {
  display: flex;
  flex-direction: column;
  row-gap: 3em;
  margin-top: 2em;
}
.rowStructure_BrokerQuote_fd3baa0 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 1em;
}
.rowStructure_BrokerQuote_fd3baa0 > div:last-of-type > h4 {
  text-align: end;
}
.details_BrokerQuote_fd3baa0 {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
.subTitle_BrokerQuote_fd3baa0 {
  font-size: var(--font-size-root-xsmall);
}
.disabled_BrokerQuote_fd3baa0 {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

/* CssModules:CompanyDetails.c2e1a41.css-module */
:root {
  --broker-company-typeahead-width: 580px ;
}
.content_CompanyDetails_c2e1a41 {
  display: grid;
  grid-template-columns: var(--broker-company-typeahead-width) 430px;
  justify-content: space-between;
}
input[type=text].invalid_CompanyDetails_c2e1a41 {
  background-color: var(--peachy-pink-light-pale);
}
.companyTypeahead_CompanyDetails_c2e1a41 {
  width: var(--broker-company-typeahead-width);
}

/* CssModules:DownloadPDF.dc92cae.css-module */
.container_DownloadPDF_dc92cae {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4em 8em;
  margin-top: 2em;
  width: 100vw;
}

/* CssModules:ItemDropdown.6be01a0.css-module */
.container_ItemDropdown_6be01a0 {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
.container_ItemDropdown_6be01a0 > p:first-child.input_ItemDropdown_6be01a0 {
  margin-top: 2.4em;
}
.input_ItemDropdown_6be01a0 {
  border: 2px solid var(--pencil-color);
  padding: 0.5em;
  border-radius: 0.5em;
  cursor: pointer;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.input_ItemDropdown_6be01a0,
.list_ItemDropdown_6be01a0 {
  min-width: 260px;
  font-size: 1rem;
}
.listItem_ItemDropdown_6be01a0 {
  padding: 0.5em;
}

/* src/global-style/reset.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img,
embed,
object,
iframe {
  vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
select::-ms-expand {
  display: none;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable] {
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption {
  text-align: left;
}
td,
th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]::-moz-range-thumb {
  border: none;
  background: transparent;
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/* src/global-style/peachy-global.css */
@font-face {
  font-family: "Naoko";
  src: url("./src/global-style/CBNXBMKK-naoko-06-extrabold-webfont.woff") format("woff");
}
:root {
  --app-height: 100vh;
  --header-line-height: 1.35em;
  --paper-color: #F5F7Fa;
  --pencil-color: #dddddd;
  --peachy-pink: #FF5B65;
  --peachy-purple: #6D0E6F;
  --peachy-green: #33EFA9;
  --peachy-pink-light: #FFD7E5;
  --peachy-pink-light-pale: #FFEFF0;
  --peachy-pink-pale: #FF9A9F;
  --peachy-purple-light: #D3B7D4;
  --peachy-green-light: #C9F9E7;
  --neutral-color: #f5f7fa;
  --neutral-dark: #B0B8C7;
  --body-font: "Poppins", sans-serif;
  --display-font:
    "Naoko",
    "Montserrat",
    sans-serif;
  --card-shadow: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1)) drop-shadow(2px 4px 3px rgba(0, 0, 0, 0.1));
  --button-focus: drop-shadow(0px 0px 5px var(--peachy-pink));
  --modal-shadow: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1)) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
  --font-size-normal: 18px;
  --font-size-small: 0.9em;
  --font-size-xsmall: 0.75em;
  --font-size-root-xsmall: 0.875rem;
  --font-size-root-xxsmall: 0.75rem;
}
html {
  scroll-behavior: smooth;
}
html,
body,
.app-root {
  min-height: var(--app-height);
}
body {
  font-family: var(--body-font);
  font-size: var(--font-size-normal);
  background-color: var(--paper-color);
}
p {
  line-height: 1.5em;
}
h1 {
  font-weight: 900;
  font-size: 3em;
  font-family: var(--display-font);
  text-transform: uppercase;
  line-height: var(--header-line-height);
}
h2 {
  font-weight: 900;
  font-size: 2em;
  font-family: var(--display-font);
  text-transform: uppercase;
  line-height: var(--header-line-height);
}
h3 {
  font-weight: 900;
  font-size: 1.5em;
  font-family: var(--display-font);
  text-transform: uppercase;
  line-height: var(--header-line-height);
}
h4 {
  font-weight: 700;
  font-size: 1.5em;
  font-family: var(--body-font);
  line-height: var(--header-line-height);
}
h5 {
  font-weight: 700;
  font-size: 1.2em;
  font-family: var(--body-font);
  line-height: var(--header-line-height);
}
h6 {
  font-weight: 400;
  font-size: 1em;
  font-family: var(--body-font);
  line-height: var(--header-line-height);
}
a,
mark {
  color: var(--peachy-pink);
  background: none;
  cursor: pointer;
}
input[type=text],
input[type=password],
[type=number] {
  display: block;
  width: 100%;
  background-color: white;
  border: 1px solid var(--pencil-color);
  padding: 0.5em;
  border-radius: 0.5em;
}

/* src/global-style/index.css */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/*# sourceMappingURL=CO37VMPA-index.css.map */
