@import url("/src/styles/overrides/sweet-alert.css");

:root {
  --primary: #e52862;
  --primary-dark: #c7144a;
  --primary-light: #e74576;
  --primary-opacity: #e5286260;
  --primary-opacity-2: #e5286218;
  --primary-opacity-3: #e5286210;

  --grey: #b2a9c4;
  --grey-dark: #594c70;
  --grey-darker: #3f3354;
  --grey-light: #e4e4f4;
  --grey-lightest: #f8f8ff;
  --grey-opacity: #3f33543b;
  --grey-opacity-2: #3f335403;

  --danger: #ff7171;
  --danger-dark: #ff6161;
  --danger-light: #ff9d9d;
  --danger-opacity: #ff717141;
  --danger-opacity-2: #ff71710a;

  --success: #43c65e;
  --success-dark: #31b44c;
  --success-light: #62ca77;
  --success-opacity: #43c65d3f;
  --success-opacity-2: #43c65d0e;

  --warn: #dea911;
  --warn-dark: #d98018;
  --warn-light: #f29723;
  --warn-opacity: #ffe9ad63;
  --warn-opacity-2: #ffe9ad1a;

  --rounded-1: 8px;
  --rounded-2: 12px;
  --rounded-3: 16px;
  --rounded-4: 24px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

* {
  box-sizing: border-box !important;
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  padding: 0;
  outline: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1;
}

body,
html,
.app-container,
#app {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
}

.content-wrapper {
  position: relative;
}

#app {
  position: relative;
  padding: 24px 24px 200px 24px;
  background-color: #f9f9f9;
  min-height: 100vh;
}

@media (max-width: 646px) {
  #app {
    padding-bottom: 120px;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f9f9f9; 
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #dad7d7;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--rounded-1);
  padding: 0px 6px;
  text-align: center;
  width: max-content;
}

.badge-primary {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.badge-secondary {
  color: var(--primary-light);
  border: 1px solid var(--primary-light);
}

.badge-success {
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-danger {
  color: var(--danger);
  border: 1px solid var(--danger);
}

.badge-warn {
  color: var(--warn);
  border: 1px solid var(--warn);
}

.badge-default {
  color: var(--grey);
  border: 1px solid var(--grey);
}

.banner {
  padding: 16px;
  border-radius: var(--rounded-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-icon {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.banner-icon > i {
  font-size: 24px;
  color: var(--warn);
  margin-right: 12px;
}

.banner > span {
  font-size: 15px;
  font-weight: 400;
}

.banner.banner-center {
  text-align: center;
}

.banner > span > a {
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.banner > span > a {
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
}

.banner-warn {
  background: var(--warn-opacity-2);
  border: 1px solid var(--warn-light);
}

.banner-warn > small,
.banner-warn > span {
  color: var(--warn-dark);
}

@import url("../root.css");

button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  height: 40px;
  border: 1px solid transparent;
  font-size: 14px;
  border-radius: var(--rounded-1);
  padding: 0 16px;
  outline: none;
  transition: 200ms;
}

button:disabled {
  opacity: 0.7 !important;
  pointer-events: none !important;
}

.button-sm {
  height: 32px;
  font-size: 13px;
}

.button-lg {
  height: 46px;
  font-size: 15px;
}

.button-icon i {
  margin: 0 !important;
}

button i.ti {
  font-size: 18px;
}

button > i:not(.ti-loader) {
  margin-left: 8px;
}

button > i.ti-loader {
  margin-left: 0 !important;
  margin-right: 8px;
  animation-name: spin;
  animation-duration: 1400ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.button-primary:hover,
.button-secondary:hover {
  background: var(--primary-light);
  color: #fff;
}

.button-primary:active,
.button-secondary:active {
  background: var(--primary-dark);
}

.button-primary-ghost {
  border-color: none;
  background: none;
  color: var(--primary);
}

.button-default-ghost {
  border-color: none;
  background: none;
  color: var(--grey-darker);
}

.button-default-ghost:hover {
  border-color: var(--grey-opacity-2);
  background: var(--grey-opacity-2);
}

.button-default-ghost:active {
  border-color: var(--grey-opacity);
  background: var(--grey-opacity);
}

.button-primary-ghost:hover {
  border-color: var(--primary-opacity-2);
  background: var(--primary-opacity-2);
}

.button-primary-ghost:active {
  border-color: var(--primary-opacity);
  background: var(--primary-opacity);
}

.button-secondary {
  color: var(--primary);
  border-color: var(--primary-opacity-2);
  background: var(--primary-opacity-2);
}

.button-success-primary {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.button-success-secondary {
  color: var(--success);
  border-color: var(--success-opacity-2);
  background: var(--success-opacity-2);
}

.button-success-primary:hover,
.button-success-secondary:hover {
  background: var(--success-light);
  color: #fff;
}

.button-success-primary:active,
.button-success-secondary:active {
  background: var(--success-dark);
}

.button-danger-primary {
  border-color: var(--danger);
  background: var(--danger);
  color: #fff;
}

.button-danger-secondary {
  color: var(--danger);
  border-color: var(--danger-opacity-2);
  background: var(--danger-opacity-2);
}

.button-danger-ghost {
  color: var(--danger);
  border-color: transparent;
  background: transparent;
}

.button-danger-ghost:hover {
  background: var(--danger-opacity-2);
}

.button-danger-ghost:active {
  background: var(--danger-opacity);
}

.button-danger-primary:hover,
.button-danger-secondary:hover {
  background: var(--danger-light);
  color: #fff;
}

.button-danger-primary:active,
.button-danger-secondary:active {
  background: var(--danger-dark);
}

.button-loading {
  opacity: 0.7;
  pointer-events: none !important;
  user-select: none !important;
}

button > i.ti-loader {
  display: none;
}

.button-loading i:not(.ti-loader) {
  display: none !important;
}

.button-loading i.ti-loader {
  display: block !important;
}

nav#app-menu {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
}

ul.menu-items {
  background-color: white;
  border-radius: var(--rounded-3);
  box-shadow: 0px 5px 20px 1px #e2e2e2;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 12px 24px;
  border: 1px solid #e7e5ff;
  pointer-events: all;
}

li.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-opacity-3);
  border-radius: 20px;
  border: 1px solid #fcfcff;
  cursor: pointer;
  transition: 100ms;
  position: relative;
}

#cart-badge {
  position: absolute;
  border-radius: 8px;
  background-color: var(--danger-dark);
  top: 0;
  right: 0;
  transform: translate(0px, -5px);
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cart-badge > span {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

li.menu-item:hover {
  border-color: var(--primary-opacity-3);
}

li.menu-item:hover > i {
  color: var(--primary);
}

li.menu-item i {
  font-size: 28px;
  color: var(--primary);
}

.selected-menu-item {
  background: var(--primary) !important;
}

.selected-menu-item i {
  color: #fff !important;
}

@media (max-width: 646px) {
  nav#app-menu {
    bottom: 0;
  }

  .menu-items {
    width: 100%;
    justify-content: space-evenly;
    border-radius: 0px !important;
  }
}

@media (max-width: 530px) {
  .menu-item {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .menu-item > i {
    font-size: 26px !important;
  }
}

input {
  height: 40px;
  padding: 6px 12px;
  border-radius: var(--rounded-1);
  border: 1px solid var(--grey-light);
  transition: 200ms;
  color: var(--grey-dark);
  font-size: 15px;
}

textarea {
  min-height: 40px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 6px 12px;
  border-radius: var(--rounded-1);
  border: 1px solid var(--grey-light);
  color: var(--grey-dark);
  font-size: 15px;
}

input::placeholder,
textarea::placeholder {
  color: var(--grey);
}

input:hover,
textarea:hover {
  border-color: var(--grey);
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  background-color: var(--primary-opacity-2);
  box-shadow: 0px 0px 0px 1px var(--primary);
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: var(--primary-light);
}

input:disabled,
textarea:disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  background-color: var(--grey-opacity-2) !important;
  border-color: var(--grey-opacity);
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 2px;
}

.input-wrapper i.ti {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 100;
  font-size: 24px;
  color: var(--grey-darker);
}

.input-wrapper i.ti-eye-off,
.input-wrapper i.ti-eye {
  color: var(--grey-dark);
  cursor: pointer;
}

.input-wrapper i.ti-eye-off:hover,
.input-wrapper i.ti-eye:hover {
  color: var(--grey-darker);
}

.input-password-hided > i.ti-eye-off {
  display: none;
}

.input-password-visible > i.ti-eye {
  display: none;
}

.input-wrapper i.ti-loader {
  animation-name: spin;
  animation-duration: 1400ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: none;
}

.input-wrapper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-wrapper-btn > input {
  width: 100%;
  border-right: none;
  border-radius: var(--rounded-1) 0 0 var(--rounded-1);
}

.input-wrapper-btn > button {
  width: max-content;
  border-radius: 0 var(--rounded-1) var(--rounded-1) 0;
}

.input-wrapper-btn > button.button-success-secondary {
  border-color: var(--success);
}

.input-wrapper-btn > button.button-danger-secondary {
  border-color: var(--danger);
}

.input-wrapper select,
.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
}

.input-loading {
  position: relative;
}

.input-loading * {
  pointer-events: none;
}

.input-loading i.ti-loader {
  display: block;
}

.input-error {
  margin-bottom: 14px;
}

.input-error::after {
  font-size: 12px;
  content: attr(data-error);
  position: absolute;
  top: 100%;
  left: 5px;
  font-size: 12px;
  color: var(--danger);
  font-weight: 500;
}

.input-error input,
.input-error select {
  background-color: var(--danger-opacity-2);
  border-color: var(--danger) !important;
}

.input-error input:focus,
.input-error select:focus {
  box-shadow: 0px 0px 0px 1px var(--danger);
}

.input-error input::placeholder,
.input-error select::placeholder {
  color: var(--danger-light);
}

.input-success {
  margin-bottom: 14px;
}

.input-success::after {
  font-size: 12px;
  content: attr(data-success);
  position: absolute;
  top: 100%;
  left: 5px;
  font-size: 12px;
  color: var(--success);
  font-weight: 500;
}

.input-success input {
  background-color: var(--success-opacity-2);
  border-color: var(--success) !important;
}

.input-success input:focus {
  box-shadow: 0px 0px 0px 1px var(--success);
}

.input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.input-container > span {
  font-size: 13px;
  color: var(--grey-darker);
  font-weight: 500;
  padding-left: 2px;
}

.input-container > span > small {
  margin-left: 5px;
  font-size: 11px;
  color: var(--grey);
  margin-bottom: -4px;
}

.input-container > select,
.input-container > .input-wrapper,
.input-container > .input-wrapper-btn {
  width: 100%;
}

.loader-modal-body {
  width: 400px;
  max-width: 80vw;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}

.loader-modal-content {
  width: 400px;
  border-radius: var(--rounded-2);
}

.loader-text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-text-container > i.ti {
  color: var(--primary);
  font-size: 56px;
  margin-bottom: 15px;
  animation-name: spin;
  animation-duration: 1400ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.loader-text-container > strong {
  color: var(--grey-darker);
  font-size: 20px;
  text-align: center;
}

.loader-text-container > span {
  color: var(--grey-dark);
  font-size: 15px;
  text-align: center;
}

.pagination-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.pagination {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.pagination-disabled > .page {
  opacity: 0.6 !important;
  pointer-events: none !important;
}

.page {
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-opacity-3);
  color: var(--primary);
  cursor: pointer;
  transition: 100ms;
  border-radius: var(--rounded-2);
  border: 1px solid transparent;
}

.page:hover {
  background-color: var(--primary-opacity-2);
  border-color: var(--primary-opacity-2);
}

.selected-page {
  pointer-events: none;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.popup-content {
  max-width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup-content > i.ti {
  font-size: 100px;
  margin-bottom: 25px;
}

.popup-content > i.ti-square-rounded-check-filled {
  color: var(--success);
}

.popup-content > i.ti-alert-circle-filled {
  color: var(--primary);
}

.popup-content > i.ti-alert-square-rounded-filled {
  color: var(--danger);
}

.popup-content > i.ti-alert-triangle-filled {
  color: var(--warn);
}

.popup-content .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-content .text-container > strong {
  font-size: 30px;
  color: var(--grey-darker);
  font-weight: 500;
  text-align: center;
}

.popup-content .text-container > span {
  font-size: 16px;
  color: var(--grey-dark);
  text-align: center;
  white-space: pre-wrap;
}

.popup-append {
  width: 100%;
  margin-top: 32px;
}

#block-outside-click-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.swal-modal .swal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.2em;
  height: 1.2em;
  transition: color 0.1s ease-out;
  border: none;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 40px;
  cursor: pointer;
}

.swal-modal .swal-close:hover {
  color: #f27474;
}
.radio-button {
  border: 1px solid var(--grey-light);
  border-radius: var(--rounded-1);
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-button:hover {
  border-color: var(--primary);
}

.selected-radio-button {
  border-color: var(--primary) !important;
  background: var(--primary-opacity-2) !important;
  cursor: default !important;
  box-shadow: 0px 0px 0px 2px var(--primary) !important;
}

.radio {
  border: 1px solid var(--grey);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-checked-indicator {
  width: 0px;
  height: 0px;
  background: var(--primary);
  border-radius: 50%;
  transition: 100ms;
}

.selected-radio-button .radio {
  border-color: var(--primary) !important;
}

.selected-radio-button .radio-checked-indicator {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  min-height: 12px !important;
}

.radio-button-disabled {
  opacity: 0.4 !important;
  user-select: none !important;
  pointer-events: none !important;
}

.search-card {
  position: fixed !important;
  top: 24px;
  left: 24px;
  width: calc(100vw - 48px) !important;
  z-index: 100;
  transition: 100ms;
}

.search-card > .card-body {
  display: flex;
  align-items: center;
  gap: 32px;
}

.search-container {
  width: 100%;
  display: flex;
}

#store-logo {
  width: 50px;
  cursor: pointer;
}

#search-form {
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: row;
  gap: 0;
}

#search-form > input {
  border-radius: var(--rounded-1) 0px 0px var(--rounded-1);
  width: 100%;
}

#back-btn {
  margin-right: 12px;
}

#search-btn {
  border-radius: 0 var(--rounded-1) var(--rounded-1) 0;
}

@media (max-width: 765px) {
  .search-container button > span {
    display: none;
  }

  .search-container button > i {
    margin: 0 !important;
  }

  #store-logo {
    width: 45px;
  }

  .search-card > .card-body {
    gap: 16px;
  }
}

select {
  height: 40px;
  padding: 6px 12px;
  border: 1px solid var(--grey-light);
  border-radius: var(--rounded-1);
  transition: 200ms;
  font-size: 15px;
}

select:hover {
  border-color: var(--grey);
}

select:disabled {
  opacity: 0.6 !important;
  pointer-events: none !important;
  background-color: var(--grey-opacity) !important;
  border-color: var(--grey);
}

.table {
  width: 100%;
  border-radius: var(--rounded-2);
  border: 1px solid var(--primary-opacity-2);
  display: flex;
  flex-direction: column;
}

.table-loading {
  pointer-events: none !important;
  user-select: none !important;
  position: relative;
}

.table-loading *:not(.ti-loader) {
  opacity: 0.7;
  pointer-events: none !important;
  user-select: none !important;
}

.table-loading > i.ti-loader {
  font-size: 36px;
  color: var(--grey-darker);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: spin;
  animation-duration: 1400ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.tr {
  width: 100%;
  display: grid;
  justify-items: center;
}

.thead {
  background-color: var(--primary-opacity-2);
  border-radius: var(--rounded-2) var(--rounded-2) 0 0;
}

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

.empty-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  width: 100%;
}

.empty-table > i.ti {
  color: var(--grey-opacity);
  font-size: 100px;
}

.empty-table > span {
  color: var(--grey-opacity);
  font-size: 22px;
  font-weight: 600;
}

.td,
.th {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: max-content;
  max-width: max-content;
  padding: 6px 16px;
}

.th {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

.td {
  color: var(--grey-darker);
  font-size: 15px;
}

.td.align-end,
.th.align-end {
  justify-self: end;
  text-align: end;
}

.tbody .tr {
  border-bottom: 1px solid var(--primary-opacity-2);
}

.tbody .tr:last-child {
  border-bottom: none;
}

.collapsable-row {
  cursor: pointer;
}

.table .ti-chevron-up {
  transition: 300ms;
}

.collapsable-row.closed .ti-chevron-up {
  transform: rotateZ(180deg) translateX(-1px);
}

.collapsable-row.closed > .collapsable-area {
  line-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  zoom: 1 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  border: none !important;
}

.collapsable-row .td {
  pointer-events: auto;
}

.collapsable-row {
  pointer-events: none;
}

.collapsable-row:hover .td {
  background-color: var(--primary-opacity-3);
}

.collapsable-area {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  transition: 300ms;
  box-shadow: 0px 0px 100px 5px var(--primary-opacity-3) inset;
  pointer-events: auto;
  cursor: default;
}

@media (max-width: 780px) {
  .thead {
    display: none;
  }

  .tbody .tr {
    grid-template-columns: 1fr !important;
    justify-items: end;
  }

  .tbody .tr .td {
    width: 100%;
    max-width: 100%;
    justify-content: flex-end;
    position: relative;
    border-bottom: 1px dashed var(--primary-opacity-2);
  }

  .tbody .tr .td:last-child {
    border-bottom: none;
  }

  .tbody .tr .td::after {
    content: attr(data-label);
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--grey-darker);
  }
}

.tabs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.tabs-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 2px solid var(--grey-light);
}

.tab {
  position: relative;
  padding: 12px 16px;
  text-align: center;
  color: var(--grey);
  font-size: 13px;
  font-weight: 500;
}

.tab:hover:not(.tab-active) {
  cursor: default;
  color: var(--grey-dark);
  background: var(--grey-opacity-2);
}

.tab-active {
  pointer-events: none;
  cursor: default;
  color: var(--primary);
  border-color: var(--primary);
}

.tab-active::after {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary);
  z-index: 10;
  border-radius: 10px 10px 0 0;
}

.tab-content {
  width: 100%;
}

.timeline-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.timeline-point {
  width: 100%;
  padding-left: 32px;
  padding-bottom: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-point::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
}

.timeline-point::after {
  content: "";
  width: 3px;
  height: calc(100% - 12px);
  background: var(--primary-opacity-2);
  position: absolute;
  top: 9px;
  left: 2px;
  border-radius: 10px;
}

.timeline-point:last-child::after {
  background: linear-gradient(180deg, var(--primary-opacity-2), transparent);
}

.timeline-point-title {
  color: var(--grey-darker);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: left;
  margin-top: -6px;
}

.timeline-point-subtitle {
  color: var(--grey);
  font-size: 12px;
  text-align: left;
}

.timeline-point-content {
  margin-top: 12px;
}
