@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "azo_sanslight";
  src: url("../fonts/azosans-light-webfont.woff2");
  src: url("../fonts/AzoMonoTest-Light-BF663af5f7737c7.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "azo_sansregular";
  src: url("../fonts/azosans-regular-webfont.woff2");
  src: url("../fonts/AzoMonoTest-Regular-BF663af5f7870b6.otf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --light: "azo_sanslight";
  --regular: "azo_sansregular";
  --medium: "montserratmedium";
  --bold: "montserratbold";
  --red: #d60000;
  --gold: #cc9a52;
  --redhover: #b80000;
  --statictext: #000;
}

html {
  font-family: var(--light);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;  
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  text-decoration: none !important;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}
.btn {
  height: 40px;
  line-height: 28px;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

ul,
li {
  list-style: none;
}

*:focus {
  outline: 0;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 5px;
}

::-webkit-scrollbar:horizontal {
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}
.btn-red {
  background-color: var(--red);
  color: #fff;
  border-radius: 30px;
  border: 1px solid var(--red);
  padding: 5px 15px;
}
.btn-red:hover,
.btn-red:focus {
  background-color: var(--redhover);
  color: #fff;
}

.btn-yellow {
  background-color: var(--gold);
  color: #fff;
  border-radius: 30px;
  border: 1px solid var(--gold);
  padding: 5px 15px;
}
.btn-yellow:hover,
.btn-yellow:focus {
  background-color: var(--gold);
  color: #fff;
}

.btn-white,
.btn-white:hover,
.btn-white:focus {
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 5px 15px;
}
.table .btn {
  padding: 0px 20px !important;
  height: auto !important;
}
.table td {
  vertical-align: middle;
  font-size: 13px;
}

.login-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
}
.login-outer {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  max-width: 490px;
  margin: 0 auto;
  padding: 0 34px 40px 34px;
  box-shadow: 0px 3px 25px #d600006b;
}
@media (max-width: 520px) {
  .login-outer {
    max-width: 90%;
  }
}
.btn-close {
  display: none;
}
h5 {
  font-size: 21px;
  font-weight: bolder;
  color: #212529;
}
.form-group {
  position: relative;
}
.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}
.form-control {
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 25px;
  text-align: left;
  letter-spacing: 0px;
  color: #574949;
  font-size: 14px;
  height: 48px;
  font-weight: bold;
}
.login-outer .form-control {
  padding-left: 40px;
  padding-right: 27px;
}
.form-control::placeholder {
  font-weight: 500;
}
.form-control:focus {
  outline: 0;
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 25px;
  letter-spacing: 0px;
  border: 1px solid #ced4da;
  color: #574949;
}
.toggle-password {
  position: absolute;
  right: 15px;
  left: auto !important;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}
input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
input[type="checkbox"]:checked {
  outline: none;
  box-shadow: none;
  background-color: var(--red);
  border-color: var(--red);
}
.form-check-input:focus {
  border-color: #ddd;
  outline: 0;
  box-shadow: none;
}
input[type="checkbox"]:checked::before {
  content: "\2713";
  font-size: 16px;
  color: white;
  text-align: center;
  line-height: 16px;
  display: block;
  background: var(--red);
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.form-control[type="file"] {
  padding: 14px;
}
.remember-me {
  position: relative;
  top: 3px;
}
.form-check-input:checked {
  background-color: var(--red);
  border-color: var(--red);
}

.btn-submit {
  background-color: var(--red);
  color: #fff;
  border-radius: 30px;
}
.btn-submit:hover,
.btn-submit:focus {
  background-color: var(--redhover);
  color: #fff;
}
/* 
.fixheader {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  height: 80px;
  z-index: 9995;
  transition: all 0.5s ease;
  padding: 0;
} */

.fixheader {
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 2px 15px -2px rgba(0, 0, 0, 0.2);
  animation: headfix 0.5s;
  animation-iteration-count: 1;
  transition: all 0.5s ease;
}

@keyframes headfix {
  from {
    top: -100px;
  }

  to {
    top: 0px;
  }
}
.fixheader.scrolled {
  height: 80px;
  animation: headfix 0.5s;
  animation-iteration-count: 1;
  transition: all 0.5s ease;
}
.fixheader.scrolled .logo {
  width: 60px;
  transition: all 0.5s ease;
}

ul.navbar-nav {
  margin-top: 50px;
}

ul.navbar-nav .nav-link {
  display: block;
  font-size: 17px;
  line-height: 30px;
  padding: 0 !important;
  color: #000;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 1200px) {
  ul.navbar-nav > li {
    padding: 0 0 45px;
  }
}
@media only screen and (min-width: 1200px) {
  ul.navbar-nav li {
    margin: 0 18px;
  }
}

ul.navbar-nav li.btn-main a {
  color: #fff;
  background-color: var(--red);
  border-radius: 25px;
  padding: 4px 25px;
  overflow: hidden;
  position: relative;
  top: -4px;
}
ul.navbar-nav li.btn-main a.nav-link {
  padding: 5px 20px !important;
}

ul.navbar-nav li a.nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background-color: var(--red);
  transition: all 0.4s ease;
  z-index: -1;
}
ul.navbar-nav li a.nav-link:after {
  display: none;
}

ul.navbar-nav li.active a.nav-link:before,
ul.navbar-nav li:hover a.nav-link:before {
  right: 0px;
}

ul.navbar-nav li.btn-main a {
  color: #fff;
  background-color: var(--red);
  border-radius: 25px;
  padding: 4px 25px;
  overflow: hidden;
  position: relative;
  top: -4px;
}

ul.navbar-nav li.btn-main a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 100%;
  background-color: var(--redhover);
  height: auto;
  transition: all 0.5s ease;
}
ul.navbar-nav li.btn-main:hover a:after {
  right: 0;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

@media (max-width: 991px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: none;
  }
  .navbar-nav .dropdown .dropdown-menu.show {
    display: block;
  }
}
.navbar-nav li:hover .dropdown-menu {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.navbar-nav .dropdown-menu {
  position: fixed !important;
  left: 0;
  right: 0;
  top: 80px;
  opacity: 0;
  transform: rotateX(-25deg);
  transition: all 0.5s ease;
  padding: 30px 0;
  background: #f8f8f8;
  visibility: hidden;
  transform-origin: 0px 0px;
  backface-visibility: hidden;
  border-bottom: 1px solid #dddddd;
  border-top: 0px;
  border-radius: 0px;
}
.navbar-nav .dropdown-menu li a {
  color: var(--red);
  font-weight: bolder;
  font-size: 19px;
  display: block;
  text-align: center;
  padding: 0px 35px;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
}
.dropdown-item .fas {
  color: #4a5f69;
}
.brd-left {
  border-left: 1px dashed #aaa;
}
.dropdown-menu li {
  margin: 0px !important;
}
.content {
  margin-top: 90px;
}
.breadcrumb-item a {
  color: var(--bs-breadcrumb-item-active-color) !important;
}
.breadcrumb-item.active {
  color: var(--red);
}
.table > :not(caption) > * > * {
  padding: 0.3rem 0.3rem;
}
.card {
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  border: 0px;
}
.card-header {
  border: 0px;
}
.text.text-main {
  font-size: 14px;
}
.close {
  -webkit-appearance: none;
  background-color: var(--red);
  border-radius: 50%;
  color: #fff;
  box-shadow: none;
  border: 0px;
  width: 30px;
  height: 30px;
  font-size: 20px;
}
.profile-card {
  color: #fff;
  background-color: var(--red);
}
.profile-card .fas,
.profile-card a.text-main {
  color: #fff !important;
}
.text-red {
  color: var(--red) !important;
  font-size: 14px;
}
.profile-card .card-body p {
  margin-bottom: 6px !important;
  color: #fff;
}
.profilebox img,
.profile-img {
  object-fit: cover;
  width: 100px;
  height: 100px;
}
.dashboard .card .card {
  box-shadow: none;
}
.tab-top.nav-tabs {
  border-bottom: 0px;
}

.tab-top .nav-link {
  background-color: transparent;
  color: var(--red);
  border-radius: 30px;
  min-width: 100px;
  border: 1px solid var(--red);
  text-align: center;
}
.tab-top .nav-item.show .nav-link,
.tab-top .nav-link.active {
  background-color: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}
.tab-h .nav-link {
  background-color: transparent;
  color: #000;
  border-radius: 30px;
  border: 0px;
  text-align: center;
  padding: 0 25px 10px 0;
  font-size: 15px;
  font-weight: 500;
}
.tab-h .nav-item.show .nav-link,
.tab-h .nav-link.active {
  color: var(--red);
  background-color: transparent;
}
.dashboard h5 {
  font-size: 16px;
  font-weight: bold;
}
.dashboard .card .card .card-body {
  padding-left: 0;
  padding-right: 25px;
  padding-bottom: 0px;
}
.mh-220 {
  min-height: 220px;
}
.captcha-container {
  display: flex;
  align-items: center;
}

.captcha-box {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 4px;
  text-align: center;
  padding: 6px;
  width: 120px;
  border-radius: 30px;
  background-color: var(--gold);
}

.refresh-btn {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 18px;
}
#captchaInput {
  padding-left: 25px;
}
.text-yellow {
  color: var(--gold);
}
.card .card-header h5 {
  font-weight: 600;
  font-size: 18px;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  padding: 20px;
  overflow: scroll;
}

.filter-sidebar.active {
  right: 0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.filter-header h5 {
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Sticky button */
.filter-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--red);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1050;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.navbar-toggler,
.navbar-toggler:focus {
  border: 0px;
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url(../img/mnav.svg);
}
@media (max-width: 1199px) {
  ul.navbar-nav {
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 95%;
  }
  ul.navbar-nav .nav-link {
    padding: 0 15px !important;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -250px; /* Initially off-screen */
    height: 100%;
    width: 250px;
    background: #fff;
    transition: right 0.3s ease-in-out;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  }
  .dropdown-menu{
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .dropdown-menu .brd-left{
    border: 0px
  }
  .fixheader.scrolled .navbar-brand img,
  .fixheader .navbar-brand img {
    width: 60px;
  }
  .fixheader,
  .fixheader.scrolled {
    height: 80px;
    padding: 0px;
  }
  .fixheader.scrolled .navbar-nav .dropdown-menu {
    top: 0;
  }
  .navbar-collapse.show {
    right: 0; /* Bring it into view */
  }
  .content {
    margin-top: 100px;
  }
  ul.navbar-nav .nav-link {
    margin-bottom: 15px !important;
  }
  ul.navbar-nav {
    margin-top: 60px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: start;
    padding-left: 20px;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }
  .navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 40px;
    padding: 0px;
    border: 0px;
    width: 221px;
  }
  .navbar-nav .dropdown-menu li a {
    color: var(--red);
        font-weight: 500;
        font-size: 15px;
        display: block;
        text-align: left;
        padding: 10px 10px;
        align-items: flex-start !important;
        justify-content: flex-start !important;
  }
  .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 98%;
  }
}
@media (max-width: 480px) {
  .mob-flex-column {
    flex-direction: column;
  }
  .filter-sidebar{
    width: 280px
  }
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 98%;
  }
}
.list li a{
  font-size: 14px !important;
  color: #000 !important;
  text-align: left !important;
  font-weight: normal !important;
  padding: 0px 5px !important;
  margin-bottom: 5px;
}
.list .fa-caret-right{
  color: var(--gold) !important ;
}

.chart-list {
    list-style: none;
    font-size: 13px
}

    .chart-list li::before {
        content: "\2022";
        font-size: 1.5em;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -0.8em;
    }

.list-items-percentage {
    margin-top: 8px
}

.chart-list li:nth-child(1)::before {
    color: #01cf6b;
}

.chart-list li:nth-child(2)::before {
    color: #3454f5;
}

.chart-list li:nth-child(3)::before {
    color: #fa292e;
}

.chart-list li:nth-child(4)::before {
    color: #ffc80b;
}

.chart-list li:nth-child(5)::before {
    color: #003468;
}

.chart-list li:nth-child(6)::before {
    color: #a90a71;
}

@media(max-width: 991px){
  .list li a, .list{
    padding: 0px 5px !important;
  }
}

