html {
  font-size: 14px;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  /*margin-bottom: 60px;*/

}

footer {
    background: #1F1A6B;
    background: linear-gradient(4deg, rgba(31, 26, 107, 1) 0%, rgba(31, 26, 107, 1) 32%, rgba(86, 86, 176, 1) 48%, rgba(31, 26, 107, 1) 68%, rgba(31, 26, 107, 1) 100%);
    padding: 10px 0 5px 0
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/*** Global Classes ***/
.hidden {
    display: none;
}

.tcgActionIcon {
    text-decoration: none;
    color: slateblue;
}
    .tcgActionIcon:hover {
        color: blue;
        cursor: pointer;
    }

.tcg-text-shadow {
    text-shadow: 2px 2px 3px rgb(47, 47, 47, 0.31)
}

.tcg-primary-blue {
    color: #1f1a6c;
}
.tcg-secondary-blue {
    color: #0779b6;
}
.tcg-primary-gold {
    color: #ffe400;
}
.tcg-primary-red {
    color: #e32028;
}