body {
    max-width: 1080px;
    margin: auto;
    padding: 10px;
    font-family: "Nunito";
    color: #ccc;
    background-color: #333;
    font-size: 11pt;
}

.header-container {
    display: flex;
    padding: 10px;
    flex-direction: row;
    width: 100%;
}

.header-text {
    font-size: 15pt;
    font-weight: bold;
    width: 50%;
}

.header-text a {
    color: #ccc;
}

.header-login {
    width: 50%;
    padding-top: 6px;
    text-align: right;
}

.header-image {
    height: 28px;
    width: auto;
}

.container {
    padding: 10px;
}

a {
    text-decoration: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }

.code-container {
    padding: 30px;
    border-bottom: 1px solid #777;
    display: flex;
    flex-direction: row;
}

.code-container-left {
    width: calc(100% - 24px);
}

.code-container-right {
    width: 24px;
}

.code-menu-button {
    border: none;
    background: transparent;
}

.circle-progress-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 9pt;
	margin-top: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: radial-gradient(closest-side, #333 65%, transparent 80% 100%), conic-gradient(#0d6efd 0%, #343a40 0);    
}

.sticky-header {
	padding: 10px;
	position: fixed;
	top: 0;
	background-color: #333;
	max-width: 1080px;
	width: 100%;
}