@import url(font.css);

@import url(font.css);

/* Base Styles */
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-size: 14px;
  position: relative;
}

#cssmenu {
  width: 190px;
  /*border-bottom: 4px solid #656659;*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#cssmenu a {
  line-height: 1.3;
}

#cssmenu > ul > li:first-child {
  background: #3c4981;
  border: 1px solid #3c4981;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

#cssmenu > ul > li:first-child > a {
  padding: 15px 10px;
  border: none;
  border-top: 1px solid #818176;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  text-shadow: 0 -1px 1px #000000;
}

#cssmenu > ul > li:first-child > a > span {
  padding: 0;
}

#cssmenu > ul > li:first-child:hover {
  background: #3c4981;
}

#cssmenu > ul > li {
  background: #66665e;
}

#cssmenu > ul > li:hover {
  background: #1762a1;
}

#cssmenu > ul > li > a {
  font-size: 14px;
  display: block;
  color: #ffffff;
  border: 1px solid #75787b;
  border-top: none;
  text-shadow: 0 -1px 1px #751d0c;
}

#cssmenu > ul > li > a > span {
  display: block;
  padding: 12px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

#cssmenu > ul > li > a:hover {
  text-decoration: none;
}

#cssmenu > ul > li.active {
  border-bottom: none;
}

#cssmenu > ul > li.has-sub > a span {
  background: url(images/icon_plus.png) 96% center no-repeat;
}

#cssmenu > ul > li.has-sub.active > a span {
  background: url(images/icon_minus.png) 96% center no-repeat;
}

/* Sub menu */
#cssmenu ul ul {
  display: none;
  background: #fff;
  border-right: 1px solid #a2a194;
  border-left: 1px solid #a2a194;
}

#cssmenu ul ul li {
  padding: 0;
  border-bottom: 1px solid #d4d4d4;
  border-top: none;
  background: #f7f7f7;
  background: -moz-linear-gradient(#f7f7f7 0%, #ececec 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #f7f7f7),
    color-stop(100%, #ececec)
  );
  background: -webkit-linear-gradient(#f7f7f7 0%, #ececec 100%);
  background: linear-gradient(#f7f7f7 0%, #ececec 100%);
}
#cssmenu ul ul li:last-child {
  border-bottom: none;
}
#cssmenu ul ul a {
  padding: 10px 10px 10px 25px;
  display: block;
  color: #676767;
  font-size: 12px;
  font-weight: normal;
}
#cssmenu ul ul a:before {
  content: "»";
  position: absolute;
  left: 10px;
  color: #3c4981;
}
#cssmenu ul ul a:hover {
  color: #3c4981;
}


.password-checklist{
  position: absolute;
  top: calc(100% - 0px);
  width: auto;
  padding: 10px 15px;
  background: #eae9e9;
  border-radius: 0px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: .5s ease;
  z-index: 9;
}

#password:focus ~ .password-checklist{
  opacity: 1;
  transform: translateY(0);
}

#confirm:focus ~ .password-checklist{
  opacity: 1;
  transform: translateY(0);
}

.password-input-box{
  position: relative;
  width: 300px;
}
.show-password{
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #342f31;
}

.confirm-show-password {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #342f31;
}

.checklist-title{
  font-size: 15px;
  color: #000;
  margin-bottom: 5px;
  margin-top: 5px;
}

.checklist{
  list-style: none;
  margin: 0;
  padding-left: 15px;
}

.list-item{
  padding-left: 15px;
  color: #ff0000;
  font-size: 14px;
}

.list-item::before{
  content: '\f00d';
  font-family: FontAwesome;
  display: inline-block;
  margin: 8px 0;
  margin-left: -30px;
  width: 20px;
  font-size: 12px;
}

.list-item.checked{
  color: #00a900;
}

.list-item.checked::before{
  content: '\f00c';
  color: #00a900;
}

#forgotform .password-input-box #password {
  width: 255px;
}

#forgotform #email{
  width: 255px;
}

#forgotform #confirm {
  width: 255px;
}

input.formSubmit:disabled {
  background: #ccc;
}

.btn {
  background-color: gray;
  border: 2px solid #000000;
  color: #ffffff;
  font: bolder 12px Arial, Helvetica, sans-serif;
  height: 30px;
  padding: 3px;
  text-align: center;
  text-transform: uppercase;
  width: 98px;
}

.width_300 {
  width: 300px;
}

#login_error_msg, #error_msg, #forgot_error_msg {
  color: #FF0000;
}

#login_success_msg, #success_msg, #forgot_success_msg {
  color:#00a900;
}

#cboxContent {
  min-height: 225px;
}

/* Loader */
.loader {
  float: right;
  margin-right: 10px;
  width: 28px;
  aspect-ratio: 1;
  display: grid;
  border-radius: 50%;
  background:
    linear-gradient(0deg ,rgb(0 0 0/50%) 30%,#0000 0 70%,rgb(0 0 0/100%) 0) 50%/8% 100%,
    linear-gradient(90deg,rgb(0 0 0/25%) 30%,#0000 0 70%,rgb(0 0 0/75% ) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
}
.loader::before,
.loader::after {
   content: "";
   grid-area: 1/1;
   border-radius: 50%;
   background: inherit;
   opacity: 0.915;
   transform: rotate(30deg);
}
.loader::after {
   opacity: 0.83;
   transform: rotate(60deg);
}
@keyframes l23 {
  100% {transform: rotate(1turn)}
}

.h-25 {
  height: 25px;
}

.h-20 {
  height: 20px;
}

.w-100 {
  width: 100%;
}

.form-input {
  padding: 2px;
  font-size: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.border-collape {
  border-collapse: collapse;
}

.p-5 {
  padding: 5px;
}

.table-p-5 td{
  padding: 5px;
}
/* table sorting css start */
.sort-btn::before {
  position: absolute;
  display: block;
  bottom: 50%;
  content: "▲" / "";
  right: 7px;
  font-size: 10px;
  opacity: .3;
}

.sort-btn::after {
  position: absolute;
  display: block;
  top: 50%;
  content: "▼" / "";
  right: 7px;
  font-size: 10px;
  opacity: .3;
}

.sort-btn {
  position: relative;
  cursor: pointer;
  padding-right: 18px; /* adjust as needed */
  white-space: nowrap; /* prevent text wrapping */
}

.sort-asc.sort-btn::before {
  opacity: 1;
}

.sort-desc.sort-btn::after {
  opacity: 1;
}
/* table sorting css end */