/*===FONTS===*/

@font-face {
  font-family: 'calibri-regular';
  src: url('/market/fonts/calibri-regular.eot');
  src:
    local('☺'),
    url('/market/fonts/calibri-regular.woff') format('woff'),
    url('/market/fonts/calibri-regular.ttf') format('truetype'),
    url('/market/fonts/calibri-regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Calibri-Bold';
  src: url('Calibri-Bold.eot');
  src:
    local('Calibri Bold'),
    local('Calibri-Bold'),
    url('/market/fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'),
    url('/market/fonts/Calibri-Bold.woff2') format('woff2'),
    url('/market/fonts/Calibri-Bold.woff') format('woff'),
    url('/market/fonts/Calibri-Bold.ttf') format('truetype'),
    url('/market/fonts/Calibri-Bold.svg#Calibri-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura-Bold';
  src: url('/market/fonts/Futura-Bold.eot');
  src:
    local('☺'),
    url('/market/fonts/Futura-Bold.woff') format('woff'),
    url('/market/fonts/Futura-Bold.ttf') format('truetype'),
    url('/market/fonts/Futura-Bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AVENGEANCE';
  src: url('/market/fonts/AVENGEANCE MIGHTIEST AVENGER.eot');
  src:
    local('☺'),
    url('/market/fonts/AVENGEANCE MIGHTIEST AVENGER.woff') format('woff'),
    url('/market/fonts/AVENGEANCE MIGHTIEST AVENGER.ttf') format('truetype'),
    url('/market/fonts/AVENGEANCE MIGHTIEST AVENGER.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*===GENERAL HTML===*/

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  touch-action: pan-right pinch-zoom;
}
/* Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}
/* Edge, Firefox */
html,
body {
  background: rgba(34, 40, 54, 1);
  margin: 0;
  padding: 0;
  font-family: 'calibri-regular';
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*tables*/

table {
  border-collapse: collapse;
  width: 100%;
}
td,
th {
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  padding: 8px;
}
th {
  background-color: #7800fd;
  text-transform: uppercase;
  font-family: 'Futura-Bold' !important;
}
tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}
tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
table td h3 {
  margin: 0;
}

/*form inputs*/

input[type='text'],
input[type='number'],
input[type='phone'],
input[type='password'],
input[type='tel'],
input[type='email'] {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  border: none;
  padding: 10px;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12pt;
}
/* The container */
.input-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16pt;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}
.input-container b {
  font-family: 'AVENGEANCE';
}

/* Hide the browser's default checkbox */
.input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark,
.checkradio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.checkradio {
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.input-container:hover input ~ .checkmark,
.input-container:hover input ~ .checkradio {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* When the checkbox is checked, add a blue background */
.input-container input:checked ~ .checkmark,
.input-container input:checked ~ .checkradio {
  background-color: #7800ff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after,
.checkradio:after {
  content: '';
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.input-container input:checked ~ .checkmark:after,
.input-container input:checked ~ .checkradio:after {
  display: block;
}

/* Style the checkmark/indicator */
.input-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Style the indicator (dot/circle) */
.input-container .checkradio:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.select-box {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.select-box select {
  background-color: transparent;
  color: #ffffff;
  width: 100%;
  height: 100%;
  border: none;
  top: 0;
  bottom: 0;
  right: 40px;
  left: 0;
  padding: 10px;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
}
.select-box::after {
  font-family: 'FontAwesome';
  content: '\f078';
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-align: center;
  line-height: 37px;
}

/*===TEXT===*/

.copy-text {
  font-size: 12pt !important;
}
.underline {
  text-decoration: underline;
}

/*===STRUCTURE===*/

.main-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: 0.5s;
}
.content-wrapper {
  color: #ffffff;
  width: 100%;
  height: auto;
  position: absolute;
  top: 110px;
  bottom: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

/*colums*/

[class*='col-'] {
  padding: 15px;
  position: relative;
  float: left;
}
[class*='col-'] img {
  width: 100%;
  height: auto;
  position: relative;
}
.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}
.row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.row::after {
  content: '';
  width: 100%;
  display: block;
  clear: both;
}

/*header*/

header {
  background: rgba(34, 40, 54, 1);
  width: 100%;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 2px solid #7800ff;
  z-index: 88;
  /* z-index: 100; */
}
.logo {
  display: flex;
  width: 25%;
  height: 100%;
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: auto;
  height: 80%;
}
.logo:hover {
  transform: scale(1.02);
  cursor: pointer;
  transition: 0.3s;
}

/*main menu*/

nav.main-nav {
  display: flex;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 25%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
}
nav.main-nav a,
.create-page-nav a {
  min-width: 80px;
  height: 80px;
  font-family: 'AVENGEANCE';
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  margin-right: 10px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}
nav.main-nav a:hover,
.create-page-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
nav.main-nav a.active,
.create-page-nav a.active {
  background-color: #7800ff;
}
nav.main-nav a i,
nav.main-nav a span,
.create-page-nav a i,
.create-page-nav a span {
  display: block;
  width: 100%;
  height: 50%;
  font-size: 20pt;
  margin-top: 3px;
  margin-bottom: 10px;
}
nav.main-nav a span img,
.create-page-nav a span img {
  width: auto;
  height: 100%;
}
nav.main-nav a:nth-child(1) {
  margin-right: 50px;
}
.animated-icon {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.forge-icon {
  animation: forge-icon 2s infinite linear;
}
@keyframes forge-icon {
  0% {
    background-image: url('/market/images/icons/forge.png');
  }
  25% {
    background-image: url('/market/images/icons/forge2.png');
  }
  50% {
    background-image: url('/market/images/icons/forge.png');
  }
  75% {
    background-image: url('/market/images/icons/forge2.png');
  }
  100% {
    background-image: url('/market/images/icons/forge.png');
  }
}
.portals-icon {
  animation: portals-icon 3s infinite linear;
}
@keyframes portals-icon {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.heroes-icon {
  animation: heroes-icon 1s infinite linear;
}
@keyframes heroes-icon {
  0% {
    background-image: url('/market/images/icons/hero.png');
  }
  25% {
    background-image: url('/market/images/icons/hero2.png');
  }
  50% {
    background-image: url('/market/images/icons/hero.png');
  }
  75% {
    background-image: url('/market/images/icons/hero2.png');
  }
  100% {
    background-image: url('/market/images/icons/hero.png');
  }
}
.grey-out {
  cursor: not-allowed !important;
  opacity: 0.2;
}

/*main menu footer*/

nav#main-nav-footer {
  background-color: #161a24;
  width: 100%;
  height: 80px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  border-top: 2px solid #7800ff;
}
.main-nav-footer-scroll {
  display: flex;
  margin-top: 10px;
  padding: 0 10px;
  width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
nav#main-nav-footer a {
  min-width: 70px;
}
nav#main-navIn-footer {
  background-color: #161a24;
  width: 100%;
  height: 80px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  border-top: 2px solid #7800ff;
}
nav#main-nav-footer,
nav#main-navIn-footer {
  display: none !important;
}
.mnf-scroll-indicator {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#161a24+0,161a24+100&0+0,1+44 */
  background: -moz-linear-gradient(
    left,
    rgba(22, 26, 36, 0) 0%,
    rgba(22, 26, 36, 1) 44%,
    rgba(22, 26, 36, 1) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(22, 26, 36, 0) 0%,
    rgba(22, 26, 36, 1) 44%,
    rgba(22, 26, 36, 1) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(22, 26, 36, 0) 0%,
    rgba(22, 26, 36, 1) 44%,
    rgba(22, 26, 36, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  display: flex;
  color: #ffffff;
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.mnf-scroll-indicator i {
  animation: nav-arrow-scroll-indicator 2s linear infinite;
}
@keyframes nav-arrow-scroll-indicator {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  25% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(50%);
    opacity: 1;
  }
  75% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}

/*wallet menu*/

nav.wallet-nav {
  display: flex;
  width: 22%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  padding: 0 30px 0 0;
}
nav.wallet-nav a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  line-height: 53px;
  font-family: 'AVENGEANCE';
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  margin: 0 0 0 20px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
nav.wallet-nav a:hover,
nav.wallet-nav a:active {
  background-color: #7800ff;
}
nav.wallet-nav a.button-user {
  width: auto;
  line-height: 55px;
  font-family: 'AVENGEANCE';
  border-radius: 50px;
  padding: 0 25px 0 55px;
}
nav.wallet-nav a i {
  font-size: 20pt;
  line-height: inherit;
}
nav.wallet-nav a img {
  width: auto;
  height: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
span.addr-menu {
  margin: 0 0 0 10px;
}
nav.wallet-nav a.button-user .profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 5px;
  position: absolute;
  left: 0;
}
nav.wallet-nav a.button-user .profile-picture img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

/*user menu*/

.user-menu-button {
  position: relative;
}
.user-menu {
  font-family: 'calibri-regular';
  background-color: #161a24;
  min-width: 260px;
  color: #ffffff;
  display: none;
  position: absolute;
  right: 0;
  border-radius: 10px;
  padding: 10px;
  z-index: 5;
}
.user-menu-button .user-menu div {
  position: relative;
}
.user-menu-button .user-menu div .user-logout {
  background-color: rgba(255, 255, 255, 0.1);
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.user-menu-button .user-menu div .user-logout:hover,
.user-menu-button .user-menu div .user-logout:active {
  background-color: #7800ff;
}
.user-menu-button .user-menu div .user-logout i {
  margin: 0;
  font-size: 10pt;
}
.user-menu-button .user-menu div .user-logout i.logged-in {
  color: #ffffff;
}
.user-menu-button .user-menu p::after {
  height: 0;
  content: '';
  clear: both;
}
.user-menu-button .user-menu a,
.user-menu-button .user-menu span a {
  font-family: 'calibri-regular';
  background-color: transparent;
  width: 100%;
  height: auto;
  line-height: normal;
  padding: 10px;
  margin: 0;
  border-radius: 5px;
  text-align: left;
}
.user-menu-button .user-menu a i {
  font-size: 6pt;
  margin-right: 10px;
}
.user-menu-info {
  border-radius: 5px;
}
.user-menu-info-box {
  color: rgba(255, 255, 255, 0.6);
  padding: 10px;
}
.user-menu-info .user-menu-info-box .link,
.user-menu-info .user-menu-info-box .square-link {
  width: auto;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
  float: right;
  font-size: 10pt;
}
.user-menu-info .user-menu-info-box .link i {
  margin-right: 0;
}
.user-menu-info .user-menu-info-box .link:hover,
.user-menu-info .user-menu-info-box .link:active,
.user-menu-info .user-menu-info-box .square-link:hover,
.user-menu-info .user-menu-info-box .square-link:active {
  background-color: #7800ff;
}
.user-menu-info .user-menu-info-box .square-link {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 8pt;
  text-align: center;
  padding: 0;
}
.user-menu-info .user-menu-info-box .square-link i {
  font-size: 8pt;
}
.user-menu-info .user-menu-info-box p {
  font-family: 'Futura-Bold';
  font-size: 10pt;
  margin: 0;
  padding: 0 0 10px 0;
}
.user-menu-info .user-menu-info-box p span {
  font-family: 'calibri-regular';
  font-size: 12pt;
}
.user-menu-info .user-menu-info-box p span i {
  font-size: 8pt;
}
.user-menu-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.user-menu-button:hover .user-menu,
.user-menu-button:active .user-menu {
  display: block;
}
.logged-out {
  color: red;
}
.logged-in {
  color: green;
}
.logged-out-close {
  background-color: rgba(255, 255, 255, 0.1);
  float: right;
  font-size: 16px;
  cursor: pointer;
  display: none;
}
.logged-out-close {
  background-color: #7800ff;
}
.logged-out-close.active {
  display: block;
}

/*futured*/

.futured {
  background: url(/market/images/backgrounds/banner-bg-1.webp) repeat center;
  background-size: contain;
  width: 25%;
  height: 100%;
  overflow-y: scroll;
  border-right: 2px solid #000000;
}

/*content*/

.content {
  width: 75%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/*sortby nav*/

.sortby-nav {
  background-color: #161a24;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 2px solid #7800ff;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}
.sortby-nav-title {
  font-family: 'Futura-Bold';
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  padding: 9px 10px 5px 10px;
}
#sortby-nav-box {
  background-color: #161a24;
}
#sortby-nav-box a {
  color: #ffffff;
  text-decoration: none;
}
#sortby-nav-box::after {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  clear: both;
}
#sortby-nav-box .sortby-list {
  background-color: rgba(255, 255, 255, 0.1);
  height: 100%;
  float: left;
  position: relative;
}
#sortby-nav-box .sortby-list-title {
  background-color: #161a24;
  float: left;
  height: 100%;
  padding: 11px 10px 5px 10px;
}
#sortby-nav-box .sortby-list-button {
  float: left;
  height: 100%;
  display: block;
  padding: 11px 10px 5px 10px;
}
#sortby-nav-box .sortby-list-button i {
  font-size: 9pt;
}
#sortby-nav-box .sortby-list:hover {
  background-color: #7800ff;
  cursor: pointer;
}
#sortby-nav-box .sortby-list:hover .sortby-menu {
  display: block;
}
#sortby-nav-box .sortby-menu {
  background-color: #7800ff;
  color: #ffffff;
  width: 100%;
  min-width: 200px;
  position: absolute;
  top: 38px;
  right: 0;
  display: none;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#sortby-nav-box .sortby-menu a {
  color: #ffffff;
  width: 100%;
  text-decoration: none;
  text-align: left;
  border-radius: 0;
  padding: 5px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}
#sortby-nav-box .sortby-menu a i {
  display: block;
  font-size: 5pt;
  margin-right: 10px;
}
#sortby-nav-box .sortby-menu a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.count {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0 5px;
  margin-left: 10px;
  border-radius: 20px;
}

/*responsive sortby nav*/

#responsive-sortby-nav-box {
  background-color: #161a24;
  width: 100%;
  display: none;
  position: absolute;
  top: 38px;
}
#responsive-sortby-nav-box .sortby-list {
  width: 33.33%;
  padding: 10px;
  float: left;
}
#responsive-sortby-nav-box .sortby-list-title {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  margin-bottom: 5px;
  border-radius: 7px;
}
#responsive-sortby-nav-box .sortby-list-title span {
  display: block;
}
#responsive-sortby-nav-box .sortby-menu a {
  color: #ffffff;
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
}
#responsive-sortby-nav-box .sortby-menu a:hover,
.sortby-menu a:active {
  background-color: #7800ff;
}
#responsive-sortby-nav-box .sortby-menu a i {
  font-size: 6pt;
  margin-right: 5px;
}
.sortby-filter-button {
  background-color: rgba(255, 255, 255, 0.1);
  width: auto;
  height: 100%;
  line-height: 35px;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 0 15px;
  margin: 0;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  display: none;
}
.sortby-filter-button i {
  font-size: 12pt;
}
.sortby-filter-button:hover,
.sortby-filter-button:active {
  background-color: #7800ff;
}

/*content scroll*/

.content-scroll {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.section {
  width: 100%;
  height: auto;
  padding: 80px 40px;
}
.section-no-sortbymenu {
  width: 100%;
  height: auto;
  padding: 40px;
}

/*sidebar*/

.openmenu {
  display: none;
  padding: 3%;
}
.openmenu.abierto {
  display: block;
  padding: 3%;
}
.sidenav {
  background-color: #161a24;
  color: #ffffff;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  overflow: hidden;
  transition: 0.5s;
}
.sidebar-open {
  width: 12%;
  transition: 0.5s !important;
}
.sidebar-push {
  transform: translateX(-12%);
  transition: 0.5s !important;
}
.sidebar-header {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-footer {
  width: 100%;
  height: 80px;
  left: 0;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-header a,
.sidebar-footer a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-family: 'AVENGEANCE';
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
}
.sidebar-header a:hover,
.sidebar-footer a:hover {
  background-color: #7800ff;
}
.sidenav a img {
  width: auto;
  height: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.sidebar-content {
  width: 100%;
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 0;
  padding: 0 20px;
  overflow-y: scroll;
}
.sidebar-content a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 8px 10px 5px 10px;
  margin: 10px auto 0 auto;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.4s;
}
.sidebar-content a:hover,
.sidebar-content a:active {
  background-color: #7800ff;
}
.sidebar-content a span {
  display: block;
  font-size: 7pt;
}
.sidebar-sub-menu {
  background-color: rgba(255, 255, 255, 0.05);
}
.sidebar-sub-menu a:hover,
.sidebar-sub-menu a:active {
  background-color: rgba(255, 255, 255, 0.1);
}

/*cards*/

cards,
#forgeList {
  height: auto;
  display: grid;
  width: 100%;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 20px;
}
card {
  display: block;
  max-width: 13vw;
  float: left;
  position: relative;
}
.card-box {
  color: #ffffff;
  border: solid;
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  text-align: center;
  position: relative;
}
.card-bg {
  background: url(/market/images/backgrounds/bg-card-grey-light.jpg) repeat
    center #5f6d7e;
  position: relative;
  z-index: 1;
  border: 1px solid #161a24;
  background-size: 100% 100%;
  /*background: slategrey;
  background: rgba(255, 255, 255, 0.3);*/
}
.UltraRare .card-bg {
  background: url(/market/images/backgrounds/bg-card-grey-dark.jpg) repeat
    center #5f6d7e;
}
/* comics card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
comics card .card-box,
comics card .card-box::after {
  transform: rotateY(0deg);
  transition: 0.5s;
}
comics card:hover .card-box,
comics card:focus .card-box, comics card:hover .card-box::after, comics card:focus .card-box::after {
  transform: rotateY(-20deg);
} */
card img,
card video {
  width: 100%;
  height: auto;
  border-bottom: solid black 1px;
}
card h2,
card h3 {
  font-family: 'Calibri-Bold';
  font-size: 11pt;
  line-height: 1.3em;
  height: auto;
  padding: 0 5px 5px 5px;
  margin: 0;
}
card h3 {
  text-transform: uppercase;
  font-family: 'calibri-regular';
}
card description {
  display: none;
  padding: 10px;
}
card p {
  margin: 0;
  text-align: justify;
  font-size: 10pt;
  padding: 10px;
}
card description p {
  padding: 0;
}
card button,
card .button {
  width: 90%;
  margin: 0 auto 5px auto;
  font-size: 10pt;
}
.info {
  background-color: #161a24;
  width: 100%;
  height: 40px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  font-size: 7pt;
  text-transform: uppercase;
}
.card-info-button {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px;
  width: 15%;
  height: 90%;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12pt;
}
.card-info-button img {
  width: auto;
  height: 100%;
  border: none;
}
.card-info-button:hover,
.card-info-button:active {
  background: #7800ff;
}
.new-label {
  font-family: 'AVENGEANCE';
  background-color: #7800ff;
  color: #ffdc00;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  top: 15%;
  right: -5%;
  font-size: 0.6em;
  text-transform: uppercase;
  transform: rotate(10deg);
  z-index: 2;
}
.card-text {
  display: none;
  height: 140px;
  overflow-y: scroll;
}
.item-mint-gas-price {
  text-align: center;
}
span.network {
  order: 1;
  -webkit-order: 1;
  padding-top: 3px;
}
span.favorite {
  order: 2;
  -webkit-order: 2;
}
span.drag-handle {
  order: 3;
  -webkit-order: 3;
}
span.read {
  order: 4;
  -webkit-order: 4;
}
span.tokenId {
  order: 5;
  -webkit-order: 5;
  padding-top: 3px;
}
span.asset-info {
  order: 2;
  -webkit-order: 2;
  display: none;
}
span.forge {
  order: 4;
  -webkit-order: 4;
  display: none;
}

/*cards menu*/

.card-dropdown-menu {
  background-color: #161a24;
  width: 90%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 1);
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 5px;
  display: none;
  overflow: hidden;
}
.card-dropdown-menu a {
  display: block;
  color: #ffffff;
  width: 100%;
  padding: 5px 10px;
  text-align: left;
  text-decoration: none;
}
.card-dropdown-menu a:hover,
.card-dropdown-menu a:active {
  background-color: #7800ff;
}
.menu-line-divider {
  width: 100%;
  height: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.button-dropdown-menu:hover .card-dropdown-menu {
  display: block;
}

/*cards colors*/

/* .Common {
  border-color: rgb(252, 221, 148);
}
.Uncommon {
  border-color: rgb(120, 255, 50);
}
.Rare {
  border-color: rgb(0, 212, 255);
}
.Epic {
  border-color: rgb(116, 75, 255);
}
.Legendary {
  border-color: rgb(255, 0, 23);
} */

@property --rotate {
  syntax: '<angle>';
  initial-value: 132deg;
  inherits: false;
}

:root {
  --card-height: 65vh;
  --card-width: calc(var(--card-height) / 1.5);
}
.Common,
.Uncommon,
.Rare,
.Epic,
.Legendary,
.Apocalyptic,
.Mystic,
.Rainbow,
.Divine,
.NewItem {
  border-width: 0;
}
.Common::before,
.Rare::before,
.Uncommon::before,
.Epic::before,
.Legendary::before {
  content: '';
  width: 102%;
  height: 101%;
  background-color: rgb(252, 221, 148);
  position: absolute;
  z-index: -1;
  top: -0.5%;
  left: -1%;
}
.Common::after,
.Rare::after,
.Uncommon::after,
.Epic::after,
.Legendary::after {
  position: absolute;
  content: '';
  top: calc(var(--card-height) / 120);
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(1.05);
  filter: blur(calc(var(--card-height) / 100));
  background-color: rgb(252, 221, 148);
  opacity: 0.5;
}
.Uncommon::before,
.Uncommon::after {
  background-color: rgb(120, 255, 50);
}
.Rare::before,
.Rare::after {
  background-color: rgb(0, 212, 255);
}
.Epic::before,
.Epic::after {
  background-color: rgb(116, 75, 255);
}
.Legendary::before,
.Legendary::after {
  background-color: rgb(255, 0, 23);
}
.Apocalyptic::before,
.Mystic::before,
.Rainbow::before,
.Divine::before,
.NewItem::before {
  content: '';
  width: 102%;
  height: 101%;
  background-image: linear-gradient(
    var(--rotate),
    rgb(255, 0, 0),
    rgb(255, 165, 0) 50%,
    rgb(255, 255, 0),
    rgb(255, 0, 0)
  );
  position: absolute;
  z-index: -1;
  top: -0.5%;
  left: -1%;
  animation: spin 2.5s linear infinite;
}
.Apocalyptic::after,
.Mystic::after,
.Rainbow::after,
.Divine::after,
.NewItem::after {
  position: absolute;
  content: '';
  top: calc(var(--card-height) / 120);
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(1.05);
  filter: blur(calc(var(--card-height) / 100));
  background-image: linear-gradient(
    var(--rotate),
    rgb(255, 0, 0),
    rgb(255, 165, 0) 50%,
    rgb(255, 255, 0),
    rgb(255, 0, 0)
  );
  opacity: 0.5;
  transition: opacity 0.5s;
  animation: spin 2.5s linear infinite;
}
.Divine::before {
  background-image: linear-gradient(
    var(--rotate),
    #ffffff,
    #333333 43%,
    #ffffff
  );
}
.Divine::after {
  background-image: linear-gradient(
    var(--rotate),
    #ffffff,
    #333333 43%,
    #ffffff
  );
}
.Mystic::before {
  background-image: linear-gradient(
    var(--rotate),
    rgb(225, 198, 255),
    #ff00ff 43%,
    rgb(225, 198, 255)
  );
}
.Mystic::after {
  background-image: linear-gradient(
    var(--rotate),
    rgb(225, 198, 255),
    #ff00ff 43%,
    rgb(225, 198, 255)
  );
}
.Rainbow::before {
  background-image: linear-gradient(
    var(--rotate),
    #ff0000 0%,
    #ffff00 25%,
    #00ff00 50%,
    #0000ff 75%,
    #ff0000 100%
  );
}
.Rainbow::after {
  background-image: linear-gradient(
    var(--rotate),
    #ff0000 0%,
    #ffff00 25%,
    #00ff00 50%,
    #0000ff 75%,
    #ff0000 100%
  );
}
.NewItem::before {
  background-image: linear-gradient(
    var(--rotate),
    #00d7ff,
    #0ac6ff,
    #3080ff,
    #4f49ff,
    #6521ff,
    #7309ff,
    #7800ff
  );
}
.NewItem::after {
  background-image: linear-gradient(
    var(--rotate),
    #00d7ff,
    #0ac6ff,
    #3080ff,
    #4f49ff,
    #6521ff,
    #7309ff,
    #7800ff
  );
}
@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

/*buttons*/

button,
.button {
  width: 100%;
  border: none;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  margin: 10px auto;
  background: #161a24;
  font-size: 12pt;
  padding: 7px 15px;
  box-sizing: border-box;
  border-radius: 7px;
  font-family: 'Futura-Bold';
}
button:hover,
.button:hover,
button.close:hover {
  background-color: #7800ff;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  transform: translate(-3px, -3px);
  transition: 0.3s;
}
button.close {
  background-color: rgba(120, 0, 255, 0.8);
  position: absolute;
  margin: auto;
  width: 40px;
  height: 40px;
  line-height: 24px;
  right: 10px;
  top: 10px;
  padding: 10px;
  font-size: 17pt;
  cursor: pointer;
  z-index: 10;
}
overlay button,
overlay .button,
.overlay button,
.overlay .button {
  background-color: rgba(255, 221, 0, 0.8);
  font-size: 14pt;
}
.button-whatsapp {
  background-color: #25d366 !important;
  text-decoration: none;
  padding: 8px 10px 5px 10px;
  border-radius: 6px;
  color: #1c1e21 !important;
}
.button-whatsapp:hover,
.button-whatsapp:active {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/*dialogs*/

.alert-dialog-bubble {
  width: 100%;
  margin: 20px 0 30px 0;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  border-radius: 5px;
  text-align: center;
}

/*===PORTALS SECTIONS===*/

.portals-wrapper {
  /* background: url('../images/bg-portals.webp') no-repeat center; */
  background-size: cover;
  color: #ffffff;
  /* width: 100%; */
  width: 75%;
  /* margin-left: auto; */
  height: auto;
  position: absolute;
  /* top: 110px; */
  top: 80px;
  bottom: 0;
  /* left: 0; */
  left: 25%;
  overflow-y: scroll;
}
.portals-list {
  height: auto;
  display: grid;
  width: 100%;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  padding: 20px 0;
}
.portals {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}
.portals .section-title {
  margin: 20px 0;
}

#portals .heading-wrap {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
}

#portals .heading-wrap #portals-heading {
  /* margin-right: 50px;  */
  width: 95%;
  margin-top: 40px;
  font-size: 2.5em !important;
}
.portal-card .card-box p {
  text-align: center;
}

/*===POPUP SECTIONS===*/

/*overlay*/

overlay,
.overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 1000;
}
overlay > box,
.overlay > box {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.show {
  display: block !important;
  pointer-events: auto;
}
.hide {
  display: none !important;
  pointer-events: auto;
}
.rounded {
  border-radius: 15px;
}

/*modal*/

.modal-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.modal,
.modal-container {
  background-color: rgba(34, 40, 54, 1);
  color: #ffffff;
  display: flex;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  overflow: hidden;
}
.modal-container {
  padding: 0;
  margin: 0 auto;
}
.modal-banner {
  background-color: black;
  width: 100%;
  position: relative;
}
.modal-content {
  padding: 30px;
}
.modal-content .modal-title {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 18pt;
}
.modal-logo {
  width: 30%;
  margin: 0 auto 20px auto;
}
.modal-logo img {
  width: 100%;
  height: auto;
}
.modal p {
  margin: 20px auto;
  font-size: 18pt;
}
.modal a {
  color: #ffdc00;
}
.modal-title {
  font-family: 'AVENGEANCE';
  text-align: center;
  font-size: 30pt;
  margin: 0 auto 10px auto;
  padding: 0 30px;
}
.modal-split-title {
  width: 100%;
  text-align: left;
  padding-right: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.modal-split-title h3 {
  font-family: 'AVENGEANCE';
  font-size: 30pt;
  margin: 0;
}
.split-title {
  width: 60%;
}
.modal.small-popup,
.modal-container.small-popup {
  max-width: 400px;
}
.modal.small-popup .modal-title,
.modal-container.small-popup .modal-title {
  font-size: 20pt;
}
.modal.small-popup p,
.modal-container.small-popup p {
  font-size: 14pt;
}
.modal.medium-popup,
.modal-container.medium-popup {
  max-width: 600px;
}
.modal.medium-popup .modal-title,
.modal-container.medium-popup .modal-title {
  font-size: 25pt;
}
.modal.medium-popup p,
.modal-container.medium-popup p {
  font-size: 15pt;
}
.modal.large-popup,
.modal-container.large-popup {
  max-width: 800px;
}
.modal.full-popup,
.modal-container.full-popup {
  width: 95vw;
  height: 95vh;
  justify-content: flex-start;
  overflow: scroll;
}

/*user login*/

.login-form {
  padding-top: 20px;
}
.login-form input {
  width: 100%;
  margin-bottom: 10px;
}

/*comic info overlay*/

.card-info {
  width: 90vw;
}
.comic-cover iframe {
  width: 450px;
  height: 800px;
}
.description {
  text-align: justify;
}
.card-info-type {
  background-color: rgba(0, 0, 0, 0.2);
}
.card-info-type-title {
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: top left;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: rgba(255, 255, 255, 1);
  font-family: 'AVENGEANCE';
  font-size: 30pt;
  width: 100%;
  padding: 10px 10px 5px 10px;
  border: none;
  position: relative;
}
.card-info-type-title.Common {
  background-image: linear-gradient(
    to right,
    #e59e39 0%,
    #f5eac2 25%,
    #f6cf6a 50%,
    #f5eac2 75%,
    #e59e39 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Uncommon {
  background-image: linear-gradient(
    to right,
    #7bae63 0%,
    #a1da8a 25%,
    #d3eed2 50%,
    #a1da8a 75%,
    #7bae63 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Rare {
  background-image: linear-gradient(
    to right,
    #00d4ff 0%,
    #46fff0 25%,
    #005263 50%,
    #46fff0 75%,
    #00d4ff 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Epic {
  background-image: linear-gradient(
    to right,
    #9c42da 0%,
    #9f5dd2 25%,
    #5a2ba2 50%,
    #9f5dd2 75%,
    #9c42da 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Legendary {
  background-image: linear-gradient(
    to right,
    #e73224 0%,
    #e14825 25%,
    #ec8a34 50%,
    #e14825 75%,
    #e73224 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Rainbow {
  background-image: linear-gradient(
    to right,
    #f00 0%,
    #ff0 12.5%,
    #0f0 25%,
    #00f 37.5%,
    #f00 50%,
    #00f 62.5%,
    #0f0 75%,
    #ff0 87.5%,
    #f00 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Mystic {
  background-image: linear-gradient(
    to right,
    #ff00ff 0%,
    #e1c6ff 25%,
    #ff00ff 50%,
    #e1c6ff 75%,
    #ff00ff 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Apocalyptic {
  background-image: linear-gradient(
    to right,
    #ff0000 0%,
    #ffa500 25%,
    #ffff00 50%,
    #ffa500 75%,
    #ff0000 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
.card-info-type-title.Divine {
  background-image: linear-gradient(
    to right,
    #fff 0%,
    #333 25%,
    #fff 50%,
    #333 75%,
    #fff 100%
  );
  color: rgba(255, 255, 255, 0);
  animation: gradient-animation 3s infinite linear;
}
@keyframes gradient-animation {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

/*alertbox*/

#alertBox,
.alertBox {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 1000;
}
#alertBox > #alertBoxContent,
#alertBox > .alertBoxContent {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  overflow: scroll;
}

iframe.fullscreen {
  width: 100vw;
  height: 100vh;
}

/*loader*/

.loading-items {
  color: #ffffff;
  width: 500px;
  height: 500px;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
}
.loading-items img {
  width: 100%;
  height: auto;
}
.loading-items h3 {
  font-family: 'AVENGEANCE';
  font-size: 20pt;
}
.loader {
  background: url('../images/logo-circle.webp') no-repeat center;
  background-size: 60%;
  width: 350px;
  height: 350px;
  margin: auto;
  border-radius: 50%;
  perspective: 800px;
}
.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.inner.one {
  border-bottom: 5px solid rgba(255, 255, 255, 0.3);
  animation: rotate-one 1s linear infinite;
}
.inner.two {
  border-right: 5px solid rgba(255, 255, 255, 0.3);
  animation: rotate-two 1s linear infinite;
}
.inner.three {
  border-top: 5px solid rgba(255, 255, 255, 0.3);
  animation: rotate-three 1s linear infinite;
}
@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/*purchases*/

.purchase-content h3 {
  padding: 0;
}
.purchase-content span {
  font-family: 'Futura-Bold';
}
.purchase-icon {
  width: 250px;
  height: 250px;
  position: relative;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  border: 6px solid #ffffff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
  animation: icon-glow 2s ease infinite;
}
.purchase-icon img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: 100%;
  border-radius: 0 0 50% 50%;
}
@keyframes icon-glow {
  0% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 1);
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
  }
}

/*forge*/

.forge-preview {
  width: 900px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 30px 0;
}
.forge-comic {
  display: flex;
  width: auto;
  height: auto;
  margin: 16px;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
}
.forge-comic img {
  width: auto;
  max-height: 30vh;
  position: relative;
  z-index: 1;
}
.forge-comic:before,
.forge-comic:after {
  content: '';
  position: absolute;
  left: 2%;
  top: 2%;
  background: linear-gradient(
    30deg,
    transparent,
    orange,
    transparent,
    orange,
    transparent,
    orange,
    transparent,
    orange,
    transparent,
    orange
  );
  background-size: 400%;
  width: calc(95% + 10px);
  height: calc(95% + 10px);
  animation: steam 20s linear infinite;
  filter: blur(10px);
}
.forge-comic:after {
  filter: blur(20px);
}
.forge-tier-list {
  font-family: 'Futura-Bold';
  text-transform: uppercase;
  font-size: 1em;
  text-align: left;
}
.forge-text-tier {
  width: 100%;
}
.forge-icon-img {
  font-size: 40pt;
}
.forge-btns {
  display: flex;
  justify-content: space-evenly;
}
.forge-btns button {
  margin: 10px 30px;
}
.forge-options {
  margin: auto;
}
@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/*forge, reveal, unpackage animation*/

.forging-info-alert {
  width: 100%;
  margin: 0;
  padding: 30px;
}
.forge-animation,
.reveal-animation,
.unpackage-animation {
  position: relative;
  /* width: 600px;
  height: 450px; */
  overflow: hidden;
  margin: 0 auto;
}
.forge-animation,
.unpackage-animation,
.reveal-animation {
  width: 100%;
  height: 300px;
}
.forge-animation .action-lines,
.unpackage-animation .action-lines,
.reveal-animation .action-lines {
  width: 80%;
  height: 210%;
  top: 0;
}
.forge-animation img,
.reveal-animation img,
.unpackage-animation img {
  width: auto;
  height: 140%;
  position: absolute;
  z-index: 1;
  left: 11%;
  right: 0;
  margin: auto;
}
.forge-animation video {
  width: 80%;
  position: absolute;
  left: 20%;
  right: 0;
  top: 0%;
}
.reveal-animation video {
  width: 80%;
  height: auto;
  position: relative;
}
.reveal-animation img {
  left: 0;
  height: 110%;
}
.unpackage-animation img {
  left: 0;
  height: 100%;
}
.unpackage-animation .character-animated {
  width: 450px;
  height: 335px;
}
.reveal-animation .character-animated {
  width: 450px;
  height: 335px;
}
.glowing::before,
.glowing::after {
  content: '';
  position: absolute;
  left: -1%;
  top: -1%;
  background: linear-gradient(
    30deg,
    transparent,
    orange,
    transparent,
    orange,
    transparent,
    orange,
    transparent,
    orange,
    transparent,
    orange
  );
  background-size: 400%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  animation: steam 20s linear infinite;
  filter: blur(4px);
  z-index: -1;
  border-radius: 20px;
}
.glowing::after {
  filter: blur(5px);
}
.action-lines {
  width: 100%;
  height: 160%;
  position: absolute;
  overflow: hidden;
  background: linear-gradient(to bottom, #7800ff 0%, #7882f0 50%, #7800ff 100%);
  transform: rotate(90deg);
  top: 10%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.reveal-animation .action-lines {
  background: linear-gradient(to bottom, #f26f21 0%, #ffdc00 50%, #f26f21 100%);
}
.unpackage-animation .action-lines {
  background: linear-gradient(to bottom, #4f49ff 0%, #00d7ff 50%, #4f49ff 100%);
}
.lines {
  width: 100%;
  height: 40%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  z-index: 1;
  animation: lines 0.5s linear infinite;
  background-blend-mode: multiply;
  opacity: 0;
}
.lines {
  width: 100%;
  height: 40%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  z-index: 1;
  animation: lines 0.5s linear infinite;
  background-blend-mode: multiply;
  opacity: 0;
}
.lines:nth-child(1) {
  animation-delay: 0.2s;
}
.lines:nth-child(2) {
  animation-delay: 0.3s;
}
.lines:nth-child(3) {
  animation-delay: 0.6s;
}
.lines:nth-child(4) {
  bottom: 0;
  top: auto;
}
.lines:nth-child(5) {
  bottom: 0;
  top: auto;
  animation-delay: 0.2s;
}
.lines:nth-child(6) {
  bottom: 0;
  top: auto;
  animation-delay: 0.3s;
}
.lines:nth-child(7) {
  bottom: 0;
  top: auto;
  animation-delay: 0.6s;
}
.speed-lines {
  background-color: #ffffff;
  width: 20%;
  height: 0.5%;
  position: absolute;
  animation: speed-lines 0.5s linear infinite;
  z-index: 1;
}
.speed-lines:nth-child(8) {
  top: 5%;
  width: 20%;
  animation-duration: 0.3s;
  border-radius: 2%;
}
.speed-lines:nth-child(9) {
  top: 8%;
  animation-duration: 0.7s;
}
.speed-lines:nth-child(10) {
  top: 13%;
  animation-duration: 0.8s;
}
.speed-lines:nth-child(11) {
  top: 20%;
  animation-duration: 0.2s;
}
.speed-lines:nth-child(12) {
  bottom: 20%;
  animation-duration: 0.2s;
}
.speed-lines:nth-child(13) {
  bottom: 13%;
  animation-duration: 0.7s;
}
.speed-lines:nth-child(14) {
  bottom: 8%;
  animation-duration: 0.6s;
}
.speed-lines:nth-child(15) {
  bottom: 5%;
  animation-duration: 0.2s;
}
@keyframes lines {
  0% {
    height: 20%;
    opacity: 1;
  }
  50% {
    height: 40%;
    opacity: 1;
  }
  100% {
    height: 20%;
    opacity: 1;
  }
}
@keyframes speed-lines {
  from {
    transform: translateX(800%);
  }
  to {
    transform: translateX(-100%);
  }
}

/*======character animations======*/

.character-animated {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.character-animated img {
  position: absolute;
}

/*flamma animated*/

.flamma-animated .flamma-animated-arm-2 {
  width: 16%;
  height: auto;
  bottom: -1%;
  left: 24.5%;
  right: auto;
  transform-origin: 60% 14%;
  animation: flamma-animated-arm-2 5s ease infinite;
}
.flamma-animated .flamma-animated-body {
  width: 40%;
  height: auto;
  bottom: -4%;
  transform-origin: bottom center;
  animation: flamma-animated-body 5s ease infinite;
}
.flamma-animated .flamma-animated-head {
  width: 16%;
  height: auto;
  bottom: 69%;
  left: 40%;
  right: auto;
  transform-origin: 1% 58%;
  animation: flamma-animated-head 5s ease infinite;
}
.flamma-animated .flamma-animated-arm-1 {
  width: 43%;
  height: auto;
  bottom: 30%;
  left: 35%;
  right: auto;
  transform-origin: 25% 22%;
  animation: flamma-animated-arm-1 5s ease infinite;
}
@keyframes flamma-animated-arm-2 {
  0% {
    transform: rotate(0deg) translateY(0%);
  }
  50% {
    transform: rotate(-3deg) translateY(5%);
  }
  100% {
    transform: rotate(0deg) translateY(0%);
  }
}
@keyframes flamma-animated-body {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.96);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes flamma-animated-head {
  0% {
    transform: rotate(0deg) translateY(0%);
  }
  50% {
    transform: rotate(5deg) translateY(3%) translateX(7%);
  }
  100% {
    transform: rotate(0deg) translateY(0%);
  }
}
@keyframes flamma-animated-arm-1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/*brinna animated*/

.brinna-animated .brinna-animated-arm-2 {
  width: 20%;
  height: auto;
  left: 49.5%;
  right: auto;
  bottom: 42%;
  animation: brinna-animated-arm-2 2s ease infinite;
  transform-origin: 15% 15%;
}
.brinna-animated .brinna-animated-legs {
  width: 43%;
  height: auto;
  bottom: -12%;
  left: 33%;
  right: auto;
  animation: brinna-animated-legs 2s ease infinite;
  transform-origin: center bottom;
}
.brinna-animated .brinna-animated-head {
  width: 22%;
  height: 30%;
  position: absolute;
  left: 38%;
  top: 3%;
  animation: brinna-animated-head 2s ease infinite;
  transform-origin: 40% center;
  z-index: 1;
}
.brinna-animated .brinna-animated-hair-2 {
  width: 58%;
  height: auto;
  top: 14%;
  left: 22%;
  right: auto;
}
.brinna-animated .brinna-animated-face {
  background-image: url('/market/images/animations/brinna-head-1.webp');
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 44%;
  height: 100%;
  animation: brinna-animated-face 5s ease infinite;
  position: absolute;
  left: 30%;
  top: 15%;
  z-index: 1;
}
.brinna-animated .brinna-animated-hair-1 {
  width: 67%;
  height: auto;
  top: 2%;
  left: 13%;
  right: auto;
}
.brinna-animated .brinna-animated-body {
  width: 24%;
  height: auto;
  left: 36.5%;
  right: auto;
  bottom: 39%;
  animation: brinna-animated-body 2s ease infinite;
  transform-origin: center top;
}
.brinna-animated .brinna-animated-gun {
  width: 10%;
  height: auto;
  bottom: 27%;
  left: 32%;
  right: auto;
  animation: brinna-animated-gun 2s ease infinite;
}
.brinna-animated .brinna-animated-arm-1 {
  width: 17%;
  height: auto;
  bottom: 38%;
  left: 38%;
  right: auto;
  animation: brinna-animated-arm-1 2s ease infinite;
  transform-origin: 22% 6%;
}
.brinna-animated .brinna-animated-sparkles-1 {
  width: 33%;
  height: auto;
  bottom: 34%;
  left: 34%;
  right: auto;
  opacity: 0;
  animation: brinna-animated-sparkles-1 2s linear infinite;
  transform-origin: bottom center;
  mix-blend-mode: plus-lighter;
}
.brinna-animated .brinna-animated-forge-table {
  width: 50%;
  height: auto;
  bottom: -30%;
  left: 35%;
  right: auto;
}
.brinna-animated .brinna-animated-forge-light {
  width: 34%;
  height: auto;
  position: absolute;
  top: 13%;
  left: 34%;
  right: auto;
  z-index: 1;
  animation: brinna-animated-forge-light 2s ease infinite;
  opacity: 0;
  mix-blend-mode: overlay;
}
.brinna-animated .brinna-animated-sparkles-2 {
  width: 20%;
  height: auto;
  bottom: 39%;
  left: 53%;
  right: auto;
  animation: brinna-animated-sparkles-2 2s linear infinite;
  transform-origin: left center;
  mix-blend-mode: plus-lighter;
}
@keyframes brinna-animated-arm-2 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes brinna-animated-legs {
  0% {
    transform: skewX(0deg);
  }
  30% {
    transform: skewX(0deg);
  }
  40% {
    transform: skewX(1deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
@keyframes brinna-animated-body {
  0% {
    transform: skewX(0deg);
  }
  30% {
    transform: skewX(0deg);
  }
  40% {
    transform: skewX(-2deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
@keyframes brinna-animated-gun {
  0% {
    transform: rotate(0deg) translateX(0%);
  }
  30% {
    transform: rotate(0deg) translateX(0%);
  }
  40% {
    transform: rotate(2deg) translateX(-4%);
  }
  100% {
    transform: rotate(0deg) translateX(0%);
  }
}
@keyframes brinna-animated-head {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes brinna-animated-face {
  0% {
    background-image: url('/market/images/animations/brinna-head-1.webp');
  }
  20% {
    background-image: url('/market/images/animations/brinna-head-2.webp');
  }
  40% {
    background-image: url('/market/images/animations/brinna-head-1.webp');
  }
  100% {
    background-image: url('/market/images/animations/brinna-head-1.webp');
  }
}
@keyframes brinna-animated-arm-1 {
  0% {
    transform: rotate(0deg) scaleY(1);
  }
  30% {
    transform: rotate(-5deg) scaleY(0.8);
  }
  40% {
    transform: rotate(1deg) scaleY(1);
  }
  50% {
    transform: rotate(0deg) scaleY(1);
  }
  60% {
    transform: rotate(0.5deg) scaleY(1);
  }
  70% {
    transform: rotate(0deg) scaleY(1);
  }
  100% {
    transform: rotate(0deg) scaleY(1);
  }
}
@keyframes brinna-animated-sparkles-1 {
  0% {
    transform: scaleY(1);
    opacity: 0;
  }
  30% {
    transform: scaleY(1);
    opacity: 0;
  }
  40% {
    transform: scaleY(1);
    opacity: 0;
  }
  70% {
    transform: scaleY(1.2);
    opacity: 1;
  }
  100% {
    transform: scaleY(1.3);
    opacity: 0;
  }
}
@keyframes brinna-animated-forge-light {
  0% {
    transform: scaleY(0.5);
    opacity: 0;
  }
  30% {
    transform: scaleY(0.5);
    opacity: 0;
  }
  40% {
    transform: scaleY(0.5);
    opacity: 0;
  }
  70% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1.2);
    opacity: 0;
  }
}
@keyframes brinna-animated-sparkles-2 {
  0% {
    transform: scaleX(1);
    opacity: 0;
  }
  30% {
    transform: scaleX(1);
    opacity: 0;
  }
  40% {
    transform: scaleX(1);
    opacity: 0;
  }
  70% {
    transform: scaleX(1.2);
    opacity: 1;
  }
  100% {
    transform: scaleX(1.3);
    opacity: 0;
  }
}

.shi-yang-animated .shi-yang-animated-hair-2 {
  width: 61%;
  height: auto;
  left: 22%;
  right: auto;
  bottom: 15%;
  animation: shi-yang-animated-hair-2 5s ease infinite;
  transform-origin: 26% 19%;
}
.shi-yang-animated .shi-yang-animated-body {
  width: 43%;
  height: auto;
  bottom: -1%;
  animation: shi-yang-animated-body 5s ease infinite;
  transform-origin: bottom center;
}
.shi-yang-animated .shi-yang-animated-head {
  width: 22%;
  height: 45%;
  position: absolute;
  left: 34%;
  bottom: 46%;
  animation: shi-yang-animated-head 5s ease infinite;
  z-index: 1;
}
.shi-yang-animated .shi-yang-animated-earing-2 {
  width: 32%;
  height: auto;
  left: 82%;
  right: auto;
  top: 57%;
  animation: shi-yang-animated-earing-2 5s ease infinite;
  transform-origin: 22% 5.5%;
}
.shi-yang-animated .shi-yang-animated-face {
  width: 100%;
  height: auto;
  top: 0%;
  left: 0%;
  right: auto;
}
.shi-yang-animated .shi-yang-animated-earing-1 {
  width: 31%;
  height: auto;
  left: -12%;
  right: auto;
  top: 63%;
  animation: shi-yang-animated-earing-1 5s ease infinite;
  transform-origin: 92% 5%;
}
.shi-yang-animated .shi-yang-animated-hair-1 {
  width: 87%;
  height: auto;
  bottom: -17%;
  left: 35%;
  right: auto;
  animation: shi-yang-animated-hair-1 5s ease infinite;
  transform-origin: 42% 5.5%;
}
.shi-yang-animated .shi-yang-animated-arm {
  width: 50%;
  height: auto;
  bottom: 3%;
  left: 25%;
  right: auto;
  animation: shi-yang-animated-arm 5s ease infinite;
  transform-origin: 27% 43%;
}
@keyframes shi-yang-animated-hair-2 {
  0% {
    transform: skewX(2deg) rotate(0deg);
  }
  50% {
    transform: skewX(-2deg) rotate(3deg);
  }
  100% {
    transform: skewX(2deg) rotate(0deg);
  }
}
@keyframes shi-yang-animated-body {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  50% {
    transform: scaleY(1.02) rotate(-1deg);
  }
  100% {
    transform: scaleY(1) rotate(0deg);
  }
}
@keyframes shi-yang-animated-head {
  0% {
    transform: rotate(0deg) translateX(0%);
  }
  50% {
    transform: rotate(3deg) translateX(-3%);
  }
  100% {
    transform: rotate(0deg) translateX(0%);
  }
}
@keyframes shi-yang-animated-earing-1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shi-yang-animated-earing-2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shi-yang-animated-hair-1 {
  0% {
    transform: skewX(-1deg);
  }
  50% {
    transform: skewX(1deg);
  }
  100% {
    transform: skewX(-1deg);
  }
}
@keyframes shi-yang-animated-arm {
  0% {
    transform: skewY(0deg) rotate(0deg);
  }
  50% {
    transform: skewY(-3deg) rotate(-5deg);
  }
  100% {
    transform: skewY(0deg) rotate(0deg);
  }
}

/*forge-failed*/

.forge-failed {
  text-align: center;
}
.forge-failed img {
  width: 50%;
}

/*forge-failed*/

.forge-error {
  text-align: center;
}
.forge-error img {
  width: 50%;
  margin: 0 auto;
}

/*comic window for reveal and unpackage*/

.comic-window {
  width: 100%;
}
.comic-window-cover {
  width: 100%;
  margin: 0 auto;
}
.comic-window-cover img {
  width: 60%;
  height: auto;
}
.comic-window-cover iframe {
  width: 100%;
  height: 500px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
}
.comic-window-info #RevealItemName span {
  display: block;
  font-family: 'AVENGEANCE';
  font-size: 25pt;
  margin-bottom: 10px;
}
.comic-window-cover iframe html body {
  background-color: transparent !important;
}
.comic-window-buttons {
  display: flex;
}
.comic-window-buttons button {
  width: 30%;
  font-size: 8pt !important;
  margin: 10px 5px;
}

/*divigo login*/

.qr-box {
  background-color: #ffffff;
  width: 400px;
  height: 400px;
  padding: 10px;
  border-radius: 10px;
  margin: 20px auto;
}
.qr-box img {
  width: 100%;
  height: auto;
}

/*wallets login*/

.login-wallets {
  width: 100%;
  height: auto;
  display: grid;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.wallet-box {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: 0.3s;
}
.wallet-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.wallet-box button {
  font-size: 10pt;
}
.wallet-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 130px;
  height: 130px;
  padding: 10px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  line-height: 130px;
  font-size: 50pt;
}
.wallet-icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.make-wallet {
  width: 40%;
  float: right;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}
.make-wallet img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.make-wallet h4 {
  font-family: 'AVENGEANCE';
  font-size: 15pt;
  margin: 0;
}
.make-wallet-buttons {
  width: 100%;
  display: flex;
  padding: 10px;
  border-radius: 10px;
}
.make-wallet-buttons img {
  margin-right: 10px;
}
.make-wallet-buttons button {
  margin: 0;
  font-size: 10pt;
}

/*READ COMIC*/

#ReadComic {
  width: 100vw;
  height: 100vh;
}
#ReadComicContent iframe {
  border: none;
}

/*NO ITEMS IN WALLET*/

#NoWalletItems {
  transform: translateY(30%);
}

/*CREDIT CARD FORM*/

#CCPurchase [class*='col-'],
#AddCreditCard [class*='col-'] {
  padding: 5px;
}

/*===SECTIONS===*/

/*market*/

#home {
  padding: 100px 0;
}
#home > set.mint-section > cards > card > div > ul {
  margin: 5px;
}

#home > set.mint-section > cards > card > img,
#home > set.mint-section > cards > card > h1 {
  cursor: pointer;
}

#home > set.mint-section > cards > card > h1:hover {
  transform: scale(1.1);
}

#home > set:nth-child(2) > cards > card:nth-child(1) > div {
  padding-bottom: 10px;
}

#home > set.mint-section > cards > card:nth-child(2) > img {
  margin-top: -10px;
  position: relative;
}

#home > set.mint-section > cards > card:nth-child(2) > div {
  z-index: 1;
  position: relative;
}
.section-title {
  font-family: 'AVENGEANCE';
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 10px 20px 10px;
  border-radius: 0;
}
.section-title span {
  color: #ffdc00;
}
.mint-section,
.market-section,
.community-collection-1,
.your-projects {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 70px;
  overflow-x: scroll;
  transition: 0.3s ease;
}
.market-section cards card button {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12pt;
}
.market-section cards card button span {
  float: right;
  width: 40%;
  text-align: right;
  font-size: 8pt;
}
.market-section cards card .info,
.community-collection-1 cards card .info,
.your-projects cards card .info {
  justify-content: space-between;
}
/* Community collection */
.community-collection-1 cards card .info .market-id,
.your-projects cards card .info .market-id {
  font-size: 10pt;
  padding: 10;
}
.releases-listing,
#MintProductsList,
#PreviousReleasesList {
  display: block;
  width: max-content;
  height: auto;
  position: relative;
  transition: 0.3s ease;
}

.releases-listing card,
#MintProductsList card,
#PreviousReleasesList card {
  width: 16vw;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  margin: 0 10px;
}
#MintProductsList card .info {
  justify-content: flex-start;
  font-size: 12pt;
}
#MintProductsList card .card-box {
  background-color: #5f6d7e;
}
#MintProductsList card h2 {
  font-size: 14pt;
  cursor: pointer;
}
#MintProductsList card video {
  cursor: pointer;
}

/*slider*/

.slideshow-container {
  width: 100%;
  height: 100%;
}
.slide {
  padding: 7%;
  perspective: 2000px;
}
.slide video,
.slide img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* box-shadow: 3px 3px #b3b3b3;
  border-bottom: 3px solid #d9d9d9;
  border-right: 3px solid #d9d9d9; */
}
.slide:hover .book,
.slide:focus .book {
  transform: rotateY(-20deg);
}
.book {
  position: relative;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  margin-bottom: 20px;
  transition: 1s ease;
}
.book .book-pages {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 10px;
  height: 99%;
  transform: translateZ(-6px) translateX(55%) rotateY(90deg);
  background: linear-gradient(90deg, #333 0%, #fff 50%, #ddd 100%);
}
.book .book-backcover {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 100%;
  height: 99%;
  transform: translateZ(-19px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.slide-info {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}
.slide-info h2 {
  color: #ffdc00;
  font-family: 'AVENGEANCE';
  width: 100%;
  font-size: 20pt;
  padding: 0;
  margin: 0;
}
.slide-info p {
  padding: 10px 0;
  margin: 0;
  text-align: justify;
}
.slide-info button,
.slide-info .button {
  background-color: rgba(120, 0, 255, 0.4);
}
.slide-info button:hover,
.slide-info button:active,
.slide-info .button:hover,
.slide-info .button:active {
  background-color: rgba(120, 0, 255, 1);
}
.slide-button {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 10px 0 10px 10px;
}
info .info {
  height: auto;
  padding: 10px;
}

/*===ACCORDION===*/

.accordion-container {
  width: 100%;
  height: auto;
  margin: 10px auto;
}
.accordion-set {
  position: relative;
  width: 100%;
  height: auto;
}
.accordion-set > a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 8px 10px 5px 10px;
  margin: 10px auto 0 auto;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.4s;
}
.accordion-set > a i {
  margin-right: 5px;
}
.accordion-set > a span {
  float: right;
  margin-top: 5px;
}
.accordion-set > a.accordion-active {
  background-color: #7800ff;
  border-radius: 10px 10px 0 0;
}
.accordion-content {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 0 0 10px 10px;
  display: none;
}
.accordion-content a:hover,
.accordion-content a:active {
  background-color: rgba(255, 255, 255, 0.1);
}

/*===TABS===*/

.container-tabs .nav-tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-bottom: 5px solid #7800ff;
}
.container-tabs .nav-tabs > li {
  list-style-type: none;
  width: 100%;
  margin: 0 10px;
  text-transform: uppercase;
}
.container-tabs .nav-tabs > li > a {
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  width: 100%;
  cursor: pointer;
  padding: 15px;
  margin: 0 10px;
  font-size: 14pt;
  text-decoration: none;
  border-radius: 10px 10px 0 0;
}
.container-tabs .nav-tabs > li > a:hover {
  background-color: rgba(120, 0, 255, 0.4);
}
.container-tabs .nav-tabs > li.tab-active > a,
.container-tabs .nav-tabs > li.tab-active > a:hover,
.container-tabs .nav-tabs > li.tab-active > a:focus {
  background-color: #7800ff;
}
.container-tabs .tab-content {
  width: 100%;
  padding-top: 20px;
}
.container-tabs .tab-content > .tab-pane {
  display: none;
}
.container-tabs .tab-content > .tab-pane.tab-active {
  display: block;
}
.container-tabs .tab-content > .tab-active {
  display: block;
}

/*===COLORS===*/

.bg-gradient {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6521ff+0,3080ff+40,0ac6ff+66,00d7ff+100 */
  background: #6521ff; /* Old browsers */
  background: -moz-linear-gradient(
    left,
    #6521ff 0%,
    #3080ff 40%,
    #0ac6ff 66%,
    #00d7ff 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    #6521ff 0%,
    #3080ff 40%,
    #0ac6ff 66%,
    #00d7ff 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    #6521ff 0%,
    #3080ff 40%,
    #0ac6ff 66%,
    #00d7ff 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6521ff', endColorstr='#00d7ff',GradientType=1 ); /* IE6-9 */
  color: #ffffff;
}
.bg-black {
  background-color: #000000;
  color: #ffffff;
}
.bg-dark {
  background-color: #212735;
  color: #ffffff;
}
.bg-purple {
  background-color: #7800ff;
  color: #ffffff;
}
.bg-blue {
  background-color: #00d7ff;
  color: #ffffff;
}
.bg-white {
  background-color: #ffffff;
}
.bg-yellow {
  background-color: #ffdc00;
  color: #212735;
}
.bg-discord {
  background-color: #7882f0;
  color: #ffffff;
}
.bg-divigo {
  background-color: #eb1f48;
  color: #ffffff;
}
.bg-linkedin {
  background-color: #0a66c2;
  color: #ffffff;
}
.txt-dark,
.dark-blue {
  color: #212735;
}
.txt-purple,
.purple {
  color: #7800ff;
}
.txt-blue {
  color: #00d7ff;
}
.txt-yellow,
.yellow {
  color: #ffdc00;
}
.txt-white {
  color: #ffffff;
}
.txt-big {
  font-size: 28pt;
}
.txt-medium {
  font-size: 20pt;
}
.txt-small {
  font-size: 14pt;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.txt-center {
  text-align: center;
}
.txt-justify {
  text-align: justify;
}

/* CREATE */

.side-left-create {
  border-right: 2px solid #7800ff;
  height: calc(100vh - 80px);
  width: 25vw;
  overflow-y: scroll;
  position: relative;
  padding-bottom: 90px;
}

.side-left-create * {
  display: block;
  margin: 15px;
  max-width: calc(25vw - 35px);
}

input.single-image-input-left-create,
label.single-image-label-left-create,
input.smart-contract-input-left-create,
label.smart-contract-label-left-create,
input.comic-input-left-create,
label.comic-label-left-create,
label.percs-label-left-create,
input.percs-input-left-create {
  display: inline-block;
  color: white;
}

.content-wrapper-create input,
.content-wrapper-create textarea,
.content-wrapper-create select {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  border: none;
  padding: 20px;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12pt;
  font-family: Arial, Helvetica, sans-serif;
}

.side-left-create label {
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  font-family: 'AVENGEANCE';
  margin-top: 30px;
}

label.single-image-label-left-create,
label.comic-label-left-create,
label.smart-contract-label-left-create,
label.percs-label-left-create {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  font-size: 12px;
  display: inline;
  margin-left: 0;
}

input.single-image-input-left-create,
input.comic-input-left-create {
  width: auto;
}

.radio-button input[type='radio'] {
  display: none;
}

.radio-button label {
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}

.radio-button label::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #7800ff;
  border-radius: 50%;
  margin-right: 10px;
}

.radio-button input[type='radio']:checked + label::before {
  background-color: orange;
}

.radio-button {
  display: inline-block;
  width: auto;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
}

.content-wrapper-create {
  padding-top: 80px;
}

.select-collection-left-create,
.select-blockchain-left-create {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%237800ff' height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'><path d='M12 22l12 12 12-12z'/><path d='M0 0h48v48H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 0px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  /* margin-right: 2rem; */
  padding: 1rem;
  padding-right: 2rem;
}

.content-wrapper-create {
  overflow: scroll;
  height: 100vh;
}

.side-left-create,
.sider-right-create {
  position: relative;
  float: left;
}

.sider-right-create {
  width: 75vw;
  height: calc(100vh - 80px);
  display: block;
}

@media (max-width: 1180px) {
  .side-left-create,
  .sider-right-create {
    width: 100vw;
    border: none;
    height: auto;
  }

  .side-left-create * {
    max-width: calc(100vw - 35px);
  }
}

.header-right-create > div {
  display: inline-block;
}

.header-right-create {
  height: 130px;
  border-bottom: 2px solid #7800ff;
}

.mint-credits-create {
  width: 35%;
  border-right: 2px solid #7800ff;
  height: 100%;
}

.clan-tokens-create {
  height: 100%;
}

.display-portal-create {
  border-left: 2px solid #7800ff;
  width: 130px;
  height: 100%;
  float: right;
}

.right-upload-section-right-create {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.left-section-right-create label {
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  font-family: 'AVENGEANCE';
  margin-top: 30px;
}

.left-section-right-create > div {
  margin-top: 40px;
}

.left-section-right-create {
  width: 20vw;
  padding: 30px;
  height: calc(100vh - 210px);
}

.edit-upload-section-create > div {
  float: left;
}

.right-upload-section-right-create {
  width: 50vw;
  height: calc(100vh - 280px);
  margin: 20px;
}

.right-upload-image-section-right-create {
  background-image: url(/market/images/create/bk-create-upload.png);
  width: 95%;
  height: 95%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

label.mint-quantity-label,
label.mint-address-label {
  margin-bottom: 10px;
  display: block;
}

button.mint-button {
  background: #017706;
}

.buy-now-button-credits-count-create {
  background: #7800ff;
  color: #f2bd42;
}

.bought-credits-count-digits-create {
  color: #f2bd42;
  font-size: 18px;
  font-family: 'AVENGEANCE';
}

.bought-credits-title-count-create {
  font-size: 18px;
  font-family: 'AVENGEANCE';
  color: white;
}

.bought-credits-count-create * {
  width: auto;
}

.bought-credits-count-create {
  position: absolute;
}

.bought-credits-count-digits-create {
  text-align: center;
  font-size: 55px;
  margin-top: 10px;
}

.bought-credits-title-count-create {
  font-size: 34px;
  width: 140px;
}

.bought-credits-count-create {
  width: 35%;
}

.buy-button-credits-count-create,
.bought-credits-count-digits-create {
  width: 45%;
}

button.buy-now-button-credits-count-create {
  margin: auto;
  width: 130px;
  position: relative;
  display: block;
}

.buy-button-credits-count-create {
  display: inline-block;
  position: relative;
}

.bought-credits-title-count-create {
  position: absolute;
  right: 70px;
  top: 30px;
  text-align: center;
}

.bought-credits-count-digits-create {
  margin-top: 15px;
}

.title-clan-tokens-create {
  color: white;
  font-family: 'AVENGEANCE';
  font-size: 25px;
  transform: rotate(270deg) translate(35px, -15px);
  display: inline-block;
  text-align: center;
  width: 120px;
}

.title-clan-tokens-create > span:nth-child(1) {
  /* font-size: 38px; */
  font-size: 32px;
}

img.clan-tokens-image-create {
  width: 300px;
  position: relative;
}

img.portal-image-create {
  width: 80px;
  position: relative;
  margin: 10px auto;
  display: block;
}

.title-portal-create {
  font-family: 'AVENGEANCE';
  color: white;
  width: 100%;
  text-align: center;
}

@media (max-width: 1180px) {
  .sider-right-create {
    border-top: 2px solid #7800ff;
  }

  .edit-upload-section-create > div {
    width: calc(100vw - 40px);
  }

  .right-upload-section-right-create {
    margin-bottom: 130px;
  }

  .left-section-right-create {
    padding-right: 0;
  }
}

img.clan-tokens-image-create {
  top: -20px;
  left: -20px;
}

@media (min-width: 1600px) {
  .content-wrapper-create {
    padding-top: 110px;
  }
}

@media (max-width: 1180px) {
  .bought-credits-count-create {
    width: 100%;
  }

  .mint-credits-create {
    width: 100%;
  }
  .clan-tokens-create {
    padding-top: 40px;
  }

  .clan-tokens-create {
    width: calc(100% - 130px);
    border-bottom: 2px solid #7800ff;
  }

  .display-portal-create {
    border-bottom: 2px solid #7800ff;
  }

  .mint-credits-create {
    border-right: none;
  }

  .title-clan-tokens-create {
    position: absolute;
    z-index: 1;
    margin-top: 30px;
  }

  .display-portal-create {
    background: #222836;
    z-index: 1;
    position: relative;
  }

  .clan-tokens-create {
    overflow-x: scroll;
    overflow-y: hidden;
  }

  img.clan-tokens-image-create {
    margin-left: 100px;
  }

  .left-section-right-create {
    padding: 20px;
    width: 100vw !important;
  }
}

.radio-button label::before {
  width: 5px;
  height: 5px;
}
.animation-image-label-right-create,
.display-image-label-right-create,
.featured-image-label-right-create,
.banner-image-label-right-create,
.logo-image-label-right-create,
.preview-image-label-right-create,
.cover-image-label-right-create,
.pages-image-label-right-create,
.backcover-image-label-right-create {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  gap: 0 !important;
}

.radio-button-create-selection {
  gap: 15px;
  padding-left: 15px;
}

.single-image-show-create,
.comic-show-create {
  display: none;
}

.radio-button-comic input[type='radio'] {
  display: none;
}

.radio-button-comic label {
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}

.radio-button-comic label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 2px solid #7800ff;
  border-radius: 50%;
  margin-right: 10px;
}

.radio-button-comic input[type='radio']:checked + label::before {
  background-color: orange;
}

.radio-button-comic {
  display: inline-block;
  width: auto;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
}

@media (max-width: 1180px) {
  .right-upload-section-right-create {
    width: 100%;
  }

  .right-upload-section-right-create {
    margin-bottom: 0;
  }

  .right-upload-section-right-container-create {
    padding-bottom: 130px;
  }
}

.content-wrapper-create input[type='file'] {
  cursor: pointer;
}

.content-wrapper-create input[type='file']::file-selector-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 0;
}

#loaded-preview {
  display: none;
}

button#arrow-up-create {
  width: 35px;
  position: absolute;
  left: -20px;
  font-size: 10px;
  top: 105px;
}

/*===PURCHASE-SCREEN===*/

#purchaseScreen .hidden {
  display: none;
}

#purchaseScreen,
td {
  border: none;
  border-collapse: collapse;
  padding: 5px;
  text-align: center;
}

#purchaseScreen tr:hover {
  cursor: pointer;
}

#purchaseScreen {
  width: 100%;
  background: #222836;
  color: white;
  font-family: 'AVENGEANCE', sans-serif;
  margin-bottom: 70px;
}

#purchaseScreen tr {
  display: flex;
  border-bottom: 1px solid #737171;
  margin-top: 5px;
}

#purchaseScreen td {
  width: -webkit-fill-available;
  display: block;
  margin: auto;
}

#purchaseScreen img.bundle-image {
  width: 100%;
}

#purchaseScreen img.crypto-bundle-image,
#purchaseScreen img.credit-card-bundle-image,
#purchaseScreen img.paypal-bundle-image,
#purchaseScreen img.apple-pay-bundle-image,
#purchaseScreen img.google-pay-bundle-image,
#purchaseScreen img.portal-bundle-image {
  width: 75%;
  left: 15%;
}

.color-yellow {
  color: #ffdc00;
}

#purchaseScreen > tr:nth-child(1) > td > p {
  display: inline-block;
}

input#bundle-quantity {
  text-align: center;
}

a.LetsGoMangaTelegramLink.button-telegram,
a.DiviGoTelegramLink.button-telegram {
  font-family: 'calibri-regular';
  font-size: 10pt;
  text-align: center;
  box-sizing: border-box;
  scroll-behavior: smooth;
  touch-action: pan-right pinch-zoom;
  background-color: #08abe2 !important;
  text-decoration: none;
  padding: 8px 10px 5px 10px;
  border-radius: 6px;
  color: #ffffff !important;
}

div.LetsGoMangaTelegramLink-button-telegram > p,
div.LetsGoMangaWhatsAppLink-button-whatsapp > p,
div.DiviGoTelegramLink-button-telegram > p,
div.DiviGoWhatsAppLink-button-whatsapp > p {
  display: inline;
}

div.LetsGoMangaTelegramLink-button-telegram,
div.LetsGoMangaWhatsAppLink-button-whatsapp,
div.DiviGoTelegramLink-button-telegram,
div.DiviGoWhatsAppLink-button-whatsapp {
  display: inline;
  cursor: pointer;
  background-color: rgba(120, 0, 255, 0.5);
  margin: 10px 5px;
  padding: 10px 30px;
  border-radius: 5px;
}

div.LetsGoMangaTelegramLink-button-telegram:hover,
div.LetsGoMangaWhatsAppLink-button-whatsapp:hover,
div.DiviGoTelegramLink-button-telegram:hover,
div.DiviGoWhatsAppLink-button-whatsapp:hover {
  background-color: rgb(8, 8, 8) !important;
}

.LetsGoMangaWhatsAppLink-button-whatsapp,
.LetsGoMangaTelegramLink-button-telegram,
.DiviGoWhatsAppLink-button-whatsapp,
.DiviGoTelegramLink-button-telegram {
  background-color: rgb(8, 8, 8) !important;
}

div.LetsGoMangaWhatsAppLink-button-whatsapp,
div.DiviGoWhatsAppLink-button-whatsapp {
  padding-right: 40px;
}
div.LetsGoMangaTelegramLink-button-telegram,
div.DiviGoTelegramLink-button-telegram {
  padding-left: 40px;
}

#LetsGoMangaConnectQRCode,
#DiviGoConnectQRCode {
  display: none;
}

div.LetsGoMangaTelegramLink-button-telegram.active,
div.DiviGoTelegramLink-button-telegram.active {
  background: #08abe2 !important;
}

div.LetsGoMangaWhatsAppLink-button-whatsapp.active,
div.DiviGoWhatsAppLink-button-whatsapp.active {
  background: #25d366 !important;
}

table#purchaseScreen > tr {
  padding: 20px;
}

input#bundle-quantity {
  font-family: 'Futura-Bold';
}

#purchaseScreen > tr:nth-child(3) > td {
  position: relative;
  height: 200px;
}

p.align-text-bottom {
  bottom: 0;
  position: absolute;
  width: 100%;
}

img.crypto-bundle-image {
  position: absolute;
  left: 17px;
  top: 60px;
}

p.choose-payment-text {
  position: absolute;
  top: 73px;
}

table#purchaseScreen span {
  margin-left: 5px;
}

p.paypal-bundle-text.align-text-bottom,
p.apple-pay-bundle-text.align-text-bottom,
p.google-pay-bundle-text.align-text-bottom {
  color: grey;
}

img.apple-pay-bundle-image,
img.google-pay-bundle-image,
img.paypal-bundle-image {
  filter: grayscale(1);
}

img.crypto-payment-icon {
  height: 50px;
}

img.bundle-buy-button-image.crypto-payment-icon {
  background: white;
  border-radius: 100%;
}

table#purchaseScreen img {
  transition: 0.5s ease-in-out;
}

table#purchaseScreen img:hover {
  transform: scale(1.05);
}

table#purchaseScreen .hide {
  display: none;
}

#purchaseScreen > tr:nth-child(4) > td:nth-child(1) > img {
  margin: auto 5px;
}

select#bundle-payment-type-cc {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  border: none;
  border-radius: 5px;
}

p.align-text-bottom {
  padding-top: 20px;
}

.crypto-payment-icon {
  filter: grayscale(1);
  cursor: not-allowed;
  transform: scale(0.9);
}

.crypto-payment-icon.active {
  filter: grayscale(0);
  cursor: pointer;
  transform: scale(1);
}

#purchaseScreen img.bundle-image {
  padding: 10px;
  border-radius: 20px;
}

table#purchaseScreen {
  font-size: 15px;
}

table#purchaseScreen p.info-text {
  font-family: 'calibri-regular';
  font-size: 13px;
  margin: 0;
  font-style: italic;
  margin-top: 8px;
}

#purchaseScreen p.info-text > a {
  color: #ffdc00;
  text-decoration: none;
}

#purchaseScreen p.info-text > a:hover {
  color: white;
  text-decoration: underline;
}

.bundle-image-container {
  width: 33%;
  float: left;
}

table#purchaseScreen select {
  background-color: rgba(0, 0, 0, 0.5);
  width: 260px;
  border: none;
  padding: 10px;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12pt;
  text-align: center;
  font-family: 'Futura-Bold';
  height: 40px;
}

p.color-yellow.choose-crypto-text,
p.color-yellow.choose-crypto-text,
p.color-yellow.final-details-text {
  width: 320px;
  padding: 5px;
  text-align: left;
}

button#bundle-buy-button-cc {
  width: 320px;
  margin: 10px;
}

table#purchaseScreen .row-section * {
  width: 160px;
  float: left;
  text-align: left;
}

table#purchaseScreen .row-section {
  width: 320px;
}

button#bundle-buy-button,
button#bundle-cancel-buy-button {
  width: calc(50% - 25px);
  margin: 10px;
}

p.item-mint-gas-price {
  display: none;
}

table#purchaseScreen .row {
  margin: auto;
  display: block;
  min-width: 320px;
  width: 50%;
  float: left;
}

table#purchaseScreen .row {
  width: 100%;
}

#purchaseScreen div.row-section {
  width: 100%;
}

#purchaseScreen div.row-section * {
  width: 50%;
}

table#purchaseScreen .row * {
  float: left;
}

#purchaseScreen div.row-section p.color-yellow {
  text-align: right;
  padding-right: 10px;
}

#purchaseScreen img.crypto-bundle-image,
#purchaseScreen img.credit-card-bundle-image,
#purchaseScreen img.paypal-bundle-image,
#purchaseScreen img.apple-pay-bundle-image,
#purchaseScreen img.google-pay-bundle-image,
#purchaseScreen img.portal-bundle-image {
  min-width: 100px;
}

@media (max-width: 680px) {
  table#purchaseScreen .row * {
    width: 100%;
  }
  table#purchaseScreen .row p {
    width: 50%;
  }
}

#purchaseScreen div.row-section * {
  width: 25%;
  text-align: left !important;
  padding-left: 25px;
}

#purchaseScreen > tr > td:last-child {
  width: 50px;
  margin: -20px -15px;
}

#purchaseScreen img.crypto-bundle-image,
#purchaseScreen img.credit-card-bundle-image,
#purchaseScreen img.paypal-bundle-image,
#purchaseScreen img.apple-pay-bundle-image,
#purchaseScreen img.google-pay-bundle-image,
#purchaseScreen img.portal-bundle-image {
  max-height: 140px;
  max-width: 140px;
  position: relative;
  margin: auto;
  display: block;
}

p.align-text-bottom {
  max-width: 140px;
  margin: auto;
  left: calc(50% - 40px);
}

img.credit-card-bundle-image {
  top: 20px;
}

img.paypal-bundle-image {
  top: 30px;
}

img.paypal-bundle-image {
  top: 30px;
}

img.apple-pay-bundle-image {
  top: 50px;
  filter: invert(0.7);
}

img.google-pay-bundle-image {
  top: 70px;
}

img.portal-bundle-image {
  top: 10px;
  left: 10px;
}

i.bundle-info {
  padding: 5px 9px;
  background: grey;
  margin: 5px;
  border-radius: 40px;
  color: black;
  font-family: 'Futura-Bold';
  font-size: 12px;
  cursor: pointer;
}

i.bundle-info:hover {
  background: white;
}

p.portal-bundle-description {
  font-family: 'Futura-Bold';
}

@media (max-width: 680px) {
  #purchaseScreen img.crypto-bundle-image,
  #purchaseScreen img.credit-card-bundle-image,
  #purchaseScreen img.paypal-bundle-image,
  #purchaseScreen img.apple-pay-bundle-image,
  #purchaseScreen img.google-pay-bundle-image,
  #purchaseScreen img.portal-bundle-image {
    min-width: 40px;
  }

  #purchaseScreen > tr:nth-child(3) > td {
    min-width: 40%;
  }

  #purchaseScreen > tr:nth-child(3) {
    overflow: scroll;
  }
  #bundle-back-button {
    width: 50px;
  }
}

button#bundle-buy-button-cc,
button#bundle-buy-button {
  background: green;
}

button#bundle-cancel-buy-button {
  background: red;
}

select#bundle-payment-type-cc,
button#bundle-buy-button-cc {
  width: calc(50% - 20px) !important;
  margin: 10px;
  padding: 9px;
}

body,
body * {
  touch-action: manipulation;
}

.portal-bundle-row > * {
  width: 20%;
  display: block;
  position: relative;
  float: left;
}
.portal-bundle-details-container > div.portal-bundle-details > p {
  display: block;
  position: relative;
  float: left;
  margin: 5px;
  width: fit-content;
  text-align: left;
  cursor: default;
}

button#bundle-airdrop-button {
  text-align: center;
}

img.portal-bundle-image-details-left {
  padding: 10px;
}

p.color-yellow.portal-mint-title {
  text-align: left;
  padding: 75px 20px;
  width: fit-content;
}

.portal-bundle-details-container {
  width: 40%;
  padding: 10px;
}

.portal-bundle-details {
  width: 100%;
  float: left;
}

.portal-bundle-details p.color-yellow {
  padding-top: 10px;
}

p#portal-bundle-owned-count {
  margin: 15px 5px;
}

img.portal-bundle-image-details-left,
img.portal-bundle-image-details-right {
  cursor: default;
}

table#purchaseScreen > tr {
  max-height: 280px;
}

table#purchaseScreen > tr:nth-child(1) {
  max-height: none;
}

img.portal-bundle-image-details-left,
img.portal-bundle-image-details-right {
  max-height: 250px;
  width: auto;
}

p.color-yellow.portal-mint-title {
  width: 17%;
}

img.portal-bundle-image-details-left {
  max-height: 175px;
}

.portal-bundle-details-container {
  z-index: 1;
}

#purchaseScreen > tr:nth-child(4) > td {
  overflow: scroll;
}

.portal-bundle-row {
  min-width: 930px;
}

@media (max-width: 680px) {
  table#purchaseScreen > tr:nth-child(1),
  table#purchaseScreen > tr:nth-child(2),
  table#purchaseScreen > tr:nth-child(4) {
    width: 100vw;
  }
}

table#purchaseScreen > tr:nth-child(4) {
  padding-right: 0;
}

img.portal-bundle-image-details-left {
  top: 15px;
}

a.link {
  font-family: 'calibri-regular';
  font-size: 18px;
  text-align: center;
  color: #ffdc00;
}

#sortby-nav-box .sortby-menu {
  max-height: 60vh;
  overflow-y: scroll;
}
/*
a#selected-collection {
  max-width: 100px;
  overflow: hidden;
}

#selected-collection > span {
  display: block;
  width: max-content;
  float: left;
}

i.fa-solid.fa-chevron-down {
  float: right;
  margin-left: 10px;
} */

.sider-right-create {
  overflow-y: scroll;
}

/* STYLING FOR ATTRIBUTES (KEY-VALUE PAIRS) */

.create-attributes-list {
  height: calc(100vh - 200px);
}
.create-attributes-list-item {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.create-attributes-list-item-inputs {
  display: flex;
  align-items: center;
  gap: 20px;
}
.create-attributes-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
label.create-attributes-value-label,
label.create-attributes-type-label {
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  font-family: 'AVENGEANCE';
  margin-top: 10px;
  width: 100%;
}

.create-attributes-content {
  padding: 30px;
}

.create-attributes-list-item {
  width: 100%;
  display: block;
  float: left;
}

.create-attributes-list-item-type {
  width: 50%;
  float: left;
}

.create-attributes-list-item-value,
.create-attributes-list-item-type {
  background-color: #7900ff;
  border: none;
  padding: 20px;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12pt;
  font-family: 'Calibri-Bold';
  margin: 10px 0;
}

.create-attributes-list-item-value {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  width: 50%;
  float: left;
}

.create-attributes-list-item-delete-button {
  background: #d80032;
}
.create-attributes-list-item-edit-button {
  background-color: #00f;
}

.create-attributes-list-item-delete-button,
.create-attributes-list-item-save-button,
.create-attributes-list-item-edit-button {
  width: 30px;
  border-radius: 5px;
  margin: 0;
  width: 100px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
}

.create-attributes-list-item-delete-button:hover {
  background: #d80032;
}
@media (max-width: 680px) {
  .create-attributes-list-item-inputs {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-bottom: 10px;
  }
  .create-attributes-list-item-value,
  .create-attributes-list-item-type {
    width: 100% !important;
  }
  .create-attributes-list-item:nth-child(1) {
    margin-top: 0px !important;
  }
}

/* END OF ATTRIBUTES STYLING */
span.link.square-link.copy-address-button {
  border-radius: 5px;
}

nav#wallet-nav {
  width: 350px;
}
.connected {
  color: #8cfc03;
  font-size: 18pt !important;
}

.right-upload-section-right-create {
  width: 70vw;
}

.mint-quantity-marketplace-content,
.create-fields-content {
  padding: 30px;
}

label.price-per-unit-marketplace-label,
label.mint-quantity-marketplace-label,
label.mint-address-label,
label.mint-quantity-label {
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  font-family: 'AVENGEANCE';
  margin-top: 30px;
  float: left;
  width: 100%;
}

.fields-section-bottom-create > div {
  width: 50%;
  float: left;
}

button.mint-button {
  width: calc(100% - 60px);
  margin-left: 30px;
  margin-bottom: 50px;
}

.content-wrapper-create label {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.content-wrapper-create label .more-information {
  margin: 0;
  font-size: 16px;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7800ff;
  cursor: pointer;
  position: relative;
}
.content-wrapper-create label .more-information i {
  -webkit-text-stroke: 1px;
}
.gap-10-i {
  gap: 10px !important;
}

.content-wrapper-create .collection-name-info-modal {
  min-height: 150px;
  min-width: 150px;
  max-width: 300px;
  padding: 20px 10px;
  position: absolute;
  top: 25px;
  left: -30px;
  background: #11141a;
  border: 2px solid #7800ff;
  display: none;
  justify-content: center;
  border-radius: 10px;
  z-index: 1;
  flex-direction: column;
  gap: 20px;
}

.content-wrapper-create .collection-name-info-modal div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 400;
  font-size: 12px;
}
.content-wrapper-create .collection-name-info-modal p {
  font-family: 'calibri-regular';
  text-transform: lowercase;
  text-transform: capitalize;
  color: #666c7b;
  font-size: 14px;
}
.content-wrapper-create .collection-name-info-modal * {
  margin: 0;
}

/*
.fields-section-bottom-create > div {
  margin-bottom: 30px;
} */

@media (max-width: 1180px) {
  .right-upload-section-right-create {
    width: calc(100vw - 40px);
  }
  /*
  .fields-section-bottom-create > div {
    margin-bottom: 70px;
  } */

  button.mint-button {
    margin-bottom: 100px;
  }
}

button#arrow-down-create {
  margin-top: -90px;
  position: absolute;
  width: fit-content;
  right: 40px;
}

label > i {
  font-family: 'calibri-regular';
  font-size: 8px;
  width: 100%;
  display: block;
  margin: 5px;
}

.create-attributes-type,
.create-attributes-value {
  width: calc(50% - 20px);
  float: left;
  margin: 10px;
}

.create-attributes-list {
  border-bottom: 2px solid #7800ff;
}

.fields-section-bottom-create {
  border-top: 2px solid #7800ff;
}

.mint-quantity-marketplace-content,
.create-fields-content {
  border-bottom: 2px dashed #7800ff;
}

label.mint-button-label > i {
  color: white;
}

label.mint-button-label {
  display: inline;
  top: -40px;
  position: relative;
  left: 30px;
}

@media (max-width: 1180px) {
  .create-attributes-list {
    height: calc(100vh - 50px);
  }
}

.create-attributes-list-item:nth-child(1) {
  margin-top: 120px;
}

button.mint-button {
  margin-top: 30px;
}

#main > div > div.side-left-create > label.create-description-label > i {
  margin: 0;
  font-size: 10px;
}

button.mint-button {
  background: #7800ff;
  color: #f2bd42;
}
/*
button.mint-button-buy {
  background: #017706;
}

button.sell-button {
  background: #c01616;
} */

.create-fields-content,
.mint-quantity-marketplace-content {
  width: 100% !important;
}

.fields-section-bottom-create input,
.fields-section-bottom-create label {
  width: 50%;
  margin: 10px 0;
}

#arrow-down-create {
  animation: pulse-new 2s infinite;
}

@keyframes pulse-new {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(10px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

button#arrow-down-create {
  right: calc(15px + 40px);
}

.fields-section-bottom-create > div {
  display: flex;
}

.mint-button-content {
  width: 35%;
}

.fields-section-bottom-create input[type='number'] {
  width: 70px;
  margin: 20px;
}

.fields-section-bottom-create label {
  min-width: 140px;
}

input#mint-quantity {
  margin: 0;
  float: left;
  display: inline-block;
}

.create-fields-content > div {
  width: auto;
}

input#mint-quantity {
  margin: 0px;
  float: left;
  display: inline-block;
  margin-left: 25px;
}

.fields-section-bottom-create input {
  margin: 0;
  margin-top: 0 !important;
}

button.mint-button-buy {
  margin: 10px;
}

button.sell-button {
  margin-top: 15px !important;
  padding: 0;
  height: 35px;
}

.mint-address-content {
  padding-left: 20px;
}

button.sell-button {
  width: 120px;
}

.mint-quantity-marketplace-content > * {
  width: 7% !important;
}

button.sell-button {
  margin: 0;
}

button.sell-button,
.mint-button-content {
  position: absolute;
  right: 40px;
}

button.sell-button,
button.mint-button-buy {
  width: 150px !important;
  margin-right: 0;
}

label.buy-mints-label {
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  font-family: 'AVENGEANCE';
  margin-top: 30px;
  float: left;
  width: 100%;
  padding: 30px;
}

#main
  > div
  > div.sider-right-create
  > div.fields-section-bottom-create
  > div.mint-quantity-marketplace-content
  > label
  > i,
#main
  > div
  > div.sider-right-create
  > div.fields-section-bottom-create
  > label.buy-mints-label
  > i {
  font-size: 12px;
}

label.buy-mints-label {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -10px;
}

input#mint-quantity {
  width: 80px;
}

input#mint-address {
  width: 275px;
}

#main
  > div
  > div.sider-right-create
  > div.fields-section-bottom-create
  > div.mint-quantity-marketplace-content
  > label {
  width: 100% !important;
  display: block;
}

.mint-quantity-marketplace-content {
  display: block !important;
}

.mint-quantity-marketplace-content label.buy-mints-label {
  padding: 0;
  margin: 0;
}

input#mint-quantity-marketplace,
input#price-per-unit-marketplace {
  width: 80px !important;
  margin-top: 20px !important;
}

input#price-per-unit-marketplace {
  width: 100px !important;
}

button.mint-button {
  width: 160px;
  float: right;
  margin-right: 40px;
  margin-top: -30px;
}

.fields-section-bottom-create {
  height: 110px;
}

.fields-section-bottom-create {
  border-top: 2px dotted #7800ff;
}

button.sell-button,
button.mint-button-buy {
  background: #7800ff;
  color: #f2bd42;
}

#main > div > div.side-left-create > label.create-description-label > i {
  margin: 0;
  font-size: 12px;
}

button.comic-draft-clear-button-create {
  margin: 30px 0;
}

.title-clan-tokens-create {
  z-index: 0;
}

nav#main-nav-footer {
  z-index: 9;
}

@media (max-width: 1180px) {
  button.mint-button {
    margin: 15px;
  }
  .mint-button-content {
    margin: 60px -25px;
  }
  .mint-quantity-marketplace-content {
    margin-bottom: 150px;
  }
  button.sell-button {
    margin: 110px -25px !important;
  }

  input#mint-address {
    width: 170px;
  }
  .content-wrapper-create label {
    max-width: 360px;
  }
}

img.nftpay-bundle-image {
  margin-top: 50px;
  position: relative;
  left: 20px;
}

#AddCreditCard select.error,
#AddCreditCard input.error {
  border: 1px solid red;
}

.no-buy-yet-cc {
  filter: grayscale(1);
  cursor: not-allowed;
  pointer-events: none;
}

button#BuyButton {
  display: block !important;
}

@media (max-width: 680px) {
  article.futured {
    display: none;
  }
}

nav.main-nav {
  width: 60%;
}

.gum-embed {
  width: 100%;
  height: calc(100vh - 140px);
  border: none;
  top: 0px;
  position: relative;
}
.content-wrapper-gum {
  overflow: hidden;
}

div#gum {
  padding: 20px 0 0 10px;
}

nav#LoggedInTopBar {
  z-index: 1;
}

p#bundle-quantity-next-price {
  font-size: 10px;
  font-family: 'Calibri-Bold';
  line-height: 0;
  margin-top: 1px;
}

div#TransactionFailedMessage {
  max-width: 445px;
  overflow: scroll;
}

.wallet-box {
  cursor: pointer;
}

.bundle-image-container {
  cursor: pointer;
}

#purchaseScreen > tr.table-row.table-row-0 > td > div > p.color-yellow {
  font-size: 21px;
}

p#bundle-quantity-next-price {
  font-size: 14px;
}

.disable-nav-btn {
  pointer-events: none !important;
  cursor: not-allowed !important;
  opacity: 0.2 !important;
}

.loading-icon-infinite-rotate {
  font-size: large;
  animation: infinite-rotate 1s linear infinite;
}

@keyframes infinite-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.EnterQuantityToBuy {
  font-size: 22px;
}

p#bundle-quantity-next-price {
  font-size: 17px;
}

.TotalPrice {
  font-size: 22px;
}

input#bundle-quantity {
  font-size: 24px;
}

p#price-bundle-1,
p#price-bundle-2,
p#price-bundle-3 {
  font-size: 21px;
}

@media (max-width: 680px) {
  .releases-listing card,
  #MintProductsList card,
  #PreviousReleasesList card {
    min-width: 150px;
    margin: 0;
    margin-right: 10px;
  }

  card p {
    font-size: 12px;
  }
}

div#selectNumberForForging {
  margin: 0 !important;
  background: transparent;
  border: none;
  text-align: left;
  padding: 0;
}

#selectNumberForForging > h2,
#selectNumberForForging > h1 {
  font-family: 'AVENGEANCE';
  font-size: 18px;
  margin: 0;
}

#selectNumberForForging > h1 {
  font-size: 33px;
  margin-bottom: 5px;
}

#selectNumberForForging > p {
  margin: 0;
  margin-top: 5px;
  font-family: 'calibri-regular';
}

div#selectNumberForForging {
  padding-bottom: 30px;
}

card {
  height: max-content;
}

#LoggedInWalletConnect {
  display: none;
}

div#selectNumberForForging > * {
  margin-bottom: 10px;
}

div#dropFiltersBackBtn {
  height: 50px;
  display: flex;
  margin-top: 30px;
}

i.connected.fa-solid.fa-circle-check {
  transform: translate(0px, 3px);
}

#uploadFileForComic {
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent;
  height: 120px;
  width: 150px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

/* PDF REVIEW */
#pdf-preview {
  height: calc(100vh - 280px);
  overflow: scroll;
  flex-direction: column;
  display: none;
}
/* 
#pdf-preview .nav-container { 
  display: flex;
  justify-content: flex-end; 
  margin: 10px; 
  gap: 20px;
  
} */
#pdf-preview .nav-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0;
  z-index: 1; /* Ensure buttons stay above PDF content */
}
#pdf-preview .nav-container button {
  padding: 5px 10px; /* Smaller padding */
  font-size: 12px; /* Smaller font */
  margin-left: 5px; /* Spacing between buttons */
  background-color: #4caf50; /* Example color */
  color: white;
  border: none;
  font-size: 30px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px; /* Rounded corners */
  margin: 0 !important;
  transition: opacity 0.3s ease;
}

#pdf-preview .nav-container button:hover {
  opacity: 0.8;
}

#pdf-preview .nav-container button:disabled {
  background-color: #ccc; /* Grayed out when disabled */
  cursor: default;
  pointer-events: none; /* Disable clicks */
}

.content-wrapper-projects {
  overflow-y: auto;
  color: #ffffff;
  width: 100%;
  height: auto;
  position: absolute;
  top: 110px;
  bottom: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
.your-projects {
  max-width: 100vw;
}

.content-wrapper-projects .section-title {
  max-height: 60px;
}

#pdf-preview {
  position: relative;
  height: calc(100vh - 280px);
  overflow: hidden;
  display: none;
  background: #2d2d2d; /* Warm dark gray instead of pure black */
}

.pdf-content {
  height: 100%;
  overflow-y: auto;
  padding: 20px 60px;
  width: 100%;
  background: linear-gradient(to bottom right, #2d2d2d, #363636);
}
canvas {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Depth effect for pages */
  border-radius: 4px; /* Soften edges */
  transition: transform 0.2s ease; /* Hover effect */
}

canvas:hover {
  transform: translateY(-2px); /* Slight lift on hover */
}

.pdf-nav-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
  padding: 0 15px;
}

.pdf-nav-buttons button {
  pointer-events: all;
  background-color: #7800ff;
  color: white;
  border: none;
  font-size: 30px;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.3s ease;
}
.pdf-nav-buttons button:hover {
  opacity: 0.8;
}

.pdf-nav-buttons button:disabled {
  background-color: #ccc;
  cursor: default;
}

/* Add these new CSS rules */
.pages-container {
  opacity: 1;
  transition: opacity 0.3s ease;
}

canvas {
  transition:
    opacity 0.3s ease,
    transform 0.2s ease;
  opacity: 0; /* Start hidden */
}

.pdf-nav-buttons button {
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.pdf-nav-buttons button:active {
  transform: scale(0.9);
}

/* Loading animation */
@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  animation: pulse 1.5s infinite;
}
.pdf-nav-buttons button {
  transition: transform 0.1s ease;
}

.pdf-nav-buttons button:active {
  transform: scale(0.9);
}

.pages-container {
  padding: 20px 0;
}

canvas {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* IMAGE PREVIEW */
/* CSS */
/* .preview-content {
  overflow: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.preview-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.zoom-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.zoom-button {
  background: #7800ff;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.zoom-button:hover {
  background: #5a00c2;
} */

/* CSS */
.preview-content {
  overflow: auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.image-wrapper {
  /* position: absolute; */
  top: 50%;
  left: 50%;
  margin: auto;
  padding: 20px;
  /* transform: translate(-50%, -50%); */
  transition: all 0.3s ease;
}

.preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zoom-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  display: flex;
  gap: 5px;
}

.zoom-button {
  background: #7800ff;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
}

.info .details {
  text-align: left;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
}

.pages-container {
  position: relative;
  transition: height 0.3s ease;
}

.pages-container canvas {
  transition: opacity 0.3s ease;
  background: white;
  margin: 10px 0;
}

/* portal dropdown */

.portal-container {
  position: relative;
  display: inline-block;
  height: 100%;
  float: right;
}

.portal-trigger {
  cursor: pointer;
  /* padding: 8px; */
  height: 100%;
}
.portal-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  /* margin-top: 8px; */
  z-index: 1000;
}

.dropdown-content {
  padding: 8px 0;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: 'AVENGEANCE';
  color: white;
  text-decoration: none;
  transition: background 0.2s;
}

.portal-thumbnail {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 12px;
}
.dropdown-item:hover {
  background: #f5f5f5;
  color: #333;
}

/* Show dropdown on hover */
.portal-container:hover .portal-dropdown {
  display: block;
}

.portal-trigger.disabled .image-portal-create,
.portal-trigger.disabled .title-portal-create {
  opacity: 0.4;
}

.portal-trigger.disabled img {
  filter: grayscale(100%);
}

/* nav buttons on the create page left panel  */
.create-page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.create-page-nav * {
  margin: 0;
}
.create-page-nav a span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-left-create > .radio-button {
  margin-top: 0 !important;
}
.side-left-create > .radio-button > .comic-label-left-create,
.side-left-create > .radio-button > .single-image-label-left-create,
.side-left-create > .radio-button > .smart-contract-label-left-create {
  /* max-height: 40px; */
  margin-top: 0 !important;
}
.create-page-nav a {
  background-color: #816c9c;
  border-radius: 20px;
  height: 80px !important;
  width: 80px !important;
}
.create-page-nav a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .nav-buttons{
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 20px 0 0 0;
  gap: 20px;
  color: white;
}
.nav-buttons a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
  font-family: 'AVENGEANCE';
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.nav-buttons a img{
  width: 16px;
  height: 16px;
  margin: 0;
} */

/* My Projects style */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project:nth-child(even) .project-right-card {
  background-color: #1f2316;
}

.project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto;
  max-width: 1400px;
  gap: 60px;
}
.project-left-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 15px 0 15px 20px;
  width: 450px;
}
.project-left-section textarea {
  background-color: rgba(0, 0, 0, 0.5);
  width: 300px;
  border: none;
  padding: 20px;
  min-height: 70px;
  color: #ffffff;
  border-radius: 5px;
  font-size: 12pt;
  font-family: Arial, Helvetica, sans-serif;
}
.project-left-section label {
  margin-top: 10px;
}
.project-left-section input {
  width: 300px;
  padding: 15px;
}
.project-left-section input:focus,
.project-left-section textarea:focus {
  outline: none;
  border: none;
}
.project-left-section label {
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  font-family: 'AVENGEANCE';
}

.content-wrapper-projects home {
  overflow-x: hidden;
  width: 100vw;
}
.section-title-projects {
  font-family: 'AVENGEANCE';
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 10px 20px 10px;
  border-radius: 0;
}
.project-name {
  font-family: 'AVENGEANCE';
  font-size: 20px;
  margin: 0;
}
.project .project-name,
.section-title-projects span {
  color: #ffdc00;
}
.project .project-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.project-right-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 150px;
  min-height: 300px;
  border: 1px solid white;
  flex: 1;
}
.project-right-card .name {
  font-size: 14px;
  font-family: 'calibri-regular';
  margin: 5px 0 10px;
}
.project-right-card .description {
  padding: 0 5px;
  text-align: left;
  font-family: 'calibri-regular';
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 18px;
  max-height: 36px;
  margin-bottom: 10px;
}
.project-right-card .title {
  font-family: 'AVENGEANCE';
  font-size: 20px;
  line-height: 20px;
  padding: 0;
}

.project-right-card * {
  width: 100%;
  margin: 0;
}
.project-right-card .title {
  padding: 10px;
  text-align: center;
}
.project-right-card .image {
  border-top: 2px solid white;
  height: 300px;
  background-color: black;
}
.project-right-card .name {
  text-align: center;
}

/* community collection card button style on market page */
.community-collection-card-button span {
  float: right;
  width: 40%;
  text-align: right;
  font-size: 8pt;
}
.community-collection-card-button {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12pt;
}

/* body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f5f5f5;
  margin: 0;
} */

/* Grid for Images */
.img-wraper {
  width: 75vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border: 1px solid #00ff00; */
  padding-top: 20px;
  padding-bottom: 20px;
}

/* .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 70px);
  gap: 10px;
  padding: 20px;
  background:#161a24;
}


.tier-text {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
} */

/* Image Styles */
/* .image-box {
  width: 70px;
  height: 70px;
  border: 2px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}


.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.percs-upper {
  width: 75vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.percs-banner-wraper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95%;
  background-color: #393e4a;
}

.percs-banner-wraper .banner-heading {
  font-family: Arial, Helvetica, sans-serif;
  /* width: 100%; */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  padding: 0 10px 20px 10px;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.7em;
  margin-bottom: 0px;
}

.percs-banner-wraper .banner-heading span {
  color: #ffdc00;
}

.img-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}
.tier-text {
  font-size: 1.2em; /* Increased font size */
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
  text-align: center;
  font-family: 'AVENGEANCE';
  margin-bottom: 0px;
}
.img-dimensions {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #868a98;
  font-weight: bold;
  margin: 0px;
}

.percs-banne-label {
  background-color: #161a24;
  height: 220px;
  width: 90%;
  border-radius: 10px;
}

.percs-banner-container {
  /* background-color: #161a24; */
  height: 100%;
  width: 100%;
  /* border-radius: 10px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.percs-banner-container img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.percs-images-container {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  width: 95%;
  /* background-color: #393e4a; */
}

.percs-images-container-left {
  width: 20%;
  background-color: #222836;
  padding: 0px;
  display: flex;
  align-items: end;
  justify-content: start;
}

.percs-images-container-right {
  display: flex;
  justify-content: space-between;
  width: 80%;
  padding: 20px;
  background-color: #393e4a;
}

.content-wraper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-1 {
  background-color: #161a24;
  height: 200px;
  width: 200px;
  border-radius: 10px;
}

.content-2 {
  background-color: #161a24;
  height: 200px;
  width: 350px;
  border-radius: 10px;
}

/* .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 20px;
  background: #161a24;
  width: 90vw;
  max-width: 100%;
  justify-items: center;
}


.image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}


.drag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  width: 100%;
}


.image-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #161a24;
  border: 2px solid #444;
  position: relative;
}


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


.add-image-box {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.add-icon {
  font-size: 32px;
  color: #aaa;
}


.tier-text {
  margin-top: 5px;
  color: white;
  font-size: 14px;
  text-align: center;
}


.file-input {
  display: none;
} */

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
  gap: -10px; /* Increased gap for better spacing */
  padding: 10px;
  background: #222836;
  width: 100vw; /* Increased from 70vw to 80vw */
  max-width: 100%;
  justify-items: center;
}

/* Wrapper holds the image and text */
.image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; /* Ensures equal width distribution */
  /* border: 1px solid black;
  padding-bottom: -20px; */
  /* height: 90%; */
}

/* Draggable container */
.drag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  width: 100%;
}

/* Image Box: Ensures equal width & height */
.image-box {
  width: 100%; /* Takes full width of parent grid column */
  aspect-ratio: 1/1; /* Keeps images square */
  border-radius: 10px; /* Slightly rounded corners */
  overflow: hidden;
  background-color: #161a24;
}

/* Images maintain aspect ratio */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tier Text below the image */
.tier-text {
  margin-top: 18px;
  font-size: 24px; /* Increased font size */
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: 'AVENGEANCE';
}

.tier-name {
  margin-top: 18px;
  font-size: 16px; /* Increased font size */
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: 'AVENGEANCE';
}

.prv-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  /* max-width: 100%;
  max-height: 100%; */
  width: 40vw; /* Make image 80% of viewport width */
  height: auto;
  max-height: 80vh; /* Prevent overflow */
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.add-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #161a24;
  border-radius: 10px;
  cursor: pointer;
}

.BundleImageContainerHighlighted {
  border: solid 2px #f2bd42;
  border-radius: 8px;
}
