* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
img{
  max-width: 100%;
}
.forms {
  padding: 10px;
  background-color: #f2fff1;
  border-top: 3px solid #bcffc6;
}
fieldset {
  padding: 10px;
  border: none;
}
legend {
  font-weight: bold;
  margin-top: 10px;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 2px;
  outline: none;
}
input:focus,
textarea:focus,
select:focus{
  border-color: #ddd;
}
button {
  padding: 10px 15px;
  outline: none;
  border: 1px solid #b9b9b9;
  background-color: #eee;
  color: #333;
  cursor: pointer;
  opacity: 0.8;
  border-radius: 2px;
}
button:hover {
  opacity: 1;
}
button:active {
  transform: scale(0.95);
}
label {
  font-size: 13px;
  color: #666;
  display: inline-block;
  margin-bottom: 6px;
}
.greenBtn {
  color: #fff;
  background-color: #008000;
}
.redBtn {
  color: #fff;
  background-color: #c52b00;
}
.primeBtn {
  background-color: #006cc5;
  color: #fff;
}
.inputCont {
  margin: 10px auto 30px;
  width: 100%;
  position: relative;
}
.inp-mes {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
}
.red {
  color: #f00;
}
.green {
  color: rgb(0, 194, 0);
}
.btnRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.formTitle {
  font-weight: initial;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 10px;
}
.unbold{
  font-weight: initial;
}
.twoCol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media only screen and (min-width: 860px) {
  .twoCol {
    grid-template-columns: 1fr 1fr;
  }
}
.clickable {
  transition: 0.2s;
}
.clickable:hover {
  opacity: 0.9;
}
.clickable:active {
  transform: scale(0.95);
}
header {
  position: relative;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99999;
}
header h2 {
  background-color: #008000;
  color: #fff;
  padding: 15px;
  font-weight: initial;
}
header p {
  color: #fff;
  line-height: 36px;
  padding-right: 10px;
  font-size: 13px;
  cursor: pointer;
}
header p i.fa-user-circle {
  font-size: 36px;
  vertical-align: middle;
}
main {
  padding: 10px;
}
nav {
  position: relative;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  z-index: 9999;
}
#menuToggler {
  display: initial;
  color: #fff;
  background-color: rgb(86, 143, 0);
  padding: 7px 13px;
  border-radius: 2px;
  cursor: pointer;
}
.navigation {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  list-style-type: none;
  gap: 5px;
}
.opener ul {
  list-style-type: none;
}
.navigation a {
  display: inline-block;
}
.navigation > li,
.navigation > li > a {
  display: block;
  width: 100%;
}
.opener,
.navigation > li > a {
  background-color: rgb(86, 143, 0);
  color: #fff;
  text-decoration: none;
  padding: 10px;
  cursor: pointer;
}
.opener:hover,
.navigation > li > a:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgb(86, 143, 0);
}
.navigation li,
.navigation a {
  transition: 0.2s;
}
.opener {
  position: relative;
}
.menu {
  display: none;
  height: 0;
  margin-top: 20px;
  top: 100%;
  left: -3px;
  overflow: hidden;
  width: 100%;
  padding-top: 10px;
  background-color: #fff;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}
.menu a {
  background-color: #fff;
  display: block;
  white-space: nowrap;
  color: #777;
  text-decoration: none;
  padding: 10px;
}
.menu a:hover {
  background-color: #ddd;
}
.opener:focus .menu,
.opener:hover .menu {
  display: block;
  height: initial;
  overflow: initial;
}
@media only screen and (min-width: 1100px) {
  .navigation {
    display: flex !important;
    flex-direction: row;
  }
  .navigation > li,
  .navigation > li > a {
    display: inline-block;
    width: initial;
  }
  .menu {
    position: absolute;
    margin-top: 0;
    width: 300px;
  }
  #menuToggler {
    display: none;
  }
}
.topUserCont {
  position: relative;
}
.topUserCont:hover .topLinks,
.topUserCont:focus .topLinks {
  display: initial;
  opacity: 1;
}
.topLinks {
  display: none;
  opacity: 0;
  width: 280px;
  max-width: 80vw;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  transition: 0.3s;
}
.topLinks::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 20px;
  background-color: #ffffff;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  z-index: 9;
}
.topLinks a {
  display: block;
  padding: 10px;
  color: #666;
  text-decoration: none;
}
.topLinks a:hover {
  color: #01d401;
}

/* TABLE */
.tableCont{
  background-color: #eee;
}
.tabletitle{
  font-weight: initial;
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #aaa;
}
.tableViewCont{
  overflow-y: auto;
}
.tableViewCont table{
  background-color: #fff;
}
.tableViewCont tr{
  background-color: #eee;
}
td, th{
  padding: 10px;
  background-color: transparent;
}
.tableViewCont tr:hover{
  background-color: #fff;
}
.faction{
  font-size: 13px;
  white-space: nowrap;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
}
.faction .stToggler{
  display: flex;
  width: 36px;
  height: 20px;
  background-color: #777;
  border-radius: 22px;
  border: 1px solid #555;
  cursor: pointer;
}
.stToggler:hover{
  opacity: .8;
}
.faction[data-status="1"] .stToggler{
  background-color: #008000;
  flex-direction: row-reverse;
}
.faction[data-status="0"] .stToggler{
  background-color: rgb(189, 0, 0);
  flex-direction: row;
}
.dotBig{
  background-color: #ccc;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #333;
}
.hide{
  display: none !important;
}
.showKyc{
  padding: 7px 12px;
  background-color: #fff;
  border: 1px solid #999;
  color: #777;
  border-radius: 10px;
  cursor: pointer;
}
.mainCP{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.CP{
  height: 100vh;
  overflow: auto;
  padding-top: 60px;
}
#remCP{
  position: absolute;
  top: 10px;
  left: 50%;
  line-height: 20px;
  font-size: 13px;
  width: 40px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
}
.textCP{
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  text-align: center;
  font-size: 22px;
}
.imgCP{
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgCP img{
  width: 100%;
  max-height: 80vh;
}
.btnCP{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
}
.cNewsInd{
  margin-bottom: 10px;
  border: 5px groove #777;
}
.cNewsTitle{
  padding: 10px;
  background-color: #008000;
  color: #fff;
}
.cNewsIndFoot{
  padding: 10px;
  display: flex;
  align-items: center;
  grid-area: 10px;
}
.cNewsImg{
  max-width: 320px;
}