/* Dark Blue */
/* Blue  */
/* Blue - Medium Light 60 */
/* Blue - Lightest 5  */
/* Blue - Light 10*/
/* Dark Blue - Dark 80 */
/* Warm Yellow */
/* Green */
/** Native variables *********************************************************/
:root {
  --sz-gap: 1rem;
}
@media (min-width: 640px) {
  :root {
    --sz-gap: 2rem;
  }
}

/***
    The new CSS reset - version 1.6.1 (last updated 25.5.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img, .card.athlete-sm img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]:not([contenteditable=false])) {
  -webkit-line-break: after-white-space;
  overflow-wrap: break-word;
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

body {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  line-height: 1.3rem;
}

/** Default title weight and size **/
strong {
  font-weight: 700;
}

a {
  transition: color 0.1s ease-out;
}
a[aria-disabled=true], a:disabled {
  cursor: initial;
  opacity: 0.25;
  pointer-events: none;
}
a:not(:disabled), a:not([aria-disabled=false]) {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: #024CAD;
  text-underline-offset: 0.5rem;
}
a:not(:disabled):focus-visible, a:not(:disabled):hover, a:not([aria-disabled=false]):focus-visible, a:not([aria-disabled=false]):hover {
  color: #221e53;
  text-decoration-style: solid;
  transition: none;
}
a:not(:disabled).text-link, a:not([aria-disabled=false]).text-link {
  text-decoration: none;
}
a:not(:disabled).text-link:focus-visible, a:not(:disabled).text-link:hover, a:not([aria-disabled=false]).text-link:focus-visible, a:not([aria-disabled=false]).text-link:hover {
  text-decoration: underline;
}
a:not(:disabled).icon-link, a:not([aria-disabled=false]).icon-link {
  text-decoration: none;
}
a:not(:disabled) .icon, a:not([aria-disabled=false]) .icon {
  height: 1.4rem;
  width: 1.4rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.9rem;
  margin-bottom: 0.5rem;
}

small {
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.is-muted {
  color: #035aa6;
}

html,
body {
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
  /* 10px = 1rem */
}

body {
  background: #f4f6f8;
  color: #221e53;
  overflow: auto;
}

.icon-family {
  display: none;
}

.divider {
  border-bottom: 1px #2c4975 solid;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
}

.justify-center {
  justify-content: center;
}

.row {
  display: flex;
  flex-direction: row;
}

.space-between {
  justify-content: space-between;
}

/* Warning: Magic number for mobile nav */
main {
  height: 100vh;
  padding-top: 7.7rem;
  width: 100vw;
}
@media (min-width: 980px) {
  main {
    display: grid;
    grid-template-columns: min(25rem, 20vw) 1fr;
    grid-template-rows: 1fr;
    padding-top: 0;
  }
}
main > .content {
  justify-self: center;
  height: calc(100vh - 7.7rem);
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}
@media (min-width: 980px) {
  main > .content {
    padding: var(--sz-gap);
    height: 100vh;
  }
}
@media (min-width: 1230px) {
  main > .content {
    padding: 6.8rem;
  }
}

/* form hack to wrap entire pages in form eles */
.layout > form,
.layout {
  display: flex;
  flex-direction: column;
}
.layout > form > .full-page, .layout > form > .c-100,
.layout > .full-page,
.layout > .c-100 {
  grid-column: 1/4;
}
.layout > form > .c-75,
.layout > .c-75 {
  grid-column: 1/3;
}
.layout > form > .c-50,
.layout > .c-50 {
  grid-column: 1/2;
}
.layout > form > .c-25,
.layout > .c-25 {
  grid-column: 1/1;
}
@media (max-width: 640px) {
  .layout > form > .widget,
  .layout > .widget {
    margin-bottom: 2rem;
  }
}
@media (min-width: 640px) {
  .layout > form,
  .layout {
    display: grid;
    grid-gap: var(--sz-gap);
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .layout > form,
  .layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

.with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.with-icon:not(:disabled), .with-icon:not([aria-disabled=false]) {
  text-decoration: none;
}

.widget {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8rem;
  width: 100%;
}
.widget header {
  display: flex;
  flex-direction: column;
}
.widget header .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
}
.widget header .title .actions {
  margin-left: auto;
  padding-left: 2rem;
  white-space: nowrap;
}
.widget header .title h1,
.widget header .title h2,
.widget header .title h3,
.widget header .title h4 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.9rem;
  margin-bottom: 0.5rem;
  margin-bottom: 0;
}
.widget header .title span {
  color: #221e53;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 0.938rem;
}
.widget header .title .button {
  margin-left: 2rem;
}
.widget header .title .button span {
  color: inherit;
  font-size: inherit;
}
.widget header .title .button:first-child {
  margin-left: 0;
}
.widget p {
  margin-bottom: 2rem;
}
.widget .widget-content {
  background: #fff;
  border-radius: 1rem;
  padding: var(--sz-gap);
  /* Assume a form here is a single-input style control */
}
.widget .widget-content .form {
  margin-bottom: 1rem;
}
.widget .widget-content .form input {
  max-width: 100%;
}

/* No results ****************************************************************/
.no-results {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #eaedf1;
  border-radius: 1rem;
  color: #221e53;
  padding: 2rem;
}
.no-results .message,
.no-results .actions {
  display: flex;
}
.no-results .message {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  margin-right: 2rem;
}
.no-results .actions {
  flex: 0;
}
.no-results.is-error {
  background: #e94545;
  color: #fff;
}

/* Transfer Modal ************************************************************/
.transfer-modal {
  font-size: 1.4rem;
  width: 60rem;
}
.transfer-modal .form-group.bank {
  flex: 30%;
}

/* Create Sub-Wallet Modal ************************************************************/
.sub-wallet-modal {
  font-size: 1.4rem;
  width: 60rem;
}

.sub-wallet-transfer-modal {
  font-size: 1.4rem;
  width: 60rem;
}
.sub-wallet-transfer-modal .balance-label {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.sub-wallet-transfer-modal .balance-value {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.b-section, .metrics {
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  .b-section, .metrics {
    display: flex;
    flex-direction: row;
  }
}
.b-section .b-item, .metrics .b-item, .metrics .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid #024CAD;
  display: flex;
  flex: 1 auto;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
}
@media (min-width: 980px) {
  .b-section .b-item, .metrics .b-item, .metrics .metric {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .b-section .b-item:last-child, .metrics .b-item:last-child, .metrics .metric:last-child {
    margin-right: 0;
  }
}
.b-section .b-group, .metrics .b-group, .metrics .metrics-group {
  flex: 1;
  display: flex;
  flex-direction: row;
  position: relative;
}
.b-section .b-group > .b-item, .metrics .b-group > .b-item, .metrics .b-group > .metric, .metrics .metrics-group > .b-item, .metrics .metrics-group > .metric {
  margin-right: 2rem;
}
.b-section .b-group > .b-item:last-child, .metrics .b-group > .b-item:last-child, .metrics .b-group > .metric:last-child, .metrics .metrics-group > .b-item:last-child, .metrics .metrics-group > .metric:last-child {
  margin-right: 0;
}
@media (min-width: 980px) {
  .b-section .b-group, .metrics .b-group, .metrics .metrics-group {
    margin-right: 2rem;
    padding-right: 2rem;
  }
  .b-section .b-group:after, .metrics .b-group:after, .metrics .metrics-group:after {
    background: #024CAD;
    bottom: 2rem;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 2rem;
    width: 1px;
  }
  .b-section .b-group:last-child, .metrics .b-group:last-child, .metrics .metrics-group:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .b-section .b-group:last-child:after, .metrics .b-group:last-child:after, .metrics .metrics-group:last-child:after {
    display: none;
  }
}

/* form hack to wrap entire pages in form eles */
.layout > form {
  display: contents;
}

.layout > form > header,
.layout > header {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.6rem;
  grid-column: 1/4;
}
.layout > form > header.header-page,
.layout > header.header-page {
  margin-bottom: var(--sz-gap);
}
.layout > form > header a,
.layout > header a {
  font-size: 1.2rem;
}
.layout > form > header .header-group,
.layout > header .header-group {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  min-height: 100%;
}
@media (min-width: 980px) {
  .layout > form > header .header-group,
  .layout > header .header-group {
    margin-right: 2rem;
    padding-right: 2rem;
  }
  .layout > form > header .header-group:after,
  .layout > header .header-group:after {
    background: #024CAD;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
  }
  .layout > form > header .header-group:last-child,
  .layout > header .header-group:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .layout > form > header .header-group:last-child:after,
  .layout > header .header-group:last-child:after {
    display: none;
  }
}
.layout > form > header .header-group.last:after,
.layout > header .header-group.last:after {
  display: none;
}
.layout > form > header h2,
.layout > header h2 {
  margin: 0;
  width: 100%;
}
.layout > form > header .actions,
.layout > header .actions {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
@media (max-width: 980px) {
  .layout > form > header,
  .layout > header {
    flex-wrap: wrap;
  }
  .layout > form > header > .actions,
  .layout > header > .actions {
    width: 100%;
  }
  .layout > form > header > .header-group,
  .layout > header > .header-group {
    width: 50%;
  }
  .layout > form > header > .header-group:nth-child(odd),
  .layout > header > .header-group:nth-child(odd) {
    text-align: right;
  }
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header h1,
.header h2,
.header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.9rem;
  margin-bottom: 0.5rem;
}

/* Add Users Modal ************************************************************/
.list li {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  font-size: 1.2rem;
}
.list li a {
  text-decoration-style: solid;
  text-decoration-color: #221e53;
  font-weight: 700;
}

.add-user-modal {
  width: 53rem;
  padding-right: 2rem;
  padding-left: 2rem;
}

.loading-modal {
  width: 47rem;
  padding: 2.5rem;
}
.loading-modal h4 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.loading-modal .modal-content {
  text-align: center;
}

.sucess-modal .modal {
  width: 47rem;
  padding: 2.5rem;
}
.sucess-modal .modal .modal-content {
  text-align: center;
}
.sucess-modal .modal .modal-content h4 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.sucess-modal .modal .modal-content p {
  display: none;
}
.sucess-modal .modal .modal-footer {
  padding: unset;
}

/* Global icon styles *******************************************************/
.icon {
  height: 2rem;
  width: 2rem;
}
.icon.is-error {
  color: #e94545;
}

.badge, .button.is-square {
  align-items: center;
  background: #221e53;
  border-radius: 0.5rem;
  color: #fff;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  justify-items: center;
  line-height: 1.5rem;
  padding: 0.3rem 1rem;
  text-align: center;
}
.badge::selection, .button.is-square::selection {
  background: none;
}
.badge .icon, .button.is-square .icon {
  height: 2.5rem;
  width: 2.5rem;
}
.badge.inline, .inline.button.is-square {
  display: inline;
}
.badge.is-success, .is-success.button.is-square {
  background: #44a948;
}
.badge.is-danger, .is-danger.button.is-square {
  background: #e94545;
}
.badge.is-disabled, .is-disabled.button.is-square, .badge.is-muted, .is-muted.button.is-square {
  background: #024CAD;
}
.badge.is-new, .is-new.button.is-square {
  background: #221e53;
}
.badge.is-warning, .is-warning.button.is-square {
  background: #ebad3a;
  color: rgb(80.797235023, 55.3686635945, 8.202764977);
}

.button, .button.is-round {
  align-items: center;
  background: #221e53;
  border-radius: 2rem;
  color: #fff;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  justify-items: center;
  margin-right: 2rem;
  padding: 1rem 2rem;
  transition: background 0.05s ease-out, transform 0.1s ease-out;
  user-select: none;
  white-space: nowrap;
}
.button[aria-disabled=true], .button:disabled {
  cursor: initial;
  opacity: 0.25;
  pointer-events: none;
}
.button::selection, .button.is-round::selection {
  background: none;
}
.button:last-child {
  margin-right: 0;
}
.button.button-alt, .form-radio input[type=radio]:not(:checked) + .button, .button.is-round {
  background: #eaedf1;
  color: #221e53;
}
.button.button-outline {
  background: #f4f6f8;
  color: #221e53;
  border: 1px #221e53 solid;
}
.button.button-delete {
  background: #eaedf1;
  color: #e94545;
}
.button.button-delete:hover:not(:disabled), .button.button-delete:hover:not([aria-disabled=false]) {
  background: #e94545;
  color: #fff;
}
.button:not(:disabled), .button:not([aria-disabled=false]) {
  text-decoration: none;
}
.button:not(:disabled):hover, .button:not([aria-disabled=false]):hover {
  background: #035aa6;
  color: #fff;
  cursor: pointer;
  transition: transform 0.025s ease-out;
}
.button:not(:disabled):hover.button-alt, .form-radio input[type=radio]:not(:checked) + .button:not(:disabled):hover, .button.is-round:not(:disabled):hover, .button:not([aria-disabled=false]):hover.button-alt, .form-radio input[type=radio]:not(:checked) + .button:not([aria-disabled=false]):hover, .button.is-round:not([aria-disabled=false]):hover {
  background: #024CAD;
}
.button:not(:disabled):active, .button:not([aria-disabled=false]):active {
  transform: scale(0.95);
}
.button:not(:disabled):focus-visible, .button:not([aria-disabled=false]):focus-visible {
  color: #fff;
  outline-color: #ebad3a;
  outline-style: solid;
  outline-width: 4px;
}
.button.is-icon {
  background: transparent;
}
.button.is-icon:hover {
  background: inherit;
}
.button.is-round {
  border-radius: 100%;
  height: 3rem;
  justify-content: center;
  padding: 0;
  width: 3rem;
}
.button.is-round .icon {
  height: 1.5rem;
  width: 1.5rem;
}
.button.is-rect {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.button.is-square {
  height: 2.5rem;
  padding: 0.3rem;
  width: 2.5rem;
}
.button.is-text {
  background-color: transparent;
  color: black;
}
.button.with-icon {
  display: flex;
  flex-direction: row;
}
.button.with-icon > span, .button.with-icon > .icon {
  margin-right: 0.5rem;
}
.button.with-icon > span:last-child, .button.with-icon > .icon:last-child {
  margin-right: 0;
}
.button.is-danger {
  background-color: #e94545;
}
.button.is-success {
  background-color: #44a948;
}
.button:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.form .has-error input:not([type=submit]):not(:disabled) {
  margin-bottom: 0.5rem;
}
.form .has-error input:not([type=submit]):not(:disabled), .form .has-error input:not([type=submit]):not(:disabled):focus, .form .has-error input:not([type=submit]):not(:disabled):focus-visible {
  border-color: #e94545;
}
.form .has-error.form-group.append-icon .icon {
  color: #e94545;
}
.form .errorlist {
  background: #fce9e9;
  border-radius: 1rem;
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 1rem;
}
.form fieldset {
  margin-bottom: 3rem;
}
.form fieldset > legend {
  font-size: 1.4rem;
  font-weight: 100;
  margin-bottom: 2rem;
}
.form fieldset:last-child {
  margin-bottom: 0;
}
.form .form-content {
  display: flex;
  flex-direction: column;
}
.form .label:not(.button):not(.button.is-round),
.form label:not(.button):not(.button.is-round) {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form .form-row {
  display: flex;
  flex-direction: column;
  grid-column: 1/4;
  width: 100%;
}
.form .form-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .form .form-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.5rem;
  }
}
.form .form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}
.form .form-group:not(.form-checkbox, .form-radio) {
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  .form .form-group.force-narrow {
    flex: 0.24;
    max-width: 30rem;
  }
}
@media (min-width: 640px) {
  .form .form-group {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
  .form .form-group:last-child {
    margin-right: 0;
  }
}
.form .form-group.append-icon, .form .form-group.append-btn {
  position: relative;
}
.form .form-group.append-icon .icon,
.form .form-group.append-icon .button, .form .form-group.append-btn .icon,
.form .form-group.append-btn .button {
  position: absolute;
  right: 1px;
  top: 1px;
}
.form .form-group.append-icon .icon, .form .form-group.append-btn .icon {
  color: #024CAD;
  height: 1.4rem;
  pointer-events: none;
  right: 1rem;
  top: 1rem;
  width: 1.4rem;
}
.form .form-group.append-icon .button, .form .form-group.append-btn .button {
  background: #eaedf1;
  border-radius: calc(1rem - 1px);
  color: #024CAD;
  height: calc(3.4rem - 2px);
  padding: 0.8rem;
  transition: none;
  width: 3.4rem;
}
.form .form-group.append-icon .button:not(:disabled):not(.clear-value):hover, .form .form-group.append-icon .button:not(:disabled):not(.clear-value):focus-visible, .form .form-group.append-btn .button:not(:disabled):not(.clear-value):hover, .form .form-group.append-btn .button:not(:disabled):not(.clear-value):focus-visible {
  background: #221e53;
  border-radius: 0 calc(1rem - 1px) calc(1rem - 1px) 0;
  border: none;
  color: #fff;
  outline: none;
  transition: none;
}
.form .form-group.append-icon .button.clear-value, .form .form-group.append-btn .button.clear-value {
  background: transparent;
  left: -3rem;
  right: auto;
}
.form .form-group.append-icon .button.clear-value .icon, .form .form-group.append-btn .button.clear-value .icon {
  height: 1.4rem;
  width: 1.4rem;
}
.form .form-group.append-icon .button.clear-value:hover, .form .form-group.append-btn .button.clear-value:hover {
  color: #221e53;
}
.form .form-group.append-icon input, .form .form-group.append-btn input {
  padding-right: 4.4rem;
}
.form .form-group.append-icon input:focus-visible ~ .icon, .form .form-group.append-icon input:focus-visible ~ .button, .form .form-group.append-btn input:focus-visible ~ .icon, .form .form-group.append-btn input:focus-visible ~ .button {
  color: #221e53;
}
.form .form-group.append-icon.with-label .icon, .form .form-group.append-btn.with-label .icon {
  top: 3.4rem;
}

select:not([type=checkbox]):not([type=submit]),
input:not([type=checkbox]):not([type=submit]) {
  background: #eaedf1;
  border-radius: 1rem;
  border: 1px solid #eaedf1;
  color: #221e53;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5rem;
  min-height: 3.4rem;
  padding: 0.8rem 1.2rem;
  width: 100%;
}
select:not([type=checkbox]):not([type=submit]):not(:disabled):focus,
input:not([type=checkbox]):not([type=submit]):not(:disabled):focus {
  border: 1px solid #221e53;
}
select:not([type=checkbox]):not([type=submit]):disabled,
input:not([type=checkbox]):not([type=submit]):disabled {
  background: #eaedf1;
  color: rgb(1.4171428571, 53.8514285714, 122.5828571429);
  cursor: not-allowed;
  pointer-events: none;
}
select:not([type=checkbox]):not([type=submit]).hidden,
input:not([type=checkbox]):not([type=submit]).hidden {
  display: none;
}

textarea {
  background: #eaedf1;
  border-radius: 1rem;
  border: 1px solid #eaedf1;
  color: #221e53;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5rem;
  min-height: 3.4rem;
  padding: 0.8rem 1.2rem;
  width: 100%;
}
textarea:not(:disabled):focus {
  border: 1px solid #221e53;
}
textarea:disabled {
  background: #eaedf1;
  color: rgb(1.4171428571, 53.8514285714, 122.5828571429);
  cursor: not-allowed;
  pointer-events: none;
}
textarea.hidden {
  display: none;
}
textarea:disabled {
  opacity: 0.25;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator {
  background: none;
}

.form-group.amount {
  position: relative;
}
.form-group.amount::before {
  content: "$";
  z-index: 1;
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  pointer-events: none;
}
.form-group.amount.with-label::before {
  top: 2.75rem;
}
.form-group.amount input {
  text-align: right;
  padding-left: 1.75rem;
}

/******************************************************************************/
.form-icon {
  position: relative;
}
.form-icon > .icon {
  background: #eaedf1;
  border-radius: 1rem;
  height: calc(3.4rem - 2px);
  padding: 0.8rem;
  pointer-events: none;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 3.4rem;
}

/******************************************************************************/
.form-attachment {
  background: #eaedf1;
  border-radius: 100%;
  display: block;
  height: 20rem;
  margin: 0 auto 3rem;
  vertical-align: top;
  width: 20rem;
  /** TODO add upload styling **/
}

/******************************************************************************/
.form-checkbox {
  display: flex;
  flex-direction: row;
}
.form-checkbox label {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.form-checkbox input[type=checkbox] {
  border-radius: 0.5rem;
  border: 2px solid #035aa6;
  cursor: pointer;
  height: 1.6rem;
  margin-right: 1rem;
  min-width: 1.6rem;
  width: 1.6rem;
}
.form-checkbox input[type=checkbox]:checked {
  background: #035aa6;
}

/******************************************************************************/
.form-radio {
  display: flex;
  flex-direction: row;
}
.form-radio .button {
  border-radius: 0;
  display: flex;
  flex: 1;
  margin-right: 2px;
}
.form-radio .button:first-of-type {
  border-radius: 2rem 0 0 2rem;
}
.form-radio .button:last-of-type {
  border-radius: 0 2rem 2rem 0;
  margin-right: 0;
}
.form-radio .button:only-of-type {
  border-radius: 2rem;
}
.form-radio input[type=radio] {
  display: none;
}
.form-radio input[type=radio]:not(:checked) + .button:hover {
  color: #fff;
}

/******************************************************************************/
.form-dropdown {
  background-color: #eaedf1;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.form-dropdown .is-trigger {
  align-items: center;
  color: #035aa6;
  height: 2.5rem;
  margin: 0 0 0 auto;
  padding: 0.5rem;
  min-width: 2.5rem;
}
.form-dropdown .is-trigger .icon {
  width: 1rem;
}
.form-dropdown .is-trigger:hover {
  color: #221e53;
}
.form-dropdown .dropdown-content {
  background-color: #f4f6f8;
  border-radius: 1rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1490196078);
  opacity: 0;
  padding: 0.8rem 1.2rem;
  visibility: hidden;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 0;
  transition: all 0.05s ease-out;
}
.form-dropdown .actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.form-dropdown .actions .form-group {
  margin-bottom: 0;
}
.form-dropdown .actions input {
  max-width: 100%;
}
.form-dropdown .dropdown-list {
  max-height: 25vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
.form-dropdown .dropdown-list .selected {
  background-color: #eaedf1;
}
.form-dropdown .dropdown-list > .item:first-child {
  border-radius: 1rem 1rem 0 0;
}
.form-dropdown .dropdown-list > .item:last-child {
  border-radius: 0 0 1rem 1rem;
}
.form-dropdown .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #eaedf1;
  font-weight: 500;
  height: 4.5rem;
  overflow: hidden;
  padding: 0.5rem 1rem;
  position: relative;
}
.form-dropdown .item.value {
  height: 5rem;
  padding-bottom: 0;
}
.form-dropdown .item.value .is-trigger {
  background: linear-gradient(90deg, rgba(234, 237, 241, 0), #eaedf1 40%, #eaedf1 100%);
  border-radius: 0;
  height: 5rem;
  padding: 0 1.7rem;
  position: absolute;
  right: 0;
}
.form-dropdown .item > .attr {
  display: flex;
  line-height: 1.4rem;
  padding-right: 2rem;
  white-space: nowrap;
}
.form-dropdown .item > .attr:last-child {
  padding-right: 0;
}
@media (min-width: 980px) {
  .form-dropdown .item > .attr {
    min-width: 18rem;
  }
}
.form-dropdown .item > .name {
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.form-dropdown .item > .athlete-img, .form-dropdown .card.athlete-sm .item > img, .card.athlete-sm .form-dropdown .item > img {
  margin-right: 1rem;
  height: 3.5rem;
  width: 3.5rem;
}
@media (max-width: 640px) {
  .form-dropdown .item > .tel {
    display: none;
  }
}
.form-dropdown .item:last-child {
  border-bottom: none;
}
.form-dropdown .item:not(.selected):hover {
  background-color: #eaedf1;
  cursor: pointer;
}
.form-dropdown .item:not(.selected) .dropdown-icon {
  display: none;
}
.form-dropdown .item .dropdown-icon {
  align-items: center;
  background: linear-gradient(90deg, rgba(234, 237, 241, 0), #eaedf1 20%, #eaedf1 100%);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 0.8rem;
  width: 4rem;
}
.form-dropdown .item .dropdown-icon .icon {
  border-radius: 1rem;
  height: 2.4rem;
  padding: 0.6rem;
  width: 2.4rem;
}
.form-dropdown .item .dropdown-icon .icon.active {
  background-color: #44a948;
  display: inline-block;
  color: #fff;
}

.menu-trigger:checked + .form-dropdown {
  overflow: visible;
}
.menu-trigger:checked + .form-dropdown .dropdown-content {
  opacity: 1;
  visibility: visible;
}
.menu-trigger:checked + .form-dropdown .is-trigger .icon {
  transform: rotate(180deg);
}

.file-upload-input {
  display: flex;
  align-items: center;
  gap: 2em;
}

.mobile-friendly-page {
  margin: 0 auto;
  margin-top: 3rem;
  width: 90%;
}

@media only screen and (max-width: 760px) {
  .mobile-friendly-page table, .mobile-friendly-page table thead, .mobile-friendly-page table tbody, .mobile-friendly-page table th, .mobile-friendly-page table td, .mobile-friendly-page table tr {
    display: block;
  }
  .mobile-friendly-page table.table {
    background-color: #f4f6f8;
    border-radius: 0;
  }
  .mobile-friendly-page table thead tr {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
  .mobile-friendly-page table tbody tr {
    background-color: #fff;
    border-radius: 1rem;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px;
  }
  .mobile-friendly-page table tbody tr:hover {
    background-color: #eaedf1;
  }
  .mobile-friendly-page table td {
    position: relative;
    padding-left: 50%;
    text-align: left !important;
  }
  .mobile-friendly-page table td:before {
    position: absolute;
    left: 20px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .mobile-friendly-page #deals-table td:nth-of-type(1):before {
    content: "Athlete";
  }
  .mobile-friendly-page #deals-table td:nth-of-type(2):before {
    content: "Title";
  }
  .mobile-friendly-page #deals-table td:nth-of-type(3):before {
    content: "Team Name";
  }
  .mobile-friendly-page #deals-table td:nth-of-type(4):before {
    content: "Amount";
  }
  .mobile-friendly-page #deals-table td:nth-of-type(5):before {
    content: "Status";
  }
  .mobile-friendly-page #deals-table td:last-child {
    display: none;
  }
  .mobile-friendly-page #tasks-table td {
    text-align: left;
  }
  .mobile-friendly-page #tasks-table tbody tr {
    cursor: default;
    padding: 10px 10px 33px;
  }
  .mobile-friendly-page #tasks-table tbody tr:hover {
    background-color: #fff;
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(1):before {
    content: "Tasks";
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(2):before {
    content: "Date";
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(3):before {
    content: "Value";
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(4):before {
    content: "Outstanding";
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(5):before {
    content: "Paid";
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(6):before {
    content: "POW Status";
  }
  .mobile-friendly-page #tasks-table td:nth-of-type(7):before {
    content: "POW";
  }
}
.modal-screen {
  background: rgba(78, 75, 117, 0.4);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.modal {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  left: 50%;
  max-height: calc(100vh - 1rem);
  max-width: calc(100vw - 1rem);
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-content,
.modal .modal-footer,
.modal .modal-header {
  align-items: center;
  padding: 1rem 2rem;
}
.modal .modal-content {
  overflow-y: auto;
}
.modal .modal-header {
  padding-top: 2rem;
}
@media (min-width: 640px) {
  .modal .modal-header {
    display: flex;
    flex-direction: row;
  }
}
.modal .modal-header .title {
  margin-right: 1rem;
  white-space: nowrap;
}
.modal .modal-header h1,
.modal .modal-header h2,
.modal .modal-header h3,
.modal .modal-header h4,
.modal .modal-header h5 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.9rem;
  margin-bottom: 0.5rem;
  margin-bottom: 0;
}
.modal .modal-header .actions {
  margin-left: auto;
}
.modal .modal-footer {
  display: flex;
  flex-direction: row;
  padding-bottom: 2rem;
  justify-content: center;
}

input[type=checkbox].trigger:checked + .modal-screen {
  display: block;
}

@keyframes flash-message {
  0% {
    bottom: -5rem;
    opacity: 0;
  }
  /*to {background-color: yellow;}*/
}
.messages {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-align: center;
}
.messages .message {
  background: #44a948;
  border-radius: 1rem;
  display: flex;
  padding: 1rem;
  justify-content: center;
}

.message {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.message.is-success {
  background: #44a948;
}
.message.error {
  background: #fce9e9;
  color: #221e53;
}
.message .icon {
  margin-right: 1rem;
}

.flash-messages {
  bottom: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8rem;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1000;
}
.flash-messages li {
  animation-delay: 0s, 3s;
  animation-direction: normal, reverse;
  animation-duration: 0.3s, 0.3s;
  animation-fill-mode: forwards, forwards;
  animation-name: flash-message, flash-message;
  bottom: 2rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.25);
  left: 2rem;
  opacity: 1;
  padding: 2rem;
  position: absolute;
  right: 2rem;
}

.menu-trigger {
  display: none;
} /** Hides checkbox used for off-canvas menu */
.sign-out-button {
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.sign-out-button:not(:disabled):hover, .sign-out-button:not(:disabled):focus-visible, .sign-out-button:not([aria-disabled=false]):hover, .sign-out-button:not([aria-disabled=false]):focus-visible {
  color: #fff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  background: #221e53;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 2rem 2rem;
  position: relative;
  z-index: 10;
  /* Sidebar divisions ----------------------------------------------------- */
  /* Sidebar dropdown ------------------------------------------------------ */
  /* TODO: WIP complete this dropdown once integrated */
  /* Legal links pinned to the bottom of the sidebar ----------------------- */
  /**
   * Styles shared with both mobile and tablet menus
   * but should not be reset on large viewports
   */
  /** Mobile styling ------------------------------------------------------- */
  /** Tablet menu styling -------------------------------------------------- */
  /** Desktop menu styling -------------------------------------------------- */
}
.sidebar:after {
  background: linear-gradient(rgba(34, 30, 83, 0), #221e53);
  bottom: 0;
  content: "";
  display: block;
  height: 1.7rem;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
}
.sidebar a {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-decoration: underline;
}
.sidebar a:not(:disabled):hover, .sidebar a:not(:disabled):focus-visible, .sidebar a:not([aria-disabled=false]):hover, .sidebar a:not([aria-disabled=false]):focus-visible {
  color: #fff;
}
.sidebar .full-width-item {
  width: "100%";
}
.sidebar .terms-privacy-link:not(:disabled):hover, .sidebar .terms-privacy-link:not(:disabled):focus-visible, .sidebar .terms-privacy-link:not([aria-disabled=false]):hover, .sidebar .terms-privacy-link:not([aria-disabled=false]):focus-visible {
  color: #035aa6;
}
.sidebar.admin-sidebar {
  padding-top: 3.5rem;
}
.sidebar.admin-sidebar a {
  color: #f4f6f8;
}
.sidebar > header, .sidebar > footer, .sidebar > div, .sidebar > nav {
  border-bottom: 1px solid #035aa6;
  padding: 2rem 0;
}
.sidebar > header:first-child, .sidebar > footer:first-child, .sidebar > div:first-child, .sidebar > nav:first-child {
  padding-top: 0;
}
.sidebar > header:last-child, .sidebar > footer:last-child, .sidebar > div:last-child, .sidebar > nav:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar header {
  background: #221e53;
  box-shadow: 0 0 2rem #221e53;
  padding-top: 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.sidebar .form-dropdown {
  background: #4e4b75;
  font-size: 1rem;
  margin-bottom: 0;
}
.sidebar .form-dropdown strong {
  font-size: 1.4rem;
  line-height: 1.7rem;
}
.sidebar .form-dropdown .dropdown-content {
  background: #4e4b75;
  top: 5rem;
}
.sidebar .form-dropdown .item {
  display: flex;
  flex-direction: column;
  align-items: revert;
  border: none;
  padding: 1rem;
}
.sidebar .form-dropdown .item:hover {
  background: #035aa6;
}
.sidebar .form-dropdown .item .is-trigger {
  background: transparent;
  padding: 0 0.5rem;
  top: 0;
}
.sidebar .form-dropdown .item .is-trigger .icon {
  color: #fff;
  width: 2.5rem;
}
.sidebar footer {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  white-space: nowrap;
}
.sidebar footer > * {
  margin-right: 1rem;
}
.sidebar footer > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 980px) {
  .sidebar footer {
    display: flex;
    flex-direction: column;
  }
  .sidebar footer > * {
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 980px) {
  .sidebar {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
  }
  .sidebar:after {
    display: none;
  }
  .sidebar .offcanvas-trigger {
    height: 2rem;
    order: 0;
    padding: 0;
    position: sticky;
    top: 2.5rem;
    width: 2rem;
    z-index: 11;
  }
  .sidebar header {
    padding-left: 4rem;
  }
}
@media (max-width: 640px) {
  .sidebar header {
    margin-top: -2.5rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 979px) {
  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
    bottom: auto;
    transition: max-height 0.15s ease-out;
  }
  .sidebar .offcanvas-trigger {
    position: absolute;
    top: 2.5rem;
  }
  .sidebar header {
    box-shadow: none;
    margin-top: 0;
    flex: 1;
  }
  .sidebar .user-actions,
  .sidebar header {
    align-items: center;
    order: 1;
  }
  .sidebar .user-actions {
    display: flex;
    opacity: 1;
  }
  .sidebar > footer, .sidebar > div:not(.user-actions), .sidebar > nav {
    display: flex;
    order: 10;
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  .sidebar nav {
    flex: 1 1 100%;
  }
  .sidebar nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sidebar nav ul li {
    flex: 0 1 calc(33% - 1.5rem);
    margin: 0.5rem;
  }
}
@media (min-width: 980px) {
  .sidebar {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .sidebar:after {
    width: min(25rem, 20vw);
  }
  .sidebar .offcanvas-trigger {
    display: none;
  }
}

/* -- Controls --- */
@media only screen and (max-width: 979px) {
  #expand-sidebar:not(:checked) ~ .sidebar {
    max-height: 7.7rem;
    overflow: hidden;
  }
  #expand-sidebar:not(:checked) ~ .sidebar .is-expanded {
    visibility: hidden;
  }
  #expand-sidebar:not(:checked) ~ .sidebar .is-not-expanded {
    visibility: visible;
  }
  #expand-sidebar:not(:checked) ~ .sidebar header,
  #expand-sidebar:not(:checked) ~ .sidebar .user-actions {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #expand-sidebar:not(:checked) ~ .sidebar > footer, #expand-sidebar:not(:checked) ~ .sidebar > div, #expand-sidebar:not(:checked) ~ .sidebar > nav {
    opacity: 0;
  }
}
@media only screen and (max-width: 979px) and (min-width: 640px) and (max-width: 980px) {
  #expand-sidebar:not(:checked) ~ .sidebar > .user-actions {
    opacity: 1;
  }
}
@media only screen and (max-width: 979px) {
  #expand-sidebar:checked ~ .sidebar {
    max-height: 100vh;
  }
  #expand-sidebar:checked ~ .sidebar .is-expanded {
    visibility: visible;
  }
  #expand-sidebar:checked ~ .sidebar .is-not-expanded {
    visibility: hidden;
  }
  #expand-sidebar:checked ~ .sidebar > footer, #expand-sidebar:checked ~ .sidebar > div, #expand-sidebar:checked ~ .sidebar > nav {
    opacity: 1;
  }
}
@media only screen and (max-width: 979px) and (max-width: 640px) {
  #expand-sidebar:checked ~ .sidebar {
    overflow-y: auto;
    height: 100vh;
  }
  #expand-sidebar:checked ~ .sidebar:after {
    display: block;
  }
}
@media only screen and (max-width: 979px) and (min-width: 640px) and (max-width: 980px) {
  #expand-sidebar:checked ~ .sidebar {
    box-shadow: 0 0 20px rgb(18.6548672566, 16.4601769912, 45.5398230088);
  }
}
.nav-main {
  user-select: none;
}
.nav-main ul {
  display: flex;
  flex-direction: column;
}
.nav-main li {
  display: flex;
  margin-bottom: 1rem;
}
.nav-main a {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(3, 90, 166, 0);
  color: #fff;
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7rem;
  max-width: 100%;
  min-height: 4.4rem;
  padding: 1rem;
  text-decoration: none;
  transition: background 0.1s ease-out, border-color 0.075s ease-out;
}
.nav-main a[aria-disabled=true], .nav-main a:disabled {
  cursor: initial;
  opacity: 0.25;
  pointer-events: none;
}
.nav-main a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-main a .icon {
  height: 2rem;
  margin-right: 1rem;
  min-width: 2rem;
  width: 2rem;
}
@media (min-width: 980px) {
  .nav-main a .icon {
    margin-right: 2rem;
  }
}
.nav-main a:not(:disabled):hover, .nav-main a:not([aria-disabled=false]):hover {
  background: #035aa6;
  transition: none;
}
.nav-main a:not(:disabled):not(.is-current):focus-visible, .nav-main a:not([aria-disabled=false]):not(.is-current):focus-visible {
  border-color: #035aa6;
  text-decoration: underline;
  text-decoration-color: #035aa6;
}
.nav-main a:not(:disabled):not(.is-current):active, .nav-main a:not([aria-disabled=false]):not(.is-current):active {
  background: #f4f6f8;
  color: #221e53;
}
.nav-main a:not(:disabled).is-current, .nav-main a:not([aria-disabled=false]).is-current {
  background: #ebad3a;
  border-color: #ebad3a;
  color: #221e53;
}
.nav-main a:not(:disabled).is-current:focus-visible, .nav-main a:not([aria-disabled=false]).is-current:focus-visible {
  text-decoration: underline;
}
.nav-main a:not(:disabled).is-current .icon, .nav-main a:not([aria-disabled=false]).is-current .icon {
  fill: #221e53;
}

.table {
  background: #fff;
  border-bottom: 2px solid #eaedf1;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  /* Overrides for badge alignment in tables */
}
.table .static-header {
  position: sticky;
  top: -2rem;
}
@media (min-width: 1230px) {
  .table .static-header {
    top: -7rem;
  }
}
.table .align-center {
  text-align: center;
}
.table .align-right {
  text-align: right;
}
.table .badge, .table .button.is-square {
  min-width: 8rem;
  width: 100%;
}
.table .button.is-icon {
  color: #221e53;
  padding-top: 0;
  padding-bottom: 0;
}
.table .button.is-icon .icon {
  height: 1.5rem;
  width: 1.5rem;
}
.table thead {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.table tr {
  border-bottom: 2px solid #eaedf1;
}
.table tr:last-child {
  border-bottom: 0;
}
.table tr.clickable-row {
  cursor: pointer;
}
.table tr.clickable-row:hover td {
  background-color: #f4f6f8;
}
.table th {
  background: #221e53;
  white-space: nowrap;
}
.table th a:hover {
  color: #95a4ba;
}
.table th,
.table td {
  padding: 0.8rem 1.5rem;
  vertical-align: middle;
}
.table th .icon,
.table td .icon {
  vertical-align: middle;
}
.table th.amount,
.table td.amount {
  text-align: right;
}
.table th.active-sort,
.table td.active-sort {
  color: #ebad3a;
}
.table th.active-sort .icon,
.table td.active-sort .icon {
  height: 2rem;
  width: 2rem;
}
.table th.active-sort:not(:disabled) a:focus-visible, .table th.active-sort:not(:disabled) a:hover, .table th.active-sort:not([aria-disabled=false]) a:focus-visible, .table th.active-sort:not([aria-disabled=false]) a:hover,
.table td.active-sort:not(:disabled) a:focus-visible,
.table td.active-sort:not(:disabled) a:hover,
.table td.active-sort:not([aria-disabled=false]) a:focus-visible,
.table td.active-sort:not([aria-disabled=false]) a:hover {
  color: #ebad3a;
}
.table th.credit,
.table td.credit {
  color: #44a948;
}
.table th.debit,
.table td.debit {
  color: #e94545;
}
.table th.arrow-cell,
.table td.arrow-cell {
  justify-content: flex-end;
  padding-right: 4rem;
}
.table th.no-wrap,
.table td.no-wrap {
  white-space: nowrap;
}
.table span.credit {
  color: #44a948;
}
.table span.debit {
  color: #e94545;
}
.table td select {
  min-width: 8rem;
}

.pagination {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.action-icons {
  display: flex;
}
.action-icons a {
  display: inline-block;
  margin-right: 10px;
}

.comments-container {
  display: flex;
  flex-direction: column;
}
.comments-container .comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.comments-container .comment:not(:last-of-type) {
  margin-bottom: 2rem;
}
.comments-container .comment .user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.comments-container .comment .comment-text {
  margin-bottom: 0.5rem;
}

.add-comment-btn {
  margin-top: 2rem;
}

.metrics .metrics-group {
  flex-flow: wrap;
}
@media (max-width: 980px) {
  .metrics .metrics-group.metrics-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    grid-gap: 2rem;
    margin-bottom: 2rem;
  }
  .metrics .metrics-group.metrics-list .metric {
    margin: 0;
  }
}
.metrics .metric {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.metrics .metric .measure {
  font-size: 2rem;
  font-weight: 800;
  white-space: nowrap;
}
.metrics .metric .measure .unit {
  font-size: 1.4rem;
  font-weight: 400;
}
.metrics .metric .label {
  white-space: nowrap;
}
.metrics .metric.with-content {
  display: flex;
  flex-direction: row;
}
.metrics .metric.with-content .metric-content {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
}
.metrics .metric-important .label {
  font-weight: 700;
}
.metrics .chart {
  height: 6.3rem;
  width: 6.3rem;
}

@keyframes fill-metric {
  to {
    stroke-dashoffset: var(--metric-val);
  }
}
.chart-radial {
  transform: rotate(-90deg);
  width: 100%;
}
.chart-radial circle,
.chart-radial line,
.chart-radial path {
  fill: none;
  stroke-linecap: round;
}
.chart-radial circle.gutter {
  stroke: #eaedf1;
  stroke-width: 10;
}
.chart-radial circle.percent {
  animation: fill-metric 1.5s normal forwards ease-in-out;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  stroke-width: 10;
  stroke: #44a948;
}
.chart-radial.is-error circle.percent {
  stroke: #e94545;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #221e53;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.drop-zone {
  height: 88px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px dashed #A0A0A0;
  border-radius: 1rem;
  background: #F4F6F8;
}
.drop-zone .drop-zone__prompt {
  font-size: 1.2rem;
  color: #95A4BA;
  margin-bottom: 0rem;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  margin: 8px;
  border: 8px solid #566D91;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #566D91 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sort {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.sort svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
.sort svg.none {
  display: none;
}
.sort svg.up {
  transform: rotate(-90deg);
}
.sort svg.down {
  transform: rotate(90deg);
}

dl {
  display: grid;
  font-weight: 400;
  gap: 0.8rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
dl .stretch {
  grid-column: 1/4;
}
dl dt {
  font-weight: 700;
}

.content-list .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 2px solid #eaedf1;
  padding: 1rem 0;
}
.content-list .item.item-service {
  padding: 2rem 0;
}
.content-list .item.item-service h1,
.content-list .item.item-service h2,
.content-list .item.item-service h3,
.content-list .item.item-service h4 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.9rem;
  margin-bottom: 0.5rem;
  margin-bottom: 0;
}
.content-list .item:first-child {
  padding-top: 0;
}
.content-list .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.content-list .item > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-right: 2rem;
}
.content-list .item > div:last-child {
  margin-right: 0;
}
.content-list .item .actions {
  flex: 0;
  justify-content: center;
  margin-left: auto;
}

.athlete-img, .card.athlete-sm img {
  background: #024CAD;
  border-radius: 100%;
  height: 5rem;
  width: 5rem;
}

.card.athlete-sm {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.card.athlete-sm .details {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 1.65rem;
  margin-left: 1rem;
}
.card.athlete-sm .details .name {
  font-size: 1.4rem;
  line-height: 1.7rem;
}
.card.athlete-lg {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.6rem;
}
.card.athlete-lg h2 {
  font-size: 2.4rem;
  line-height: 3rem;
}
.card.athlete-lg .athlete-img, .card.athlete-lg .card.athlete-sm img, .card.athlete-sm .card.athlete-lg img {
  height: 12rem;
  width: 12rem;
}
.card.athlete-lg .meta {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
  text-align: right;
}

.widget-athlete-search .athlete-sm {
  padding: 1rem 1rem 1.6rem 0;
}
.widget-athlete-search .athlete-sm:last-child {
  padding-bottom: 0.6rem;
}

.athlete-info {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.athlete-info svg,
.athlete-info img,
.athlete-info .card.athlete-sm img,
.card.athlete-sm .athlete-info img {
  border-radius: 100%;
  margin-right: 2rem;
  height: 8rem;
  width: 8rem;
}
.athlete-info div {
  font-weight: 400;
  line-height: 1.452rem;
}
.athlete-info h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.deal-info {
  border: 1px solid #024CAD;
  border-radius: 10px;
  padding: 2.35rem;
}
.deal-info h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.deal-info .deal-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.deal-info .deal-row div {
  width: 50%;
}
.deal-info .deal-row div:first-child {
  width: 75%;
}
.deal-info .deal-value {
  font-weight: 700;
}

.collective_edit_flex_table_container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  flex-flow: row wrap;
}

.collective_edit_flex_table {
  min-width: min-content;
  flex: 1;
}

.layout > header.header-page.view-athlete-header {
  margin-bottom: 0;
}

.view-athlete-widget .athlete-lg {
  float: right;
}

.auth {
  background: #121212;
  position: relative;
  display: flex;
  height: 100vh;
  justify-content: center;
  margin: 0;
  padding: 2rem;
  width: 100vw;
}
.auth .bg {
  background: url("/static/images/bg.webp") 50% 50% no-repeat #121212;
  background-size: cover;
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 0;
}
.auth h2,
.auth img,
.auth .card.athlete-sm img,
.card.athlete-sm .auth img {
  padding-bottom: 3rem;
}
.auth .logo {
  display: block;
  margin: -1rem auto;
  user-select: none;
  width: 18rem;
}
.auth h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 2.4rem;
}
.auth .messages {
  margin-bottom: 1rem;
}
.auth .widget-login {
  background: #fff;
  border-radius: 1rem;
  max-height: calc(100vh - 4rem);
  max-width: 30rem;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  padding: 4rem 2rem;
  width: 100%;
  z-index: 1;
}
.auth .widget-login a {
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-decoration-style: solid;
  text-underline-offset: 0.2rem;
}
.auth .widget-login .forgot-password a {
  text-decoration: none;
}
.auth .widget-login .forgot-password a:focus-visible, .auth .widget-login .forgot-password a:hover {
  text-decoration: underline;
}
.auth .widget-login .widget-content {
  padding: 0;
}
@media (min-width: 1px) {
  .auth .widget-login {
    align-self: center;
  }
}
.auth .widget-login .actions {
  margin-top: 3rem;
}
.auth .widget-login .button {
  margin-bottom: 1rem;
  width: 100%;
}
.auth .widget-login .button:only-child, .auth .widget-login .button:last-child {
  margin-bottom: 0;
}
.auth .widget-login .legal {
  color: #024CAD;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.auth .widget-login .legal a {
  margin-right: 1rem;
}
.auth .widget-login .legal a:last-child {
  margin-right: 0;
}
.auth .widget-login .legal a:hover {
  color: #221e53;
}

.deal section,
.deal .page-nav {
  grid-column: 1/4;
}

.widget-milestones h3 {
  font-weight: 700;
  margin-bottom: 2rem;
}
.widget-milestones dl {
  grid-template-rows: auto;
  grid-template-columns: repeat(2, auto);
}
.widget-milestones .b-item .actions, .widget-milestones .metrics .metric .actions, .metrics .widget-milestones .metric .actions {
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .widget-milestones .b-item, .widget-milestones .metrics .metric, .metrics .widget-milestones .metric {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .widget-milestones .b-item .actions, .widget-milestones .metrics .metric .actions, .metrics .widget-milestones .metric .actions {
    padding-left: 2rem;
    margin-left: auto;
    margin-top: 0;
  }
}

.task-grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 2rem;
  grid-template-rows: auto;
}
.task-grid .form-group {
  margin: 0;
}
.task-grid.with-platform {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 2rem;
}
.task-grid.with-time {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 2rem;
}
.task-grid.nil-task-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 2rem;
}
.task-grid .actions {
  align-items: center;
  display: flex;
}
.task-grid .actions .button {
  color: #024CAD;
  width: 100%;
  padding: 0;
  margin: 0;
}
.task-grid .actions .button:hover {
  color: #221e53;
}
.task-grid .actions .icon {
  height: 2rem;
  width: 2rem;
}

#deal-detail-page .header-page {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
#deal-detail-page .header-page .header-group:first-child {
  padding: 1rem 0;
}
#deal-detail-page .header-page .header-group.last {
  padding: 0 0 1rem;
}
#deal-detail-page .actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#deal-detail-page .actions .button {
  margin-right: 0;
}

@media only screen and (max-width: 979px) {
  #deal-detail-page .deal-info-box dl {
    display: flex;
    flex-wrap: wrap;
  }
  #deal-detail-page .deal-info-box dl dt {
    width: 50%;
  }
}
@media only screen and (min-width: 980px) {
  #deal-detail-page .widget-deal-summary {
    margin-bottom: 2rem;
  }
}
.settings #beneficial-owners {
  margin-top: 2rem;
}
.settings .layout {
  grid-template-columns: repeat(4, 1fr);
}
.settings .layout > form > .widget, .settings .layout > .widget {
  grid-column: 1/5;
}
.settings .layout > form .actions {
  grid-column: 1/5;
  margin-top: 2rem;
}
.settings .layout > form .no-results .actions {
  margin-top: 0;
}
@media (min-width: 980px) {
  .settings .layout > header {
    grid-column: 1/5;
  }
  .settings .layout .settings-collective {
    grid-column: 1/3;
    grid-row: 2/4;
  }
  .settings .layout .settings-collective-users {
    grid-column: 3/5;
  }
  .settings .layout .settings-collective-bank {
    grid-column: 3/5;
  }
}
@media (min-width: 1230px) {
  .settings .layout {
    grid-template-columns: repeat(3, 1fr);
  }
  .settings .layout .settings-collective {
    grid-column: 1/3;
    grid-row: 2/5;
  }
  .settings .layout .settings-collective-users {
    grid-column: 3/4;
  }
  .settings .layout .settings-collective-bank {
    grid-column: 3/4;
  }
}

main.pow .content.pow > .layout {
  grid-template-columns: 24rem 1fr;
}
main.pow .content.pow .filters {
  grid-column: 1/2;
}
main.pow .content.pow .pow-list {
  grid-column: 2/4;
}

.back-django {
  text-decoration: none;
  margin-bottom: 1rem;
}

.filters header .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.filters .actions {
  display: flex;
  flex-direction: row;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eaedf1;
}
.filters .actions .button {
  flex: 1;
  margin-right: 1.5rem;
}
.filters .actions .button:last-child {
  margin-right: 0;
}

.review-pow {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  overflow: auto;
  padding: 3.5rem;
}
.review-pow > .widget:first-child {
  margin-right: 2rem;
  max-width: 340px;
}
.review-pow .header-page {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 1rem;
}
.review-pow .header-page .header-group a {
  font-size: 1.6rem;
}
.review-pow .header-page .header-group .icon {
  height: 4.75rem;
  width: 3rem;
}
.review-pow .header-page .header-group .title {
  margin-bottom: 0;
}
.review-pow .header-page .header-group .title h3 {
  margin-right: 1.75rem;
}
.review-pow .header-page .header-group .badge, .review-pow .header-page .header-group .button.is-square {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.review-pow .athlete-info, .review-pow .deal-info {
  margin-bottom: 2rem;
}
.review-pow .images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-pow .images.loading {
  display: none;
}
.review-pow .images img {
  border-radius: 1rem;
  width: calc(50% - 1rem);
}
.review-pow .images img:nth-child(even) {
  width: 50%;
}
.review-pow .links.loading {
  display: none;
}
.review-pow .links a {
  display: block;
  line-height: 2.3;
}
.review-pow .proof-of-work {
  position: relative;
}
.review-pow .proof-of-work .lds-roller {
  display: none;
}
.review-pow .proof-of-work.loading {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 40rem;
  width: 100%;
}
.review-pow .proof-of-work.loading .lds-roller {
  display: inline-block;
}
.review-pow .proof-of-work.loading.pow-visible {
  display: block;
  min-height: auto;
}
.review-pow .proof-of-work.loading.pow-visible .lds-roller {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 99;
}
.review-pow .proof-of-work.loading.pow-visible .images {
  display: flex;
}
.review-pow .proof-of-work.loading.pow-visible .links {
  display: block;
}
.review-pow .proof-of-work.loading.pow-visible .links a {
  pointer-events: none;
}
.review-pow .proof-of-work.loading.pow-visible .images, .review-pow .proof-of-work.loading.pow-visible .links {
  opacity: 0.25;
}
.review-pow .proof-of-work .links .badge.inline.is-danger, .review-pow .proof-of-work .links .inline.is-danger.button.is-square {
  margin-right: 1rem;
}
.review-pow #tasksTable tr.selected td {
  background-color: #ebad3a;
}

#overlay {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}
#overlay.visible {
  opacity: 1;
  pointer-events: all;
  z-index: 50;
}

#modal {
  background-color: #fff;
  border-radius: 1rem;
  opacity: 0;
  padding: 2rem;
  pointer-events: none;
  position: relative;
  transition: opacity 0.35s ease-in-out;
  width: 40rem;
  z-index: -1;
}
#modal .lds-roller {
  display: none;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#modal.loading .lds-roller {
  display: inline-block;
}
#modal .badge, #modal .button.is-square {
  display: none;
}
#modal .badge.visible, #modal .visible.button.is-square {
  display: inline-block;
}
#modal.visible {
  opacity: 1;
  pointer-events: all;
  z-index: 99;
}
#modal h4 {
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 2rem;
}
#modal textarea {
  margin-bottom: 2rem;
}
#modal .buttons {
  align-items: center;
  display: flex;
  justify-content: center;
}
#modal #declineError {
  margin-bottom: 2rem;
}

.athlete-deals .deal-welcome header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  border-radius: 20px;
  width: 100%;
  padding: 20px;
  background: rgb(34, 30, 83);
  background: linear-gradient(157deg, rgb(34, 30, 83) 50%, rgb(16, 88, 166) 85%, rgb(235, 173, 58) 100%);
}
.athlete-deals .deal-welcome header img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
}
.athlete-deals .deal-welcome header .athlete-name {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}
.athlete-deals .deal-welcome header .institute {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.athlete-deals .deal-welcome header .sport {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
@media (max-width: 980px) {
  .athlete-deals .deal-welcome header {
    border-radius: 0;
  }
}
.athlete-deals .deal-welcome .middle {
  background: #F4F6F8;
  padding-left: 20px;
  padding-right: 20px;
}
.athlete-deals .deal-welcome .middle .instructions {
  padding: 20px 5px;
}
.athlete-deals .deal-welcome .middle .instructions p {
  text-align: center;
  color: #2C4975;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.athlete-deals .deal-welcome .middle .instructions h1 {
  text-align: center;
  color: rgb(34, 30, 83);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5rem;
  margin-top: 2rem;
}
.athlete-deals .deal-welcome .middle .instructions .already {
  font-size: 14px;
  font-weight: 500;
}
.athlete-deals .deal-welcome .middle .instructions a.button {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.athlete-deals .deal-welcome .middle .get-started {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.athlete-deals .deal-welcome .middle .get-started img {
  width: 237px;
}
.athlete-deals .deal-welcome .middle .get-started a {
  max-width: 200px;
  margin-top: 3rem;
}
.athlete-deals .new header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  border-radius: 20px;
  width: 100%;
  padding: 20px;
  background: rgb(34, 30, 83);
  background: linear-gradient(157deg, rgb(34, 30, 83) 50%, rgb(16, 88, 166) 85%, rgb(235, 173, 58) 100%);
}
.athlete-deals .new header img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
}
.athlete-deals .new header .athlete-name {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}
.athlete-deals .new header .institute {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.athlete-deals .new header .sport {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
@media (max-width: 980px) {
  .athlete-deals .new header {
    border-radius: 0; /* Remove round border for mobile sizes */
  }
}
.athlete-deals .new .middle {
  background: #F4F6F8;
  padding-left: 20px;
  padding-right: 20px;
}
.athlete-deals .new .middle .instructions {
  padding: 20px 5px;
}
.athlete-deals .new .middle .instructions p {
  text-align: center;
  color: #2C4975;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.athlete-deals .new .middle .instructions .already {
  font-size: 14px;
  font-weight: 500;
}
.athlete-deals .new .middle form .field-group {
  border-radius: 10px;
  padding: 20px;
  background: white;
}
.athlete-deals .new .middle form .action {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.athlete-deals .new .middle form .action button.button {
  width: 100%;
}
.athlete-deals .info {
  background: #F4F6F8;
}
.athlete-deals .info header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  border-radius: 20px;
  width: 100%;
  padding: 20px;
  background: rgb(34, 30, 83);
  background: linear-gradient(157deg, rgb(34, 30, 83) 50%, rgb(16, 88, 166) 85%, rgb(235, 173, 58) 100%);
}
.athlete-deals .info header img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
}
.athlete-deals .info header h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #2C4975;
}
.athlete-deals .info header .athlete-name {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}
.athlete-deals .info header .institute {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.athlete-deals .info header .sport {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
@media (max-width: 980px) {
  .athlete-deals .info header {
    border-radius: 0; /* Remove round border for mobile sizes */
  }
}
.athlete-deals .info .middle {
  padding-left: 20px;
  padding-right: 20px;
}
.athlete-deals .info .middle .view-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
}
.athlete-deals .info .middle form .field-group {
  border-radius: 10px;
  padding: 20px;
  background: white;
}
.athlete-deals .info .middle form .action {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.athlete-deals .info .middle form .action button.button {
  width: 100%;
}
.athlete-deals .tasks {
  background: #F4F6F8;
}
.athlete-deals .tasks header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  border-radius: 20px;
  width: 100%;
  padding: 20px;
  background: rgb(34, 30, 83);
  background: linear-gradient(157deg, rgb(34, 30, 83) 50%, rgb(16, 88, 166) 85%, rgb(235, 173, 58) 100%);
}
.athlete-deals .tasks header img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
}
.athlete-deals .tasks header h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #2C4975;
}
.athlete-deals .tasks header .athlete-name {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}
.athlete-deals .tasks header .institute {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.athlete-deals .tasks header .sport {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
@media (max-width: 980px) {
  .athlete-deals .tasks header {
    border-radius: 0; /* Remove round border for mobile sizes */
  }
}
.athlete-deals .tasks .middle {
  padding-left: 20px;
  padding-right: 20px;
}
.athlete-deals .tasks .middle .tasks-info-action {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
}
.athlete-deals .tasks .middle .tasks-info-action .actions,
.athlete-deals .tasks .middle .tasks-info-action h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #2C4975;
}
.athlete-deals form .row-button {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  padding: 0 1rem 2rem 0;
}
.athlete-deals form .row-button button.button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-right: 0;
  margin-bottom: 1rem;
  width: 7rem;
  height: 5rem;
  padding: 1rem;
  border-radius: 10px;
}
.athlete-deals form .field-group {
  margin-bottom: 2rem;
  border-radius: 10px;
  padding: 20px;
  background: white;
}
.athlete-deals form .field-group .actions button.button {
  color: #2c4975;
  padding: 10px 0;
}
.athlete-deals form .field-group .form-group {
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .athlete-deals form .field-group .add-mr-1point5 {
    margin-right: 1.5rem;
  }
}
.athlete-deals form .action {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.athlete-deals form .action button.button {
  width: 100%;
}

.athlete-contract form button.w-100 {
  width: 100%;
}

@media (max-width: 768px) {
  .athlete-contract-builder .options-container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .athlete-contract-builder .options-container a {
    width: 100%;
  }
}

.form-group.amount-brands {
  position: relative;
}
.form-group.amount-brands::before {
  content: "$";
  z-index: 1;
  position: absolute;
  left: 0.75rem;
  top: 2.75rem;
  pointer-events: none;
}
.form-group.amount-brands.with-label::before {
  top: 2.75rem;
}
.form-group.amount-brands input {
  text-align: right;
  padding-left: 1.75rem;
}

.royalty-payment-grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.royalty-payment-grid .form-group {
  margin: 0;
}
.royalty-payment-grid .actions {
  align-items: center;
  display: flex;
}
.royalty-payment-grid .actions .button {
  color: #024CAD;
  width: 100%;
  padding: 0;
  margin: 0;
}
.royalty-payment-grid .actions .button:hover {
  color: #221e53;
}
.royalty-payment-grid .actions .icon {
  height: 2rem;
  width: 2rem;
}

.error-message-container {
  display: none;
  justify-content: center;
  align-items: center;
  height: 75vh;
}

.error-message {
  padding: 15px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  border-radius: 5px;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  line-height: 2rem;
}

.chat-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-container {
  display: flex;
  height: 75vh;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #035aa6;
  padding: 4px;
}

.chat-sidebar {
  width: 25%;
  background: #f5f5f5;
  padding: 1px;
  overflow-y: auto;
}

.chat-main {
  width: 75%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.chat-topbar {
  background-color: #221e53;
  padding: 18px 16px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  border-radius: 0px 10px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.message-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
}

input[type=text] {
  width: 80%;
  padding: 10px;
  margin-right: 10px;
}

button {
  padding: 10px;
}

#chat-messages {
  background: #fff;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#chat-input {
  display: flex;
  padding: 10px;
  background: #eee;
  gap: 1rem;
}

#chat-input textarea {
  flex: 1;
  padding: 15px 5px 5px 5px;
  background-color: #fff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-item:first-child {
  border-radius: 5px 5px 0 0;
}

/* Contact item styles */
.contact-item {
  display: flex;
  align-items: center;
  padding: 20px 10px 20px 10px;
  border-bottom: 1px solid lightgrey;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-item:hover {
  background-color: #fbfbfc;
}

.contact-item.unread {
  background-color: #e5e3fb; /* Change background for unread messages */
  font-weight: bold;
}

.contact-item.selected {
  background-color: #bff1bf;
}

.contact-item .hidden {
  display: none;
}

.layout > .hidden {
  display: none;
}

.unread-count {
  background-color: #024CAD;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 50%;
  min-width: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: 10px;
}

/* Avatar circle */
.contact-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

/* Initials style */
.avatar-initials {
  font-size: 18px;
  color: #fff;
  background-color: #024CAD;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-weight: bold;
  text-transform: uppercase;
}

/* Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
}

/* Contact name and last message */
.contact-name {
  font-size: 16px;
  height: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.last-message {
  font-size: 11px;
  color: #888;
  margin-top: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100px;
  font-weight: lighter;
}

.message-container .message {
  min-width: 25%;
  max-width: 70%;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.message-container .message p {
  padding-top: 2px;
  padding-bottom: 8px;
  white-space: pre-line;
}
.message-container .message.received {
  align-self: flex-start;
  background-color: #f1f1f1;
  color: #333;
}
.message-container .message.sent {
  align-self: flex-end;
  background-color: #024CAD;
  color: #fff;
}
.message-container .message strong {
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
  opacity: 0.8;
}

.timestamp {
  font-size: 8px;
  opacity: 0.6;
  position: absolute;
  bottom: 2px;
  right: 8px;
}

.no-chat-message {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  padding: 50px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 1rem;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.chat-topbar .dropdown-container {
  position: relative;
  display: inline-block;
}
.chat-topbar #dropdown-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.chat-topbar .dropdown-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 100;
  min-width: 150px;
  text-align: left;
}
.chat-topbar .dropdown-list li {
  padding: 5px 10px;
  cursor: pointer;
  color: #0f0f0f;
}
.chat-topbar .dropdown-list li:hover {
  background-color: #f0f0f0;
}
.chat-topbar .visible {
  display: block;
}

/* Container for the tabs */
.tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* Style for individual tab buttons */
.tab {
  background-color: #f4f6f8;
  border: 1px solid #ccc;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

/* Tab hover and active state */
.tab:hover, .tab.active {
  background-color: #035aa6;
  color: white;
}

/* Hide all tabs content by default */
.tab-content {
  display: none;
}

/* Show the active tab content */
.tab-content:target {
  display: block;
}

/* Optional: active tab highlighting */
.tab.active {
  background-color: #221e53;
  color: #fff;
}

.modal-content .tabs-container {
  margin-bottom: 2rem;
}

.modal {
  min-width: 50%;
}

.modal-subheader {
  color: #221e53;
  font-weight: 800;
}

.load-more-btn-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 2rem;
}

.message {
  position: relative;
  padding: 10px;
  background: #222;
  color: white;
  border-radius: 8px;
  margin-bottom: 10px;
}

.more-options {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 10px;
  right: 0px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.message:hover .more-options {
  opacity: 1;
}

.message-dropdown {
  position: absolute;
  top: 20px;
  right: 5px;
  background: #333;
  border: 1px solid #444;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.message-dropdown.hidden {
  display: none;
}

.message-dropdown button {
  background: none;
  border: none;
  color: white;
  padding: 5px;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.message-dropdown button:hover {
  background: #444;
}

#mass-notification-form {
  display: block;
  margin-top: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.helper-text-container {
  margin-bottom: 2rem;
}

p.helper-text {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 10px;
}

/*# sourceMappingURL=frontend.css.map */
