@font-face {
  font-family: 'Inter';
  font-style: normal;
  src: url(/static/css/fonts/Inter-VariableFont_opsz\,wght.ttf) format('truetype-variations');
  font-weight: 100 900;
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  src: url(/static/css/fonts/Inter-Italic-VariableFont_opsz\,wght.ttf) format('truetype-variations');
  font-weight: 100 900;
}

:root,
html,
body,
input,
label,
button,
textarea,
select {
  font-family: 'Inter', sans-serif !important;
}

body {
  font-weight: 350;
  background-color: #fffefe;
  color: #444444;
  margin: 0px;
}

label {
  display: block;
  font-weight: 400;
  font-size: 10pt;
  margin-bottom: 5px;
}

input, select {
  padding: 8px 10px 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #444444;
}

button {
  min-height: 36px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFFFF;
  background: #FD0066FF;
  opacity: 1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #414292;
}

button:disabled {
  background-color: #cccccc;
  color: #888888;
  cursor: not-allowed;
  opacity: 0.7;
}

.profile {
  display: grid;
  grid-gap: 0.6rem;
  grid-template-columns: 50px 50px;
}

.profile a img {
  height: 45px;
  border-radius: 50%;
}

.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  position: relative;
  height: 20px;
  border-radius: 5px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #4caf50;
  border-radius: 5px;
}

.spinner {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: #3498db;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.link-completed-container {
  background-color: #c9efca;
  border-color: #7dac7f;
  border-radius: 3px;
  padding: 10px;
  justify-content: center;
  text-align: center;
}

.sticky-bottom {
  position: sticky;
  bottom: 0px;
}

.sticky-top {
  position: sticky;
  top: 0px;
}