/******************************************************************************/
/* Global Styles */
/******************************************************************************/

:root {
  /* --blue1: #f3f6fe;
  --blue3: #398de8;
  --blue4: #0570E0;
  --blue5: #045fcc;
  --blue8: #022181;
  --blue9: #1f263e; */

  --blue1: #f2fbfe;
  --blue3: #1a8cb8;
  --blue4: #39a8de;
  --blue5: #2171b5;
  --blue8: #2171b5;
  --blue9: #12526c;


  --green4: rgb(32, 111, 68);

  --red4: rgb(158, 12, 44);

  --orange4: rgb(255, 128, 0);

  --gradBlue3: linear-gradient(to bottom, var(--blue8) 0%, var(--blue4) 100%);
  --gradBlue8: linear-gradient(to right, var(--blue8) 0%, var(--blue4) 100%);

  --grey1: #eee;
  --grey3: #ccc;
  --grey5: #999;
  --grey7: #6a6a6a;

  --shadow1: rgba(72, 89, 102, 0.1);
  --shadow2: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
  scrollbar-width: thin;
}

html {
  width: 100%;
  height: 100vh;

  color: var(--grey7);
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  line-height: 1.5;
  /* Some weird feature where browsers adjust the size of h1, p, etc. when
  on a mobile browser. Setting this to none fixes the issue... */
  text-size-adjust: none;
  -webkit-text-size-adjust: none;

  background-color: var(--blue1);
}
body {
  width: 100%;
  height: 100vh;
  margin: 0;
}

/* html, body {
  overflow: hidden;
} */

/******************************************************************************/
/* Signup */
/******************************************************************************/
.signup {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.signup footer {
  flex: auto;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;

  background: transparent;
  box-shadow: none;

  padding: 12px;
}
  .signup footer section {
    flex: auto;
    text-align: center;
  }
    .signup footer a {
      padding: 8px 0;
    }

  .plans {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px;
  }

  .plans .logo {
    flex: none;
    display: flex;
    align-items: center;
    height: auto;
    gap: 12px;
  
    color: var(--grey7);

    transition: all .2s;
  }
    .plans .logoImage {
      height: 72px;

      transition: all .2s;
    }
    .plans .logoText {
      font-size: 48px;
      letter-spacing: 2px;
      white-space: nowrap;

      transition: all .2s;
    }

  .plans-title {
    text-align: center;
  }

  .plans .tabs {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
  }

  .plans .tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0px;
  }

  .plans .tabs-nav-tab {
    padding: 12px 12px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
    min-width: 120px;
  }

  .plans .tabs-nav-tab.active {
    border-bottom: 3px solid var(--blue5);
  }

  .plans .tabs-screen-container {
    width: 100%;
  }

  .plans .tabs-screen {
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .plans-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    margin: 48px 0;

    perspective: 1200px;
    /* position: relative; */
    /* overflow: hidden; */
  }

  .plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 480px;
    min-height: 600px;

    border-radius: 12px;
    box-shadow: 0 6px 24px var(--shadow1);
    background-color: #fff;

    transform-style: preserve-3d;
    transition: transform 0.4s ease-out;
  }

  .plan-card.flipped {
    transform: rotateY(180deg);
  }
  .plan-card:not(.flipped) .plan-card-back * {
    pointer-events: none;
  }

  .plan-card-front,
  .plan-card-back {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: 100%;
    padding: 48px;

    backface-visibility: hidden;
  }

  .plan-card-back {
    transform: rotateY(180deg);
  }

  .plan-card h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
  }

  .plan-billing-options {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .plan-billing-cycle {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .plan-billing-cycle-option {
    & input {
      vertical-align: middle;
      margin-right: 6px;
    }
    & span {
      vertical-align: middle;
    }
  }

  .plan-price {
    text-align: center;
  }

  .plan-price .amount {
    font-size: 48px;
    font-weight: 600;
  }

  .plan-price .period {
    color: var(--grey5);
    font-size: 18px;
  }

  .plan-features {
    width: 100%;
  }

  .plan-features ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey1);
    text-align: center;
  }

  .plan-features li:last-child {
    border-bottom: none;
  }

  .plan-button-container {
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    width: 100%;
  }

    .primary.plan-button {
      width: 240px;
      font-size: 18px;
    }

  .plan-form {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 24px;
    overflow: auto;
    /* box-shadow: inset 0 6px 24px var(--shadow1); */
  }

  .plan-form-required {
    color: var(--red4);
    vertical-align: super;
  }

  .plan-form-group-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
  }

  .plan-form-optional {
    color: var(--grey5);
    font-size: 14px;
    text-align: center;
  }

  .plan-form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
  }

  .plan-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .plan-form-group label {
    font-weight: 600;
  }

  .plan-form-group.companyLogo {

    & img {
      align-self: center;
      box-shadow: 0 6px 24px var(--shadow1);
      height: 100px;
      width: 100px;
      border-radius: 100px;
    }
  }

  .plan-form-actions {
    flex: auto;
    display: flex;
    align-items: end;
    gap: 12px;
    width: 100%;
  }

  .plan-form-actions button {
    flex: auto;
  }

  @media only screen and (max-width: 768px) {
    .plans {
      gap: 36px;
      padding: 36px;
    }

    .plans .logo {
      flex: none;
      display: flex;
      align-items: center;
    
      color: var(--grey7);
    }
      .plans .logoImage {
        height: 48px;
      }
      .plans .logoText {
        font-size: 36px;
        letter-spacing: 2px;
      }

    .plans .tabs-nav {
      gap: 12px;
    }

    .plans .tabs-nav-tab {
      padding: 8px 12px;
      min-width: 100px;
    }

    .plan-card {
      min-height: 500px;
    }

    .plan-card-front,
    .plan-card-back {
      padding: 36px;
    }

    .plan-price .amount {
      font-size: 36px;
    }
  }

  @media only screen and (max-width: 480px) {
    .plans {
      gap: 24px;
      padding: 24px;
    }

    .plans .logo {
      flex: none;
      display: flex;
      align-items: center;
    
      color: var(--grey7);
    }
      .plans .logoImage {
        height: 36px;
      }
      .plans .logoText {
        font-size: 24px;
        letter-spacing: 2px;
      }

    .plans .tabs-nav {
      gap: 8px;
    }

    .plans .tabs-nav-tab {
      padding: 6px 8px;
      min-width: 80px;
    }

    .plan-card {
      min-height: 450px;
    }

    .plan-card-front,
    .plan-card-back {
      padding: 24px;
    }

    .plan-price .amount {
      font-size: 32px;
    }

    .primary.plan-button {
      width: 100%;
    }
  }
  

.app {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 72px auto 72px;
  grid-template-areas: 
    "nav header"
    "nav main"
    "nav footer";

  width: 100%;
  height: 100vh;
}

@media only screen and (max-width: 720px) {
  .app {
    grid-template-columns: 0px 1fr;
  }
}

/******************************************************************************/
/* nav */
/******************************************************************************/
nav {
  grid-area: nav;

  position: relative;
  left: 0px;
  display: flex;
  flex-direction: column;

  width: 240px;

  color: #fff;
  background-color: var(--blue9);

  transition: all .2s;
}
  .logo {
    flex: none;
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    height: 96px;
    padding: 0 24px;
  }
    .logoImage {
      height: 48px;
    }
    .logoText {
      font-size: 20px;
      letter-spacing: 2px;
    }

  .nav-link {
    flex: none;
    display: flex;
    align-items: center;
    gap: 12px;
    
    height: 48px;
    padding: 0 24px;

    color: #fff;
    border-left: 0px solid transparent;
    white-space: nowrap;

    transition: all .2s;

    &.active {
      border-left: 4px solid var(--blue5);
      box-shadow: 0 6px 24px var(--shadow2);
    }

    &:hover {
      background-color: var(--shadow2);
    }
  }

  .signout {
    flex: auto;
    flex-direction: column;
    display: flex;
    place-content: end;
  }

@media only screen and (max-width: 720px) {
  nav {
    left: -240px;
  }
}

/******************************************************************************/
/* header */
/******************************************************************************/
header {
  grid-area: header;

  display: flex;
  align-items: center;
  justify-content: end;
  height: 72px;
  padding: 24px;

  background-color: #fff;
  box-shadow: 0 6px 24px var(--shadow1);
}
  header .logo {
    flex: none;
    width: 0px;
    padding: 0;
    overflow: hidden;

    color: var(--grey7);

    transition: width .2s;
  }

  .hamburger {
    display: none;
    flex: none;
  
    border: none;
    background: none;
    color: #474747;
    font-size: 36px;
    font-weight: bold;
  }

header .account {
  display: flex;
  align-items: center;

  img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
  }
}

  .notification-bell {
    position: relative;
    margin-right: 12px;
    cursor: pointer;
    padding: 4px;
  }

  .notification-bell-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
  }

  .notification-bell.active {
    background-color: var(--blue1);
    border-radius: 50%;
  }

  .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--orange4);
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
  }

  .notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
  }

  .notification-header {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    background-color: var(--blue9);
    color: #fff;
  }

  .notification-list {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .notification-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .notification-item:hover {
    background-color: var(--blue1);
  }

  .notification-item:hover .notification-timestamp {
    color: rgba(255, 255, 255, 0.8);
  }

  .notification-content {
    display: flex;
    flex-direction: column;
  }

  .notification-timestamp {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
  }

@media only screen and (max-width: 720px) {
  header .logo {
    flex: auto;
    width: auto;
  }
  header .account {
    display: none;
  }
  header button.hamburger {
    display: block;
  }
}

@media only screen and (max-width: 320px) {
  header {
    padding: 12px;
  }
  header .logoText {
    display: none;
  }
}


/******************************************************************************/
/* main */
/******************************************************************************/
main {
  grid-area: main;

  width: 100%;
  padding: 36px;
  overflow: auto;

  transition: height .2s, padding .2s;
}
@media only screen and (max-width: 320px) {
  main {
    padding: 18px;
  }
}

/******************************************************************************/
/* footer */
/******************************************************************************/
footer {
  grid-area: footer;

  display: flex;
  align-items: center;
  justify-content: end;
  height: 72px;
  padding: 12px;

  background-color: #fff;
  box-shadow: 0 0px 24px var(--shadow1);
}
  footer section {
    flex: none;
  }
    footer .nav-link {
      display: block;
      padding: 8px 0;
    }

/******************************************************************************/
/* Menu */
/******************************************************************************/
.menu {
  position: fixed;
  height: calc(100% - 72px);
  width: 100%;
  margin-top: 72px;
  padding: 24px 0;
  z-index: 50;
  overflow: auto;

  background-color: var(--blue9);

  transition: opacity .2s ease-out, margin-top .2s;
}
  .menu .nav-link {
    width: 100%;

    transition: background-color .2s, padding .2s;
  }

/******************************************************************************/
/* Overlay */
/******************************************************************************/
.overlay {
  pointer-events: none;
}
.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 64px;
  width: 64px;
  margin-top: -32px;
  margin-left: -32px;
  border-top: 3px solid #fff;
  border-right: 3px solid transparent;
  border-radius: 50%;
  animation: spin 500ms linear infinite;
}

/******************************************************************************/
/* Other */
/******************************************************************************/
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

pre {
  font-size: inherit;
  font-family: inherit;
  white-space: pre-wrap;
  white-space: break-spaces;
}

code {
  font-family: monaco, 'Courier New', monospace;
}

.mono {
  font-family: monaco, 'Courier New', monospace;
}

.no-color,
.no-color:active, .no-color:hover, .no-color:visited {
  color: transparent;
}

.text-align-right {
  text-align: right;
}
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}

/******************************************************************************/
/* Images */
/******************************************************************************/
img:hover {
  filter: none !important;
}

/******************************************************************************/
/* Links */
/******************************************************************************/
a {
  text-decoration: none;
  transition: all .2s;
}
a:hover {
  /* TODO */
}

/******************************************************************************/
/* Buttons */
/******************************************************************************/
button {
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
}

a.primary,
a.primary,
button.primary {
  display: inline-block;
  padding: 6px 18px;
  min-height: 36px;

  border-radius: 24px;
  border: 0px solid transparent;
  background: var(--gradBlue8);
  color: #fff;

  font-size: inherit;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;

  transition: color .2s, opacity .2s;

  > * {
    vertical-align: middle;
  }
}
a.primary:hover,
a.primary:hover,
button.primary:hover {
  opacity: .5;
}

label.secondary,
a.secondary,
button.secondary {
  position: relative;
  display: inline-block;
  padding: 6px 18px;
  min-height: 36px;

  border-radius: 24px;
  border: 0px solid transparent;
  background: var(--gradBlue8);
  background-clip: text;
  color: transparent;

  font-size: inherit;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;

  transition: color .2s, opacity .2s;

  > * {
    vertical-align: middle;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    background: var(--gradBlue8);
    mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
    mask-composite: exclude; 
  }
}
label.secondary:hover,
a.secondary:hover,
button.secondary:hover {
  opacity: .5;
}

label.delete,
a.delete,
button.delete {
  position: relative;
  display: inline-block;
  padding: 6px 18px;
  min-height: 36px;

  border-radius: 24px;
  border: 0px solid transparent;
  background: var(--red4);
  background-clip: text;
  color: transparent;

  font-size: inherit;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;

  transition: color .2s, opacity .2s;

  > * {
    vertical-align: middle;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    background: var(--red4);
    mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
    mask-composite: exclude; 
  }
}
label.delete:hover,
a.delete:hover,
button.delete:hover {
  opacity: .5;
}

button:disabled {
  cursor: not-allowed;
}

/******************************************************************************/
/* Inputs */
/******************************************************************************/
input, select {
  padding: 0;
  margin: 0;
  border-radius: 0;

  border: 1px solid var(--blue3);
  background-color: transparent;
  color: var(--grey7);
  accent-color: var(--blue4);
  outline-color: var(--blue4);
  font-size: 16px;
  font-family: inherit;
  /* -webkit-appearance: none; */
}
input:focus {
  background-color: var(--blue1);
}
textarea {
  border: 1px solid var(--blue3);
  background-color: transparent;
  color: var(--grey7);
  accent-color: var(--blue4);
  outline-color: var(--blue4);
  font-size: 16px;
  font-family: inherit;
}
textarea:focus {
  background-color: var(--blue1);
}

input[type="checkbox"],
input[type="radio"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
input,
input[type="number"],
input[type="text"],
input[type="url"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 6px;
}

input::placeholder {
  color: var(--grey3);
}

input:invalid,
textarea:invalid,
select:invalid {
  border: 1px solid var(--red4);
  /* background: #8f0000; */
  /* text-decoration: dashed underline #bd2e2e; */
  /* text-decoration: dashed underline 2px var(--red4); */
  /* text-underline-offset: 2px;  */
}

input:disabled,
textarea:disabled,
select:disabled {
  opacity: 1;
  color: #aaa;
  -webkit-text-fill-color: #aaa;
}

.inputCurrency {
  position: relative;

  & .inputCurrency-sign {
    position: absolute;
    top: 6px;
    padding-left: 10px;
    color: var(--grey3);
    pointer-events: none;
  }
  & .inputCurrency-input {
    padding-left: 24px;
  }
}
.input-radio-container {
  white-space: nowrap;
}

/******************************************************************************/
/* inputSwitch */
/******************************************************************************/
.inputSwitch {
  display: contents;
}
.inputSwitch-checkbox {
  display : none;
}
.inputSwitch-label {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
}
.inputSwitch-label::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: all 0.2s;
}
.inputSwitch-checkbox:checked + .inputSwitch-label {
  background-color: #5581A5;
}
.inputSwitch-checkbox:checked + .inputSwitch-label::after {
  left : 24px;
}
/* This must come after so it takes precendence */
.inputSwitch-checkbox:disabled + .inputSwitch-label {
  cursor: not-allowed;
  background: #888;
}

/******************************************************************************/
/* View */
/******************************************************************************/
.view {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/******************************************************************************/
/* Button Group */
/******************************************************************************/
.group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  > * {
    flex: none;
  }
  > .grow {
    flex: auto;
  }
}

/******************************************************************************/
/* Lists */
/******************************************************************************/
ul {
  padding-inline-start: 12px;
}



/******************************************************************************/
/* Tables */
/******************************************************************************/
.table-pagination {
  display: flex;
  align-items: center;
}
  .table-pagination-back {
    flex: none;
  }
  .table-pagination-info {
    flex: auto;
    text-align: center;
    overflow: auto;
    white-space: nowrap;
  }
    .table-pagination-info-total,
    .table-pagination-info-filtered,
    .table-pagination-info-shown,
    .table-pagination-info-pageSize {
      margin: 0 12px;
    }
  .table-pagination-forward {
    flex: none;
  }

.table-resize {}

.table-header {
  position: sitcky;
  top: 0;

  & th {
    border-right: 1px solid var(--grey1);
  }
  & th:last-of-type {
    border-right: none;
  }
}

.table-filter {
  position: sitcky;
  top: 0;
}

.table table,
table.table {
  border-spacing: 0;
  border-collapse: collapse;
  border-left: 1px solid var(--blue9);
  border-right: 1px solid var(--blue9);
  table-layout: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 24px var(--shadow1);
}

.hover {
  opacity: .5;
  transition: all .2s;
}
.hover:hover {
  background: var(--blue4)
}

.table tr {
  border-bottom: 1px solid var(--blue9);

  transition: all .2s;
}
.table tr:hover {
  background-color: var(--grey1);
}

.table :is(th, td) {
  padding: 8px;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  text-align: left;
}
.table :is(th, td).clickable {
  cursor: pointer;
  transition: all .2s;
}
.table :is(th, td).clickable:hover {
  opacity: .5;
}
.table th {
  height: 36px;
  /* background: var(--gradBlue3); */
  background: var(--blue9);
  color: #fff;
}

.table input {
  border: none;
}

/******************************************************************************/
/* Tabs */
/******************************************************************************/
.tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

  .tabs-nav {
    flex: none;
    display: flex;
    align-items: center;
    overflow: auto;
    gap: 24px;
    padding-bottom: 24px;
  }
    .tabs-nav-tab {
      flex: none;
      font-weight: 600;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      cursor: pointer;

      transition: all .2s;
    }
    .tabs-nav-tab.active {
      border-bottom: 3px solid var(--blue5);
    }
    .tabs-nav-spacer {
      flex: auto;
    }

  .tabs-screen-container {
    flex: auto;
  }
    .tabs-screen {
      height: 100%;
      overflow: auto;
    }
  
  .tabs-button-group {
    display: flex;
    align-items: center;
    place-content: center;
    flex-wrap: wrap;
    gap: 18px;

    & * {
      flex: none;
    }
  }


/******************************************************************************/
/* Dialog */
/******************************************************************************/
dialog {
  margin: auto;
  border: none !important;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition:
    opacity .2s ease-out,
    overlay .2s ease-out allow-discrete,
    display .2s ease-out allow-discrete;
}
dialog[open] {
  opacity: 1;
}
@starting-style {
  dialog[open] {
    opacity: 0;
  }
}
body:has(dialog[open]) {
  overflow: hidden;
}

dialog::backdrop {
  background-color: rgb(0 0 0 / 0%);
  transition:
    display .2s allow-discrete,
    overlay .2s allow-discrete,
    background-color .2s;
}
dialog[open]::backdrop {
  background-color: rgb(0 0 0 / 25%);
}
@starting-style {
  dialog[open]::backdrop {
    background-color: rgb(0 0 0 / 0%);
  }
}

/******************************************************************************/
/* Profile */
/******************************************************************************/
.dialog-account {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas:
    "header";
  gap: 10px;
  padding: 18px;
}
  .dialog-account-heading {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }

  .dialog-account-image,
  .dialog-account-companyLogo {
    text-align: center;

    & img {
      /* border: 1px solid var(--blue3); */
      box-shadow: 0 6px 24px var(--shadow1);
      height: 100px;
      width: 100px;
      border-radius: 100px;
    }
  }
  .dialog-account-name,
  .dialog-account-username,
  .dialog-account-phone,
  .dialog-account-companyName,
  .dialog-account-companyUrl,
  .dialog-account-disclaimerText {
    text-align: center;
  }
  .dialog-account-disclaimerText {
    max-width: 360px;
  }
  .dialog-account-calculationVariables {
    table-layout: fixed;
    font-size: 14px;

    & th {
      width: 65%;
      text-align: right;
      padding: 0 12px;
    }
    & td {
      width: 35%;
      text-align: left;
      padding: 0 12px;

      & input {
        width: 80px;
        font-size: 14px;
      }
    }
  }
  .dialog-account-edit {
    text-align: center;

    & img {
      height: 24px;
    }
  }
  .dialog-account-actions {
    display: flex;
    align-items: end;
    align-content: end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }
