@charset "UTF-8";
/**
Author: Nolimitbuzz
Website URL: https://nolimitbuzz.net
Developer: Engr. Segun
CSS Framework: SASS

*/
/* GLOBAL PARTIALS */
/* COLOR PALLETE*/
/* Text*/
/* BG*/
/* COLOR PALLETE*/
/* Text*/
/* BG*/
/* Gradient Button*/
/*Widget Colors*/
.bg-fade-yellow {
  background-color: #E1CFA0;
}

.bg-light-navy {
  background-color: #002B53;
}

.text-grey {
  color: #8095A9;
}

.text-navy {
  color: #ffffff;
}

.text-white {
  color: #fff;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Avenir LT Pro" !important;
  font-weight: 400 !important;
  color: #4F4E4E;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

.text-md {
  font-size: 18px;
}

.text-lg {
  font-size: 20px;
}

.text-xlg {
  font-size: 22px;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #8095A9;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #8095A9;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #D09410;
}

section:not(:first-child) {
  overflow: hidden;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
/*Navigation*/
.header {
  background-color: #F9F3F3;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
  top: 0px;
}
.header-container {
  width: 1300px;
  padding: 5px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .header-container {
    padding: 10px;
  }
}
.header-container .logo img {
  width: 80px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .logo img {
    width: 60px;
  }
}
@media screen and (max-width: 480px) {
  .header-container .logo img {
    width: 60px;
  }
}
.header-container .right-side {
  display: flex;
  align-items: center;
}
.header-container .right-side .menu {
  transition: all 1s ease-in-out;
}
.header-container .right-side .menu ul {
  display: inline-flex;
}
@media screen and (max-width: 480px) {
  .header-container .right-side .menu ul {
    display: block;
    margin-top: 50px;
  }
}
.header-container .right-side .menu ul li {
  list-style-type: none;
  margin-right: 20px;
  margin-left: 20px;
  font-weight: 800;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .right-side .menu ul li {
    line-height: 4em;
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .header-container .right-side .menu ul li {
    line-height: 57px;
  }
}
.header-container .right-side .menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .right-side .menu ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .header-container .right-side .menu ul li a {
    font-size: 16px;
  }
}
.header-container .right-side .menu ul li a:hover {
  color: #F0B90B;
}
.header-container .right-side .menu span {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .header-container .right-side .menu {
    position: absolute;
    background: #fff;
    padding: 20px;
    top: 0;
    left: -480px;
    height: 100vh;
    width: 100%;
  }
  .header-container .right-side .menu span {
    content: "<span> </span>";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: #f6370c;
    display: block;
  }
}
.header-container .right-side .connect.mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .header-container .right-side .connect.mobile {
    display: block !important;
  }
}
.header-container .right-side .connect a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .header-container .right-side .connect a {
    display: none;
  }
}
.header-container .right-side .connect a div.button {
  background-image: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  padding: 14px 35px;
  border-radius: 25px;
  width: 182px;
  text-align: center;
  font-weight: 500;
  height: 45px;
  margin-left: 20px;
}
.header-container .right-side .connect a div.button h5 {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .right-side .connect a div.button h5 {
    font-size: 13px;
  }
}
.header-container .right-side .connect a div.button:hover {
  background-image: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
}
.header-container .right-side .connect-mobile a {
  color: #fff;
  text-decoration: none;
  display: none;
}
@media screen and (max-width: 480px) {
  .header-container .right-side .connect-mobile a {
    display: block;
    margin-right: 30px;
  }
}
.header-container .right-side .connect-mobile a div.button {
  background-image: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  padding: 14px 35px;
  border-radius: 25px;
  width: 182px;
  text-align: center;
  font-weight: 500;
  height: 45px;
  margin-left: 20px;
}
.header-container .right-side .connect-mobile a div.button h5 {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .right-side .connect-mobile a div.button h5 {
    font-size: 13px;
  }
}
.header-container .right-side .connect-mobile a div.button:hover {
  background-image: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
}
.header-container .right-side .hamburger {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .header-container .right-side .hamburger {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .header-container .right-side .hamburger img {
    width: 40px;
  }
}

.mobile-visible {
  display: none;
}
@media screen and (max-width: 480px) {
  .mobile-visible {
    display: block;
  }
}

/*Navigation*/
.about {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -300px;
}
.about-container {
  width: 1300px;
  padding: 160px 0 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  z-index: 5;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .about-container {
    padding: 170px 20px 100px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .about-container {
    padding: 100px 20px 50px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about-container .left {
  background: #FFF1E2;
  /* shadow 1 */
  position: relative;
  box-shadow: 0px 16px 50px rgba(181, 181, 181, 0.15);
  border-radius: 20px;
  padding: 50px 150px 50px 50px;
}
@media screen and (max-width: 480px) {
  .about-container .left {
    padding: 30px;
  }
}
.about-container .left img.bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  width: 200px;
}
@media screen and (max-width: 480px) {
  .about-container .left img.bg-img {
    width: 100px;
  }
}
.about-container .left h3 {
  margin: 20px 0;
}
.about-container .left p {
  text-align: justify;
  line-height: 24px;
  font-size: 12px;
}
.about-container .right {
  position: relative;
  /* Gradient */
  padding: 50px 150px 50px 50px;
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  box-shadow: 0px 16px 44px rgba(181, 181, 181, 0.15);
  border-radius: 20px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .about-container .right {
    padding: 30px;
  }
}
.about-container .right img.bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  width: 200px;
}
@media screen and (max-width: 480px) {
  .about-container .right img.bg-img {
    width: 100px;
  }
}
.about-container .right h3 {
  margin: 20px 0;
}
.about-container .right p {
  text-align: justify;
  line-height: 24px;
  font-size: 12px;
}

/*Hero*/
.hero {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #F9F3F3;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  background: url("../../img/d-line.png");
  background-position: 500px 360px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.hero::after {
  content: "";
  position: absolute;
  background: url("../../img/d-line.png");
  background-position: 400px -50px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.hero-container {
  width: 1300px;
  padding: 160px 0 300px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  z-index: 5;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .hero-container {
    padding: 170px 10px 300px 10px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .hero-container {
    padding: 100px 20px 300px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-container .left {
  position: relative;
}
.hero-container .left img.hero-logo {
  position: absolute;
  width: 70%;
  opacity: 0.05;
  top: -80px;
  right: -40px;
}
@media screen and (max-width: 480px) {
  .hero-container .left {
    order: 2;
  }
}
.hero-container .left a {
  text-decoration: none;
  color: #fff;
}
.hero-container .left .button-heading {
  display: flex;
  background-color: #252540;
  padding: 0px;
  border-radius: 25px;
  width: 316px;
  font-size: 12px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .hero-container .left .button-heading {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .hero-container .left .button-heading {
    width: 83%;
    font-size: 10px;
    margin: 0 auto;
  }
}
.hero-container .left .button-heading div {
  border-radius: 25px;
  padding: 10px 20px;
}
@media screen and (max-width: 480px) {
  .hero-container .left .button-heading div {
    padding: 10px 20px;
  }
}
.hero-container .left .button-heading .launch {
  background-color: #fff;
  color: #ffffff;
}
.hero-container .left .button-heading .token {
  background-color: transparent;
  color: white;
}
.hero-container .left h1 {
  font-size: 50px;
  margin: 40px 0 20px 0;
}
@media screen and (max-width: 480px) {
  .hero-container .left h1 {
    font-size: 25px;
  }
}
.hero-container .left p {
  font-family: "Avenir LT Pro";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 50px;
  line-height: 36px;
}
@media screen and (max-width: 480px) {
  .hero-container .left p {
    text-align: justify;
  }
}
.hero-container .left .button-group {
  display: flex;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .hero-container .left .button-group {
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .hero-container .left .button-group {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hero-container .left .button-group div {
  border-radius: 25px;
  margin-right: 25px;
  width: 160px;
  height: 49px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}
@media screen and (max-width: 480px) {
  .hero-container .left .button-group div {
    width: 150px;
    margin-right: 0px;
  }
}
.hero-container .left .button-group .buy {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
}
@media screen and (max-width: 480px) {
  .hero-container .left .button-group .buy {
    margin: 5px;
    font-size: 12px;
  }
}
.hero-container .left .button-group .staking {
  background: #fff;
  width: 234px;
  color: #000;
  background-clip: padding-box;
  /* !importanté */
  border: 3px solid transparent;
  /* !importanté */
  position: relative;
}
@media screen and (max-width: 480px) {
  .hero-container .left .button-group .staking {
    margin-top: 10px;
    font-size: 13px;
  }
}
.hero-container .left .button-group .staking::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
}
.hero-container .right {
  text-align: right;
}
@media screen and (max-width: 480px) {
  .hero-container .right {
    text-align: center;
    order: 1;
  }
}
.hero-container .right img {
  transition: all ease-in-out 0.2s;
  -webkit-animation: rotation 6s infinite linear;
          animation: rotation 6s infinite linear;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .hero-container .right {
    text-align: center;
  }
  .hero-container .right img {
    margin-top: 60px;
    width: 60% !important;
  }
}
@media screen and (max-width: 480px) {
  .hero-container .right {
    padding-top: 50px;
  }
  .hero-container .right img {
    width: 60%;
  }
}
.hero-container .right img {
  width: 500px;
}
@media screen and (max-width: 480px) {
  .hero-container .right img {
    display: none;
    width: 40%;
  }
}

@-webkit-keyframes rotation {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes rotation {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0);
  }
}
/*Token Details*/
.token-details {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.token-details::before {
  content: "";
  position: absolute;
  background: url("../../img/d.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.token-details-container {
  width: 1300px;
  padding: 20px 20px;
  display: flex;
  text-align: center;
  align-items: center;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .token-details-container {
    padding: 30px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .token-details-container {
    padding: 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.token-details-container .left {
  padding-right: 100px;
  font-size: 14px;
}
.token-details-container .left h1 {
  margin-bottom: 20px;
  font-size: 30px;
}
.token-details-container .left p {
  line-height: 30px;
}
@media screen and (max-width: 480px) {
  .token-details-container .left p {
    line-height: 25px;
  }
}
@media screen and (max-width: 480px) {
  .token-details-container .left {
    padding: 0px;
  }
}
.token-details-container .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
}
@media screen and (max-width: 480px) {
  .token-details-container .right {
    padding-top: 50px;
  }
}
.token-details-container .right .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  grid-template-columns: 50px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  height: 150px;
  width: 140px;
  transition: all 0.6 ease;
}
@media screen and (max-width: 480px) {
  .token-details-container .right .icon-box {
    width: 30%;
    height: 140px;
  }
}
.token-details-container .right .haze-crypto, .token-details-container .right .coin-gecho {
  position: relative;
}
.token-details-container .right .haze-crypto::before, .token-details-container .right .coin-gecho::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: 0 -3 -3 2;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
}
.token-details-container .right .haze-crypto:hover, .token-details-container .right .coin-gecho:hover {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%) !important;
}
.token-details-container .right .coin-market {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  position: relative;
}
.token-details-container .right .coin-market:hover {
  background: #ffffff;
}
.token-details-container .right .coin-market:hover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: 0 -3 -3 2;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
}

/*Staking*/
/*Tokenomics*/
.tokenomics {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #FAF8F8;
}
.tokenomics-container {
  width: 1300px;
  padding: 80px 0 100px 0;
  align-items: center;
  z-index: 5;
  text-align: center;
  overflow-x: hidden;
}
@media screen and (max-width: 480px) {
  .tokenomics-container {
    padding: 60px 0 60px 0;
  }
}
.tokenomics-container .top p {
  margin: 50px;
}
.tokenomics-container .bottom {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(20%, -webkit-max-content));
  grid-template-columns: repeat(auto-fit, minmax(20%, max-content));
}
@media (min-width: 481px) and (max-width: 1024px) {
  .tokenomics-container .bottom {
    grid-template-columns: repeat(auto-fit, minmax(40%, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(40%, max-content));
    padding: 15px;
  }
}
@media screen and (max-width: 480px) {
  .tokenomics-container .bottom {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content));
    row-gap: 20px;
    padding: 15px;
  }
}
.tokenomics-container .bottom .nomics {
  background: #FFFFFF;
  box-shadow: 0px 10.56px 29.04px rgba(181, 181, 181, 0.15);
  border-radius: 7.92px;
  height: 220px;
  padding: 20px;
  text-align: left;
  transition: all ease 0.6s;
}
.tokenomics-container .bottom .nomics:hover {
  background-color: #FFA953;
}
.tokenomics-container .bottom .nomics:hover p {
  color: #FFFFFF;
}
.tokenomics-container .bottom .nomics:hover h3 {
  color: #ffffff;
  font-size: 30px;
}
.tokenomics-container .bottom .nomics p {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

/*Roadmap*/
.roadmap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}
.roadmap-container {
  width: 1000px;
  padding: 80px 50px 100px 50px;
  align-items: center;
  z-index: 5;
  text-align: center;
  overflow-x: hidden;
}
@media screen and (max-width: 480px) {
  .roadmap-container {
    padding: 60px 0 60px 0;
  }
}
.roadmap-container .top h1 {
  margin: 50px;
}
.roadmap-container .bottom {
  display: flex;
  flex-direction: column;
}
.roadmap-container .bottom .map {
  display: flex;
}
.roadmap-container .bottom .map:nth-child(odd) {
  justify-content: flex-start;
}
.roadmap-container .bottom .map:nth-child(even) {
  justify-content: flex-end;
}
.roadmap-container .bottom .map .roadmap-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .roadmap-container .bottom .map .roadmap-line {
    display: none;
  }
}
.roadmap-container .bottom .map .one {
  padding: 25px;
  background-color: #FFD7AF;
  border-radius: 8px;
  position: relative;
  width: 350px;
  height: 200px;
}
.roadmap-container .bottom .map .one h3 {
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
}
.roadmap-container .bottom .map .one ul li {
  list-style-type: square;
  text-align: left;
  font-size: 13px;
  line-height: 20px;
  margin-left: 15px;
}
.roadmap-container .bottom .map .one img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
}
.roadmap-container .bottom .map .two {
  padding: 25px;
  background-color: #FFD7AF;
  border-radius: 8px;
  position: relative;
  width: 350px;
  height: 200px;
}
.roadmap-container .bottom .map .two h3 {
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
}
.roadmap-container .bottom .map .two ul li {
  list-style-type: square;
  text-align: left;
  font-size: 13px;
  line-height: 20px;
  margin-left: 15px;
}
.roadmap-container .bottom .map .two img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
}
.roadmap-container .bottom .map .three {
  padding: 25px;
  background-color: #FFD7AF;
  border-radius: 8px;
  position: relative;
  width: 350px;
  height: 200px;
}
.roadmap-container .bottom .map .three h3 {
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
}
.roadmap-container .bottom .map .three ul li {
  list-style-type: square;
  text-align: left;
  font-size: 13px;
  line-height: 20px;
  margin-left: 15px;
}
.roadmap-container .bottom .map .three img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
}
.roadmap-container .bottom .map .four {
  padding: 25px;
  background-color: #FFD7AF;
  border-radius: 8px;
  position: relative;
  width: 350px;
  height: 200px;
}
.roadmap-container .bottom .map .four h3 {
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
}
.roadmap-container .bottom .map .four ul li {
  list-style-type: square;
  text-align: left;
  font-size: 13px;
  line-height: 20px;
  margin-left: 15px;
}
.roadmap-container .bottom .map .four img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .roadmap-container .bottom {
    grid-template-columns: repeat(auto-fit, minmax(40%, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(40%, max-content));
    padding: 15px;
  }
}
@media screen and (max-width: 480px) {
  .roadmap-container .bottom {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content));
    row-gap: 20px;
    padding: 15px;
  }
}

/*Footer*/
.footer {
  background-color: #0D0D2B;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-container {
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .footer-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
  }
}
.footer-container .action-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -20px;
  flex-wrap: wrap;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer-container .action-buttons {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .footer-container .action-buttons {
    padding: 10px;
    flex-direction: column;
  }
}
.footer-container .action-buttons a {
  color: #fff;
  text-decoration: none;
}
.footer-container .action-buttons a div {
  border-radius: 25px;
  padding: 13px;
  transition: all 0.5s ease;
}
.footer-container .action-buttons a div:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 480px) {
  .footer-container .action-buttons a div {
    width: 155px;
    margin-bottom: 15px;
  }
}
.footer-container .action-buttons a .holder {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  padding: 12px;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .footer-container .action-buttons a .holder {
    text-align: center;
  }
}
.footer-container .action-buttons a .liquidity, .footer-container .action-buttons a .cointelegraph {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  background-clip: padding-box;
  /* !importanté */
  border: 3px solid transparent;
  /* !importanté */
  border-radius: 25px;
  position: relative;
  padding: 2px;
  height: 45px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-container .action-buttons a .liquidity .title, .footer-container .action-buttons a .cointelegraph .title {
  background: #ffffff;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 12px;
}
.footer-container .description {
  font-size: 14px;
  text-align: center;
  font-weight: 100;
  color: #fff;
}
.footer-container .description P {
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer-container .description P:first-child {
  width: 70%;
  margin: 50px auto;
}
@media screen and (max-width: 480px) {
  .footer-container .description P:first-child {
    width: 90%;
  }
}
.footer-container .socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .footer-container .socials {
    width: 95%;
  }
}
.footer-container .socials img {
  width: 35px;
  transition: all 0.5s ease;
}
.footer-container .socials img:hover {
  transform: translateY(-10px);
}
.footer-container .partners {
  display: flex;
  margin-top: 70px;
  justify-content: space-between;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .footer-container .partners {
    width: 95%;
  }
}
.footer-container .partners a {
  color: #fff;
  text-decoration: none;
}
.footer-container .partners a:hover {
  color: #F0B90B;
}
.footer-container .partners a div {
  margin-top: 50px;
  font-weight: 100;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .footer-container .partners a div {
    font-size: 12px;
  }
}
.footer-container .copyright {
  text-align: center;
  margin-top: 50px;
  font-size: 11px;
  color: #8095A9;
  line-height: 25PX;
}
.footer-container .copyright a {
  color: #efb41f;
  text-decoration: none;
}
.footer-container .copyright a:hover {
  color: #F0B90B;
}

/*FOR STAKING DAPP*/
.stake-house {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #F9F3F3;
  overflow: hidden;
}
.stake-house:before {
  content: "";
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at top right, rgba(23, 33, 94, 0.9) 0, #f2b04f 25%);
  position: fixed;
}
.stake-house-container {
  width: 430px;
  padding: 20px;
  z-index: 9;
  align-items: center;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .stake-house-container {
    padding: 170px 10px 300px 10px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .stake-house-container {
    padding: 40px 20px;
    width: 99%;
    text-align: center;
  }
}
.stake-house-container .connect-disconnect {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  width: 160px;
  position: fixed;
  right: 40px;
  top: 30px;
}
@media screen and (max-width: 480px) {
  .stake-house-container .connect-disconnect {
    position: relative;
    right: 0px;
    top: 0px;
    width: 90%;
    font-size: 20px;
    margin: 40px auto;
  }
}
.stake-house-container .connect-disconnect.active {
  box-shadow: rgba(0, 0, 0, 0.59) 6px 6px 20px 6px;
  color: rgb(23, 33, 94);
  background-color: rgb(244, 181, 45);
}
.stake-house-container .connect-disconnect.active.active:hover {
  background-color: rgb(170, 126, 31);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}
.stake-house-container .connect-disconnect:hover {
  cursor: pointer;
}
.stake-house-container .intro {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
.stake-house-container .intro img {
  width: 100px;
  margin: 10px auto;
}
@media screen and (max-width: 480px) {
  .stake-house-container .intro img {
    margin: -30px auto;
  }
}
.stake-house-container .intro h2 {
  margin: 24px 0px 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgb(23, 33, 94);
  text-align: center;
}
.stake-house-container .stake {
  color: rgb(23, 33, 94);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.59) 6px 6px 20px 6px;
  border-radius: 20px;
  background: rgb(251, 241, 225);
  margin: 24px 0;
  padding: 12px 24px;
}
.stake-house-container .stake-stat {
  display: flex;
  flex-direction: column;
}
.stake-house-container .stake-stat .item {
  justify-content: space-between;
  display: flex;
  padding: 15px 0px;
}
.stake-house-container .stake-stat .item .property {
  margin: 0px;
  font-size: 20px;
  font-family: Montserrat;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(23, 33, 94);
}
.stake-house-container .stake-stat .item .value {
  margin: 0px;
  font-size: 24px;
  font-weight: 500;
  font-family: Montserrat;
  line-height: 1.334;
  color: rgb(23, 33, 94);
}
.stake-house-container .stake-value {
  font-size: 24px;
  font-weight: 500;
  text-align: right;
  border-radius: 0px;
  width: 100%;
  outline: none;
  position: relative;
}
.stake-house-container .stake-value input {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 12px 90px 12px 16px;
  text-align: right;
  border-radius: 0px;
  border: 1px solid rgb(85, 85, 85);
  background: white;
  width: 100%;
  outline: none;
  margin-top: 10px;
}
.stake-house-container .stake-value span {
  position: absolute;
  top: 18.5px;
  right: 20px;
  margin: 0px;
  font-family: Montserrat;
  line-height: 1.5;
  font-size: 24px;
  font-weight: 500;
  color: black;
}
.stake-house-container .stake-button {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
}
.stake-house-container .stake-button.active {
  background-color: rgb(16, 23, 65);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px;
}
.stake-house-container .stake-button:hover {
  cursor: pointer;
}
.stake-house-container .stake-rewards {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 30px;
  margin-top: 30px;
}
.stake-house-container .stake-rewards .property {
  margin: 0px;
  font-size: 20px;
  font-family: Montserrat;
  line-height: 1.5;
  color: rgb(23, 33, 94);
  font-weight: 600;
}
.stake-house-container .stake-rewards .value {
  margin: 0px;
  font-size: 24px;
  font-family: Montserrat;
  line-height: 1.334;
  color: rgb(23, 33, 94);
  font-weight: bolder;
  font-weight: 600;
}
.stake-house-container .stake-action-buttons {
  display: flex;
  justify-content: space-between;
}
.stake-house-container .stake-action-buttons div {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  width: 48%;
}
.stake-house-container .stake-action-buttons div.active {
  box-shadow: rgba(0, 0, 0, 0.59) 6px 6px 20px 6px;
  color: rgb(23, 33, 94);
  background-color: rgb(244, 181, 45);
}
.stake-house-container .stake-action-buttons div.active.active:hover {
  background-color: rgb(170, 126, 31);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}
.stake-house-container .stake-action-buttons div:hover {
  cursor: pointer;
}
.stake-house-container .nutrition {
  color: rgb(23, 33, 94);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.59) 6px 6px 20px 6px;
  border-radius: 20px;
  background: rgb(255, 252, 248);
  margin-bottom: 24px;
  padding: 15px;
}
.stake-house-container .nutrition h2 {
  margin: 0px;
  font-size: 24px;
  font-weight: 500;
  font-family: Montserrat;
  line-height: 1.334;
  color: rgb(23, 33, 94);
  border-bottom: 6px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.stake-house-container .nutrition-stat .item {
  justify-content: space-between;
  display: flex;
  padding: 5px 0px;
}
.stake-house-container .nutrition-stat .item .property {
  margin: 0px;
  font-size: 20px;
  font-family: Montserrat;
  font-weight: 300;
  line-height: 1.5;
  color: rgb(23, 33, 94);
}
.stake-house-container .nutrition-stat .item .value {
  margin: 0px;
  font-size: 20px;
  font-weight: 300;
  font-family: Montserrat;
  line-height: 1.334;
  color: rgb(23, 33, 94);
}
.stake-house-container .referral {
  color: rgb(23, 33, 94);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.59) 6px 6px 20px 6px;
  border-radius: 20px;
  background: rgb(251, 241, 225);
  padding: 20px 10px;
  text-align: center;
}
.stake-house-container .referral h2 {
  margin: 0px 0px 0.35em;
  font-size: 24px;
  font-weight: 500;
  font-family: Montserrat;
  line-height: 1.334;
  color: rgb(23, 33, 94);
  text-align: center;
}
.stake-house-container .referral-link {
  font-size: 10px;
  font-weight: 300;
  padding: 17px 12px;
  border-radius: 0px;
  border: 1px solid rgb(85, 85, 85);
  background: white;
  width: 100%;
  outline: none;
  color: rgb(23, 33, 94);
  margin: 15px 0;
  font-family: "Montserrat", sans-serif;
}
.stake-house-container .referral p {
  font-family: "Montserrat", sans-serif;
}
.stake-house-container .social-handles {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.stake-house-container .social-handles div {
  padding: 20px 10px;
}

/* DASHBOARD PARTIALS */
/*Header*/
.header {
  background-color: #F8F1F0;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 99;
  top: 0px;
}
.header-container {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .header-container {
    padding: 1px 9px;
  }
}
.header-container .left-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  align-items: center;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .left-header {
    grid-template-columns: 54% 79%;
  }
}
.header-container .left-header .nav {
  margin-left: 25px;
  width: 200px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .left-header .nav {
    margin-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .header-container .left-header .nav {
    display: none;
  }
}
.header-container .left-header .nav h3 {
  font-size: 13px;
  font-weight: 400;
}
.header-container .left-header .nav h3 span {
  font-weight: 200;
  font-family: "Avenir LT Pro";
  color: #8F9098;
}
.header-container .left-header .nav h4 {
  font-size: 17px;
  color: #252F40;
  margin-top: 10px;
  font-weight: 700;
}
.header-container .right-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  margin-right: 10px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-container .right-header {
    margin-right: 0px;
  }
}
@media screen and (max-width: 480px) {
  .header-container .right-header {
    margin-right: 0px;
    grid-gap: 0px;
  }
}
.header-container .right-header .signin-setting-notif {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .header-container .right-header .signin-setting-notif {
    display: none;
  }
}
.header-container .right-header .signin-setting-notif .settings-notif {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.header-container .right-header .signin-setting-notif .settings-notif .notif {
  position: relative;
}
.header-container .right-header .signin-setting-notif .settings-notif .notif span {
  font-size: 12px;
  background-color: red;
  border-radius: 100%;
  padding: 3px 8px;
  color: #fff;
  position: absolute;
  top: -14px;
  left: 16px;
}
.header-container .right-header .connect a {
  color: #fff;
  text-decoration: none;
}
.header-container .right-header .connect a div.button {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  padding: 10px;
  border-radius: 25px;
  width: 140px;
  text-align: center;
}
.header-container .right-header .connect a div.button:hover {
  background: linear-gradient(270deg, #F0B921 50%, #E57506 87.75%);
}
.header-container .right-header .hamburger {
  display: none;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .header-container .right-header .hamburger {
    display: block;
  }
}

/*Dashboard navigation/sidemenu */
/*NAVIGATIONS*/
@media screen and (max-width: 480px) {
  .mobile-hide {
    display: none !important;
  }
}

.mobile-show {
  display: none;
}
@media screen and (max-width: 480px) {
  .mobile-show {
    display: block;
  }
}

.web-show {
  display: block;
}
@media screen and (max-width: 480px) {
  .web-show {
    display: none;
  }
}

.navigation {
  position: fixed;
  top: 0;
  width: 18%;
  display: flex;
  justify-content: flex-start;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  .navigation {
    width: 100%;
    z-index: 9;
    bottom: 0px;
  }
}
.navigation .logo {
  padding: 12px 0 25px 14px;
}
.navigation-container {
  width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: 100vh;
  overflow: hidden;
  background: #F8F9FA;
  flex-direction: column;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .navigation-container {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .navigation-container {
    width: 100%;
    height: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}
.navigation-container div.navigations-mobile {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
@media (min-width: 1281px) {
  .navigation-container div.navigations-mobile {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .navigation-container div.navigations-mobile {
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 2000px) {
  .navigation-container div.navigations-mobile {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .navigation-container div.navigations-mobile {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .navigation-container div.navigations-mobile {
    align-items: center;
  }
}
.navigation-container div.navigations-mobile-item {
  cursor: pointer;
  font-family: "Avenir LT Pro";
  font-weight: 500;
}
@media screen and (max-width: 320px) {
  .navigation-container div.navigations-mobile-item {
    font-size: 13px;
  }
}
.navigation-container div.navigations-mobile-item:hover {
  color: #F0B90B;
  cursor: pointer;
}
.navigation-container div.navigations-mobile div:last-child, .navigation-container div.navigations-mobile div.home {
  text-align: center;
}
.navigation-container div.navigations-mobile div.home a, .navigation-container div.navigations-mobile div.stake a, .navigation-container div.navigations-mobile div.giveaway a, .navigation-container div.navigations-mobile div.follow a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #8095A9;
  text-decoration: none;
  font-size: 12px;
}
.navigation-container div.navigations-mobile div.home a svg, .navigation-container div.navigations-mobile div.stake a svg, .navigation-container div.navigations-mobile div.giveaway a svg, .navigation-container div.navigations-mobile div.follow a svg {
  margin-bottom: 8px;
}
.navigation-container div.navigations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
  align-items: center;
  row-gap: 0px;
  overflow-y: auto;
  height: 90vh;
  padding: 0px 20px;
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .navigation-container div.navigations {
    height: 60%;
  }
}
.navigation-container div.navigations span.close {
  display: none;
}
@media screen and (max-width: 480px) {
  .navigation-container div.navigations span.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: #ff623e;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .navigation-container div.navigations {
    display: none;
    height: 60%;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .navigation-container div.navigations {
    padding: 0px;
    overflow: hidden;
  }
}
.navigation-container div.navigations a {
  color: #8095A9;
  text-decoration: none;
}
.navigation-container div.navigations a:hover {
  color: #0c172a;
}
.navigation-container div.navigations div.support {
  padding: 10px;
  text-align: left;
  margin: 0 10px;
}
.navigation-container div.navigations div.support h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}
.navigation-container div.navigations div.support h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin: 15px 0;
}
.navigation-container div.navigations div.support .doc {
  border-radius: 10px;
  background: #67748E;
  text-align: center;
  padding: 10px;
  color: #fff;
}
.navigation-container div.navigations-item {
  cursor: pointer;
  font-family: "Avenir LT Pro";
  font-weight: 400;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.navigation-container div.navigations-item span.icon-bg {
  background: #fff;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.12), 0px 2px 4px -1px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 10px;
  margin-right: 5px;
  width: 36px;
  height: 34px;
}
.navigation-container div.navigations-item span.icon-bg.active {
  background: #002B53;
}
@media screen and (max-width: 480px) {
  .navigation-container div.navigations-item {
    padding: 5px;
    font-size: 19px;
  }
}
.navigation-container div.navigations-item:hover:not(.my-account) {
  color: #67748E;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  .navigation-container div.navigations-item:hover:not(.my-account) {
    background-color: transparent;
  }
}
.navigation-container div.navigations-item h4.my-account {
  color: rgba(177, 177, 177, 0.8);
}
@media screen and (max-width: 320px) {
  .navigation-container div.navigations-item {
    font-size: 17px;
  }
}
.navigation-container div.navigations-item:hover {
  color: #fff;
  cursor: pointer;
}
.navigation-container div.navigations .switcher {
  text-align: left;
  padding: 40px 0 40px 10px;
}
.navigation-container div.navigations .switcher img {
  transition: width 6s ease-in-out;
}
.navigation-container div.navigations div:not(:last-child).active {
  color: #F0B90B;
}
.navigation-container div.navigations .support {
  background: linear-gradient(135deg, #002B53 0%, #627594 100%);
  mix-blend-mode: normal;
  border-radius: 16px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .navigation-container div.navigations .support {
    display: none;
  }
}

/* Stake Dashboard Content*/
/* Private Sales Dashboard Content*/
/* COLOR PALLETE*/
/* Text*/
/* BG*/
/* COLOR PALLETE*/
/* Text*/
/* BG*/
/* Gradient Button*/
/*Widget Colors*/
.bg-fade-yellow {
  background-color: #E1CFA0;
}

.bg-light-navy {
  background-color: #002B53;
}

.text-grey {
  color: #8095A9;
}

.text-navy {
  color: #ffffff;
}

.text-white {
  color: #fff;
}

/* COLOR PALLETE*/
/* Text*/
/* BG*/
/* COLOR PALLETE*/
/* Text*/
/* BG*/
/* Gradient Button*/
/*Widget Colors*/
.bg-fade-yellow {
  background-color: #E1CFA0;
}

.bg-light-navy {
  background-color: #002B53;
}

.text-grey {
  color: #8095A9;
}

.text-navy {
  color: #ffffff;
}

.text-white {
  color: #fff;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
.ps-content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 90px;
  overflow: hidden;
  z-index: 9;
}
@media screen and (max-width: 480px) {
  .ps-content {
    margin-bottom: 0px;
  }
}
.ps-content-container {
  width: 100%;
}
.ps-content-container-wrapper {
  display: grid;
  padding: 60px 100px 50px 20%;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper {
    padding: 4px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper {
    padding: 60px 20px 50px 20%;
  }
}
@media (min-width: 1025px) and (max-width: 2000px) {
  .ps-content-container-wrapper {
    padding: 60px 20px 50px 20%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper {
    padding: 60px 20px 50px 20%;
  }
}
.ps-content-container-wrapper .widgets .row1 {
  display: grid;
  gap: 2%;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets .row1 {
    grid-template-columns: repeat(auto-fit, minmax(48%, -webkit-max-content)) !important;
    grid-template-columns: repeat(auto-fit, minmax(48%, max-content)) !important;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content)) !important;
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content)) !important;
  }
}
.ps-content-container-wrapper .widgets .row2 {
  display: grid;
  grid-gap: 2%;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets .row2 {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content)) !important;
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content)) !important;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row2 {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content)) !important;
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content)) !important;
  }
}
.ps-content-container-wrapper .widgets .row1, .ps-content-container-wrapper .widgets .row2 {
  display: grid;
  grid-template-columns: 38% 29% 29%;
  grid-gap: 2%;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1, .ps-content-container-wrapper .widgets .row2 {
    padding: 4px;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget, .ps-content-container-wrapper .widgets .row2 .widget {
  box-shadow: 0px 18.2554px 24.6448px rgba(0, 0, 0, 0.05);
  border-radius: 14.6044px;
}
.ps-content-container-wrapper .widgets .row1 .widget:not(.widget-3, .widget-5, .widget-6, .widget-4), .ps-content-container-wrapper .widgets .row2 .widget:not(.widget-3, .widget-5, .widget-6, .widget-4) {
  background: #ffffff;
}
.ps-content-container-wrapper .widgets .row1 .widget-1, .ps-content-container-wrapper .widgets .row2 .widget-1 {
  background: rgba(244, 181, 170, 0.12);
  padding: 20px;
  height: 220px;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-1, .ps-content-container-wrapper .widgets .row2 .widget-1 {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-1 h4, .ps-content-container-wrapper .widgets .row2 .widget-1 h4 {
  text-align: left;
  font-size: 15px;
  margin-bottom: 15px;
  color: #67748E;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-1 h4, .ps-content-container-wrapper .widgets .row2 .widget-1 h4 {
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  grid-gap: 20px;
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box div, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box div {
  padding: 8px;
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box .total-users, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box .total-users {
  background: rgba(244, 181, 170, 0.12);
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box .total-users h6, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box .total-users h6 {
  border-bottom: 1px solid #8095A9;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #CECECE;
  font-weight: 200;
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box .total-users h5, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box .total-users h5 {
  color: #252F40;
  font-weight: 800;
  font-family: "Avenir LT Pro" !important;
  font-size: 20px;
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box .total-deposit, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box .total-deposit {
  background: #FFFBF6;
  border-radius: 10px;
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box .total-deposit h6, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box .total-deposit h6 {
  border-bottom: 1px solid #8095A9;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #CECECE;
  font-weight: 200;
}
.ps-content-container-wrapper .widgets .row1 .widget-1 .icon-box .total-deposit h5, .ps-content-container-wrapper .widgets .row2 .widget-1 .icon-box .total-deposit h5 {
  color: #252F40;
  font-weight: 800;
  font-family: "Avenir LT Pro" !important;
}
.ps-content-container-wrapper .widgets .row1 .widget-2, .ps-content-container-wrapper .widgets .row2 .widget-2 {
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-2, .ps-content-container-wrapper .widgets .row2 .widget-2 {
    text-align: center;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-2 h5, .ps-content-container-wrapper .widgets .row2 .widget-2 h5 {
  font-size: 25px;
  color: #25396F;
}
.ps-content-container-wrapper .widgets .row1 .widget-2 h6, .ps-content-container-wrapper .widgets .row2 .widget-2 h6 {
  color: #67748E;
}
.ps-content-container-wrapper .widgets .row1 .widget-3, .ps-content-container-wrapper .widgets .row2 .widget-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 220px;
  background-image: url("../../img/info-card-2.png");
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px;
}
.ps-content-container-wrapper .widgets .row1 .widget-3 .token-sales h4, .ps-content-container-wrapper .widgets .row2 .widget-3 .token-sales h4 {
  color: #ffffff;
}
.ps-content-container-wrapper .widgets .row1 .widget-3 .token-sales .date-countdown #timer, .ps-content-container-wrapper .widgets .row2 .widget-3 .token-sales .date-countdown #timer {
  text-align: left;
  color: #fff;
  font-size: 35px;
  font-weight: "Anenir LT Pro 65";
  font-weight: 600;
  display: grid;
  grid-gap: 20px;
  padding-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-3 .token-sales .date-countdown #timer, .ps-content-container-wrapper .widgets .row2 .widget-3 .token-sales .date-countdown #timer {
    grid-gap: 5px;
  }
}
@media (max-width: 360px) {
  .ps-content-container-wrapper .widgets .row1 .widget-3 .token-sales .date-countdown #timer, .ps-content-container-wrapper .widgets .row2 .widget-3 .token-sales .date-countdown #timer {
    grid-gap: 0px !important;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-3 .token-sales .date-countdown #timer span, .ps-content-container-wrapper .widgets .row2 .widget-3 .token-sales .date-countdown #timer span {
  font-size: 15px;
  font-weight: "Anenir LT Pro" !important;
  font-weight: 200 !important;
  text-align: left;
}
.ps-content-container-wrapper .widgets .row1 .widget-4, .ps-content-container-wrapper .widgets .row2 .widget-4 {
  background: transparent;
  box-shadow: none;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets .row1 .widget-4, .ps-content-container-wrapper .widgets .row2 .widget-4 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-4, .ps-content-container-wrapper .widgets .row2 .widget-4 {
    margin: 20px 0;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form input, .ps-content-container-wrapper .widgets .row2 .widget-4 form input {
  background: #FFFFFF;
  box-shadow: 0px 26.2926px 35.4951px rgba(0, 0, 0, 0.05);
  border-radius: 10.2857px;
  border: 0px solid red;
  padding: 15px 20px;
  width: 100%;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form input:focus, .ps-content-container-wrapper .widgets .row2 .widget-4 form input:focus {
  border: #E57506;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .noti, .ps-content-container-wrapper .widgets .row2 .widget-4 form .noti {
  color: #67748E;
  font-size: 12px;
  margin: 10px 0 10px 20px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell {
  display: flex;
  gap: 10px;
  justify-content: space-around;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .stats, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .stats {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .stats .symbol, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .stats .symbol {
  padding-top: 15px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .stats .symbol i, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .stats .symbol i {
  color: #E57506;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .stats .bought .val, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .stats .bought .val {
  color: #25396F;
  font-weight: 900;
  font-size: 25px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .stats .bought .tex, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .stats .bought .tex {
  color: #67748E;
  font-size: 14px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .buy-ticket, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .buy-ticket {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  border-radius: 25px;
  padding: 13px;
  width: 180px;
  font-weight: 600;
  text-align: center;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .buy-ticket a, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .buy-ticket a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .buy .buy-ticket, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .buy .buy-ticket {
    width: 100%;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .stats, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .stats {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  justify-content: flex-end;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .stats .symbol, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .stats .symbol {
  padding-top: 15px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .stats .symbol i, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .stats .symbol i {
  color: #E57506;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .stats .bought .val, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .stats .bought .val {
  color: #25396F;
  font-weight: 900;
  font-size: 25px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .stats .bought .tex, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .stats .bought .tex {
  color: #67748E;
  font-size: 14px;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .buy-ticket, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .buy-ticket {
  background: linear-gradient(135deg, #A8B8D8 0%, #627594 100%);
  border-radius: 25px;
  padding: 13px;
  width: 180px;
  font-weight: 600;
  text-align: center;
}
.ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .buy-ticket a, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .buy-ticket a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-4 form .buysell .sell .buy-ticket, .ps-content-container-wrapper .widgets .row2 .widget-4 form .buysell .sell .buy-ticket {
    width: 100%;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-5, .ps-content-container-wrapper .widgets .row2 .widget-5 {
  /* grey grad */
  background: linear-gradient(250.02deg, #A8B8D8 -3.09%, #627594 50.88%);
  mix-blend-mode: normal;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ps-content-container-wrapper .widgets .row1 .widget-5 h6, .ps-content-container-wrapper .widgets .row2 .widget-5 h6 {
  font-size: 15px;
  color: #ffffff;
  margin: 5px 0;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-5, .ps-content-container-wrapper .widgets .row2 .widget-5 {
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets .row1 .widget-5, .ps-content-container-wrapper .widgets .row2 .widget-5 {
    text-align: center;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-6, .ps-content-container-wrapper .widgets .row2 .widget-6 {
  background: linear-gradient(250.02deg, #A8B8D8 -3.09%, #627594 50.88%);
  mix-blend-mode: normal;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-6, .ps-content-container-wrapper .widgets .row2 .widget-6 {
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets .row1 .widget-6, .ps-content-container-wrapper .widgets .row2 .widget-6 {
    text-align: center;
  }
}
.ps-content-container-wrapper .widgets .row1 .widget-6 h6, .ps-content-container-wrapper .widgets .row2 .widget-6 h6 {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}
.ps-content-container-wrapper .widgets .row1 .widget-6 .documentation, .ps-content-container-wrapper .widgets .row2 .widget-6 .documentation {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  width: 180px;
  font-weight: 600;
  text-align: center;
}
.ps-content-container-wrapper .widgets .row1 .widget-6 .documentation a, .ps-content-container-wrapper .widgets .row2 .widget-6 .documentation a {
  color: #25396F;
  text-decoration: none;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets .row1 .widget-6 .documentation, .ps-content-container-wrapper .widgets .row2 .widget-6 .documentation {
    width: 100%;
    margin: 5px;
    padding: 16px;
  }
}
.ps-content-container-wrapper .widgets-group3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets-group3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 {
    grid-template-columns: 1fr;
    grid-row-gap: 20px !important;
    grid-column-gap: 0px;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget {
  background: #002B53;
  box-shadow: 0px 18.2554px 24.6448px rgba(0, 0, 0, 0.05);
  border-radius: 14.6044px;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 {
  height: 250px;
  grid-column: 1/span 1;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets-group3 .widget-5 {
    grid-row: 4/span 2;
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-5 {
    grid-column: 1/span 1;
    height: auto;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount {
  padding: 18px;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount h5.title {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div .design {
  width: 60%;
  height: 6px;
  background-color: #8095A9;
  border-radius: 25px;
  text-align: center;
  margin-top: 15px;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div .design div {
  background-color: #ffffff;
  border-radius: 25px;
  width: 50%;
  height: 6px;
  margin: 0 auto;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div .claim-btn {
  margin: 25px 0 0 0px;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div .claim-btn h6 {
  background: #E1CFA0;
  border-radius: 22.8193px;
  width: 70%;
  height: 38px;
  color: #002B53;
  text-align: center;
  font-size: 14px;
  padding: 13px;
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div h2 {
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div h2 {
    font-size: 20px;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div div.icon-box {
  display: flex;
  justify-content: flex-start;
  grid-gap: 10px;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div div.icon-box {
    flex-direction: column;
    justify-content: center !important;
    grid-gap: 0px;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div div.icon-box img {
  margin-left: -4px;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div div.icon-box img {
    width: 50px;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div div.icon-box h5 {
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-5 .claim-amount .claim div div.icon-box h5 {
    margin: 0 0 10px 0;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-6 {
  grid-row: 1/span 3;
  padding: 15px;
  height: 490px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets-group3 .widget-6 {
    grid-row: 1/span 3;
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-6 {
    grid-column: 1/span 3;
    height: auto;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 70px;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .total-target {
  width: 100%;
  text-align: center;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .total-target h6 {
  color: #fff;
  font-weight: 200;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .total-target h4 {
  color: #fff;
  font-weight: 500;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated {
  width: 100%;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap {
  position: relative;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 5px;
  padding: 0;
  margin-top: 21px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 5px;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap .top-min, .ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap .bottom-min {
  position: absolute;
  left: 0;
  font-size: 12px;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap .top-max, .ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap .bottom-max {
  position: absolute;
  right: 0;
  font-size: 12px;
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap .bubbled {
  display: flex;
  background-color: #fff;
  border-radius: 6px;
  padding: 2px 11px;
  position: absolute;
  font-size: 12px;
  left: 50%;
  top: 49px;
  transform: translateX(-50%);
}
.ps-content-container-wrapper .widgets-group3 .widget-6 .sales-status .bottom .accumulated form .range-wrap .bubbled::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 {
  height: 220px;
  grid-row: 2/span 2;
  grid-column: 1/span 1;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .widgets-group3 .widget-7 {
    grid-row: 6/span 2;
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .widgets-group3 .widget-7 {
    grid-column: 1/span 1;
    grid-row: 4;
    height: auto;
  }
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount {
  padding: 20px;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form label {
  color: #8095A9;
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form input {
  background: #3c5e7e;
  border-radius: 18.2554px;
  padding: 9px;
  margin-bottom: 15px;
  width: 100%;
  border: 0;
  color: #fff;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form ::-moz-placeholder {
  color: #8095A9;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form :-ms-input-placeholder {
  color: #8095A9;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form ::placeholder {
  color: #8095A9;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form .buy-btn {
  margin: 5px 0 0 0px;
}
.ps-content-container-wrapper .widgets-group3 .widget-7 .amount form .buy-btn h6 {
  background: #E1CFA0;
  border-radius: 22.8193px;
  width: 35%;
  height: 38px;
  color: #002B53;
  text-align: center;
  font-size: 14px;
  padding: 13px;
}
.ps-content-container-wrapper .referral {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  border-radius: 25px;
  padding: 13px;
  width: 38%;
  font-weight: 600;
  text-align: center;
}
.ps-content-container-wrapper .referral a {
  color: #fff;
  text-decoration: none;
}
.ps-content-container-wrapper .referral:hover {
  background: linear-gradient(270deg, #F0B921 50%, #E57506 87.75%);
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .referral {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .referral {
    width: 85%;
    margin: 0 auto;
  }
}
.ps-content-container-wrapper .list-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, -webkit-max-content));
  grid-template-columns: repeat(auto-fit, minmax(48%, max-content));
  gap: 2%;
  margin-top: 20px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .ps-content-container-wrapper .list-view {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content));
  }
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view {
    grid-template-columns: repeat(auto-fit, minmax(100%, -webkit-max-content));
    grid-template-columns: repeat(auto-fit, minmax(100%, max-content));
  }
}
.ps-content-container-wrapper .list-view .dashboard {
  padding: 14px;
  border-radius: 14.6044px;
  box-shadow: 0px 18.2554px 24.6448px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .dashboard {
    padding: 5px;
  }
}
.ps-content-container-wrapper .list-view .dashboard h4 {
  color: #25396F;
  font-weight: 700;
  margin: 15px 10;
  font-weight: 900;
}
.ps-content-container-wrapper .list-view .dashboard table {
  text-align: left;
  width: 100%;
  border-spacing: 10px;
  border-collapse: separate;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .dashboard table {
    width: 100%;
    border-spacing: 2px;
  }
}
.ps-content-container-wrapper .list-view .dashboard table tbody tr:hover {
  box-shadow: 0px 5px 9px rgba(100, 160, 203, 0.1);
  border-radius: 5px;
  cursor: pointer;
}
.ps-content-container-wrapper .list-view .dashboard table tbody td {
  padding: 5px;
}
.ps-content-container-wrapper .list-view .dashboard table tr th {
  color: #95ABDF;
  font-size: 14px;
  font-weight: 400;
}
.ps-content-container-wrapper .list-view .dashboard table tr td {
  color: #4C6FB7;
  font-size: 13px;
}
.ps-content-container-wrapper .list-view .dashboard table tr td i {
  padding-right: 2px;
  font-size: 10px;
}
.ps-content-container-wrapper .list-view .dashboard table tr td.pending {
  color: #E57506;
}
.ps-content-container-wrapper .list-view .dashboard table tr td.draft {
  color: #000000 !important;
}
.ps-content-container-wrapper .list-view .dashboard table tr td.success {
  color: #5FD694;
}
.ps-content-container-wrapper .list-view .dashboard table tr td .button {
  background: linear-gradient(90deg, #E57506 27.75%, #F0B921 100%);
  color: #ffffff;
  padding: 8px 20px;
  font-size: 13px;
  text-align: center;
  border-radius: 25px;
  width: 100%;
}
.ps-content-container-wrapper .list-view .dashboard table tr td .button:hover {
  background: linear-gradient(270deg, #F0B921 50%, #E57506 87.75%);
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .dashboard table tr td .button {
    padding: 9px 9px;
  }
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 5px 0;
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticket-holder {
  background-color: #fff;
  padding: 25px;
  border-radius: 14.6044px;
  display: flex;
  row-gap: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .ticket-holder-buyer .ticket-holder {
    padding: 10px;
  }
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticket-holder .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticket-holder .text h4 {
  color: #67748E;
  font-size: 15px;
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticket-holder .text p {
  color: #252F40;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .ticket-holder-buyer .ticket-holder .text p {
    font-size: 12px;
  }
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer {
  background-color: #fff;
  padding: 25px;
  border-radius: 14.6044px;
  color: #67748E;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer {
    padding: 10px;
  }
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer h4 {
  color: #67748E;
  font-size: 15px;
  margin-bottom: 20px;
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer .buyer {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer .buyer:hover {
  border: 1px solid #EBEEF6;
  box-shadow: 0px 5px 9px rgba(100, 160, 203, 0.1);
}
.ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer .buyer .val {
  color: #E57506;
}
@media screen and (max-width: 480px) {
  .ps-content-container-wrapper .list-view .ticket-holder-buyer .ticker-buyer .buyer .val {
    font-size: 12px;
  }
}

/* Footer Section */
.footer-dashboard {
  position: relative;
  color: #8095A9;
  background-color: #F8F9FA;
  width: 100%;
  display: flex;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .footer-dashboard {
    margin-top: 30px;
  }
}
.footer-dashboard-container {
  width: 1140px;
  padding: 20px;
  text-align: center;
  font-size: 12px;
}
.footer-dashboard-container p a {
  color: #8095A9;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .footer-dashboard-container {
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */