:root {
  --primary-color: #EB973E;
}

.color-primary-site {
  color: var(--primary-color);
}

.bg-primary-site {
  background-color: var(--primary-color);
}

html {
  font-size: 14px; 
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.body-content { 
  background-image: url('/images/page-BG.webp'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%;
  min-height: calc(100vh - 120px);
}

.bg-image {
  background-image: url('/images/internal-page-BG.webp');   
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.link a{
  text-decoration: underline;
  color: var(--primary-color)
}
  
.actionButton {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 20px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
}

.actionButton:hover {
    background-color: #0b5ed7;
}

.nav-item {
  font-weight: bold;
}

.header{
  font-weight: bold;
  color: #A46A29;
  text-align: center; 
}

.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 { 
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.centerBox {
  width: 550px;
  padding: 2rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin: 2rem auto;
}

.centerBoxAlt {
  width: 95vw;
  padding: 2rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin: 2rem auto;
}

.btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color)
}

.btn:hover { 
  color: white;
}

.form-check-input:checked{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.navbar {
  margin-bottom: 0% !important;
}
 
.gradient{
  background-image: url('/images/header-BG.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.text-small {
  font-size: 0.8rem;
}

.btn-danger{
  background-color: red;
}

.copyable-textinput
{
    position: relative;
}

.copyable-textinput input
{
    width: 100%;
}

.copyable-textinput a
{
    display: inline-block; position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
}

.value
{
    font-weight:bold; color: #000;
}