/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    -moz-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    -moz-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -moz-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

img.bg {
  max-width: 100%;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.flex-lc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.flex-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

:root {
  --green: #62FFB8;
  --light: #D9F2EB;
  --dogicapixel: dogicapixel, sans-serif;
  --dogicapixelbold: dogicapixelbold, sans-serif;
}

body {
  background: #000;
  font-family: 'Red Hat Mono', monospace;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: #ccc;
}

body::-webkit-scrollbar-thumb {
  background: #888;
}

html, body {
  scroll-behavior: smooth;
}

body.modal-open {
  overflow: visible;
  padding-right: 0 !important;
}

body.overflow-hidden {
  overflow: hidden;
}

a {
  -webkit-transition: .25s;
  -moz-transition: .25s;
  transition: .25s;
}

a:hover {
  text-decoration: none;
}

@font-face {
  font-family: dogicapixel;
  src: url("../font/dogicapixel.ttf");
}

@font-face {
  font-family: dogicapixelbold;
  src: url("../font/dogicapixelbold.ttf");
}

header {
  width: 100%;
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  z-index: 9;
}

header .navbar-toggle {
  display: none;
}

header .logo {
  width: 201px;
}

header .social {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

header .btn-launch {
  margin-left: auto;
  padding: 3px 29px;
  background: #62FFB8;
  border-radius: 9999px;
  color: #000;
}

header .btn-launch:hover {
  background: #31d98d;
}

.navbar {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 5px 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.navbar-collapse {
  padding: 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
}

.navbar-nav {
  margin: 0 0 0 200px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.navbar-nav > * + * {
  margin-left: 35px;
}

.navbar-nav > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  position: relative;
}

.navbar-nav > li > a {
  display: block;
  font: 16px/36px var(--dogicapixel);
  color: var(--light);
  position: relative;
}

.navbar-nav .active, .navbar-nav a:hover {
  color: var(--green);
}

.social {
  margin-left: auto;
}

.social > * + * {
  margin-left: 25px;
}

.social a {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
}

.social a:hover {
  filter: saturate(1.4);
  -webkit-filter: saturate(1.5);
}

.social .telegram {
  background: url("../img/telegram.svg") no-repeat 0 0/contain;
}

.social .twitter {
  background: url("../img/twitter.svg") no-repeat 0 0/contain;
}

.social .bot {
  background: url("../img/bot.svg") no-repeat 0 0/contain;
}

.social .discord {
  width: 21px;
  background: url("../img/discord.svg") no-repeat 0 0/contain;
}

.social .youtube {
  background: url("../img/youtube.svg") no-repeat 0 0/contain;
}

.social .gitbook {
  background: url("../img/gitbook.svg") no-repeat 0 0/contain;
}

.profile {
  margin-left: auto;
  font: 700 16px 'Red Hat Display',sans-serif;
}

.profile .eth-number {
  color: var(--light);
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
}

.profile .account {
  margin-left: 20px;
}

.profile .account button {
  padding: 7.5px 18px;
  border-radius: 12px;
  border: 1px solid var(--light);
  background: none;
  color: var(--light);
  position: relative;
}

.profile .account button::after {
  content: "";
  width: 17px;
  height: 10px;
  /*background: url("../img/arrow-down.svg") no-repeat;*/
  display: block;
  margin-left: 10px;
}

.profile .account .avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #D9D9D9;
  border-radius: 50%;
}

main {
  padding-top: 80px;
  overflow: hidden;
}

.container {
  max-width: 1300px;
}

.oxanon-home-s1 {
  padding: 14.7916666667vw 0 18.0729166667vw;
  background: url("../img/bg-glitch.jpg") no-repeat 0 50%/cover;
  position: relative;
}

.oxanon-home-s1 .box-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.oxanon-home-s1 .box-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.oxanon-home-s1 .content {
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.oxanon-home-s1 h1 {
  margin-bottom: 58px;
  color: #D9F2EB;
}

.oxanon-home-s1 h1.mobile {
  display: none;
}

.oxanon-home-s1 h1 span {
  display: block;
  -webkit-animation: typing 2s steps(30, end);
  -moz-animation: typing 2s steps(30, end);
  animation: typing 2s steps(30, end);
  overflow: hidden;
  font: 48px/72px var(--dogicapixelbold);
  white-space: nowrap;
}

.oxanon-home-s1 h1 span:nth-child(2) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
  opacity: 0;
}

.oxanon-home-s1 h1 span:nth-child(2).show {
  opacity: 1;
}

.oxanon-home-s1 h1 span:nth-child(3) {
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  animation-delay: 3.2s;
  opacity: 0;
}

.oxanon-home-s1 h1 span:nth-child(3).show {
  opacity: 1;
}

.oxanon-home-s1 h1 span:nth-child(4) {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
  opacity: 0;
}

.oxanon-home-s1 h1 span:nth-child(4).show {
  opacity: 1;
}

.oxanon-home-s1 h1 span:nth-child(5) {
  -webkit-animation-delay: 6.2s;
  -moz-animation-delay: 6.2s;
  animation-delay: 6.2s;
  opacity: 0;
}

.oxanon-home-s1 h1 span:nth-child(5).show {
  opacity: 1;
}

.oxanon-home-s1 h1 span:nth-child(6) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  animation-delay: 8s;
  opacity: 0;
}

.oxanon-home-s1 h1 span:nth-child(6).show {
  opacity: 1;
}

.oxanon-home-s1 .contract {
  color: var(--green);
}

.oxanon-home-s2 {
  padding: 6.09375vw 0 11.40625vw;
  background: url(../img/bg-home-s2.jpg) no-repeat 0 0/cover;
}

.oxanon-home-s2 .container {
  max-width: 1505px;
}

.oxanon-home-s2 .title {
  margin-bottom: 62px;
}

.oxanon-home-s2 .content {
  padding: 77px 100px 94px;
  border-radius: 35px;
  border-top: 2px solid rgba(98, 255, 184, 0.5);
  background: rgba(25, 25, 25, 0.8);
}

.oxanon-home-s2 .core-value {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 62px;
}

.oxanon-home-s2 .core-value h4 {
  margin-bottom: 25px;
  font: 24px/36px var(--dogicapixel);
  color: var(--green);
}

.oxanon-home-s2 .core-value p {
  color: #D9F2EB;
  font-size: 18px;
  line-height: 1.34;
}

.oxanon-home-s3 {
  padding: 11.1979166667vw 0;
  position: relative;
}

.oxanon-home-s3::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#62FFB8), color-stop(99.98%, rgba(98, 255, 184, 0)));
  background: -webkit-linear-gradient(right, #62FFB8 0%, rgba(98, 255, 184, 0) 99.98%);
  background: -moz- oldlinear-gradient(right, #62FFB8 0%, rgba(98, 255, 184, 0) 99.98%);
  background: linear-gradient(270deg, #62FFB8 0%, rgba(98, 255, 184, 0) 99.98%);
  opacity: .2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.oxanon-home-s3 video {
  border: 1px solid var(--green);
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.oxanon-home-s3 .content {
  padding-top: 42px;
}

.oxanon-home-s4 {
  padding: 11.1979166667vw 0;
}

.oxanon-home-s4 .content {
  padding-left: 70px;
}

.oxanon-home-s4 video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.oxanon-home-s5 {
  padding: 6.40625vw 0 7.9166666667vw;
  background: url(../img/roadmap-bg.jpg) no-repeat 0 50%/cover;
}

.oxanon-home-s5 .title {
  margin-bottom: 56px;
}

.oxanon-home-s5 .roadmap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.oxanon-home-s5 .roadmap .item {
  padding: 87px 40px 122px;
  border-radius: 20px 0px 0px 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(98, 255, 184, 0.2)), to(rgba(98, 255, 184, 0)));
  background: -webkit-linear-gradient(left, rgba(98, 255, 184, 0.2) 0%, rgba(98, 255, 184, 0) 100%);
  background: -moz- oldlinear-gradient(left, rgba(98, 255, 184, 0.2) 0%, rgba(98, 255, 184, 0) 100%);
  background: linear-gradient(90deg, rgba(98, 255, 184, 0.2) 0%, rgba(98, 255, 184, 0) 100%);
}

.oxanon-home-s5 .roadmap .item h4 {
  margin-bottom: 35px;
  color: var(--green);
  font: 24px/36px var(--dogicapixel);
}

.oxanon-home-s5 .roadmap ul {
  position: relative;
}

.oxanon-home-s5 .roadmap ul > * + * {
  margin-top: 26px;
}

.oxanon-home-s5 .roadmap ul::before {
  content: "";
  width: 2px;
  height: 120%;
  background: var(--green);
  position: absolute;
  left: -40px;
  top: -82px;
}

.oxanon-home-s5 .roadmap ul li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  color: #D9F2EB;
  list-style: none;
}

.oxanon-home-s5 .roadmap ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/dot.svg) no-repeat 0 0/contain;
  position: absolute;
  left: -4px;
  top: 5px;
}

.oxanon-category {
  padding: 75px 0 140px;
  background: url("../img/bg-home-s2.jpg") no-repeat bottom center/cover;
  background-attachment: fixed;
}

.oxanon-category.mh-md {
  min-height: 1184px;
}

.oxanon-category.mh-sm {
  min-height: -webkit-calc(100vh + 38px);
  min-height: -moz-calc(100vh + 38px);
  min-height: calc(100vh + 38px);
}

.oxanon-category::after {
  content: "";
  display: none;
  width: 100%;
  height: 970px;
  background: url("../img/bg-home-s2.jpg") no-repeat bottom center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.oxanon-category .notifi {
  max-width: 726px;
  margin: 53px auto 0;
  padding: 68px 80px;
  border-radius: 35px;
  border-top: 2px solid rgba(98, 255, 184, 0.5);
  background: rgba(25, 25, 25, 0.85);
  -webkit-box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.oxanon-category .notifi h2 {
  margin-bottom: 12px;
  font: 16px/36px var(--dogicapixel);
  font-weight: 400;
}
.oxanon-category .notifi .btn-pr {
  display: inline-block;
  width: 240px;
}

.reward {
  margin-top: 53px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}
.reward .item {
  width: 50%;
  max-width: 517px;
  margin: 0 39px;
  padding: 47px 52px 57px;
  border-radius: 35px;
  border-top: 2px solid rgba(98, 255, 184, 0.5);
  background: rgba(25, 25, 25, 0.85);
  -webkit-box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
}
.reward .exchange {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  padding: 15px 24px;
  border-radius: 12px;
  border: 1px solid var(--green);
  font-size: 18px;
  color: #fff;
}
.reward .exchange input {
  border: none;
  background: none;
  color: #fff;
}
.reward .exchange input:focus {
  outline: none;
}
.reward .exchange span {
  margin-left: auto;
}
.reward h3 {
  color: var(--green);
  font-family: var(--dogicapixel);
}
.reward .amount {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
}
.reward .btn-claim {
  width: 190px;
  float: right;
}


.oxanon-category .box-title {
  max-width: 623px;
  margin: 0 auto 62px;
}

.oxanon-category .tab {
  margin-bottom: 38px;
}

.oxanon-category .tab li {
  margin: 0 12.5px;
}

.oxanon-category .tab a {
  display: block;
  padding: 3px 23px;
  min-width: 127px;
  background: #191919;
  border-radius: 12px;
  color: var(--light);
  font: 14px/36px var(--dogicapixel);
  text-align: center;
}

.oxanon-category .tab .active {
  background: #343937;
}

.oxanon-category .tab-content {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 28px 60px;
  border-radius: 35px;
  border-top: 2px solid rgba(98, 255, 184, 0.5);
  background: rgba(25, 25, 25, 0.85);
  -webkit-box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
}

.oxanon-category .tab-content .header {
  padding: 24px 0 15px;
  margin-bottom: 32px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  justify-content: flex-end;
  border-bottom: 1px solid #343937;
}

.oxanon-category .tab-content h3 {
  margin-bottom: 30px;
}

.oxanon-category .tab-content .icon {
  width: 20px;
  height: 20px;
  display: block;
}

.oxanon-category .tab-content .icon-clock {
  background: url("../img/icon-clock.svg") no-repeat;
}

.oxanon-category .tab-content .icon-info {
  background: url("../img/icon-info.svg") no-repeat 0 0/contain;
}

.oxanon-category .amout-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-bottom: 38px;
}

.oxanon-category .amout-list button {
  padding: 12px 19px;
  background: none;
  border-radius: 12px;
  border: 1px solid rgba(98, 255, 184, 0.5);
  font-size: 24px;
  line-height: 36px;
  color: var(--light);
}

.oxanon-category .amout-list button:focus {
  background: var(--green);
  color: #000;
}

.oxanon-category .box-tooltip.lg .content {
  width: 302px;
  left: -315px;
  top: -14px;
}

.oxanon-category .box-tooltip.lg .icon-info {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.oxanon-category .box-tooltip:hover .content {
  opacity: 1;
  z-index: 2;
}

.oxanon-category .box-tooltip button {
  background: none;
  padding: 0;
}

.oxanon-category .box-tooltip .content {
  width: 194px;
  padding: 11px 18px;
  border-radius: 12px;
  background: #343937;
  color: var(--light);
  font-size: 12px;
  line-height: 1.4;
  position: absolute;
  top: 5px;
  left: 34px;
  opacity: 0;
  z-index: -1;
}

.oxanon-category .b-1 {
  border-radius: 12px;
  border: 1px solid rgba(98, 255, 184, 0.5);
}

.oxanon-category .secret-key {
  padding: 8px 22px 8px 62px;
  background: url("../img/icon-key.svg") no-repeat 22px center;
  font-size: 15px;
}

.oxanon-category .secret-key input {
  border: none;
  background: none;
  color: var(--light);
}

.oxanon-category .secret-key input::-webkit-input-placeholder {
  color: var(--light);
}

.oxanon-category .secret-key input::-moz-placeholder {
  color: var(--light);
}

.oxanon-category .secret-key input:-ms-input-placeholder {
  color: var(--light);
}

.oxanon-category .secret-key input::placeholder {
  color: var(--light);
}

.oxanon-category .box-coin {
  padding: 19px 22px;
}

.oxanon-category .box-coin input {
  width: 50%;
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}

.oxanon-category .box-coin .coin {
  color: #fff;
  margin-left: auto;
}

.oxanon-category .box-coin .coin img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.oxanon-category .box-coin .usd {
  margin-top: 20px;
  color: #74817D;
}

.oxanon-category .dropdown-select {
  background: none;
  margin-left: 14px;
  color: #fff;
  font-weight: 700;
}

.oxanon-category .dropdown-select.active::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.oxanon-category .dropdown-select::after {
  content: "";
  width: 17px;
  height: 10px;
  display: block;
  background: url("../img/arrow-down.svg") no-repeat 0 0/contain;
  margin-left: 14px;
}

.oxanon-category .dropdown-content {
  width: 100%;
  display: none;
  margin-top: 25px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(98, 255, 184, 0.5);
  font: 700 16px 'Red Hat Display', sans-serif;
  color: var(--light);
}

.oxanon-category .dropdown-content.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.oxanon-category .dropdown-content li {
  padding: 5px;
}

.oxanon-category .dropdown-content button {
  width: 70px;
  height: 25px;
  border-radius: 9999px;
  background: none;
  color: var(--light);
}

.oxanon-category .dropdown-content button.active {
  background: #74817D;
  color: #191919;
}

.oxanon-category .dropdown-content input {
  width: 70px;
  height: 25px;
  border: none;
  background: none;
  color: #fff;
}

.oxanon-category .dropdown-content input::-webkit-input-placeholder {
  color: #74817D;
}

.oxanon-category .dropdown-content input::-moz-placeholder {
  color: #74817D;
}

.oxanon-category .dropdown-content input:-ms-input-placeholder {
  color: #74817D;
}

.oxanon-category .dropdown-content input::placeholder {
  color: #74817D;
}

.oxanon-category .code {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.oxanon-category .code span {
  word-wrap: break-word;
}

.oxanon-category .relayer button {
  background: none;
  color: var(--light);
}

.oxanon-category .relayer .icon-info {
  width: 14px;
  height: 14px;
  margin: 0 4px;
}

.oxanon-category .relayer .box-info {
  margin: 0 8px 0 0;
}

.oxanon-category .relayer .box-info .content {
  width: 302px;
  left: -315px;
  top: -10px;
}

.oxanon-category .info h4 {
  padding: 27px 22px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font: 16px var(--dogicapixel);
}

.oxanon-category .info ul {
  padding: 22px;
}

.oxanon-category .info ul > * + * {
  margin-top: 22px;
}

.oxanon-category .info ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.oxanon-category .info ul p {
  color: var(--light);
}

.oxanon-category .info ul span {
  margin-left: auto;
  color: #fff;
  font-weight: 700;
}

.box-form {
  max-width: 520px;
  margin: -20px auto 0;
  padding: 38px 28px 65px;
  border-radius: 35px;
  border-top: 2px solid rgba(98, 255, 184, 0.5);
  background: rgba(25, 25, 25, 0.85);
  -webkit-box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
}

.box-form .header {
  margin-bottom: 65px;
}

.box-form .form-group {
  margin-bottom: 30px;
}

.box-form .form-group .text {
  font-size: 12px;
  line-height: 15px;
  margin-top: 12px;
  color: var(--light);
}

.box-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 26px;
  color: var(--light);
}

.box-form input {
  width: 100%;
  height: 46px;
  background: none;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid var(--green);
  color: #74817D;
  font-size: 18px;
}

.box-form input::-webkit-input-placeholder {
  color: #74817D;
}

.box-form input::-moz-placeholder {
  color: #74817D;
}

.box-form input:-ms-input-placeholder {
  color: #74817D;
}

.box-form input::placeholder {
  color: #74817D;
}

.box-form .box-btn {
  margin-top: 35px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.box-form .box-btn button, .box-form .box-btn a {
  width: -webkit-calc(50% - 14px);
  width: -moz-calc(50% - 14px);
  width: calc(50% - 14px);
  text-align: center;
}

.box-form .box-btn .btn-prev {
  background: var(--light);
  padding: 3px 0;
  border-radius: 12px;
  color: #74817D;
  color: #191919;
}

.box-form .box-btn .btn-prev.disabled, .box-form .box-btn .btn-prev.slick-disabled {
  background: #343937;
  color: #74817D;
}

.box-form .box-btn .btn-next.slick-disabled {
  display: none;
}

.box-form .box-btn .btn-deploy {
  display: none;
}

.box-form .checkbox {
  margin-bottom: 30px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.box-form .checkbox input {
  opacity: 0;
  position: absolute;
  left: 0;
}

.box-form .checkbox .checked {
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 12px;
  border-radius: 4px;
  background: #ccc;
}

.box-form .checkbox input:checked + .checked {
  background: var(--green) url("../img/icon-check.svg") no-repeat center center;
}

.box-form .slick-slide {
  height: 0;
  overflow: hidden;
  -webkit-transition: height .25s;
  -moz-transition: height .25s;
  transition: height .25s;
}

.box-form .slick-active {
  height: inherit;
}

.box-select {
  margin-left: auto;
}

.box-select.show .selected::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.box-select.show .select-dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.box-select .selected {
  color: #fff;
  cursor: pointer;
}

.box-select .selected .icon {
  width: 25px;
  height: 25px;
}

.box-select .selected::after {
  content: "";
  width: 17px;
  height: 10px;
  display: block;
  background: url("../img/arrow-down.svg") no-repeat 0 0/contain;
  margin-left: 8px;
}

.box-select .select-dropdown {
  background: #1e1e1e;
  padding: 5px 0;
  min-width: 250px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
  left: -10px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.box-select .select-dropdown li {
  padding: 5px 10px;
  cursor: pointer;
}

.box-select .select-dropdown li:hover {
  background: rgba(0, 0, 0, 0.2);
}

.box-select .select-dropdown .icon {
  width: 25px;
  height: 25px;
}

.category header {
  background: #191919;
}

.category header .container {
  max-width: 1465px;
}

.category .navbar {
  padding: 20px 0;
}

.category main {
  padding-top: 100px;
}

.category footer {
  padding: 40px 0;
}

.category footer .social a {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.modal .modal-dialog {
  max-width: 520px;
}

.modal .modal-content {
  width: 100%;
  padding: 42px 28px;
  border-radius: 35px;
  border-top: 2px solid rgba(98, 255, 184, 0.5);
  background: rgba(25, 25, 25, 1);
  -webkit-box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
}

.modal .modal-title {
  margin-bottom: 4px;
  color: var(--green);
}

.modal .warning {
  color: #F00;
}

.modal .encode {
  padding: 21px;
  border-radius: 12px;
  background: #343937;
  color: var(--light);
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
}

.modal .box-btn {
  margin-top: 35px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.modal .box-btn button {
  width: -webkit-calc(50% - 14px);
  width: -moz-calc(50% - 14px);
  width: calc(50% - 14px);
}

.modal .box-btn .btn-sub {
  border-radius: 12px;
  color: #191919;
  font: 16px/36px var(--dogicapixel);
}

.modal .box-btn .btn-sub:hover {
  background: #ccc;
}

.modal .close {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--light);
  font-weight: normal;
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal-completed .btn-pr {
  font-size: 14px;
}

.modal-active {
  padding-right: 0 !important;
}

.modal-active .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.switch {
  margin: 0 0 0 7px;
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--green);
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--green);
  box-shadow: 0 0 1px var(--green);
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  -moz-transform: translateX(18px);
  transform: translateX(18px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@-moz-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to {
    border-color: #D9F2EB;
  }
  50% {
    border-color: transparent;
  }
}
@-moz-keyframes blink-caret {
  from, to {
    border-color: #D9F2EB;
  }
  50% {
    border-color: transparent;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: #D9F2EB;
  }
  50% {
    border-color: transparent;
  }
}

footer {
  padding: 5.2083333333vw 0;
  background: #000;
}

footer h3 {
  margin-bottom: 54px;
  color: var(--green);
  font: 30px/36px var(--dogicapixel);
}

footer .social {
  margin: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

footer .social > * + * {
  margin-left: 80px;
}

footer .social a {
  width: 25px;
  height: 20px;
}

footer .social .discord {
  width: 27px;
}

footer .social .youtube {
  width: 29px;
}

.pr {
  position: relative;
}

li {
  list-style: none;
}

h2.title {
  padding-left: 22px;
  font: 30px/48px var(--dogicapixelbold);
  color: var(--green);
  position: relative;
}

h2.title::before {
  content: "";
  width: 11px;
  height: 33px;
  background: #2E654D;
  position: absolute;
  left: 0;
  top: 0;
}

.text {
  max-width: 560px;
}

.text p {
  margin-bottom: 35px;
  color: #D9F2EB;
  font-size: 18px;
  line-height: 1.34;
}

.text p:last-child {
  margin-bottom: 0;
}

button {
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: .25s;
  -moz-transition: .25s;
  transition: .25s;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-pr {
  padding: 3px 0;
  background: var(--green);
  border-radius: 12px;
  color: #000;
  font: 16px/36px var(--dogicapixel);
}

.btn-pr.disabled {
  background: #4A7E66;
}

.btn-pr.disabled:hover {
  background: #4A7E66;
}

.btn-pr:hover {
  background: #31d98d;
  color: #000;
}

.img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mb-md {
  margin-bottom: 35px;
}

.txt-sm {
  font: 16px/36px var(--dogicapixel);
}

.txt-md {
  font-size: 18px;
  line-height: 24px;
}

.txt-lg {
  font-size: 24px;
  line-height: 36px;
}

.txt-light {
  color: var(--light);
}

.txt-green {
  color: var(--green);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 1680px) {
  .oxanon-home-s1 h1 span {
    font-size: 44px;
    line-height: 72px;
  }
}

@media (max-width: 1440px) {
  .category .navbar {
    padding: 10px 0;
  }
  .category main {
    padding-top: 80px;
  }
  .category footer {
    padding: 30px 0;
  }
  .navbar-nav {
    margin-left: auto;
  }
  .oxanon-home-s1 h1 span {
    font-size: 42px;
    line-height: 70px;
  }
  .oxanon-home-s2 .content {
    padding: 60px;
  }
  .oxanon-home-s2 .core-value h4 {
    font-size: 22px;
    line-height: 32px;
  }
  .oxanon-home-s2 .core-value p {
    font-size: 16px;
  }
}

@media (max-width: 1280px) {
  .oxanon-home-s1 h1 span {
    font-size: 39px;
    line-height: 68px;
  }
}

@media (max-width: 1024px) {
  header.scroll .navbar {
    padding: 10px 0;
  }
  header .logo {
    width: 140px;
  }
  header .btn-launch {
    padding: 0px 8px;
    margin-right: 36px;
  }
  header .navbar-toggle {
    display: block;
    position: absolute;
    right: 0;
  }

  .reward {
    margin-top: 0;
  }
  .reward .item {
    width: 48%;
    margin: 0 1%;
    padding: 36px;
  }
  .reward .exchange {
    padding: 15px;
  }
  .reward .exchange input {
    width: 90%;
  }
  header .social > * + * {
    margin-left: 25px;
  }
  header .social a {
    width: 25px;
    height: 20px;
  }
  header .social .discord {
    width: 29px;
  }
  .navbar {
    width: 100%;
    min-height: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
  }
  .navbar-collapse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    position: fixed;
    top: 62px;
    left: -100%;
    width: 100%;
    height: -webkit-calc(100% - 60px);
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
    padding: 0;
    background: #000;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    transition: all .4s ease-out;
    z-index: 91;
    overflow: auto;
  }
  .navbar-collapse.show {
    left: 0;
  }
  .navbar-toggle {
    display: block;
    width: 24px;
    height: 16px;
    padding: 0;
    background: none;
    border: none;
  }
  .navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
  }
  .navbar-toggle span:before, .navbar-toggle span:after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    border-radius: 2px;
  }
  .navbar-toggle span:before {
    top: -8px;
  }
  .navbar-toggle span:after {
    bottom: -8px;
  }
  .navbar-toggle.active {
    z-index: 99;
  }
  .navbar-toggle.active span {
    width: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar-toggle.active span:after {
    width: 22px;
  }
  .navbar-toggle.active span:before {
    top: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .navbar-toggle.active span:after {
    opacity: 0;
  }
  .navbar-nav {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0 0 25px;
  }
  .navbar-nav > * + * {
    margin: 15px 0 0;
  }
  .navbar-nav > li {
    display: block;
    text-align: center;
  }
  .navbar-nav > li > a {
    line-height: inherit;
  }
  .profile {
    margin-left: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
  }
  .profile .eth-number {
    margin-bottom: 30px;
  }
  main {
    padding-top: 62px;
  }
  .oxanon-home-s1 h1 span {
    font-size: 3.9024390244vw;
    line-height: 1.6;
  }
  .oxanon-home-s2 .content {
    padding: 40px 16px;
  }
  .oxanon-home-s2 .core-value {
    grid-gap: 40px;
  }
  .oxanon-home-s3 .row {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }
  .oxanon-home-s3 .content {
    padding-top: 0;
  }
  .oxanon-home-s4 .content {
    padding-left: 0;
  }
  .oxanon-home-s5 .roadmap .item {
    padding: 87px 20px 122px;
  }
  .oxanon-home-s5 .roadmap ul::before {
    left: -20px;
  }
  .oxanon-category .box-tooltip.lg .content {
    left: 0;
    top: 26px;
  }
  .oxanon-category .box-tooltip .content {
    left: inherit;
    right: 30px;
  }
}

@media (max-width: 820px) {

  .oxanon-category .notifi {
    padding: 30px 15px;
  }
  .oxanon-category .notifi h2 {
    line-height: 32px;
  }
  .oxanon-home-s1 h1 {
    margin-bottom: 4.8780487805vw;
  }
  .oxanon-home-s1 .contract {
    font-size: 2.9268292683vw;
  }
  .oxanon-home-s2 .core-value {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .oxanon-home-s5 .roadmap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  .oxanon-home-s5 .roadmap .item {
    padding: 60px 20px 92px;
  }
  .text p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .oxanon-home-s2 .title {
    margin-bottom: 40px;
  }
  .oxanon-home-s2 .core-value h4 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
  }
  .oxanon-home-s3 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    flex-direction: column-reverse;
  }
  .oxanon-home-s3 .img-wrapper, .oxanon-home-s3 .box-video {
    margin-bottom: 30px;
  }
  .oxanon-home-s5 .roadmap ul > * + * {
    margin-top: 20px;
  }
  .oxanon-home-s5 .roadmap ul li {
    font-size: 16px;
  }
  .oxanon-category {
    padding: 45px 0 100px;
  }
  .oxanon-category.mh-md {
    min-height: 1076px;
  }
  .oxanon-category .box-title {
    margin-bottom: 35px;
  }
  .oxanon-category .tab {
    margin-bottom: 30px;
  }
  .oxanon-category .tab li {
    margin: 6px;
  }
  .oxanon-category .tab a {
    padding: 3px 16px;
  }
  .oxanon-category .tab-content {
    padding: 0 16px 40px;
  }
  .oxanon-category .amout-list {
    grid-gap: 16px;
  }
  .oxanon-category .amout-list button {
    padding: 12px 10px;
    font-size: 20px;
    line-height: 32px;
  }
  .oxanon-category .secret-key {
    padding: 8px 15px 8px 52px;
    background-position: 15px center;
  }
  .oxanon-category .box-coin {
    padding: 16px;
  }
  .oxanon-category .box-coin .coin img {
    margin-right: -10px;
  }
  .oxanon-category .box-coin input {
    font-size: 21px;
  }
  .oxanon-category .info h4 {
    padding: 27px 16px;
  }
  .oxanon-category .info ul {
    padding: 22px 16px;
  }
  .oxanon-category .code {
    padding: 16px;
    font-size: 16px;
  }
  .box-form {
    margin-top: 0;
    padding: 32px 15px 45px;
  }
  .box-form .header {
    margin-bottom: 40px;
  }
  .box-form .form-group {
    margin-bottom: 24px;
  }
  .box-form input {
    padding: 0 16px;
  }
  .box-form label, .box-form input {
    font-size: 16px;
  }
  .box-form .box-btn {
    margin-top: 15px;
  }
  footer {
    padding: 40px 0;
  }

  .reward .item {
    width: 100%;
    margin: 0 0 30px;
    padding: 30px 20px;
    border-radius: 26px;
  }
  .reward .amount {
    font-size: 32px;
  }
  .reward .exchange {
    font-size: 16px;
  }

  footer h3 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
  }
  footer .social > * + * {
    margin-left: 50px;
  }
  .img-wrapper img {
    margin: 0 auto;
  }
  .text {
    max-width: 100%;
  }
  .text p {
    margin-bottom: 28px;
  }
  .btn-pr {
    font-size: 14px;
    line-height: 34px;
  }
  .mb-md {
    margin-bottom: 28px;
  }
  .txt-md {
    font-size: 16px;
  }
  .txt-lg {
    font-size: 21px;
    line-height: 32px;
  }
  h2.title {
    padding-left: 20px;
    font-size: 24px;
    line-height: 36px;
  }
  h2.title::before {
    width: 9px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  header .btn-launch {
    font-size: 13px;
  }
  .oxanon-home-s1 {
    padding: 78px 0;
  }
  .oxanon-home-s1 .content {
    padding-right: 0;
  }
  .oxanon-home-s1 .contract {
    font-size: 4.1666666667vw;
  }
  .oxanon-home-s1 h1 {
    margin-bottom: 6.25vw;
  }
  .oxanon-home-s1 h1.mobile {
    display: block;
  }
  .oxanon-home-s1 h1.desktop {
    display: none;
  }
  .oxanon-home-s1 h1 span {
    font-size: 6.6666666667vw;
    line-height: 1.9;
    -webkit-animation: typing 2s steps(30, end);
    -moz-animation: typing 2s steps(30, end);
    animation: typing 2s steps(30, end);
  }
  .oxanon-home-s2 {
    background-position: bottom center;
    -webkit-background-size: contain;
    background-size: contain;
  }
  .oxanon-category {
    background: url("../img/bg-home-s2.jpg") no-repeat bottom center fixed;
    -webkit-background-size: cover;
    background-size: cover;
  }
  .oxanon-category .tab a {
    min-width: auto;
    font-size: 13px;
  }
  .oxanon-category .tab-content .header {
    padding: 20px 0 11px;
    margin-bottom: 25px;
  }
  .oxanon-category .tab-content h3 {
    margin-bottom: 25px;
  }
  .oxanon-category .amout-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .modal .modal-content {
    padding: 30px 15px;
  }
  .modal .box-btn button {
    width: -webkit-calc(50% - 8px);
    width: -moz-calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .modal .box-btn .btn-sub {
    font-size: 14px;
  }
  .modal-completed .btn-pr {
    font-size: 13px;
  }
  .modal-completed .box-btn {
    margin-bottom: 28px;
  }
  .modal-completed .box-btn > * + * {
    margin-top: 15px;
  }
  .modal-completed .box-btn button {
    width: 100%;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-moz-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    -moz-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    -moz-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-moz-keyframes flash {
  0% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
  50% {
    -webkit-filter: saturate(1.6);
    filter: saturate(1.6);
  }
  100% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
}

@keyframes flash {
  0% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
  50% {
    -webkit-filter: saturate(1.6);
    filter: saturate(1.6);
  }
  100% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
}

@-webkit-keyframes flash {
  0% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
  50% {
    -webkit-filter: saturate(1.6);
    filter: saturate(1.6);
  }
  100% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
}

.flash {
  -moz-animation-name: flash;
  animation-name: flash;
  -webkit-animation-name: flash;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* The notification itself */
.Vue-Toastification__toast.custom {
  min-width: 0;
  padding: 1.5rem;
  border-width: 2px;
  box-shadow: none;
  user-select: none;
  border-radius: 1rem;
  background-color: #333;
  border-color: #28a745
}

/* Success variant of the notification */
.Vue-Toastification__toast--success.custom {
  border-color: #28a745;
  color: #62FFB8;
}

/* Error variant of the notification */
.Vue-Toastification__toast--error.custom {
  border-color: #dc3545; /* Thay thế border-danger bằng màu mã hoặc tên màu tùy chọn */
  color: #dc3545; /* Thay thế text-danger bằng màu mã hoặc tên màu tùy chọn */
}

/* The icon which is replaced with a component (vue-material-icons, for example) */
.Vue-Toastification__toast.custom .Vue-Toastification__icon {
  height: auto;
}

/* The content - use this to override the default font styling etc */
.Vue-Toastification__toast-body.custom {
  align-self: center;
  font-family: 'Rubik';
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

