@import url('define.css');

/*_______________*/
/*_______________*/
/*_______________*/

@-webkit-keyframes boxShadow {
  0% {
  box-shadow: 0 0 0px var(--black);
  }
  50% {
  box-shadow: 0 0 15px var(--black);
  }
  100% {
  box-shadow: 0 0 0px var(--black);
  }
}

@keyframes boxShadow {
  0% {
  box-shadow: 0 0 0px var(--black);
  }
  50% {
  box-shadow: 0 0 15px var(--black);
  }
  100% {
  box-shadow: 0 0 0px var(--black);
  }
}

@-webkit-keyframes textShadow {
  0% {
    text-shadow: 0 0 5px var(--black);
  }
  50% {
    text-shadow: 0 0 25px var(--black);
  }
  100% {
    text-shadow: 0 0 5px var(--black);
  }
}

@keyframes textShadow {
  0% {
    text-shadow: 0 0 5px var(--black);
  }
  50% {
    text-shadow: 0 0 25px var(--black);
  }
  100% {
    text-shadow: 0 0 5px var(--black);
  }
}

@-webkit-keyframes imgFilter {
  0% {
    filter:invert(100%);
  }
  50% {
    filter:none;
  }
  100% {
    filter:invert(100%);
  }
}

@keyframes imgFilter {
  0% {
    filter:invert(100%);
  }
  50% {
    filter:none;
  }
  100% {
    filter:invert(100%);
  }
}

/*_______________*/
/*_______________*/
/*_______________*/

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
}

html, body {
  margin: 0px;
  width: 100%;
  /*height: 100vh;*/
  font-family: 'Ubuntu', sans-serif;
  background-color: var(--mbg);
  color: var(--mco2);
  text-align: center;
}

body {
  width: 100%;
  max-width: 500px;
  margin: auto;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Merriweather Sans', sans-serif;
}

body *::-webkit-scrollbar {
  width: 8px;               /* width of the entire scrollbar */
  height: 8px;
  cursor: pointer;
}

body *::-webkit-scrollbar-track {
  background: var(--blur);        /* color of the tracking area */
  cursor: pointer;
}

body *::-webkit-scrollbar-thumb {
  background-color: grey;    /* color of the scroll thumb */
  border-radius: 10px;       /* roundness of the scroll thumb */
  border: 1px solid var(--mbg1);  /* creates padding around scroll thumb */
  cursor: pointer;
}

body * {
  scrollbar-width: thin;  /* Works on Firefox */
  scrollbar-color: grey var(--mbg2);
  cursor: pointer;
}

img {
  max-width: 98%;
  object-fit: contain;
}

a {
  color: var(--grey);
  text-decoration: underline;
  cursor: pointer;
  /*text-shadow: 0px -4px 5px var(--mbg2);*/
  font-weight: bolder;
}

button, a[b], a[b2] {
  cursor: pointer;
  display: block;
  min-width: 200px;
  max-width: 98%;
  background: var(--mbg2);
  color: var(--mco);
  margin: 10px auto;
  font-size: 20px;
  font-weight: bolder;
  padding: 10px;
  border: 1px solid var(--white);
  border-radius: 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0px -4px 5px var(--black);
  box-shadow: 0px 0px 5px 1px var(--black);
}

button[disabled], a[disabled] {
  background: var(--black);
  color: var(--red);
  cursor: not-allowed;
}

button[b2], a[b2] {
  -webkit-animation: boxShadow 2s linear infinite;
  animation: boxShadow 2s linear infinite;
}

button:hover, a[b]:hover {
  text-shadow: 0px -4px 5px var(--mbg2);
  background: var(--mbg3);
  color: var(--mco);
}

p.input_text {
  background: var(--black);
  color: var(--blur);
  padding: 5px 5px 15px;
  width: 350px;
  max-width: 80%;
  margin: 15px auto -20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  word-wrap: break-word;
  white-space: pre-wrap;
}

input, textarea, select {
  display: block;
  background: var(--black);
  color: var(--blur);
  padding: 15px 3px;
  font-size: 20px;
  font-weight: bolder;
  border: 2px solid var(--mbg1);
  border-radius: 15px;
  width: 400px;
  max-width: 90%;
  margin: 10px auto;
  box-shadow: 0px 0px 5px 1px var(--black);
}

select {
  width: 412px;
  max-width: 92%;
}

input[ierr], textarea[ierr], select[ierr] {
  border: 1px solid var(--red);
  border-top-width: 5px; 
  border-bottom-width: 5px; 
}

input[disabled], textarea[disabled], select[disabled] {
  box-shadow: 0px 0px 5px 1px var(--red);
  background: var(--red);
  color: var(--blur);
  cursor: not-allowed;
}

input[readonly], textarea[readonly], select[readonly] {
  box-shadow: 0px 0px 5px 1px var(--red);
  background: var(--black);
  color: var(--red);
  cursor: copy;
}

/*input:focus, textarea:focus, select:focus {
  background: var(--grey);
  color: var(--blur);
}*/

input:not([disabled], [readonly]):focus, textarea:not([disabled], [readonly]):focus, select:not([disabled], [readonly]):focus {
  background: var(--grey);
  color: var(--blur);
}

nav, section, section.coverpg span.hide_coverpg {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

nav {
  position: fixed;
  top: 0;
  z-index: 1;
}

nav>div {
  padding: 3px;
  background: var(--mbg2);
  border-bottom: 1px solid var(--mbg3);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  display: -webkit-flex; /* Safari */
}

nav>div>div {
    -webkit-flex-flow: row; /* Safari 6.1+ */
    flex-flow: row;
}

nav>div>div.midw {
  width: 50px;
  height: 30px;
  min-width: 3vw;
  background: var(--mbg);
  padding: 3px;
  cursor: pointer;
}

nav>div>div.pimg {
  border-bottom-left-radius: 7px;
}

nav>div>div.cimg {
  border-bottom-right-radius: 7px;
}

nav>div>div.midw:hover {
/*nav>div>div.midw:hover, nav>div>div.stext:hover {*/
  box-shadow: 0px 0px 5px 3px var(--mbg3);
}

nav>div>div.midw img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav>div>div.stext {
  width: 95vw;
  height: 33px;
  padding: 1px;
  margin: auto 3px;
  background: var(--mbg);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}

nav>div>div.stext>p {
  padding: 0 1px;
  margin: 5px 5px 0;
  text-align: left;
  display: flex;
  display: -webkit-flex; /* Safari */
}

nav>div>div.stext>p img, nav>div>div.stext>p b {
  -webkit-flex-flow: row; /* Safari 6.1+ */
  flex-flow: row;
  margin-top: 5px;
}

nav>div>div.stext>p img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  padding: 1px;
  /*border: 0.5px solid var(--mbg3);*/
  margin: -3px 5px auto 0;
}

nav>div>div.stext>p b {
  font-size: 18px;
  font-weight: normal;
  margin-top: 2px;
}

section>div input[pinsInp], section>div input[passInp] {
  text-align: center;
}

section.green {
  background: var(--mbg2);
  padding-top: 10px;
  border-radius: 30px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  font-weight: bolder;
  width: 98%;
  margin: 38px auto 5px;
  position: relative;
  /*z-index: 1;*/
}

section.green>i {
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 15px;
  font-weight: bolder;
  font-style: normal;
  text-transform: lowercase;
  background: var(--mbg3);
  color: var(--mco);
  padding: 0px 5px 2px;
  border-radius: 10px;
  cursor: pointer;
}

section.green>i:hover {
  color: var(--mbg1);
}

section.green div {
  padding: 10px;
}

section.green div.top {
  font-size: 10px;
  margin-bottom: -15px;
  text-transform: uppercase;
}

section.green div.bal {
  font-size: 50px;
  margin-bottom: -20px;
}

section.green div.bal sup {
  font-size: 25px;
  margin-right: -10px;
}

section.green div.bottom {
  margin-top: 5px;
}

section.green div.bottom a {
  display: inline-block;
  background: var(--mbg3);
  padding: 15px;
  width: 25%;
  text-align: center;
  margin: 0 auto 0 0px;
  border-radius: unset;
  border-top-right-radius: 25pc;
  border-bottom-right-radius: 25pc;
  color: var(--mbg);
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: none;
  box-shadow: 0px 0px 5px 3px var(--blur);

}

section.green div.bottom a:first-of-type {
  margin-left: auto;
  border-radius: unset;
  border-top-left-radius: 25pc;
  border-bottom-left-radius: 25pc;
}

section.green div.bottom a.refer {
  width: 15%;
  padding: 16px;
  color: var(--mbg);
  border-radius: unset;
}

section.green div.bottom a.refer.ani {
  color: var(--mbg1);
}

section.green div.bottom a:hover {
  color: var(--mbg1);
}

section.green>div.ads {
  display: none;
  position: absolute;
  background: var(--white);
  color: var(--black);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid var(--mbg1);
  border-radius: 10px;
  padding: 0;
}

section.green>div.ads>a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  color: var(--black);
  cursor: pointer;
}

section.green>div.ads>a:hover {
  box-shadow: 0px 0px 5px 3px var(--mbg3);
}

section.green>div.ads>a>img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

section.green>div.ads>span {
  cursor: pointer;
  position: absolute;
  background: var(--blur);
  color: var(--red);
  top: 2%;
  left: 1.3%;
  border: 2px solid var(--mbg1);
  border-radius: 10px;
  padding: 1px 5px;
  font-weight: bolder;
  font-size: 11px;
  -webkit-animation: boxShadow 2s linear infinite;
  animation: boxShadow 2s linear infinite;
}

section.green>div.ads>span:hover {
  background: var(--black);
}

section.history {
  /*background: red;*/
  height: 40vh;
  position: relative;
}

/*section.history h1 {
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  color: var(--mco);
  border: 3px solid var(--mbg1);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 10px 0 37px;
  margin: 20px auto -30px;
  width: 95%;
  position: relative;
}*/

section.history myad.ads_space {
  /*background: var(--red);*/
  display: block;
  color: var(--black);
  width: 98%;
  height: 130px;
  margin: 5px auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

section.history myad.ads_space>a {
  display: inline-block;
  background: var(--white);
  border-radius: 5px;
  width: 350px;
  max-width: 90%;
  height: 98%;
  margin: 0 5px 0 auto;
  padding: 0;
}

section.history myad.ads_space>a>img {
  background: transparent;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

section.history>span {
  position: absolute;
  transform: translateY(224%);
  left: 0.5%;
  z-index: 10;
  background: var(--mbg3);
  color: var(--mco);
  font-size: 20px;
  font-weight: bolder;
  font-family: var(--nfont);
  padding: 0 3px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  opacity: 0.7;
  box-shadow: 0px 0px 5px 3px var(--mbg3);
  -webkit-animation: playhow 2s linear infinite;
  animation: playhow 2s linear infinite;
  display: none;
}

section.history>span:last-of-type {
  left: unset;
  right: 0.5%;
  border-radius: unset;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

section.history>span:hover {
  opacity: 1;
  -webkit-animation: unset;
  animation: unset;
}

section.history>div:not(.playhow) {
  background-color: var(--blur);
  border-left: 1px solid var(--mbg1);
  border-right: 1px solid var(--mbg1);
  border-radius: 10px;
  padding-top: 2px;
  padding-bottom: 5px;
  position: relative;
}

section.history div>span.playhow {
  position: absolute;
  top: 0px;
  right: 3%;
  z-index: 10;
  background: var(--mbg2);
  color: var(--mco);
  font-size: 8px;
  font-weight: bolder;
  font-family: var(--nfont);
  padding: 3px 4px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-animation: playhow 2s linear infinite;
  animation: playhow 2s linear infinite;
}

@-webkit-keyframes playhow {
  0% {
    color: var(--mco2);
  }
  50% {
    color: var(--mco);
  }
  100% {
    color: var(--mco2);
  }
}

@keyframes playhow {
  0% {
    color: var(--mco2);
  }
  50% {
    color: var(--mco);
  }
  100% {
    color: var(--mco2);
  }
}

section.history div>span.playhow p {
  margin: 0;
  text-transform: uppercase;
}

section.history div>span.playhow:hover {
  -webkit-animation: none;
  animation: none;
  background: var(--mbg1);
}

section.history div.terr {
  display: none;
}

section.history div.terr>img {
  max-width: 22%;
  object-fit: contain;
}

section.history div.terr>button {
  -webkit-animation: boxShadow 2s linear infinite;
  animation: boxShadow 2s linear infinite;
}

section.history div.terr>p {
  margin-top: 20px;
}

section.history div.terr>p>a {
  text-transform: uppercase;
}

section.history div.all {
  height: 100%;
  overflow-y: auto;
  text-overflow: ellipsis;
}

section.history div.all>img {
  max-width: 100px;
}

section.history div.all>img.invisi, section.history div.all>div.tr.invisi {
  visibility: hidden;
}

section.history div.all>text[ending] {
  text-align: center;
  font-size: 12px;
  font-weight: bolder;
  color: var(--red);
  display: block;
  margin: 0 auto 10px;
}

section.history div.all div.tr {
  position: relative;
  margin-top: 4px;
  padding: 4px;
}

section.history div.all div.tr:nth-of-type(odd) {
  background: var(--mbg5);
}

section.history div.all div.tr:last-of-type {
  margin-bottom: 10px;
}

section.history div.all div.tr.ani, section.history div.all div.tr:hover {
  background: var(--mbg3);
  color: var(--mbg1);
}

section.history div.all div.tr div.img {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 50%;
  left: 5px;
}

section.history div.all div.tr div.img img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

section.history div.all div.tr div.info {
  text-align: left;
  width: 80%;
  margin-left: 70px;
}

section.history div.all div.tr div.info p {
  margin: 5px;
}

section.history div.all div.tr div.info p:nth-of-type(2) {
  font-size: 12px;
  margin-bottom: 10px;
}

section.history div.all div.tr div.info p b {
  text-shadow: 0px -4px 5px var(--black);
}

section.history div.all div.tr div.info p:nth-of-type(2) b {
  font-weight: bolder;
  text-transform: uppercase;
}

section.history div.all div.tr.ani div.info p:nth-of-type(2) b {
  color: var(--mco);
}

section.history div.all div.tr div.info p:nth-of-type(2) b.s {
  color: var(--green);
}

section.history div.all div.tr div.info p:nth-of-type(2) b.f {
  color: var(--red);
}

section.history div.all div.tr div.info b {
  float: right;
}

section.history div.all div.tr div.info b>i {
  font-style: normal;
  font-weight: bolder;
  font-size: 15px;
}

section.history div.all div.tr div.info b>i.s {
  color: var(--green);
}

section.history div.all div.tr div.info b>i.f {
  color: var(--red);
}

section.history div.testimonials {
  display: none;
  text-align: center;
  height: 100%;
  overflow: auto;
}

section.history div.testimonials>div.round_buttons {
  width: 90%;
  padding: 5px 5px;
  margin: 10px auto 0px;
  /*background: var(--mbg2);*/
  text-align: center;
}

section.history div.testimonials>div.round_buttons>a {
  display: inline-block;
  text-align: center;
  /*width: 29%;*/
  width: 22.2%;
  font-size: 9px;
  /*margin: 3px 2px 3px auto;*/
  margin: 3px 0% 3px auto;
  background: var(--mbg2);
  white-space: pre-wrap;
  text-overflow: ellipsis;
  text-decoration: none;
  padding: 6px 0.2vw;
  border: 1px solid var(--mbg1);
  /*border-radius: 10px;*/
  border-radius: 5px;
}

section.history div.testimonials>div.round_buttons>a:hover {
  box-shadow: 0px 0px 5px 3px var(--black);
  text-shadow: 0px -4px 5px var(--mbg3);
}

section.history div.testimonials>div.round_buttons>a>img {
  width: 30px;
  height: 30px;
  object-fit: fill;
  /*border-radius: 10px;*/
  /*background: var(--mbg2);*/
  background: transparent;
  padding: 7px;
  border-radius: 10px;
  margin-top: -22px;
  /*box-shadow: 0px 0px 5px 3px var(--black);*/
}

section.history div.testimonials>div.round_buttons>a>p {
  margin: -10px auto -24px;
  white-space: nowrap;
}

section.history div.testimonials>div.buttons::-webkit-scrollbar {
  width: 10px;               /* width of the entire scrollbar */
  height: 10px;
  cursor: pointer;
}

section.history div.testimonials>div.buttons::-webkit-scrollbar-track {
  background: black;        /* color of the tracking area */
  cursor: pointer;
}

section.history div.testimonials>div.buttons::-webkit-scrollbar-thumb {
  background-color: white;    /* color of the scroll thumb */
  border-radius: 10px;       /* roundness of the scroll thumb */
  border: 1px solid black;  /* creates padding around scroll thumb */
  cursor: pointer;
}

section.history div.testimonials>div.buttons {
  scrollbar-width: thin;  /* Works on Firefox */
  scrollbar-color: white black;
  cursor: pointer;

  overflow: auto;
  white-space: nowrap;
  text-align: center;
  margin: 5px auto -10px;
  width: 80%;
  background: var(--mbg2);
  padding: 5px 20px;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

section.history div.testimonials>div.buttons>a {
  display: inline-block;
  text-align: center;
  width: 93px;
  font-size: 10px;
  margin: 3px 2px 3px auto;
  background: var(--blur);
  white-space: pre-wrap;
  text-overflow: ellipsis;
  text-decoration: none;
  padding: 4px;
  border-radius: 5px;
}

section.history div.testimonials>div.buttons>a:first-of-type {
  margin-left: -13px;
}

section.history div.testimonials>div.buttons>a>img {
  width: 40px;
  height: 40px;
  object-fit: fill;
  /*border-radius: 10px;*/
  background: transparent;
  margin-top: -22px;
}

section.history div.testimonials>div.buttons>a>p {
  margin: -10px auto -24px;
  white-space: nowrap;
}

section.history div.testimonials>a[b] {
  max-width: 85%;
}

section.history div.testimonials>a[ifDialog], section.history div.testimonials>a[b]:last-of-type {
  display: inline-block;
  margin-top: 2px;
}

section.history div.testimonials>a[ifDialog] {
  position: relative;
  width: 9%;
  max-width: 9%;
  min-width: unset;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-animation: playhow 2s linear infinite;
  animation: playhow 2s linear infinite;
}

section.history div.testimonials>a[b]:last-of-type {
  width: 70.5%;
  max-width: 70.5%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

section.history div.testimonials>a[ifDialog] {
  /*margin-right: -2px;*/
}

section.history div.testimonials>a[ifDialog]>img {
  width: 55%;
  object-fit: contain;
  position: absolute;
  transform: translate(-65%, -15%);
  -webkit-animation: imgFilter 2s linear infinite;
  animation: imgFilter 2s linear infinite;
}

section.history div.testimonials>a[ifDialog]>img:hover {
  -webkit-animation: unset;
  animation: unset;
}

section.coverpg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--mbg);
  overflow-y: auto;
  z-index: 10;
}

section.coverpg span.hide_coverpg {
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  padding: 7px 5px;
  background: var(--mbg2);
  color: var(--mbg3);
  text-align: center;
  font-weight: bolder;
  font-size: 20px;
  z-index: 15;
}

section.coverpg span.hide_coverpg>text {
  display: block;
  margin-left: 1.5%;
  width: 30px;
  cursor: pointer;
}

section.coverpg span.hide_coverpg>text:hover {
  color: var(--mco);
}

section.coverpg>div {
  padding: 10px;
  transform: translateY(9%);
}

section.coverpg>div p:not(p.input_text) {
  font-size: 13px;
}

section.coverpg>div:not(.addfooter) {
  padding-bottom: 70px;
}

section.addfooter>div.addfooter {
  background: var(--mbg2);
  color: var(--mbg3);
  padding: 10px 10px 60px;
  border-top: 1px solid var(--mbg3);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 100px;
}

section.addfooter>div.addfooter img {
  max-width: 45%;
  object-fit: contain;
}

section.profile>div img[alt="Profile"] {
  width: 100px;
  object-fit: contain;
}

section.fund>div {
    transform: translateY(5%);
}

section.fund>div img[how_to_fund] {
  width: 90%;
  object-fit: contain;
  margin: 5px auto;
  border: 2px solid var(--mco2);
  border-radius: 10px;
  cursor: pointer;
}

section.fund>div p[how_to_fund] {
  font-size: 10px;
  font-weight: bolder;
  margin: 0px auto 25px;
}

section.fund>div p[how_to_fund] a {
  color: var(--mbg1);
}

section.fund>div img[how_to_fund]:hover {
  box-shadow: 0px 0px 5px 3px var(--mco2);
}

section.fund>div p[rcv], section.fund>div p[fee] {
  font-size: 15px;
  font-weight: bolder;
  font-family: var(--nfont);
}

section.fund>div p[fee] {
  color: var(--red);
}

section.fund>div>div div.bnkAccLogo {
  white-space: nowrap;
  overflow: auto;
}

section.fund>div>div div.bnkAccLogo div {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: inline-block;
  margin: 5px 2px 5px auto;
  background: var(--white);
  cursor: pointer;
 padding: 5px;
}

section.fund>div>div div.bnkAccLogo div:hover {
   box-shadow: 0px 0px 5px 3px var(--black);
}

section.fund>div>div div.bnkAccLogo div>img {
 width: 100%;
 height: 100%;
 object-fit: contain;
 border-radius: 10px;
}

section.refer>div {
    transform: translateY(4%);
}

section.refer>div a[task_and_earn] img {
    max-width: 300px;
    border-radius: 20px;
}

section.refer>div a[task_and_earn] p {
  font-size: 20px;
  margin-bottom: 10px;
  -webkit-animation: textShadow 2s linear infinite;
  animation: textShadow 2s linear infinite;
}

section.refer>div div[tip] {
    width: 85%;
    background: var(--mbg2);
    color: var(--mco);
    text-align: justify;
    border-radius: 5px;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    margin: 20px auto 7px;
}

section.refer>div div[tip]::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--mbg1) transparent transparent transparent;
}

section.refer>div h2[box] {
 position: relative;
 background: var(--mbg2);
 color: var(--mco);
 width: 25%;
 margin: 2px auto 5px;
 padding: 35px 10px 10px;
 text-align: center;
 text-transform: uppercase;
 border-radius: 5px;
 display: inline-block;
 font-size: 20px;
 text-shadow: 0px -4px 5px var(--mbg3);
}

section.refer>div h2[box]>b {
  position: absolute;
  color: var(--mco2);
  font-size: 8px;
  font-weight: bolder;
  font-family: var(--nfont);
  top: 6px;
  left: 4%;
  text-shadow: none;
}

section.refer>div h2[box]>b>i {
  font-style: italic;
  text-transform: lowercase;
  background: var(--mbg3);
  color: var(--mbg1);
  padding: 1px 5px;
  border-radius: 5px;
}

section.refer>div h2[ru] {
 background: var(--mbg2);
 color: var(--mco);
 width: 85%;
 margin: auto;
 padding: 10px;
 text-transform: uppercase;
 overflow: hidden;
 white-space: nowrap;
 text-shadow: 0px -4px 5px var(--mbg3);
}

section.refer>div h2[contenteditable] {
 color: var(--grey);
}

section.refer>div div[tip2] {
    width: 85%;
    background: var(--mbg2);
    color: var(--mco);
    text-align: justify;
    border-radius: 0px;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    margin: 15px auto 7px;
}

section.refer>div div[tip2]::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--mbg1) transparent;
}

section.refer>div p[rb], section.refer>div h4[apply_ref_code] {
  background: var(--mbg2);
  color: var(--mco2);
  margin: auto;
  padding: 20px 7px 7px;
  border-radius: 10px;
  font-size: 13px;
  font-family: var(--nfont);
  font-weight: bolder;
  line-height: 15px;
  margin-top: -15px;
  max-width: 300px;
  text-align: justify;
  position: relative;
  z-index: -1;
  cursor: pointer;
}

section.refer>div p[rb]>b {
  text-transform: uppercase;
  display: block;
  margin: 0 auto 5px;
  text-align: center;
  font-size: 15px;
  color: var(--mco);
}

section.refer>div p[rb]:hover, section.refer>div h4[apply_ref_code]:hover {
  color: var(--mco);
}

section.refer>div h4[apply_ref_code] {
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--nfont);
  background: var(--mbg1);
  max-width: 280px;
  margin-top: -8px;
  z-index: -2;
}

section.send>div {
    transform: translateY(2%);
}

section.send>div small[info] {
  font-weight: bolder;
  font-size: 10px;
}

section.send>div small[info]>sup {
  font-size: 8px;
}

section.send>div small[info]>sup:after {
  content: ":";
}

section.send>div>div.selnetwork {
  position: relative;
  width: 400px;
  max-width: 96%;
  margin: 20px auto 5px;
  /*padding: 20px 5px 5px;*/
  padding: 7px 5px 3px;
  background: var(--blur);
  border: 0.5px solid var(--mbg3);
  border-radius: 30px;
/*  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;*/
}

section.send>div>div.selnetwork[notsel] {
  background:var(--red);
}

section.send>div>div.selnetwork>b {
  position: absolute;
  top: 2px;
  left: 12%;
  font-size: 10px;
  font-family: var(--nfont);
  color: var(--red);
  text-transform: uppercase;
  display: none;
}

section.send>div>div.selnetwork[notsel]>b {
  color: var(--black);
}

section.send>div>div.selnetwork>img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  display: inline-table;
  cursor: pointer;
  border: 2px solid var(--mbg3);
  /*border-radius: 5px;*/
  border-radius: 50px;
  margin-right: 1%;
  background: var(--white);
}

section.send>div>div.selnetwork>img[snet] {
  border: 2px solid var(--mbg1);
/*  border-left-width: 5px;
  border-right-width: 5px;*/
  border-radius: 5px;
  box-shadow: 0px 0px 5px 3px var(--mbg3);
}

section.send>div>div.selnetwork>img:hover {
  border: 2px solid var(--green);
/*  border-left-width: 5px;
  border-right-width: 5px;*/
  border-radius: 5px;
}

section.send>div [iwhat] {
  display: none;
}

section.send>div>div.receiversContacts {
  background: var(--mbg2);
  padding: 20px 3px 7px;
  font-size: 20px;
  font-weight: bolder;
  border: 1px solid var(--black);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 400px;
  max-width: 90%;
  margin: -20px auto 10px;
  box-shadow: 0px 0px 5px 1px var(--black);
  text-align: left;
  white-space: nowrap;
  overflow-x: auto;
  position: relative;
  z-index: -1;
  display: none;
}

section.send>div>div.receiversContacts>div {
  display: inline-block;
  padding: 5px 5px 1px;
  border-radius: 5px;
  background: var(--mbg3);
  color: var(--mbg);
  cursor: pointer;
  margin-right: 5px;
}

section.send>div>div.receiversContacts>div:last-of-type {
  margin-right: 0;
}

section.send>div>div.receiversContacts>div:hover {
  background: var(--mbg1);
  color: var(--mbg3);
}

section.send>div>div.receiversContacts>div img {
  width: 17px;
  height: 17px;
  object-fit: fill;
  background: var(--white);
}

section.send>div>div.receiversContacts>div i {
  font-style: normal;
  font-weight: bolder;
  font-size: 9px;
  display: inline-block;
  /*background: white;*/
  padding: 6px 1px 0 5px;
  color: var(--red);
  cursor: pointer;
}

section.send>div>div.receiversContactsShow {
  display: block;
}

section.send>div h2[amtdue] {
  color: var(--red);
}

img[how_to_video] {
  display: block;
  width: 90%;
  object-fit: contain;
  margin: 5px auto;
  border: 2px solid var(--mco2);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}

img[how_to_video]:hover {
  box-shadow: 0px 0px 5px 3px var(--mco2);
}

section.send>div p[usdcodes] {
  max-width: 250px;
  margin: auto;
  text-align: justify;
}

section.contact>div {
    transform: translateY(3%);
}

section.contact>div a[task_and_earn] img {
    max-width: 300px;
    border-radius: 20px;
}

section.contact>div a[task_and_earn] p {
  font-size: 20px;
  margin-bottom: 10px;
  -webkit-animation: textShadow 2s linear infinite;
  animation: textShadow 2s linear infinite;
}

section.form>div {
  /*transform: translateY(55%);*/
  background: var(--blur);
  color: var(--mco2);
  box-shadow: 0px 0px 5px 1px var(--black);
  position: fixed;
  margin: auto;
  bottom: 0;
  width: 100%;
  max-width: inherit;
  height: 70%;
  padding: 20px 0;
  border-top: 3px solid var(--mbg1);
  border-top-left-radius: 20%;
  border-top-right-radius: 20%;
  overflow-y: auto;
}

section.form>div[signup] {
  /*transform: translateY(25%);*/
}

section.form>div p[todo_] {
  margin: 20px auto 10px;
}

section.form>div p[todo_]>a {
  padding: 10px;
  border: 1px solid var(--mbg1);
  border-radius: 10px;
}

section.form>div span.vemail {
  display: none;
}

section.form>div span.vemail>p {
  font-size: 12px;
  font-weight: bolder;
}

section.form>div span.vemail>p>i {
  text-transform: uppercase;
  display: none;
}

section.form>div button {
  margin-top: 30px;
}


div.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 100;
}

div.loader>div {
  transform: translateY(50vh);
}

div.loader>div>img {
  width: 5%;
  min-width: 50px;
  object-fit: contain;
}








@media only screen and (max-device-width: 490px), only screen and (max-width: 490px) {
  section.history myad.ads_space::-webkit-scrollbar {
    width: 0px;               /* width of the entire scrollbar */
    height: 0px;
    display: none;
  }


  section.history myad.ads_space {
    scrollbar-width: none;  /* Works on Firefox */
  }

  section.history div.testimonials>div.buttons::-webkit-scrollbar {
    width: 4px;               /* width of the entire scrollbar */
    height: 4px;
    cursor: pointer;
  }

  section.history div.testimonials>div.buttons::-webkit-scrollbar-track {
    background: var(--black);        /* color of the tracking area */
    cursor: pointer;
  }

  section.history div.testimonials>div.buttons::-webkit-scrollbar-thumb {
    background-color: grey;    /* color of the scroll thumb */
    border-radius: 10px;       /* roundness of the scroll thumb */
    border: 1px solid var(--black);  /* creates padding around scroll thumb */
    cursor: pointer;
  }

  section.history div.testimonials>div.buttons {
    scrollbar-width: thin;  /* Works on Firefox */
    scrollbar-color: grey var(--black);
    cursor: pointer;
  }

  section.send>div>div.selnetwork>b {
    left: 7%;
  }

  section.history>span {
    padding: 0 10px;
  }

  section.refer>div div[tip], section.refer>div h2[ru], section.refer>div div[tip2] {
    width: 89%;
  }
}

@media only screen and (max-device-width: 360px), only screen and (max-width: 360px) {
  section.green div.bottom {
    padding: 10px 5px;
  }

  section.green div.bottom a {
    padding: 10px;
    width: 21%;
    font-size: 15px;
  }

  section.green div.bottom a.refer {
    width: 18%;
    padding: 11px;
  }

  section.refer>div div[tip], section.refer>div h2[ru], section.refer>div div[tip2] {
    width: 90%;
  }
}

@media only screen and (max-device-width: 315px), only screen and (max-width: 315px) {
  section.green div.bottom a {
    width: 19%;
    font-size: 11px;
  }

  section.refer>div h2[box] {
   padding: 35px 4px 4px;
   font-size: 13px;
  }

  section.refer>div div[tip], section.refer>div h2[ru], section.refer>div div[tip2] {
    width: 86%;
    padding: 4px;
  }
}

@media only screen and (max-device-width: 250px), only screen and (max-width: 250px) {
  section.green div.bottom {
    padding: 10px 0;
  }

  section.green div.bottom a {
    padding: 5px;
    width: 18%;
    font-size: 9px;
  }

  section.green div.bottom a.refer {
    width: 15%;
    padding: 6px;
  }
}

@media only screen and (min-device-height: 730px) and (max-device-width: 900px), only screen and (min-height: 730px)  and (max-width: 900px) {
  section.green div.bal {
    font-size: 70px;
  }

  section.green div.bal sup {
    font-size: 35px;
  }

  section.history div.terr>img {
    max-width: 40%;
  }
}