@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-ExtraBold.woff2") format("woff2"), url("../fonts/Mukta-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-ExtraLight.woff2") format("woff2"), url("../fonts/Mukta-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-Bold.woff2") format("woff2"), url("../fonts/Mukta-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-Light.woff2") format("woff2"), url("../fonts/Mukta-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-Medium.woff2") format("woff2"), url("../fonts/Mukta-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-Regular.woff2") format("woff2"), url("../fonts/Mukta-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/Mukta-SemiBold.woff2") format("woff2"), url("../fonts/Mukta-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*======================================== config =================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #333333;
  transition: 0.3s all !important;
}
a:hover {
  color: #05095D;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #f63500;
}

input {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

body {
  max-width: 100%;
  width: 100%;
  font-size: 15px;
  line-height: 1.45;
  font-family: "Mukta";
  font-weight: normal;
  overflow: hidden;
  height: 100vh;
}
body img {
  transition: 0.34s all !important;
  max-width: 100%;
}

.container {
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.row {
  margin: 0 -5px;
}
.row > div {
  padding: 0 5px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none !important;
}

/*======================================== end config =================================*/
@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0px);
  }
}
.snowflake {
  position: fixed;
  top: -10%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
  pointer-events: none;
  display: none;
}

.snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
  left: 0;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
  left: 10%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
  left: 80%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
  left: 90%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
  left: 90%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
  left: 100%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.caption-cover a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  padding: 0 40px;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
}

@-webkit-keyframes slide-background {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1920px 0;
  }
}
@keyframes xoay {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floating {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 20px);
  }
  to {
    transform: translate(0, 0px);
  }
}
@keyframes btn_scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes touch {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightning {
  0% {
    height: 0;
  }
  8% {
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
    height: 50%;
  }
  11% {
    opacity: 0;
    height: 75%;
  }
  18% {
    height: 0px;
    opacity: 0;
  }
  20% {
    opacity: 1;
    height: 100%;
  }
  25% {
    opacity: 1;
    height: 100%;
  }
  40% {
    opacity: 0;
  }
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-2deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(3deg);
  }
  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(2px, 1px) rotate(-2deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(4deg);
  }
  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes monster {
  0% {
    right: -10%;
    opacity: 1;
  }
  98% {
    right: 35%;
    opacity: 1;
  }
  100% {
    right: 35.1%;
    opacity: 0;
  }
}
@-webkit-keyframes colorchange {
  0% {
    color: #FFFFFF;
  }
  20% {
    color: #8B1611;
  }
  40% {
    color: #F5BB00;
  }
  50% {
    color: #ffdbb3;
  }
  60% {
    color: #FFFFFF;
  }
  80% {
    color: #8B1611;
  }
  90% {
    color: #ffdbb3;
  }
  100% {
    color: #F5BB00;
  }
}
@-webkit-keyframes ball {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes ball {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation: tada 1s linear infinite alternate;
  -moz-animation: tada 1s linear alternate;
  -webkit-animation: tada 1s linear alternate;
  -o-animation: tada 1s linear alternate;
  -ms-animation: tada 1s linear alternate;
}

@keyframes blade-fire {
  from {
    left: 24vw;
    opacity: 1;
  }
  95% {
    left: 70vw;
    opacity: 1;
  }
  100% {
    left: 70.5vw;
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.w-100 {
  width: 100% !important;
}

.d-none {
  display: none !important;
}

.menu-o {
  opacity: 0;
  pointer-events: none;
}

.box-banner-dragon {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: hidden;
  width: 100vw;
  display: none;
  background: url("../images/bg-2.jpg") no-repeat center;
  background-size: cover;
}
.box-banner-dragon .avr-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-banner-dragon .avr-bg img {
  height: 100vh;
  object-fit: cover;
  max-height: unset;
}
.box-banner-dragon .animation-bg {
  position: absolute;
  width: 100%;
  height: 50vh;
  left: 0;
  bottom: 0;
  background-size: cover !important;
  -webkit-animation: slide-background 60s linear infinite;
  animation: slide-background 60s linear infinite;
  z-index: 2;
}

.box-modal {
  position: relative;
  z-index: 1113;
}

.hide-production {
  display: none !important;
}

.total-top-number {
  position: absolute;
  z-index: 12;
  background: rgba(11, 57, 100, 0.8);
  color: #fff;
  line-height: inherit;
  padding: 2px 14px 0 20px;
  border-radius: 36px;
  border: 2px solid #32AEF4;
  left: 20px;
  top: 86px;
}
.total-top-number img {
  position: absolute;
  left: -10px;
  top: 0;
  max-height: 26px;
}

.bar {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 76px;
  color: #FFFFFF;
  font-weight: bold;
}
.bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bar ul {
  height: 100%;
  text-align: right;
  display: flex;
  justify-content: space-between;
}
.bar ul li {
  height: 100%;
  padding: 0 !important;
}
.bar ul li img {
  object-fit: cover;
  width: 65px;
}
.bar ul li .icon-rank {
  height: 100%;
}

.icon-rank {
  height: 100%;
}

.bg-main-meme {
  background: url(../images/bg_mobile.png) repeat 0 0;
  position: fixed;
  height: calc(100vh - 215px);
  width: 100%;
  top: 120px;
  background-size: cover;
  background-position: bottom;
  z-index: 2;
}

.box-equipment {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 999;
  bottom: 96px;
  padding: 15px;
  display: none;
}

.content-eqm {
  display: flex;
  width: 100%;
  justify-content: space-between;
  text-align: center;
  background: rgba(11, 57, 100, 0.8);
  border-radius: 10px;
  border: 2px solid #32AEF4;
}
.content-eqm ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.content-eqm ul li {
  flex: 0 0 50%;
  max-width: 50%;
  border: 1px solid #2CA1E7;
}
.content-eqm .eq-left, .content-eqm .eq-right {
  flex: 0 0 40%;
  max-width: 40%;
}
.content-eqm .eq-center {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  align-items: center;
  justify-items: center;
}
.content-eqm .eq-center .avarata {
  text-align: center;
}
.content-eqm .avarata {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.item-eqm {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  position: relative;
}
@media (max-width: 767px) {
  .item-eqm {
    height: 42px;
  }
}
.item-eqm .avr {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.item-eqm .avr img {
  max-height: 30px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
@media (max-width: 350px) {
  .item-eqm .avr img {
    max-height: 20px;
  }
}
.item-eqm.active {
  opacity: 1;
}
.item-eqm.active img {
  filter: unset;
  -webkit-filter: unset;
}
.item-eqm span {
  position: absolute;
  color: #0b3964;
  top: 2px;
  right: 2px;
  z-index: 3;
  background: #fff;
  font-weight: bold;
  width: 16px;
  height: 16px;
  line-height: inherit;
  font-size: 12px;
  border-radius: 100%;
}

.box-cover {
  width: 100%;
  overflow: hidden;
}
.box-cover .avarta-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.caption-cover {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1111;
  position: relative;
  background: url("../images/cover.jpg") no-repeat center;
  background-size: 100% 100%;
  background-position: bottom;
}
.caption-cover .title {
  position: relative;
}
.caption-cover .title img {
  max-height: 45vh;
}
@media (max-width: 1600px) {
  .caption-cover .content-caption {
    transform: scale(0.8);
  }
}

.cover-egg {
  width: 100%;
  height: 100vh;
  display: none;
  background-size: cover !important;
  overflow: hidden;
  position: relative;
  background: url("../images/bg-choose.png") no-repeat center;
  background-size: cover;
  transition: 0.3s all !important;
  z-index: 1112;
}
.cover-egg.active {
  display: block;
}
.cover-egg.play-claim {
  background: transparent;
  z-index: unset;
}
.cover-egg.play-claim .hatches {
  transform: scale(1);
}
.cover-egg.play-claim .hatches .content-hatches {
  opacity: 1;
  z-index: 10;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.cover-egg.play-claim .hatches .content-hatches img {
  max-height: 190px !important;
  transform: scale(1.35);
}
.cover-egg .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 16px 0 0 0;
  z-index: 1001;
  pointer-events: none;
}
@media (max-width: 1366px) {
  .cover-egg .logo {
    padding: 8px 0 0 0;
  }
}
@media (max-width: 767px) {
  .cover-egg .logo {
    padding: 8px 0;
    top: 28px;
  }
}
@media (max-width: 1366px) {
  .cover-egg .logo img {
    max-height: 76px;
  }
}
@media (max-width: 1023px) {
  .cover-egg .logo img {
    max-height: 100px;
  }
}
@media (max-width: 767px) {
  .cover-egg .logo img {
    max-height: 86px;
    position: relative;
    max-width: 40vw;
  }
}
.cover-egg ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-egg ul li {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .cover-egg ul li {
    padding: 0 10px;
  }
}
.cover-egg ul li.active a {
  pointer-events: unset !important;
}
.cover-egg button {
  cursor: pointer;
  border: 0;
  background: transparent;
  transition: 0.4s all !important;
  outline: none;
}
.cover-egg button:hover {
  transform: scale(1.2);
}
.cover-egg img {
  max-height: 390px;
}

.list-egg {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s all !important;
  padding: 0 16px;
  top: -22px;
}
.list-egg.active {
  padding-bottom: 120px;
}
.list-egg .item-egg {
  position: relative;
  text-align: center;
  transition: 0.4s all !important;
}
.list-egg .item-egg.active a {
  opacity: 1;
}
.list-egg .item-egg a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
  opacity: 0.5;
}
.list-egg .item-egg a span {
  flex: 0 0 100%;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 14px;
}
.list-egg .logo-monster {
  text-align: center;
  margin-bottom: 24px;
}
.list-egg .logo-monster img {
  height: 185px;
}
.list-egg ul {
  margin: 0 -10px;
}
.list-egg ul li {
  flex: 0 0 50%;
  max-width: 50%;
}

.btn-main-egg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  text-align: center;
  padding: 20px;
  display: none;
}
.btn-main-egg a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  font-weight: 600;
  height: 40px;
  border-radius: 20px;
  font-size: 18px;
  outline: none !important;
  overflow: hidden;
}

.hatches {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 208px);
  transition: 0.5s all !important;
  transform: scale(0);
  z-index: 6;
}
.hatches.active {
  transform: scale(1);
}
.hatches.active .hatches-dragon img {
  max-height: 190px;
}
@media (max-width: 350px) {
  .hatches.active .hatches-dragon img {
    max-height: 150px;
  }
}
.hatches.active .hatches-dragon .avr {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hatches .content-hatches {
  opacity: 0;
}
.hatches .content-hatches.active {
  opacity: 1;
  z-index: 10;
  position: absolute;
  bottom: -20px;
  left: 0;
}
@media (max-width: 350px) {
  .hatches .content-hatches.active {
    bottom: -20px;
  }
}

.egg-hatches {
  z-index: 2;
  cursor: pointer;
  transition: 1.2s all !important;
  position: absolute;
  width: 100%;
  left: 0;
}
.egg-hatches.eg-1 {
  left: 8px;
  z-index: 3;
  transform: scale(1.35);
  top: 45px;
}
.egg-hatches.eg-1.active {
  transform: scale(0.8) rotate(100deg);
  left: 40%;
  top: 70%;
}
.egg-hatches.eg-2 {
  left: 0;
  bottom: 30px;
  top: unset;
}
.egg-hatches.eg-2.active {
  bottom: -28%;
  transform: scale(0.7);
}
.egg-hatches img {
  width: 100%;
  display: none;
}
.egg-hatches img.active {
  display: inline;
}

.hatches-dragon img {
  max-height: 280px;
}
.hatches-dragon .avr {
  position: relative;
}
.hatches-dragon .avr:after {
  content: "Touch the character to continue";
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  top: 72%;
  right: -63px;
  width: 128px;
  text-align: center;
  pointer-events: none;
  animation: touch 1.4s infinite linear;
}
.hatches-dragon .avr:before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/hand.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  transform: rotate(-40deg);
  top: 43%;
  right: 8%;
  pointer-events: none;
  animation: touch 1.4s infinite linear;
}
.hatches-dragon.move-top .avr:after, .hatches-dragon.move-top .avr:before {
  opacity: 0;
  display: none;
}

.egg-choose {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}
@media (max-width: 1600px) {
  .egg-choose {
    transform: scale(0.8);
  }
}
@media (max-width: 1366px) {
  .egg-choose {
    transform: scale(0.6);
  }
}
.egg-choose.checked-choose {
  opacity: 1;
}
.egg-choose.shake {
  -webkit-animation-name: shake;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-transform-origin: 50% 100%;
}
.egg-choose.active {
  opacity: 0 !important;
  pointer-events: none;
}
.egg-choose img {
  max-height: max-content;
  height: 500px;
}

.item-bottom-buy {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
  display: none;
  z-index: 10;
}
@media (max-width: 1366px) {
  .item-bottom-buy {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .item-bottom-buy {
    padding: 60px 10px;
    overflow: auto;
    z-index: 1111;
    display: none;
  }
}
.item-bottom-buy.active {
  display: block;
}
.item-bottom-buy .list-item-buy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-item {
  position: relative;
  margin: 0 10px;
}
@media (max-width: 1366px) {
  .item-item {
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  .item-item {
    margin: 0 2px;
  }
}
.item-item .avr {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1440px) {
  .item-item .avr img {
    max-width: 68px;
  }
}
@media (max-width: 1366px) {
  .item-item .avr img {
    max-width: 50px;
  }
}
@media (max-width: 767px) {
  .item-item .avr img {
    max-width: 50px;
  }
}
@media (max-width: 350px) {
  .item-item .avr img {
    max-width: 46px;
  }
}
.item-item .abs-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.item-item .abs-item img {
  max-width: 48px;
  max-height: 50px;
}
@media (max-width: 1440px) {
  .item-item .abs-item img {
    max-height: 40px;
  }
}
@media (max-width: 1366px) {
  .item-item .abs-item img {
    max-height: 30px;
    position: relative;
    top: -2px;
  }
}
@media (max-width: 767px) {
  .item-item .abs-item img {
    max-height: 22px;
  }
}
.item-item .number-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #8b1611;
  color: #fff;
  font-size: 16px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .item-item .number-count {
    font-size: 12px;
    width: 16px;
    height: 16px;
  }
}

.modal-item {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.81);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s all !important;
}
.modal-item.active {
  opacity: 1;
  pointer-events: unset;
}
.modal-item .content-modal {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1600px) {
  .modal-item .content-modal {
    max-width: 100%;
    padding: 0 80px;
  }
}
@media (max-width: 1440px) {
  .modal-item .content-modal {
    padding: 0 60px;
  }
}
@media (max-width: 1023px) {
  .modal-item .content-modal {
    padding: 0 48px;
  }
}
@media (max-width: 767px) {
  .modal-item .content-modal {
    padding: 0 16px;
  }
}
.modal-item .close-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 48px;
  right: 40px;
  z-index: 2;
}
@media (max-width: 1366px) {
  .modal-item .close-item {
    top: 28px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .modal-item .close-item {
    top: 22px;
    right: 12px;
  }
}
@media (max-width: 1366px) {
  .modal-item .close-item img {
    max-width: 46px;
  }
}
@media (max-width: 767px) {
  .modal-item .close-item img {
    max-width: 32px;
  }
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.loading-ref {
  text-align: center;
}
.loading-ref.active {
  display: none;
}

.list-rank ul, .list-ref ul {
  display: block;
}
.list-rank ul li, .list-ref ul li {
  margin-bottom: 12px;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #0B3964;
}
.list-rank ul li:last-child, .list-ref ul li:last-child {
  margin-bottom: 0;
}

.list-ref .no-ref {
  text-align: center;
}

.item-rank, .item-ref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(11, 57, 100, 0.5);
  width: 100%;
  border-radius: 40px;
  padding: 10px 16px;
  font-weight: 500;
}
.item-rank .numb-rank, .item-rank .numb-ref, .item-ref .numb-rank, .item-ref .numb-ref {
  display: flex;
  align-items: center;
  min-width: unset;
  background: #fff;
  color: #002141;
  font-size: 15px;
  border-radius: 10px;
  padding: 4px 8px;
  font-weight: 600;
}
.item-rank .numb-rank .icon, .item-rank .numb-ref .icon, .item-ref .numb-rank .icon, .item-ref .numb-ref .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  position: relative;
}
.item-rank .numb-rank .icon:after, .item-rank .numb-ref .icon:after, .item-ref .numb-rank .icon:after, .item-ref .numb-ref .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/coin-claim.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.item-rank .numb-rank .icon img, .item-rank .numb-ref .icon img, .item-ref .numb-rank .icon img, .item-ref .numb-ref .icon img {
  width: 20px;
  opacity: 0;
}
@media (max-width: 767px) {
  .item-rank .numb-rank .icon img, .item-rank .numb-ref .icon img, .item-ref .numb-rank .icon img, .item-ref .numb-ref .icon img {
    width: 16px;
  }
}

.btn-claim {
  text-align: center;
}
.btn-claim.active {
  display: none;
}
.btn-claim a {
  display: inline-flex;
  background: #80361d;
  color: #fff;
  font-size: 20px;
  padding: 10px 32px;
  letter-spacing: 2px;
  border-radius: 40px;
  box-shadow: 2px 5px #BE602B;
  animation: btn_scale 2s infinite linear;
}

.monster-ig {
  opacity: 0;
  position: absolute;
  height: 220px;
  bottom: 160px;
  width: 100%;
  overflow: hidden;
}
.monster-ig.active {
  opacity: 1;
}
.monster-ig img {
  max-width: 100px;
}
.monster-ig .item-monster {
  position: absolute;
  bottom: 100px;
  right: -10%;
  z-index: 3;
}
@media (max-width: 767px) {
  .monster-ig .item-monster {
    bottom: 48px;
  }
}
.monster-ig .item-monster.active {
  animation: monster 8s infinite linear;
}
.monster-ig .item-monster img.img-flip {
  transform: rotateY(180deg);
}
.monster-ig .item-monster.gif-1.active {
  animation: monster 7.29s infinite linear;
}
.monster-ig .item-monster.moster-1 {
  bottom: 180px;
  transform: translateX(0);
}
@media (max-width: 767px) {
  .monster-ig .item-monster.moster-1 {
    bottom: 88px;
  }
}
.monster-ig .item-monster.moster-1.active {
  animation: monster 7s infinite linear;
}
.monster-ig .item-monster.moster-2 {
  transform: translateX(10vw);
}
.monster-ig .item-monster.moster-2.active {
  animation: monster 9s infinite linear;
}
.monster-ig .item-monster.moster-3 {
  transform: translateX(0);
}
.monster-ig .item-monster.moster-4 {
  bottom: 120px;
  transform: translateX(7vw);
}
@media (max-width: 767px) {
  .monster-ig .item-monster.moster-4 {
    bottom: 83px;
  }
}
.monster-ig .item-monster.moster-4.active {
  animation: monster 7.5s infinite linear;
}
.monster-ig .item-monster.moster-5 {
  transform: translateX(3.5vw);
}
.monster-ig .item-monster.moster-5.active {
  animation: monster 8.5s infinite linear;
}
.monster-ig .item-monster.moster-6 {
  transform: translateX(13vw);
  bottom: 200px;
}
@media (max-width: 767px) {
  .monster-ig .item-monster.moster-6 {
    bottom: 100px;
  }
}
.monster-ig .item-monster.moster-6.active {
  animation: monster 9.5s infinite linear;
}
.monster-ig .item-monster.moster-6 img {
  transform: scale(1.4);
}
.monster-ig .item-monster.moster-7 {
  transform: translateX(12vw);
}
.monster-ig .item-monster.moster-7.active {
  animation: monster 9s infinite linear;
}
.monster-ig .item-monster.moster-8 {
  transform: translateX(12vw);
}
.monster-ig .item-monster.moster-8.active {
  animation: monster 6.2s infinite linear;
}
.monster-ig .item-monster.moster-9 {
  transform: translateX(12vw);
}
.monster-ig .item-monster.moster-9.active {
  animation: monster 10s infinite linear;
}
.monster-ig .item-monster.moster-10 {
  transform: translateX(12vw);
}
.monster-ig .item-monster.moster-10.active {
  animation: monster 11s infinite linear;
}
.monster-ig .item-monster.moster-11.active {
  animation: monster 10.5s infinite linear;
}
.monster-ig .item-monster.moster-11 img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.monster-ig.ig-2 .item-monster {
  animation: monster 7s infinite linear;
}

.fire-fdr {
  position: absolute;
  width: 45vw;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 36%;
  left: 41%;
  mix-blend-mode: plus-lighter;
  z-index: 10;
  transform: rotate(30deg);
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 1100px) {
  .fire-fdr {
    top: 68%;
    left: 52%;
    transform: rotate(36deg);
  }
}
@media (max-width: 767px) {
  .fire-fdr {
    top: 67%;
    left: 45%;
  }
}
.fire-fdr.active {
  opacity: 1;
}
.fire-fdr img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.loading {
  background: rgba(255, 255, 255, 0.7607843137);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s all !important;
}
.loading.active {
  opacity: 0;
  pointer-events: none;
}

.loading-rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s all !important;
}
.loading-rank.active {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .loading-rank img {
    max-height: 110px;
  }
}

.blade-fire {
  position: absolute;
  transform: rotateY(157deg);
  top: 42%;
  width: 110px;
  left: 24vw;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
}
.blade-fire.animated {
  animation: blade-fire 1.8s infinite linear;
}
.blade-fire img {
  transform: rotateY(180deg) scale(1.4) !important;
}

.move-top .blade-fire {
  visibility: hidden;
}

.bar ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.bar ul li {
  width: 100%;
  background-color: rgba(192, 192, 192, 0.5);
}
.bar ul li img {
  width: 35px;
}

.dragon-now {
  width: 200px;
}

.video-hero {
  width: 200px;
}

.hero-gif-now {
  height: 121px;
  margin-left: 20px;
}

.mine {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  left: 36%;
}

.coin-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

.coin {
  width: 30px;
  height: 30px;
  background-image: url("../images/coin-claim.png");
  background-size: cover;
  position: absolute;
  animation: fly 2s forwards;
}

@keyframes fly {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.total-coin-modal .icon img {
  height: 50px;
}

.listing-token {
  text-align: center;
}

.pia-token {
  font-size: 68px;
  color: #BE602B;
}

.launch {
  font-size: 30px;
  color: gray;
}

.on-ton {
  font-size: 70px;
  color: #1869B4;
}

.list-social ul li {
  margin-bottom: 12px;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #0B3964;
  color: white;
}
.list-social ul li a {
  color: white;
}

.check-task {
  width: 100%;
  height: 30px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  font-size: 12px;
  display: inline-flex; /* Align text and image inline */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  gap: 5px; /* Add space between text and image */
  padding: 0 10px; /* Add horizontal padding */
}
.check-task img {
  width: 20px;
  height: 20px; /* Ensure consistent size */
}

.check-mark {
  width: 25px;
}

.overlay-dark {
  display: none; /* Hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* Adjust darkness here */
  z-index: 10;
  pointer-events: none; /* Ensures the overlay is not clickable */
}

/* Highlighted .hatches-dragon .avr element */
.hatches-dragon .avr {
  position: relative;
  z-index: 20; /* Brings this element above the overlay */
}

.hatches-highlight {
  z-index: 1001;
}

.upgrade {
  display: none;
}

.close-modal {
  display: inline-flex;
  align-items: center;
  justify-items: center;
  z-index: 2;
  position: absolute;
  top: calc(50% - 15.5px);
  left: 0;
}

.head-dialog {
  position: relative;
  margin: 12px 0 24px 0;
}
.head-dialog .top-modal-head {
  text-align: center;
  line-height: inherit;
}

.bx-modal-main {
  max-height: calc(100vh - 85px);
  padding-bottom: 20px;
  overflow: auto;
  position: relative;
  min-height: calc(100vh - 85px);
  border-radius: 10px;
}
.bx-modal-main.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.modal-main-fade {
  position: fixed;
  z-index: 1002;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: 0.4s all !important;
  background: #002141;
  padding: 10px;
}
.modal-main-fade.active {
  left: 0;
}
.modal-main-fade .dialog-modal {
  position: relative;
}
.modal-main-fade ul {
  list-style: none;
}
.modal-main-fade.modal-enough-sol {
  z-index: 1112;
}

.top-modal-head {
  line-height: normal;
  font-size: 27px;
  font-weight: 600;
}

.item-bg-modal {
  background: #0B3964;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 10px;
}
@media (max-width: 350px) {
  .item-bg-modal {
    padding: 10px;
  }
}
.item-bg-modal:last-child {
  margin-bottom: 0;
}

.txt-user-info p, .txt-user-ref p {
  margin-bottom: 18px;
  position: relative;
}
.txt-user-info p:last-child, .txt-user-ref p:last-child {
  margin-bottom: 0;
}
.txt-user-info p span, .txt-user-ref p span {
  display: block;
  margin-bottom: 4px;
}
.txt-user-info p label, .txt-user-ref p label {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 60px;
  padding: 0 20px;
  border: 1.5px solid rgba(11, 57, 100, 0.5);
}
.txt-user-info p label span, .txt-user-ref p label span {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  top: 5px;
}
.txt-user-info p label .data-private.active, .txt-user-ref p label .data-private.active {
  top: 0;
}
.txt-user-info p button, .txt-user-ref p button {
  position: absolute;
  padding: 0;
  border: 0;
  width: 22px;
  height: 22px;
  background: url(../images/copy.png) no-repeat;
  color: transparent;
  background-size: contain;
  bottom: 14px;
  right: 13px;
  z-index: 4;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.txt-user-info .wallet-member:after, .txt-user-ref .wallet-member:after {
  content: "...";
  position: absolute;
  padding: 0 40px 0 6px;
  background: #557593;
  right: 0;
  bottom: 1px;
  height: 48px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  border-radius: 0 50px 50px 0;
}
.txt-user-info .private-member button:last-child, .txt-user-ref .private-member button:last-child {
  background: url(../images/eye.png) no-repeat;
  right: 45px;
  background-size: contain;
  height: 16px;
}

.txt-ref-modal {
  text-align: center;
}
.txt-ref-modal h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}
.txt-ref-modal p a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  position: relative;
  top: 4px;
}

.numb-claim-modal ul {
  list-style: none;
}
.numb-claim-modal ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.numb-claim-modal ul li:last-child {
  margin-bottom: 0;
}
.numb-claim-modal span {
  font-weight: 600;
  font-size: 18px;
}
.numb-claim-modal .sol-claim {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numb-claim-modal .sol-claim .icon {
  flex: 0 0 26px;
  max-width: 26px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numb-claim-modal .sol-claim .icon img {
  width: 100%;
}

.txt-modal-claim {
  margin-top: 24px;
  color: #EB5757;
  font-size: 18px;
  position: relative;
  padding-left: 30px;
}
.txt-modal-claim:after {
  content: "";
  width: 4px;
  height: 90%;
  background: #EB5757;
  position: absolute;
  top: 5%;
  left: 12px;
}
.txt-modal-claim p {
  margin-bottom: 10px;
}
.txt-modal-claim p:last-child {
  margin-bottom: 0;
}

.btn_claim {
  margin-top: 24px;
  text-align: center;
}
.btn_claim a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  background-image: linear-gradient(to right, #FFB707, #FF8504);
}

.bott-claim {
  width: 100%;
}

.txt-buy ul {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.txt-buy ul li {
  padding: 0 10px;
}
.txt-buy ul li button {
  background-image: linear-gradient(to right, #FFB707, #FF8504);
  position: unset;
  font-weight: 600;
  border-radius: 40px;
  color: #fff;
  height: 32px;
  width: 80px;
  text-align: center;
  justify-content: center;
  border: 0;
}

.tab-modal {
  text-align: center;
  margin-bottom: 24px;
}
.tab-modal ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -5px;
}
.tab-modal ul li {
  padding: 0 5px;
  flex: 0 0 50%;
  max-width: 50%;
  text-align: center;
}
.tab-modal a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  font-weight: 600;
  color: #5A87B1;
  border: 1px solid #5A87B1;
  border-radius: 50px;
  overflow: hidden;
}
.tab-modal a.active {
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  color: #fff;
}

.list-item-modal {
  height: calc(100vh - 146px);
  overflow: auto;
  padding: 0 10px;
}

.modal-dragon ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.modal-dragon ul li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 5px;
  margin-bottom: 24px;
}

.item-item-modal {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.item-item-modal:before {
  content: "";
  width: 100%;
  height: calc(100% - 65px);
  background: rgba(0, 33, 65, 0.3);
  top: 50px;
  position: absolute;
  border-radius: 20px;
  pointer-events: none;
}
.item-item-modal a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 7;
  background: transparent;
  opacity: 0;
  height: 28px;
}
.item-item-modal .desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #b9eeff;
  color: #08325a;
  border-radius: 10px;
  padding: 8px;
  font-size: 12px;
  overflow: auto;
  height: calc(100% - 20px);
  z-index: 5;
  transition: 0.3s all !important;
  opacity: 0;
}
.item-item-modal .desc.active {
  opacity: 1;
}
.item-item-modal .avarta {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: #B9EEFF;
  border-radius: 100%;
  border: 2px solid #1869B4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.item-item-modal .avarta img {
  max-height: 100%;
}
.item-item-modal .avarta video {
  max-height: 100%;
}
.item-item-modal .top {
  margin-bottom: 24px;
}
.item-item-modal .name {
  text-align: center;
  padding: 0 6px;
  position: relative;
  z-index: 2;
  margin-top: 8px;
  min-height: 50px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}
.item-item-modal .info {
  padding: 0 20px;
  position: relative;
  z-index: 6;
}
.item-item-modal .info .price {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 28px;
  border-radius: 30px;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  color: #fff;
  font-weight: 600;
}
@media (max-width: 350px) {
  .item-item-modal .info .price {
    height: 26px;
    font-size: 12px;
    padding-left: 8px;
  }
}
.item-item-modal .info .price:after {
  content: "Soon";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  border-radius: 30px;
}
.item-item-modal .info .price .icon {
  position: absolute;
  left: 2px;
  top: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 350px) {
  .item-item-modal .info .price .icon {
    top: -4px;
  }
}
.item-item-modal .info .price .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/coin.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.item-item-modal .info .price .icon img {
  max-width: 30px;
  border: 1px solid #fff;
  border-radius: 100%;
  opacity: 0;
}
@media (max-width: 350px) {
  .item-item-modal .info .price .icon img {
    max-width: 24px;
  }
}
.item-item-modal.item-yield .avarta img {
  max-width: 70%;
  max-height: 70%;
}
.item-item-modal.item-dragon a {
  height: 100%;
}

.lv-speed {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 6px;
  position: relative;
  z-index: 2;
}
.lv-speed span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0B3964;
  background: #b9eeff;
  border-radius: 30px;
  padding: 2px 8px;
  margin: 0 4px;
}
.lv-speed span.i-level {
  padding: 2px 10px;
  color: #fff;
}
.lv-speed span.i-level.lv-1 {
  background: #FFD71F;
}
.lv-speed span.i-level.lv-2 {
  background: #F2994A;
}
.lv-speed span.i-level.lv-3 {
  background: #27AE60;
}
.lv-speed span.i-level.lv-4 {
  background: #9B51E0;
}
.lv-speed span.i-level.lv-5 {
  background: #FF0000;
}
.lv-speed span img {
  margin-right: 4px;
  position: relative;
  top: -2px;
  margin-bottom: -2px;
}

.hero-bottom-meme {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #0B3964;
  color: #fff;
  padding: 10px 16px;
  max-height: 96px;
  overflow: hidden;
}

.top-meme {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.top-meme .avarta {
  flex: 0 0 70px;
  max-width: 70px;
  margin-right: 10px;
  position: relative;
}
.top-meme .avr {
  width: 100%;
  height: 70px;
  overflow: hidden;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top-meme .avr .bg-img {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #B9EEFF;
}
.top-meme ul {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 0 -8px;
}
.top-meme ul li {
  padding: 0 8px;
}
.top-meme .name-meme {
  font-size: 18px;
  font-weight: 600;
  padding: 0 8px;
}
@media (max-width: 350px) {
  .top-meme .name-meme {
    font-size: 15px;
  }
}
.top-meme span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 30px;
  background: #B9EEFF;
  color: #0B3964;
  line-height: 1;
  font-size: 12px;
}
.top-meme span.meme-level {
  background: #FFD71F;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: -4px;
  text-align: center;
  width: 40px;
  left: calc(50% - 20px);
  padding: 3px 10px;
}
.top-meme span svg {
  margin-right: 6px;
}
.top-meme span span {
  padding: 0;
}
.top-meme .info {
  flex: 0 0 calc(100% - 80px);
  max-width: calc(100% - 80px);
  padding-left: 10px;
}
.top-meme .top-speed {
  margin: 0 -8px 8px -8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-meme .top-speed ul {
  margin: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 8px;
}
.top-meme .top-speed ul li {
  padding: 0;
  width: 100%;
}
.top-meme .top-speed ul li span {
  width: 100%;
}
.top-meme .top-speed ul li span.claim {
  padding-right: 3px;
}
.top-meme .top-speed ul li span span {
  display: inline;
  width: auto;
}

.hatches-dragon-meme .i-user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.hatches-dragon-meme#purple1 .i-user {
  background: url("../images/meme/shiba-1.png") no-repeat center;
}
.hatches-dragon-meme#purple2 .i-user {
  background: url("../images/meme/shiba-2.png") no-repeat center;
}
.hatches-dragon-meme#purple3 .i-user {
  background: url("../images/meme/shiba-3.png") no-repeat center;
}
.hatches-dragon-meme#purple4 .i-user {
  background: url("../images/meme/shiba-4.png") no-repeat center;
}
.hatches-dragon-meme#purple5 .i-user {
  background: url("../images/meme/shiba-5.png") no-repeat center;
}
.hatches-dragon-meme#red1 .i-user {
  background: url("../images/meme/pepe-1.png") no-repeat center;
}
.hatches-dragon-meme#red2 .i-user {
  background: url("../images/meme/pepe-2.png") no-repeat center;
}
.hatches-dragon-meme#red3 .i-user {
  background: url("../images/meme/pepe-3.png") no-repeat center;
}
.hatches-dragon-meme#red4 .i-user {
  background: url("../images/meme/pepe-4.png") no-repeat center;
}
.hatches-dragon-meme#red5 .i-user {
  background: url("../images/meme/pepe-5.png") no-repeat center;
}

.info-meme ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -8px;
}
.info-meme ul li {
  padding: 0 8px;
  flex: 0 0 50%;
  max-width: 50%;
}
.info-meme a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
  font-size: 12px;
}
.info-meme span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(to right, #FFB707, #FF8504);
  opacity: 0.4;
  pointer-events: none;
}
.info-meme span.active {
  opacity: 1;
  pointer-events: unset;
}

.logo-meme {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  padding: 10px 20px;
  background: url("../images/bg-head.png") #0B3964 no-repeat center;
  background-size: cover;
}
.logo-meme img {
  max-height: 100px;
}
.logo-meme .logo-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-meme {
  display: none;
}

.icon-sound {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}
.icon-sound .un-sound {
  display: none;
}
.icon-sound.active .au-sound {
  display: none;
}
.icon-sound.active .un-sound {
  display: block;
}

.claim-meme {
  position: fixed;
  top: 69px;
  background: transparent;
  background-size: cover;
  z-index: 1001;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
.claim-meme .total-top-number {
  position: relative;
  font-size: 15px;
  border-width: 1px;
  left: 0;
  top: 5px;
  z-index: 10000;
}

.clc-btn_claim {
  pointer-events: none;
  opacity: 0;
}
.clc-btn_claim a {
  display: inline-flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 20px;
  background-image: linear-gradient(to right, #FFB707, #FF8504);
  border-radius: 40px;
  pointer-events: none;
}

.item-rank-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-rank-user .name {
  font-weight: 500;
}
.item-rank-user p {
  font-size: 12px;
  color: #F5BB00;
}
.item-rank-user .lv-speed {
  justify-content: flex-start;
}
.item-rank-user .lv-speed span {
  padding: 0 10px;
}

.coin-claimed {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coin-claimed img {
  width: 20px;
  height: auto;
  position: relative;
  top: -1px;
  margin-right: 6px;
}

.left-item-rank {
  display: flex;
  align-items: center;
}
.left-item-rank .avarta {
  flex: 0 0 55px;
  max-width: 55px;
  margin-right: 10px;
}
.left-item-rank .avarta .avr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 100%;
  border: 2px solid #1869B4;
  background: #B9EEFF;
}

.position-rank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0B3964;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 30px;
  border: 1px solid #32AEF4;
}

.user-position {
  position: relative;
  display: flex;
  align-items: center;
}
.user-position .avarta {
  flex: 0 0 44px;
  margin-right: 10px;
}
.user-position .avarta .avr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 100%;
  border: 1px solid #1869B4;
  background: #B9EEFF;
}
.user-position h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: -4px;
}
.user-position .lv-speed {
  justify-content: flex-start;
  margin-bottom: 6px;
}
.user-position .lv-speed span {
  margin: 0;
  padding: 0 10px;
}
.user-position .lv-speed span#lv-1 {
  background: #FFD71F;
}
.user-position .lv-speed span#lv-2 {
  background: #F2994A;
}
.user-position .lv-speed span#lv-3 {
  background: #27AE60;
}
.user-position .lv-speed span#lv-4 {
  background: #9B51E0;
}
.user-position .lv-speed span#lv-5 {
  background: #FF0000;
}
.user-position .coin-claimed {
  font-size: 13px;
  justify-content: flex-start;
}
.user-position .coin-claimed img {
  width: 16px;
}

.icon-poss {
  text-align: center;
}
.icon-poss .numb-pos {
  font-size: 24px;
  font-weight: bold;
}

.top-connect {
  margin-bottom: 24px;
  padding: 0 20px;
}
.top-connect .btn-connect a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, #FFB707, #FF8504);
  border-radius: 40px;
  color: #fff;
  line-height: normal;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}
.top-connect .total-coin-modal {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
.top-connect .total-coin-modal .icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.top-connect .total-coin-modal .numb-cnt {
  position: relative;
  border: 2px solid #32AEF4;
  width: calc(100% - 20px);
  font-size: 32px;
  border-radius: 60px;
  padding: 0 12px 0 32px;
  margin-left: auto;
  background: #0B3964;
}

.content-modal-connect {
  padding: 0 14px;
}
.content-modal-connect p {
  text-align: center;
  margin-bottom: 20px;
}

.open-tele {
  margin-bottom: 32px;
}
.open-tele a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: relative;
  border-radius: 50px;
  background-image: linear-gradient(to right, #32AEF4, #1869B4);
}
.open-tele a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 12.5px);
  left: 16px;
}

.list-wallet ul {
  list-style: none;
}
.list-wallet ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0B3964;
}
.list-wallet a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  font-weight: 500;
}
.list-wallet a .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.list-wallet a .icon-ar {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  pointer-events: none;
}

.content-modal-claim {
  width: 100%;
}

.txt-main p {
  margin-bottom: 10px;
}
.txt-main p:last-child {
  margin-bottom: 0;
}

.modal-acc-buy {
  padding: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.78);
  z-index: 1111;
  transition: 0.4s all !important;
}
.modal-acc-buy.active {
  opacity: 1;
  pointer-events: unset;
  transform: scale(1);
  background: rgba(25, 107, 182, 0.8117647059);
}
.modal-acc-buy ul {
  list-style: none;
}
.modal-acc-buy .bx-modal-main {
  width: 100%;
  overflow: auto;
  min-height: unset;
  max-height: unset;
  padding: 0;
}

/*# sourceMappingURL=style.css.map */
