/** DARK MODE */
/** Global Variables */
* {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

* {
  font-family: inherit;
  font-size: 100%;
  font-weight: normal;
  line-height: 1.5;
}

* {
  text-align: left;
  text-decoration: none;
  text-transform: none;
  vertical-align: baseline;
  word-wrap: break-word;
}

* {
  list-style: none;
}

* {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-tap-highlight-color: transparent;
}

* {
  color: inherit;
  text-decoration: none;
}

* {
  max-width: 100%;
}

* {
  max-width: 100%;
}

* {
  border: none;
}

* {
  table-layout: auto;
}

* {
  margin: 0;
}

* {
  border: none;
  margin: 0;
  padding: 0;
}

* {
  border: none;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button::-webkit-inner-spin-button,
[type=button]::-webkit-inner-spin-button {
  height: auto;
}

[type=button] {
  -webkit-appearance: button;
}

[type=button]::-webkit-inner-spin-button {
  height: auto;
}

[type=button]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

body {
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  background-color: #000000;
}
body h2 {
  font-size: 1.1rem;
  font-weight: 200;
  color: #ffffff;
}
body small {
  font-size: 0.75rem;
}
body a, body button {
  color: #ffffff;
  cursor: pointer;
}
body *[ng-click] {
  cursor: pointer;
}
body svg > * {
  fill: currentColor;
}
body b {
  font-weight: bold;
}

/** Layout */
.container {
  margin: 0 0.5rem;
}

html, body, ui-view {
  height: 100%;
}

.collapsed .hidde-collapsed {
  display: none !important;
}

/* Elements */
.spinner, .inner-spinner::after {
  width: 48px;
  height: 48px;
  border: 5px solid #e5e5e5;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.inner-spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: space-around;
  display: none;
}
.inner-spinner::after {
  content: " ";
}

.btn .inner-spinner::after {
  height: 1.5rem;
  width: 1.5rem;
  border-width: 3px;
}

.loading:hover {
  color: transparent;
}
.loading .inner-spinner {
  display: flex;
}

.global-loading-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  display: flex;
  z-index: -1;
  transition: opacity 0.5s ease, z-index 0.2s ease 0.3s;
}
.global-loading-wrapper.show {
  opacity: 1;
  z-index: 9999;
}

.card {
  width: 100%;
  background: #262626;
  border-radius: 2rem;
}
.card .card {
  background-color: #494949;
}
.card .card-header {
  padding: 1rem 1.5rem;
  padding-bottom: 0px;
  display: flex;
  justify-content: space-between;
}
.card .card-header h2 {
  line-height: 2rem;
}
.card .card-body {
  padding: 1rem 1.5rem;
}
.card .card-footer {
  padding: 1rem 1.5rem;
  padding-top: 0px;
}

button, a.btn {
  border-radius: 2rem;
  padding: 0.7rem 2rem;
  display: inline-block;
  width: max-content;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}
button:hover:not(:disabled), a.btn:hover:not(:disabled) {
  color: #e5e5e5;
}
button.btn-secondary, a.btn.btn-secondary {
  background-color: #000000;
  border: 2px solid #000000;
  transition: all ease 0.5s;
}
button.btn-secondary:hover:not(:disabled), a.btn.btn-secondary:hover:not(:disabled) {
  border-color: #e5e5e5;
  transition: all ease 0.5s;
}
button.btn-block, a.btn.btn-block {
  width: 100%;
  text-align: center;
}
button.loading, a.btn.loading {
  color: transparent;
}
button span, button svg, a.btn span, a.btn svg {
  vertical-align: middle;
}
button:disabled, a.btn:disabled {
  opacity: 0.7;
}

.btn-group {
  display: flex;
  flex-direction: row;
  border-radius: 2rem;
  border: 2px solid #000000;
  overflow: hidden;
}
.btn-group .btn {
  border: 0;
  flex-shrink: 1;
}
.btn-group .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group .btn:first-of-type {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group .btn:last-of-type {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-support {
  position: fixed;
  background-color: green;
  color: #ffffff;
  bottom: 1rem;
  right: 1rem;
  line-height: 8px;
  padding: 0.5rem;
  padding-bottom: 0.4rem;
  border-radius: 50px;
  transition: ease all 0.7s;
}
.btn-support svg {
  width: 32px;
  height: 32px;
}
.btn-support:hover {
  bottom: 1.3rem;
  transition: ease all 0.3s;
}

.tab-nav {
  background-color: #000000;
  display: inline-flex;
  border: 2px solid #262626;
  border-radius: 2rem;
  width: max-content;
}
.tab-nav button.tab-item, .tab-nav a.tab-item {
  padding: calc(1rem - 4px) 2rem;
  border-radius: 2rem;
  border: 4px solid #000000;
  transition: background-color ease 0.5s;
}
.tab-nav button.tab-item.active, .tab-nav a.tab-item.active {
  background-color: #262626;
  color: #e5e5e5;
  transition: background-color ease 0.5s;
}
.tab-nav button.tab-item.disabled, .tab-nav button.tab-item.disabled:hover, .tab-nav a.tab-item.disabled, .tab-nav a.tab-item.disabled:hover {
  color: #494949 !important;
}
.tab-nav button.tab-item:not(.active):hover, .tab-nav a.tab-item:not(.active):hover {
  color: #e5e5e5;
}
.tab-nav button.tab-item.disabled, .tab-nav a.tab-item.disabled {
  color: #494949;
}
.tab-nav button.tab-item.disabled:hover, .tab-nav a.tab-item.disabled:hover {
  color: #494949;
}

.mobile-menu {
  position: fixed;
  bottom: 2rem;
  width: 70vw;
  margin: 0 calc(50% - 35vw);
  z-index: 1;
}
.mobile-menu .tab-nav {
  width: 100%;
  max-width: 262.5px;
}
.mobile-menu .tab-nav .tab-item {
  flex: 1 1 auto;
  padding: 12px 0px !important;
}
.mobile-menu .tab-nav .tab-item svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
}

.input-group {
  margin-bottom: 1rem;
}
.input-group label {
  color: #e5e5e5;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  position: relative;
  white-space: nowrap;
}
.input-group .input-field {
  background: transparent;
  border: 1px solid #494949;
  color: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  transition: border-color ease 0.5s;
  width: 100%;
  position: relative;
}
.input-group .input-field:focus-visible, .input-group .input-field:focus {
  border-color: #e5e5e5;
}
.input-group .input-field:disabled {
  background: #494949;
}
.input-group .input-field.solid {
  background: #000000;
}
.input-group.invalid label {
  color: #ff0000 !important;
}
.input-group.invalid input, .input-group.invalid select {
  border-color: #ff0000;
}
.input-group select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  position: relative;
  display: inline-block;
  padding-top: 0.709rem !important;
  padding-bottom: 0.709rem !important;
}
.input-group select option {
  background-color: #000000;
}
.input-group .fl-row {
  gap: 0px;
}
.input-group .fl-row .input-field:first-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.input-group .fl-row .input-field:last-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.fl-col > .input-group {
  margin-bottom: 0px;
}

.banner {
  width: 100%;
  font-size: 0.7rem;
  border-radius: 8px;
  background: #262626;
  padding: 1rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
}
.banner a {
  font-weight: bold;
}
.banner.banner-warning {
  background: #d27200;
  color: #000000;
}

/* margin */

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mr-5px {
  margin-right: 5px;
}

.mb-5px {
  margin-bottom: 5px;
}

/* Paddings */

.p-1 {
  padding: 1rem;
}

.py-1 {
  padding: 1rem 0;
}

.p-b8 {
  padding: 0.8rem !important;
}

/* Gaps */
.gap-0 {
  gap: 0 !important;
}

/* Sizes */

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100%;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

/* Width */
.mw-700 {
  max-width: 700px;
}

.mw-500 {
  max-width: 500px;
}

.mw-450 {
  max-width: 450px;
}

.mw-200 {
  max-width: 200px;
}

/* Max Height */

/* Flex */
.fl-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.fl-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fl-justify {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.fl-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.fl-start {
  display: flex;
  justify-content: flex-start;
}

.fl-align-start {
  align-items: start;
  align-content: flex-start;
}

/* Display */

/* Grid */

/* Text colors */

.text-danger {
  color: #ff0000 !important;
}

.text-warning {
  color: #d27200 !important;
}

.text-success {
  color: #08e804 !important;
}

.text-color-title {
  color: #ffffff !important;
}

/* Text align */

.text-center {
  text-align: center !important;
}

/* Text sizes */
.text-1 {
  font-size: 1em;
}

.text-2 {
  font-size: 1.2em;
}

.text-4 {
  font-size: 1.4em;
}

.text-5 {
  font-size: 1.5em;
}

.text-bold {
  font-weight: bold;
}

/*  */

/* Background colors */

.bg-danger {
  background: #ff0000 !important;
}

.bg-success {
  background: #08e804 !important;
}

.bg-white {
  background: #FFF !important;
}

/* Ratios */
.ratio-1x1 {
  aspect-ratio: 1;
}

.ratio-1920x400 {
  aspect-ratio: 1920/400;
}

.ratio-252x540 {
  aspect-ratio: 252/540;
}

/* Border */

.border-bottom-rounded {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.border-rounded-b5 {
  border-radius: 1rem;
  overflow: hidden;
}

.border-dashed {
  border: dashed;
}

.border-bottom-0 {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Draggables */

/* Appearance */
.appearance-auto {
  appearance: auto;
}

/* Position */

/* Object Fit */

.hidde-mobile {
  display: block;
}

.hidde-desktop {
  display: none;
}

@media (max-width: 576px) {
  .hidde-mobile {
    display: none;
  }
  .hidde-desktop {
    display: inherit;
  }
  .fl-col-mobile {
    flex-direction: column;
  }
  .fl-col-mobile .w-50, .fl-col-mobile .w-60, .fl-col-mobile .w-80 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .card .card-body {
    padding: 1rem 0.8rem;
  }
  .btn-group .btn {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .btn-support svg {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}