html {
    direction: ltr;
    overflow-x: hidden;
    box-shadow: none !important;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: auto;
    }
}
/* Body */
body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 26px;
    margin: 0;
    height: 100vh;
}
.body {
    background-color: #000000;
}

body a {
    outline: none !important;
}
@media (max-width: 575px) {
    body {
        font-size: 13px;
    }
}

html.safari:not(.no-safari-overflow-x-fix) .body {
    overflow-x: hidden;
}

a {
    color: #96E93A;
    text-decoration: none;
    text-transform: uppercase;
}

a:not(.btn):hover {
    text-decoration: none;
    color: #fff;
}

li {
    line-height: 24px;
    color: var(--default);
}

.btn-primary {
    color: #777;
}

.form-control {
    background-color: #777 !important;
    color:#fff !important;
}

.amann-container {
    display: inline-block;
}
h1,h2,h3,h4 {
    color: #96E93A;
    margin-bottom: 5px;
}
h1 {
    font-size: 24px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 18px;
    text-transform: none;
}

#header .header-body {
    background-color: #000;
    border-bottom: 1px #96E93A solid;
}

.control {
  display: block !important;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.control-checkbox .control_indicator::after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #777;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control_indicator::after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}
.control_indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f0f0f0;
  border: 0 solid #000;
}

.control input:checked ~ .control_indicator {
    background: #6b91a1;
}

.control input:checked ~ .control_indicator::after {
    display: block;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control:hover input:not([disabled]):checked ~ .control_indicator, .control input:checked:focus ~ .control_indicator {
  background-color: #96E93A;
}
.control input:checked ~ .control_indicator {
  background: #96E93A;
}
.control:hover input ~ .control_indicator, .control input:focus ~ .control_indicator {
  background: #777;
}