@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap");
:root {
  --body-background: #F0EFEF;
  --div-background: #FCFCFC;
  --notification: #1111111a;
  --bell: #111111;
  --btn-color: #E43022;
  --active-color: #E4302233;
  --text-color: #111111;
  --search-border: rgba(17, 17, 17, 0.2);
  --search-background: $primary-background-color;
}

body[data-theme=dark] {
  --body-background: #0D0F11;
  --div-background: #191D23;
  --notification: #E3E3E3;
  --bell: #191D23;
  --btn-color: #E43022;
  --active-color: #262C36;
  --text-color: #E3E3E3;
  --search-border: #E43022;
  --search-background: transparent;
}

body[data-theme="1"] {
  --body-background: #DFF3D5;
  --div-background: #FCFCFC;
  --notification: #8A76C4;
  --bell: #FCFCFC;
  --btn-color: #8A76C4;
  --active-color: #8A76C433;
  --text-color: #181A2E;
  --search-border: #8A76C4;
  --search-background: $primary-background-color;
}

body[data-theme="2"] {
  --body-background: #EAEDF4;
  --div-background: #FCFCFC;
  --notification: #0A50D6;
  --bell: #FCFCFC;
  --btn-color: #0A50D6;
  --active-color: #0A50D633;
  --text-color: #181A2E;
  --search-border: #0A50D6;
  --search-background: $primary-background-color;
}

.eshop-selector {
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  background-color: var(--div-background);
  height: 56px;
  padding: 12px 20px;
  position: relative;
  margin: 0 !important;
}
.eshop-selector-background {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  opacity: 1;
  z-index: 100;
}
.eshop-selector-selected {
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-color);
  margin-right: 4px !important;
}
.eshop-selector svg {
  width: 16px;
  height: auto;
  transform: rotate(0);
  transition: transform 0.5s ease;
}
.eshop-selector svg path {
  stroke: var(--text-color);
}
.eshop-selector-list {
  display: none !important;
  flex-direction: column;
  position: absolute;
  z-index: 101;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--div-background);
  border: 1px solid var(--text-color);
  border-radius: 10px;
  padding: 12px 0;
}
.eshop-selector-list .kid-input-group {
  padding: 4px 16px !important;
}
.eshop-selector-item {
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
}
.eshop-selector-item:focus, .eshop-selector-item:hover {
  background-color: var(--active-color);
  color: var(--text-color);
}
.eshop-selector.open {
  z-index: 101;
}
.eshop-selector.open .eshop-selector-background {
  display: block !important;
}
.eshop-selector.open .eshop-selector-list {
  display: flex !important;
  animation: OpenSelect 0.7s ease;
  max-height: 216px;
}
.eshop-selector.open .eshop-selector-list > div {
  overflow: auto;
}
.eshop-selector.open .eshop-selector-item {
  animation: OpenSelectItem 0.7s ease;
}
.eshop-selector.open svg {
  transform: rotate(180deg);
}
.eshop-selector.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.eshop-selector-skeleton {
  height: 56px;
  border-radius: 10px !important;
}
.eshop-selector-skeleton_address {
  height: 50px;
  border-radius: 10px !important;
}
.eshop-selector div {
  margin: 0 !important;
}

@keyframes OpenSelect {
  from {
    padding: 0;
  }
  to {
    padding: 12px 0;
  }
}
@keyframes OpenSelectItem {
  from {
    max-height: 0;
    padding: 0;
  }
  to {
    max-height: 48px;
    padding: 12px 20px;
  }
}
:root {
  --body-background: #F0EFEF;
  --div-background: #FCFCFC;
  --notification: #1111111a;
  --bell: #111111;
  --btn-color: #E43022;
  --active-color: #E4302233;
  --text-color: #111111;
  --search-border: rgba(17, 17, 17, 0.2);
  --search-background: $primary-background-color;
}

body[data-theme=dark] {
  --body-background: #0D0F11;
  --div-background: #191D23;
  --notification: #E3E3E3;
  --bell: #191D23;
  --btn-color: #E43022;
  --active-color: #262C36;
  --text-color: #E3E3E3;
  --search-border: #E43022;
  --search-background: transparent;
}

body[data-theme="1"] {
  --body-background: #DFF3D5;
  --div-background: #FCFCFC;
  --notification: #8A76C4;
  --bell: #FCFCFC;
  --btn-color: #8A76C4;
  --active-color: #8A76C433;
  --text-color: #181A2E;
  --search-border: #8A76C4;
  --search-background: $primary-background-color;
}

body[data-theme="2"] {
  --body-background: #EAEDF4;
  --div-background: #FCFCFC;
  --notification: #0A50D6;
  --bell: #FCFCFC;
  --btn-color: #0A50D6;
  --active-color: #0A50D633;
  --text-color: #181A2E;
  --search-border: #0A50D6;
  --search-background: $primary-background-color;
}

.error-boundary-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
.error-boundary-fallback img {
  height: 40px;
  width: auto;
}
.error-boundary-fallback_text {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 0;
  padding: 16px;
}
.error-boundary-fallback_button {
  padding: 10px 40px;
  margin: 40px;
  background: #E43022;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
}

.apparel-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-image: url("/365_team_store_background.png");
  padding: 12px;
}
.apparel-banner-title {
  font-size: 48px;
  line-height: 52px;
  color: #032854 !important;
  font-weight: 700 !important;
  font-family: sans-serif !important;
}
.apparel-banner-imgs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.apparel-banner-imgs-confetti, .apparel-banner-imgs-products, .apparel-banner-imgs-shop-logo {
  width: 30%;
  object-fit: contain;
}
.apparel-banner-store-btn {
  max-width: 400px !important;
  border-radius: 32px !important;
  padding: 16px !important;
  margin-bottom: 42px !important;
}

@media (max-width: 768px) {
  .apparel-banner-title {
    font-size: 24px;
    line-height: 32px;
  }
  .apparel-banner-imgs-confetti {
    display: none;
  }
  .apparel-banner-imgs-products, .apparel-banner-imgs-shop-logo {
    width: 45%;
  }
}
:root {
  --body-background: #F0EFEF;
  --div-background: #FCFCFC;
  --notification: #1111111a;
  --bell: #111111;
  --btn-color: #E43022;
  --active-color: #E4302233;
  --text-color: #111111;
  --search-border: rgba(17, 17, 17, 0.2);
  --search-background: $primary-background-color;
}

body[data-theme=dark] {
  --body-background: #0D0F11;
  --div-background: #191D23;
  --notification: #E3E3E3;
  --bell: #191D23;
  --btn-color: #E43022;
  --active-color: #262C36;
  --text-color: #E3E3E3;
  --search-border: #E43022;
  --search-background: transparent;
}

body[data-theme="1"] {
  --body-background: #DFF3D5;
  --div-background: #FCFCFC;
  --notification: #8A76C4;
  --bell: #FCFCFC;
  --btn-color: #8A76C4;
  --active-color: #8A76C433;
  --text-color: #181A2E;
  --search-border: #8A76C4;
  --search-background: $primary-background-color;
}

body[data-theme="2"] {
  --body-background: #EAEDF4;
  --div-background: #FCFCFC;
  --notification: #0A50D6;
  --bell: #FCFCFC;
  --btn-color: #0A50D6;
  --active-color: #0A50D633;
  --text-color: #181A2E;
  --search-border: #0A50D6;
  --search-background: $primary-background-color;
}

.search-table {
  width: 100%;
  position: relative;
}
.search-table table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.search-table table td:first-child {
  cursor: pointer;
}
.search-table table tbody tr:last-child {
  border-bottom: none;
}
.search-table table tr {
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
.search-table table th, .search-table table td {
  padding: 12px 8px;
  max-width: 136px;
}
.search-table table th {
  color: #111;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}
.search-table table th div {
  width: max-content;
  position: relative;
  cursor: pointer;
}
.search-table table th div::before, .search-table table th div::after {
  position: absolute;
  right: -16px;
  color: lightgrey;
}
.search-table table th div::before {
  top: -6px;
  content: "▴";
}
.search-table table th div::after {
  top: 4px;
  content: "▾";
}
.search-table table .sort-asc div::before {
  color: #111;
}
.search-table table .sort-desc div::after {
  color: #111;
}
.search-table table .search-table-option-btn {
  width: 120px;
}
.search-table table .search-table-edit-btn {
  width: 72px;
}
.search-table table button {
  max-width: max-content;
}
.search-table_small table td {
  font-size: 14px;
}
.search-table_small table th div {
  font-size: 14px;
}
.search-table button > svg {
  height: auto;
  width: auto;
}
.search-table-action {
  margin: 13px 0;
}
.search-table-add-col {
  width: 5% !important;
  position: absolute !important;
  z-index: 10;
  top: 12px;
  background-color: #FCFCFC;
}

.editor-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.editor-table th, .editor-table td {
  display: table-cell !important;
}
.editor-table-columns-selector button {
  display: inline-block !important;
  margin: 0 8px 8px 0 !important;
  width: max-content !important;
}

:root {
  --body-background: #F0EFEF;
  --div-background: #FCFCFC;
  --notification: #1111111a;
  --bell: #111111;
  --btn-color: #E43022;
  --active-color: #E4302233;
  --text-color: #111111;
  --search-border: rgba(17, 17, 17, 0.2);
  --search-background: $primary-background-color;
}

body[data-theme=dark] {
  --body-background: #0D0F11;
  --div-background: #191D23;
  --notification: #E3E3E3;
  --bell: #191D23;
  --btn-color: #E43022;
  --active-color: #262C36;
  --text-color: #E3E3E3;
  --search-border: #E43022;
  --search-background: transparent;
}

body[data-theme="1"] {
  --body-background: #DFF3D5;
  --div-background: #FCFCFC;
  --notification: #8A76C4;
  --bell: #FCFCFC;
  --btn-color: #8A76C4;
  --active-color: #8A76C433;
  --text-color: #181A2E;
  --search-border: #8A76C4;
  --search-background: $primary-background-color;
}

body[data-theme="2"] {
  --body-background: #EAEDF4;
  --div-background: #FCFCFC;
  --notification: #0A50D6;
  --bell: #FCFCFC;
  --btn-color: #0A50D6;
  --active-color: #0A50D633;
  --text-color: #181A2E;
  --search-border: #0A50D6;
  --search-background: $primary-background-color;
}

.dropdown-section {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  background-color: #FCFCFC;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.dropdown-section:last-child {
  margin-bottom: 24px;
}

.dropdown-section .expanded {
  border-bottom: 1px solid rgba(1, 1, 1, 0.2);
}

.dropdown-section .expanded .dropdown-section-arrow {
  rotate: 90deg;
}

.dropdown-section .expanded .dropdown-section-header {
  border-bottom: 1px solid rgba(1, 1, 1, 0.2);
}

.dropdown-section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}

.dropdown-section-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}

.dropdown-section-arrow {
  transition: 0.25s;
}

.dropdown-section-content {
  padding: 16px;
}

.dropdown-section_outlined {
  box-shadow: none !important;
  border: 1px solid #111;
}

#html5-qrcode-button-camera-permission {
  background: #111;
  border-radius: 10px;
  padding: 16px;
  color: white;
  cursor: pointer;
  margin-bottom: 16px;
}

.attached-file {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 8px;
  border-radius: 8px;
}
.attached-file a {
  display: inherit;
}
.attached-file_editable .attached-file-delete-btn {
  display: block;
}
.attached-file:hover .attached-file-icon svg {
  fill: #E43022;
}
.attached-file:hover .attached-file-name {
  color: #E43022;
}
.attached-file-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #f0f0f0;
}
.attached-file-icon svg {
  transition: 0.25s;
  width: 20px;
  height: 20px;
}
.attached-file-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.attached-file-name {
  transition: 0.25s;
}
.attached-file-size {
  color: grey;
}
.attached-file-delete-btn {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  font-size: 12px;
  border-radius: 50%;
  padding: 0;
  outline: none;
  background-color: #111;
  color: white;
}

.signature-pad button {
  display: flex;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 4px;
}
.signature-pad canvas {
  border: 1px solid #111;
  border-radius: 8px;
}
.signature-pad-btns {
  display: flex;
  flex-direction: row;
}
.signature-pad-btn {
  display: flex;
  flex: 1;
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 8px;
}
.signature-pad-btn:last-child {
  margin-right: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.25s ease-out;
}

a:link, a:visited,
a:hover, a:active {
  text-decoration: none;
}

button {
  color: #111;
}

.snackbar {
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  max-width: 50vw;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  z-index: 1000;
}
.snackbar.success {
  background-color: green;
  box-shadow: 0px 8px 24px rgba(0, 128, 0, 0.2);
  color: #fff !important;
}
.snackbar.error {
  background-color: #E09B00;
  box-shadow: 0px 8px 24px rgba(224, 155, 0, 0.2);
  color: #fff !important;
}

.close-button {
  position: fixed;
  top: 16px;
  left: 20px;
  color: #929292;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.row {
  display: flex;
  flex-direction: row;
}
.row_spc-btw {
  justify-content: space-between;
}

.col {
  display: flex;
  flex-direction: column;
}

.text {
  color: var(--text-color);
  font-family: Open Sans;
  font-style: normal;
  font-weight: 400;
}
.text.grey {
  color: grey;
}
.text.danger {
  color: #E43022;
}
.text_bold_700 {
  font-weight: 700;
}
.text_bold {
  font-weight: 600;
}
.text_normal {
  font-weight: 400;
}
.text_large {
  font-size: 18px;
  line-height: 32px; /* 177.778% */
}
.text_xlarge {
  font-size: 24px;
  line-height: 32px; /* 133.333% */
}
.text_medium {
  font-size: 16px;
  line-height: 24px; /* 150% */
}
.text_small_line_medium {
  font-size: 14px;
  line-height: 24px; /* 150% */
}
.text_small {
  font-size: 14px;
  line-height: 18px; /* 114.286% */
}
.text_center {
  text-align: center;
}
.text_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.text_divider::before, .text_divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, grey, grey);
  margin: 0 8px;
}
.text_nowrap {
  white-space: nowrap;
}

.wrapper {
  display: contents;
}

.loading-wrapper_active {
  pointer-events: none;
}

.mobile-item {
  padding: 16px;
  border-radius: 8px;
}
.mobile-item:nth-child(odd) {
  background: rgba(17, 17, 17, 0.02);
}
.mobile-item:nth-child(even) {
  background: rgba(17, 17, 17, 0.06);
}

#toast-container {
  position: fixed;
  bottom: 40px;
  z-index: 99;
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
}
#toast-container .toast-message {
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

#toast-container > .toast-success {
  background-color: #00AC4F;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#toast-container > .toast-success:hover {
  background-color: #00AC4F;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

#toast-container > .toast-error {
  background-color: #e54e44;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#toast-container > .toast-error:hover {
  background-color: #e54e44;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.custom-input-radio {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.custom-input-radio input[type=radio] {
  display: none;
}
.custom-input-radio input[type=radio]:checked + label:before {
  background-color: var(--btn-color);
}
.custom-input-radio label {
  position: relative;
  cursor: pointer;
  color: var(--text-color);
  font-family: Open Sans;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.66px;
  padding-left: 42px;
}
.custom-input-radio label:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  outline: 1px solid var(--btn-color);
  outline-offset: 2px;
  border-radius: 50%;
  transition: 0.35s ease;
}

.custom-input-media-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: lightgrey;
  cursor: pointer;
}
.custom-input-media-preview .react-loading-skeleton {
  width: 105px;
  height: 105px;
}
@media (min-width: 896px) {
  .custom-input-media-preview {
    width: 150px;
    height: 150px;
  }
  .custom-input-media-preview .react-loading-skeleton {
    width: 155px;
    height: 155px;
  }
}
.custom-input-media-preview_empty {
  border: dashed 2px #111;
  offset: 2px;
}
.custom-input-media-preview svg {
  width: 50px;
  height: 50px;
}
.custom-input-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-input {
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-input-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  width: 100%;
  height: 72px;
}
.file-input-preview_empty {
  border: dashed 2px #111;
  offset: 2px;
}
.file-input-preview button {
  max-width: 132px;
  font-size: 14px;
  padding: 8px 16px !important;
}
.file-input-preview.local label {
  padding: 8px 16px;
  background-color: #111;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

input::placeholder, textarea::placeholder {
  color: #969696 !important;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.outlined-btn {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #111;
  color: #111;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 16px;
  transition: 0.25s;
}
.outlined-btn:hover {
  background: #e0e0e0;
}

.circle-outlined-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #111;
  color: #111;
  width: 48px;
  height: 48px;
  transition: 0.25s;
}
.circle-outlined-btn:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.filled-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  color: #FCFCFC;
  background: var(--btn-color);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 16px;
  outline: none;
  transition: 0.25s;
}
.filled-btn:hover {
  background: #111;
}
.filled-btn_dark {
  background: #111;
}
.filled-btn_dark:hover {
  background: #111;
}
.filled-btn_danger {
  background: #E43022;
}
.filled-btn_danger:hover {
  background: #BA2426;
}
.filled-btn_disabled {
  background: lightgrey;
  color: white;
  cursor: default;
}
.filled-btn_disabled:hover {
  background: lightgrey;
  color: white;
}
.filled-btn_gray {
  background: lightgrey;
  color: #111;
}
.filled-btn_gray:hover {
  background: #e0e0e0;
}
.filled-btn_small {
  width: max-content;
  padding: 4px 24px;
  border-radius: 8px;
  height: 24px;
  font-size: 12px;
  line-height: 14px;
}

.switch-btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 54px;
  margin: 0 8px 0 0;
  padding: 4px;
  border-radius: 8px;
  background-color: #e0e0e0;
}
.switch-btns button {
  width: 100%;
  height: auto;
  border-radius: 4px;
  font-size: 16px;
  color: #c2c2c2;
  border: none;
  background: none;
  transition: all 0.5s;
}
.switch-btns button.active {
  background-color: #637381;
  color: #FCFCFC;
}

@media only screen and (max-width: 480px) {
  .custom-input-radio label {
    font-size: 16px;
    padding-left: 32px;
  }
  .custom-input-radio label:before {
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }
}
@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}
.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */
  background-color: var(--base-color);
  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;
  position: relative;
  user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: " ";
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(--custom-highlight-background, linear-gradient(90deg, var(--base-color) 0%, var(--highlight-color) 50%, var(--base-color) 100%));
  transform: translateX(-100%);
  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}
.profile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.profile-menu-title {
  font-size: 48px;
  margin-bottom: 32px;
}
.profile-menu-option-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.profile-menu-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 20vw;
  background-color: #FCFCFC;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 9px 25px -6px;
  transition: 0.25s;
}
.profile-menu-option:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 8px 18px 32px -6px;
}
.profile-menu-option svg {
  width: 35%;
  height: auto;
  background-color: gray;
  padding: 12px;
  border-radius: 12px;
}
.profile-menu-option svg g, .profile-menu-option svg path {
  fill: white;
}
.profile-menu-option-label {
  margin-top: 16px;
  font-size: 22px !important;
  line-height: 28px !important;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .profile-menu-option-list {
    display: flex;
    flex-direction: column;
  }
  .profile-menu-option {
    justify-content: flex-start;
    flex-direction: row;
    height: max-content;
    width: 95%;
    padding: 16px 24px;
    margin-bottom: 16px;
  }
  .profile-menu-option svg {
    width: 60px;
    margin-right: 28px;
  }
  .profile-menu-option-label {
    margin-top: 0;
  }
}
:root {
  --body-background: #F0EFEF;
  --div-background: #FCFCFC;
  --notification: #1111111a;
  --bell: #111111;
  --btn-color: #E43022;
  --active-color: #E4302233;
  --text-color: #111111;
  --search-border: rgba(17, 17, 17, 0.2);
  --search-background: $primary-background-color;
}

body[data-theme=dark] {
  --body-background: #0D0F11;
  --div-background: #191D23;
  --notification: #E3E3E3;
  --bell: #191D23;
  --btn-color: #E43022;
  --active-color: #262C36;
  --text-color: #E3E3E3;
  --search-border: #E43022;
  --search-background: transparent;
}

body[data-theme="1"] {
  --body-background: #DFF3D5;
  --div-background: #FCFCFC;
  --notification: #8A76C4;
  --bell: #FCFCFC;
  --btn-color: #8A76C4;
  --active-color: #8A76C433;
  --text-color: #181A2E;
  --search-border: #8A76C4;
  --search-background: $primary-background-color;
}

body[data-theme="2"] {
  --body-background: #EAEDF4;
  --div-background: #FCFCFC;
  --notification: #0A50D6;
  --bell: #FCFCFC;
  --btn-color: #0A50D6;
  --active-color: #0A50D633;
  --text-color: #181A2E;
  --search-border: #0A50D6;
  --search-background: $primary-background-color;
}

.tos * {
  box-sizing: border-box;
}
.tos h1 {
  text-align: center;
  margin: 40px 0;
}
.tos-modal .kid-modal {
  max-height: 95vh;
  width: auto;
}
.tos-modal .kid-modal-body {
  overflow-y: scroll;
  max-height: 80vh;
  padding: 20px;
}
.tos ol {
  padding-left: 16px;
}
@media (min-width: 896px) {
  .tos ol {
    padding-left: 33px;
  }
}
.tos p, .tos li {
  mso-style-unhide: no;
  mso-style-qformat: yes;
  mso-style-parent: "";
  mso-pagination: none;
  color: #333;
  margin: 20px 0;
  text-autospace: none;
  font-size: 14pt;
  font-family: "Times New Roman", serif;
  mso-fareast-font-family: "Times New Roman";
}
.tos-paragraph {
  mso-style-priority: 1;
  mso-style-unhide: no;
  mso-style-qformat: yes;
  margin-top: 20px;
  margin-right: 0in;
  margin-bottom: 20px;
  margin-left: 41pt;
  text-indent: -0.25in;
  mso-pagination: none;
  text-autospace: none;
  font-size: 14pt;
  font-family: "Times New Roman", serif;
  mso-fareast-font-family: "Times New Roman";
}
.tos h2 {
  mso-style-unhide: no;
  mso-style-qformat: yes;
  margin-top: 0in;
  margin-right: 0in;
  margin-bottom: 48pt;
  margin-left: 0in;
  mso-pagination: none;
  text-autospace: none;
  font-size: 22pt;
  font-family: "Times New Roman", serif;
  mso-fareast-font-family: "Times New Roman";
}
.tos h4 {
  mso-style-unhide: no;
  mso-style-qformat: yes;
  mso-style-parent: "";
  mso-pagination: none;
  color: #333;
  margin: 20px 0;
  text-autospace: none;
  font-size: 14pt;
  font-weight: bold;
  font-family: "Times New Roman", serif;
  mso-fareast-font-family: "Times New Roman";
}
.tos ul {
  list-style-type: disc;
}
.tos ul li {
  margin: 0 0 8px 52px;
}
.tos span {
  font: 7pt "Times New Roman";
}
.tos .ol3 {
  counter-reset: section;
}
.tos .ol3 li {
  counter-increment: section;
}
.tos .ol3 li::before {
  content: counters(section, ".") ". ";
}
.tos .ol3 li::marker {
  content: none;
}
.tos .ol3 ol {
  counter-reset: subsection;
}
.tos .ol3 ol li {
  counter-increment: subsection;
}
.tos .ol3 ol li::before {
  content: counter(section) "." counter(subsection) " ";
}
.tos .ol3 ol.alpha {
  list-style-type: none;
  counter-reset: list;
}
.tos .ol3 ol.alpha li {
  counter-increment: list;
}
.tos .ol3 ol.alpha li::before {
  content: "(" counter(list, lower-alpha) ") ";
}
.tos-list {
  max-width: 1240px;
  margin: 128px auto;
}
.tos-drop-down {
  border-radius: 20px;
  overflow: hidden;
}
.tos-drop-down:not(:first-of-type) {
  margin-top: 24px;
}
.tos-drop-down > .tos-header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #111;
  padding: 4px 24px;
}
.tos-drop-down > .tos-header.open > button:last-of-type > svg {
  transform: rotate(180deg);
}
.tos-drop-down h3 {
  width: 100%;
  color: #FCFCFC;
  font-size: 16px;
}
.tos-drop-down svg {
  width: 24px;
  height: auto;
  transition: 0.25s;
}
.tos-drop-down svg path {
  stroke: #FCFCFC;
}
.tos-drop-down button {
  border: none;
  background: none;
  padding: 0;
  margin: 0 24px 0 0;
  transition: 0.25s;
}
.tos-drop-down button:hover svg path {
  stroke: #c2c2c2;
}
.tos-drop-down button:last-of-type {
  margin: 0 !important;
}
.tos ol.upper {
  list-style-type: upper-alpha;
}
.tos ol.disk {
  list-style-type: disc;
}
.tos h3.title {
  color: black;
  font-weight: bold;
  text-align: center;
  margin-top: 36px;
}
.tos-row {
  display: flex;
}
.tos-row > * {
  font-size: 14pt;
  font-family: "Times New Roman", serif;
}
.tos-row > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 896px) {
  .tos-row > div {
    width: 50%;
  }
}
.tos-row label {
  border-top: 1px solid;
  padding: 8px;
}
.tos-row canvas {
  border: 1px solid;
  border-radius: 8px;
  margin: 8px 0 0;
}
.tos-row button {
  margin: 8px 0;
  border-radius: 8px;
  border: none;
  background: var(--btn-color);
  color: #FCFCFC;
  padding: 8px;
  font-weight: bold;
  font-size: 14pt;
}
.tos-row input {
  margin: 16px 0 8px;
  border: 1px solid;
  border-radius: 8px;
  padding: 8px;
  font-size: 14pt;
}
.tos-empty {
  margin-top: 40px;
}
@media (min-width: 896px) {
  .tos-empty {
    margin-top: 0;
  }
}

.thankyou {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 896px) {
  .thankyou {
    height: 100vh;
  }
}
.thankyou > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 896px) {
  .thankyou > div {
    width: 60vw;
    max-width: 60vw;
  }
}
.thankyou-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.thankyou-head h1 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.thankyou-head h2 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 0;
}
.thankyou-head p {
  font-size: 25px;
  font-weight: normal;
  text-align: center;
  margin: 20px 0 0;
}
.thankyou-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (min-width: 896px) {
  .thankyou-content {
    flex-direction: row;
  }
}
.thankyou-step {
  width: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(17, 17, 17, 0.3);
  padding: 20px;
  border-radius: 25px;
  margin: 20px 5px;
}
@media (min-width: 896px) {
  .thankyou-step {
    width: 30%;
    margin: 5px;
  }
}
.thankyou-step svg {
  width: auto;
  height: 120px;
}
.thankyou-step svg path, .thankyou-step svg g {
  fill: #c2c2c2;
  stroke: #c2c2c2;
}
.thankyou-step h3 {
  font-size: 25px;
  margin: 20px 0 0;
}
.thankyou-step h4 {
  font-size: 25px;
  font-weight: normal;
  text-align: center;
  margin: 10px 0 0;
}
.thankyou-step p {
  width: 100%;
  text-align: left;
  font-size: 16px;
  margin-top: 20px;
}
.thankyou-step a {
  width: 100%;
  margin-top: 20px;
  color: #E43022;
  font-weight: bold;
}
.thankyou-step img {
  width: 100%;
  height: auto;
}

.my-kids {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}
.my-kids .kid-modal-body {
  padding: 28px;
}
.my-kids #email {
  margin-bottom: 0 !important;
}
.my-kids-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.my-kids .kid-header {
  width: 100%;
  padding: 32px;
}
.my-kids-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.my-kids-btn button {
  width: 200px;
  height: 40px;
  background-color: var(--btn-color);
  color: #FCFCFC;
  font-size: 18px;
  line-height: 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin: 0 16px;
  transition: 0.25s;
}
.my-kids-btn button:hover {
  background-color: #BA2426;
}
.my-kids .kid-modal {
  overflow: hidden;
}
@media (max-width: 896px) {
  .my-kids .kid-modal {
    width: 100% !important;
  }
}
.my-kids .kid-modal-body {
  background-color: #F0EFEF;
  max-height: 700px;
  overflow: auto;
}
@media (max-width: 896px) {
  .my-kids .kid-modal-body {
    height: calc(100% + 80px);
    max-height: calc(100vh - 69px);
  }
}
.my-kids .auth-button-container {
  width: 100%;
  margin: 24px 0 0;
}
.my-kids .auth-button-container button {
  width: 100%;
}
.my-kids .signup-container {
  max-width: 100% !important;
  width: 100% !important;
}
.my-kids .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.my-kids .input-group input {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.my-kids .input-group span.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.my-kids-row {
  display: flex;
  justify-content: space-between;
}
.my-kids-row:last-child .kid-input-group {
  margin-bottom: 4px;
}
.my-kids-row .kid-input-group {
  margin-left: 8px;
}
.my-kids-row .kid-input-group:first-child {
  margin-left: 0;
}
.my-kids-row.line {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.my-kids-row.line button {
  border: none;
  background: none;
}
.my-kids-row.line svg {
  width: 18px;
  height: auto;
}
.my-kids-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.my-kids-row-btn {
  display: flex;
  flex-wrap: wrap;
}
.my-kids-row-btn button {
  width: calc(50% - 16px);
  height: 46px;
  background-color: #111;
  color: #FCFCFC;
  font-size: 18px;
  line-height: 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  margin: 8px 8px 0;
  transition: 0.25s;
}
.my-kids-row-btn button:hover {
  background-color: #2a2a2a;
}
.my-kids-row-btn button.red {
  background-color: var(--btn-color);
}
.my-kids-row-btn button.red:hover {
  background-color: #BA2426;
}
.my-kids-row-btn .full-width {
  width: 100%;
}
.my-kids-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  max-width: 1240px;
  padding: 0 0 64px;
}
.my-kids-list > span {
  width: calc(50% - 32px);
  height: 300px;
  margin: 16px;
}
@media (max-width: 1024px) {
  .my-kids-list > span {
    width: 100%;
  }
}
.my-kids-list .react-loading-skeleton {
  height: 100%;
}
.my-kids-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 32px);
  margin: 16px;
  padding: 16px;
  background-color: #FCFCFC;
  border-radius: 12px;
  border: 1px solid lightgrey;
  cursor: pointer;
  transition: 0.25s;
}
@media (max-width: 1024px) {
  .my-kids-item {
    width: 100%;
  }
}
.my-kids-item:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 8px 8px 16px -4px;
}
.my-kids-item .kid-card.progress-card {
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none;
}
.my-kids-item-info {
  display: flex;
  flex-direction: column;
}
@media (min-width: 520px) {
  .my-kids-item-info {
    flex-direction: row;
  }
}
.my-kids-item-info > img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}
@media (min-width: 520px) {
  .my-kids-item-info > img {
    width: 200px;
  }
}
.my-kids-item-info-fundraiser {
  display: flex;
  flex-direction: column;
  margin: 16px 0 0;
}
@media (min-width: 520px) {
  .my-kids-item-info-fundraiser {
    margin: 0 0 0 16px;
  }
}
.my-kids-item-info-fundraiser img {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FCFCFC;
  border-radius: 5px;
  border: 1px solid var(--text-color);
  object-fit: contain;
  padding: 4px;
}
.my-kids-item-info-fundraiser h3 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 0 8px;
}
.my-kids-item-info-fundraiser h4 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 0 16px;
}
.my-kids-item-info-fundraiser > div {
  display: flex;
  align-items: center;
  margin: 16px 0 0;
}
.my-kids-form {
  width: 100%;
}
.my-kids-form img {
  width: 300px;
  min-width: 300px;
  height: 300px;
  border-radius: 8px;
  border: 1px solid #111;
  object-fit: cover;
}
.my-kids-form-selector {
  justify-content: space-between;
}
.my-kids-form .kid-input-group {
  display: flex;
  flex-direction: column;
  color: #111111;
}
.my-kids-form .kid-input-group label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}
.my-kids-form .kid-input-group label.error {
  color: #E43022;
}
@media (min-width: 480px) {
  .my-kids-form .kid-input-group label {
    font-size: 14px;
    line-height: 24px;
  }
}
.my-kids-form .kid-input-group input, .my-kids-form .kid-input-group select {
  background-color: #FCFCFC;
  height: 48px;
  border-radius: 10px;
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 480px) {
  .my-kids-form .kid-input-group input, .my-kids-form .kid-input-group select {
    height: 56px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
.my-kids-form .kid-input-group select {
  background: url("/assets/images/arrow-down.svg") no-repeat #FCFCFC;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
}
.my-kids-form .kid-input-group .bordered {
  background-color: #FCFCFC;
}
.my-kids-info {
  width: 100%;
  margin-left: 12px;
}
.my-kids-modal-detail {
  display: flex;
  flex-direction: column;
}
@media (min-width: 896px) {
  .my-kids-modal-detail {
    flex-direction: row;
  }
}
.my-kids-avatar {
  position: relative;
}
.my-kids-avatar-wrapper {
  cursor: pointer;
}
.my-kids-avatar-delete, .my-kids-avatar-edit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: absolute;
  background: lightgrey;
  border: none;
  padding: 4px;
  border-radius: 50%;
  top: 8px;
}
.my-kids-avatar-delete svg, .my-kids-avatar-edit svg {
  width: 20px;
  height: 20px;
}
.my-kids-avatar-delete {
  right: 8px;
}
.my-kids-avatar-edit {
  right: 44px;
}
.my-kids-form-create .invalid-feedback {
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  color: #E43022 !important;
}

@media (max-width: 896px) {
  .my-kids .kid-header {
    padding: 12px 20px;
  }
  .my-kids-avatar {
    width: max-content;
    margin-bottom: 24px;
  }
  .my-kids-info {
    margin-left: 0;
  }
  .my-kids-row-btn button {
    width: calc(50% - 4px);
    font-size: 16px;
    border-radius: 8px;
    margin: 4px 4px 0 0;
  }
  .my-kids-modal-detail {
    align-items: center;
  }
  .my-kids-form-selector .text_small {
    font-size: 12px;
    line-height: 16px;
  }
  .my-kids-form-selector .eshop-selector {
    padding: 8px;
    height: 48px;
    border-radius: 8px;
  }
  .my-kids-form-selector .eshop-selector .eshop-selector-selected {
    font-size: 14px;
  }
  .my-kids-form-selector .eshop-selector .eshop-selector-item {
    padding: 8px;
    font-size: 14px;
    line-height: 18px;
  }
}
p, h5 {
  margin: 0;
}

button {
  cursor: pointer;
}

.profile {
  width: 100%;
  min-height: 100vh;
  background-color: #F0EFEF;
  display: flex;
  justify-content: center;
  padding: 20px;
}
@media (min-width: 480px) {
  .profile {
    padding: 32px;
  }
}
.profile input {
  border: none !important;
}

.profile-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 480px) {
  .profile-container {
    width: 392px;
  }
}

.profile-logo {
  margin: 12px 0;
}
@media (min-width: 480px) {
  .profile-logo {
    margin: 16px 0 20px;
  }
}
.profile-logo img {
  height: 24px;
}
@media (min-width: 480px) {
  .profile-logo img {
    height: 32px;
  }
}

.profile-logo-title {
  font-size: 24px;
  line-height: 32px;
  margin: 12px 0;
  align-items: center;
}
@media (min-width: 480px) {
  .profile-logo-title {
    font-size: 32px;
    line-height: 65px;
    margin: 12px 0;
  }
}

.profile-logo-subtitle {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 320px;
  margin-bottom: 32px;
}

.profile-avatar {
  width: 112px;
  height: 112px;
  position: relative;
  margin: 20px 0;
}
@media (min-width: 480px) {
  .profile-avatar {
    width: 152px;
    height: 152px;
  }
}
.profile-avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #E43022;
}
.profile-avatar button {
  position: absolute;
  bottom: 0;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background-color: #E43022;
}
@media (min-width: 480px) {
  .profile-avatar button {
    width: 40px;
    height: 40px;
  }
}
.profile-avatar button svg {
  width: 12px;
  height: auto;
}
@media (min-width: 480px) {
  .profile-avatar button svg {
    width: 20px;
  }
}
.profile-avatar button input {
  display: none;
}

.profile-form {
  margin: 10px 0;
  width: 100%;
  max-width: 392px;
}
.profile-form div {
  display: flex;
  flex-direction: column;
  color: #111111;
}
.profile-form div:not(:first-of-type) {
  margin-top: 8px;
}
@media (min-width: 480px) {
  .profile-form div:not(:first-of-type) {
    margin-top: 12px;
  }
}
.profile-form div label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
}
.profile-form div label.error {
  color: #E43022;
}
@media (min-width: 480px) {
  .profile-form div label {
    font-size: 14px;
    line-height: 24px;
  }
}
.profile-form div input, .profile-form div select {
  background-color: #FCFCFC;
  height: 48px;
  border-radius: 10px;
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 480px) {
  .profile-form div input, .profile-form div select {
    height: 56px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
.profile-form div select {
  background: url("/assets/images/arrow-down.svg") no-repeat #FCFCFC;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
}
.profile-form div .bordered {
  background-color: #FCFCFC;
}
.profile-form .profile-error {
  font-size: 12px;
  line-height: 24px;
  color: #E43022;
  margin: 6px 0 0;
}
@media (min-width: 480px) {
  .profile-form .profile-error {
    font-size: 14px;
    margin: 8px 0 0;
  }
}

.profile-prizes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
.profile-prizes-grid .kid-prizes-item {
  flex: 0 0 calc(33.33% - 22px);
}

.profile-prizes-list {
  display: flex;
  flex-direction: column;
  width: 100% !important;
}
.profile-prizes-list .kid-prizes-item {
  margin-bottom: 16px;
  width: 100% !important;
}

.profile-form-password {
  position: relative;
}
.profile-form-password input {
  padding-right: 54px !important;
}
.profile-form-password button {
  position: absolute;
  right: 15px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: 0;
}
@media (min-width: 480px) {
  .profile-form-password button {
    right: 20px;
    bottom: 14px;
    width: 28px;
    height: 28px;
  }
}
.profile-form-password button svg {
  width: 24px;
  height: auto;
}

.profile-hr {
  width: 100%;
  max-width: 392px;
  height: 1px;
  opacity: 20%;
  background-color: #111111;
  margin: 2px 0;
}
@media (min-width: 480px) {
  .profile-hr {
    margin: 10px 0;
  }
}

.profile-update {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 392px;
  color: #111;
}
.profile-update div {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.profile-update div h5 {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
}
@media (min-width: 480px) {
  .profile-update div h5 {
    font-size: 14px;
    line-height: 24px;
  }
}
.profile-update div button {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  color: #E43022;
  border: 0;
  text-decoration: underline;
}
@media (min-width: 480px) {
  .profile-update div button {
    font-size: 14px;
    line-height: 24px;
  }
}
.profile-update p {
  font-size: 14px;
  line-height: 28px;
}
@media (min-width: 480px) {
  .profile-update p {
    font-size: 16px;
    line-height: 28px;
  }
}

.profile-action {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 392px;
  margin: 10px 0 24px 0;
}
@media (min-width: 480px) {
  .profile-action {
    margin: 22px 0 32px;
  }
}
.profile-action .error {
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  color: #E43022;
  text-align: center;
  margin-top: 8px;
}
.profile-action button, .profile-action a {
  position: relative;
  width: calc(50% - 6px);
  height: 48px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  transition: 0.25s;
}
@media (min-width: 480px) {
  .profile-action button, .profile-action a {
    height: 56px;
    font-size: 16px;
    line-height: 28px;
  }
}
.profile-action button.full-width, .profile-action a.full-width {
  width: 100%;
}
.profile-action button:disabled, .profile-action a:disabled {
  opacity: 0.1;
}
.profile-action .cancel {
  border: 1px solid #111;
  color: #111;
}
.profile-action .cancel:hover {
  background-color: #111;
  color: #FCFCFC;
}
.profile-action .save {
  background-color: #111;
  color: #FCFCFC;
  border: 0;
}
.profile-action .save:hover {
  background: none;
  border: 1px solid #111;
  color: #111;
}
.profile-action.modal button {
  width: 100%;
}

.profile-logout {
  background-color: #111 !important;
  text-align: center !important;
  max-width: 392px;
}
.profile-logout:hover {
  background-color: #FCFCFC !important;
  color: #111 !important;
}

.profile-link {
  text-align: center;
  color: #E43022;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.profile-modal .kid-modal-body {
  display: flex;
  flex-direction: column;
}
.profile-modal .kid-modal {
  width: 472px;
}

.profile-forgot-password {
  margin: 4px 0 24px;
  text-align: center;
}
.profile-forgot-password a {
  color: #E43022;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
}

.profile-prize {
  margin-bottom: 20px;
}

.profile-prize-title {
  text-align: center;
  margin-bottom: 10px;
}

.profile-prize-image {
  height: 280px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.profile-cancel-button {
  position: fixed;
  top: 30px;
  left: 24px;
  color: #111;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.parent-info .profile-logo-title {
  white-space: nowrap;
}
.parent-info .profile-logo-subtitle {
  text-align: left;
  max-width: 392px;
  margin-bottom: 0;
}
.parent-info .profile-logo-subtitle p {
  margin-bottom: 8px;
}

.digital-cards-header {
  justify-content: space-between !important;
  align-items: center;
  padding: 16px 24px 0 24px !important;
  background-color: #F0EFEF !important;
}
.digital-cards-header-back {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 896px) {
  .digital-cards-header-back {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.digital-cards-header-back svg {
  margin: 0 12px 0 0;
  width: 12px;
  height: auto;
}

.digital-cards-container {
  width: 100%;
}

.digital-products-action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.digital-products-action button {
  display: flex;
  justify-content: center;
  flex: 1;
  margin-right: 12px;
}
.digital-products-action button:last-child {
  margin-right: 0;
}

.tickets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}
.tickets-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.3333333333% - 20px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 3px 0 rgba(17, 17, 17, 0.031372549);
  background: #FCFCFC;
  padding: 12px;
  transition: 0.25s;
  cursor: pointer;
}
.tickets-item:hover {
  box-shadow: 0 0 24px 0 rgba(17, 17, 17, 0.3);
}
.tickets-item-img {
  display: flex;
  align-items: center;
  width: 90%;
}
.tickets-item-img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tickets-modal .kid-modal {
  width: 90vw;
}
.tickets-modal .kid-modal-body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tickets-modal-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 200px;
}
.tickets-modal-desc {
  text-align: justify;
  max-height: 600px;
  overflow-y: scroll;
}
.tickets-modal-qr {
  min-width: 200px;
  height: 200px;
  margin-left: 16px !important;
}
.tickets-check-in {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid lightgrey;
}
.tickets-check-in_checked {
  background-color: #00AC4F;
}
.tickets-check-in-mark {
  color: white !important;
}

.digital-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}
.digital-cards .digital-cards-item {
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(33.3333333333% - 20px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 3px 0px rgba(17, 17, 17, 0.031372549);
  background: #FCFCFC;
  transition: 0.25s;
}
.digital-cards .digital-cards-item:hover {
  box-shadow: 0 0 24px 0 rgba(17, 17, 17, 0.3);
}
.digital-cards .digital-cards-item-amount {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(17, 17, 17, 0.45);
}
.digital-cards .digital-cards-item-type {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 8px;
  padding: 4px 12px;
  background-color: #E43022;
  color: white;
  font-size: 14px;
}
.digital-cards .img-container {
  display: flex;
  align-items: center;
  height: 280px;
  padding: 12px;
}
.digital-cards .info-container {
  padding: 16px;
}
.digital-cards img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.digital-cards h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  color: #111111;
}
.digital-cards h3:not(:last-child) {
  margin-bottom: 24px;
}
.digital-cards .info-container-row {
  display: flex;
  justify-content: space-between;
}
.digital-cards .digital-card-share-btn {
  border: none;
  outline: none;
  background: none;
  text-decoration: underline;
}

.profile-header {
  display: flex;
  justify-content: end;
  background-color: #F0EFEF;
  padding: 32px 32px 16px;
}

.profile-logo-image img {
  max-width: 350px;
}

.digital-card-deals-container {
  width: 100%;
}

.digital-cards-back {
  position: absolute;
  top: 40px;
  left: 20px;
  font-size: 16px;
}

.digital-card-deals {
  width: 100%;
  position: relative;
}
.digital-card-deals .profile-logo-title {
  line-height: 1.4;
  text-align: center;
}
.digital-card-deals-tabs {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 10px;
}
.digital-card-deals-tabs button {
  border-radius: 10px;
  text-align: center;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  background: none;
  border: 0;
}
.digital-card-deals-tabs button.active {
  background-color: #111;
  color: #FCFCFC;
}
.digital-card-deals-eb-banner {
  width: 100%;
}
.digital-card-deals-eb-banner img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.digital-card-deals-loader {
  margin: auto;
  position: absolute !important;
  top: 150px;
  left: 0;
  right: 0;
  z-index: 1000;
}
.digital-card-deals-search {
  width: 100%;
  display: flex;
  margin: 20px auto;
}
.digital-card-deals-search input {
  flex: 1;
  background-color: #FCFCFC;
  height: 48px;
  border-radius: 10px;
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 24px;
}
.digital-card-deals-search button {
  border-radius: 10px;
  text-align: center;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  background-color: #111;
  color: #FCFCFC;
}
.digital-card-deals-list {
  width: 100%;
  margin: auto;
}
.digital-card-deals-list-item {
  width: 100%;
  display: flex;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.digital-card-deals-list-item h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.digital-card-deals-list-item img {
  width: 64px;
  object-fit: contain;
}
.digital-card-deals-list-item .item-info {
  flex: 1;
  margin-left: 20px;
}
.digital-card-deals-near-me {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}
.digital-card-deals-near-me .leaflet-container {
  width: 100%;
  height: 600px !important;
}
.digital-card-deals-near-me .digital-card-deals-list {
  margin: 0 16px 0 0;
  max-height: 600px;
  overflow-y: scroll;
}
.digital-card-deals-near-me .digital-card-deals-nearby-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.digital-card-deals-near-me .digital-card-deals-nearby-empty h3 {
  margin-bottom: 8px;
}

.digital-card-deal {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.digital-card-deal:not(:first-child) {
  margin-top: 20px;
}
.digital-card-deal:not(:last-child) {
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
.digital-card-deal:not(:last-child) button {
  margin-bottom: 20px;
}
.digital-card-deal .deal-type {
  font-weight: 600;
  margin-top: 10px;
}
.digital-card-deal .deal-description {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.digital-card-deal button {
  border-radius: 10px;
  text-align: center;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  background-color: #111;
  color: #FCFCFC;
  margin-top: 10px;
  position: relative;
  width: 200px;
  height: 50px;
}
.digital-card-deal img {
  max-width: 85%;
  max-height: 280px;
}
.digital-card-deal-qr-code {
  margin-bottom: 16px !important;
}

.digital-card-deals-modal-loader {
  margin: auto;
}

.deals-modal-redemption-timer .kid-modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.deals-modal-redemption-timer .kid-modal-body .time-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deals-modal-redemption-timer .kid-modal-body .time-wrapper div {
  font-size: 18px;
}
.deals-modal-redemption-timer .kid-modal-body .text {
  margin-top: 24px;
}

.deals-modal .kid-modal {
  max-height: 90vh;
  overflow: auto;
}

.kid-prizes-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(33.3333333333% - 20px);
  border-radius: 10px;
  box-shadow: 0px 2px 3px 0px rgba(17, 17, 17, 0.031372549);
  background: #FCFCFC;
}
.kid-prizes-item .img-container {
  display: flex;
  align-items: center;
  height: 280px;
  padding: 12px;
}
.kid-prizes-item .info-container {
  padding: 16px;
}
.kid-prizes-item img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kid-prizes-item .badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  background: #DFDFDF;
}
.kid-prizes-item .badge div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  color: rgba(17, 17, 17, 0.45);
}
.kid-prizes-item .badge div svg path {
  fill: rgba(17, 17, 17, 0.45);
}
.kid-prizes-item .badge.achieved {
  background: #EDF7F2;
}
.kid-prizes-item .badge.achieved div {
  color: #00AC4F;
}
.kid-prizes-item .badge.achieved div svg path {
  fill: #00AC4F;
}
.kid-prizes-item h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  color: #111111;
}
.kid-prizes-item h3:not(:last-child) {
  margin-bottom: 24px;
}
.kid-prizes-item .input-block {
  display: flex;
  flex-direction: column;
}
.kid-prizes-item .input-block:not(:last-child) {
  margin-bottom: 16px;
}
.kid-prizes-item label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  margin-bottom: 4px;
}
.kid-prizes-item input, .kid-prizes-item select {
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  padding: 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.kid-prizes-item input::placeholder, .kid-prizes-item select::placeholder {
  color: rgba(17, 17, 17, 0.2);
}
.kid-prizes-item-date {
  border-bottom: 3px solid lightgrey;
  padding-bottom: 12px;
  margin-bottom: 12px !important;
}
.kid-prizes-item-date:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.gift-activation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding: 0 24px;
}
.gift-activation h1 {
  text-align: center;
  font-size: 24px;
  margin: 0;
}
.gift-activation a {
  width: 100%;
  max-width: 600px;
  margin: 16px;
}

@media only screen and (max-width: 1024px) {
  .digital-card-deals-near-me {
    flex-direction: column !important;
  }
  .digital-card-deals-near-me .leaflet-container {
    width: 100%;
  }
  .digital-card-deals-near-me .digital-card-deals-list {
    margin: 16px 0 0 0;
    max-height: none;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 480px) {
  .tickets-modal-info {
    min-height: 0;
  }
  .digital-cards, .tickets {
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 12px;
    gap: 12px;
  }
  .digital-cards .digital-cards-item, .digital-cards .tickets-item, .tickets .digital-cards-item, .tickets .tickets-item {
    width: 100%;
  }
  .digital-cards .img-container, .digital-cards .tickets-item-img, .tickets .img-container, .tickets .tickets-item-img {
    height: 200px;
  }
  .digital-cards h3, .tickets h3 {
    font-size: 18px;
  }
  .tickets-modal .kid-modal-body {
    flex-direction: column;
    align-items: center;
  }
  .tickets-modal-qr {
    margin-top: 16px;
    min-width: 100%;
    height: auto;
    padding: 24px;
    margin-left: 0 !important;
  }
  .tickets-modal-desc {
    max-height: 250px;
  }
}
.profile-remove-avatar {
  display: flex;
  flex-direction: column;
}
.profile-remove-avatar button {
  text-decoration: underline;
  color: #E43022;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
}

/*# sourceMappingURL=/assets/profile.css-afa1089a102978539caeaeefc4e6a0fd429a45f7.map */
