:root {
  --container-width: 100%;
  --container-gap: 3.75rem;
  --row-cols: 12;
  --row-gap-x: 2.222rem;
  --row-gap-y: 2.222rem;
  --body-ff: 'Rajdhani', Arial, Helvetica, sans-serif;
  --body-fz: 1rem;
  --body-lh: 1.6;
  --body-fc: var(--blue);
  --body-bg: var(--black);
  --h-ff: 'Teknikaler', Arial, Helvetica, sans-serif;
  --h-fw: 400;
  --h-lh: 1;
  --h-mb: 0 0 25px 0;
  --h1-fz: 4rem;
  --h2-fz: 5.556rem;
  --h3-fz: 3.556rem;
  --h4-fz: 2.333rem;
  --h5-fz: 2rem;
  --h6-fz: 1.778rem;
  --p-mb: 0 0 1.111rem 0;
  --s-tam: 1.111rem;
  --s-p: 5.556rem;
  --s-tm: 3.333rem;
  --s-hm: 4.444rem;
  --white: #ffffff;
  --gray: #F6F6F6;
  --gray-90: #aeafb2;
  --black: #000000;
  --black90: #272727;
  --yellow: #FEF600;
  --yellow20: #333100;
  --blue: #00E8FF;
  --red: #FF613A;
  --red20: #33130C;
  --red10: #FF0000;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  padding-left: var(--container-gap);
  padding-right: var(--container-gap);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(var(--row-gap-x) * -0.5);
  margin-left: calc(var(--row-gap-x) * -0.5);
  margin-top: calc(var(--row-gap-y) * -1);
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--row-gap-x) * 0.5);
  padding-left: calc(var(--row-gap-x) * 0.5);
  margin-top: var(--row-gap-y);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}

@font-face {
  font-display: swap;
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 400;
  src: url(96ce89e926133acd4d58.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  src: url(df202d0ee48461e846bd.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "SpaceMono";
  font-style: normal;
  font-weight: 400;
  src: url(273e6a9dd21c08f9abe2.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Teknikaler";
  font-style: normal;
  font-weight: 400;
  src: url(0a5a40d54fc50631e968.woff2) format("woff2");
}

.text-start {
  text-align: start !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: end !important;
}

.text-white {
  color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-gray-90 {
  color: var(--gray-90) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-red-20 {
  color: var(--red20) !important;
}

.text-red-10 {
  color: var(--red10) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-gray-90 {
  background-color: var(--gray-90) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.bg-red-20 {
  background-color: var(--red20) !important;
}

.bg-red-10 {
  background-color: var(--red10) !important;
}

.reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-flex-center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.flex-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.flex-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}

.flex-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.flex-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.flex-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.no-wrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.w-100 {
  width: 100% !important;
}

.w-100-vw {
  width: 100vw !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mw-100-vw {
  max-width: 100vw !important;
}

.h-100 {
  height: 100% !important;
}

.h-100-vh {
  height: 100vh !important;
}

.h-100-svh {
  height: 100svh !important;
}

.h-100-lvh {
  height: 100lvh !important;
}

.h-100-dvh {
  height: 100dvh !important;
}

.mh-100 {
  max-height: 100% !important;
}

.mh-100-vh {
  max-height: 100vh !important;
}

.mh-100-svh {
  max-height: 100svh !important;
}

.mh-100-lvh {
  max-height: 100lvh !important;
}

.mh-100-dvh {
  max-height: 100dvh !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

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

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.text-uppercase {
  text-transform: uppercase;
}

html {
  font-size: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  min-height: 100dvh;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  background: radial-gradient(133.89% 133.89% at 50% -33.89%, #FF5858 11.98%, #0F1B23 63.1%, #0A1115 100%);
  mix-blend-mode: normal;
}

* {
  outline-offset: 3px;
  outline-color: var(--black);
}

*::-moz-selection {
  color: var(--black);
  background: var(--yellow);
}

*::selection {
  color: var(--black);
  background: var(--yellow);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

a {
  color: inherit;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.button {
  font-family: 'SpaceMono', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--black);
  padding: 0.2rem 3.563rem;
  min-height: 5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}

.button-blue {
  background-color: var(--blue);
}

.button-red {
  -webkit-box-shadow: 0px 0px 30px rgba(255, 46, 0, 0.5);
  box-shadow: 0px 0px 30px rgba(255, 46, 0, 0.5);
  border-radius: 0px 12px;
  background-color: var(--red);
}

.button:hover {
  opacity: 0.8;
}

.input-group {
  margin-bottom: 30px;
}

.input-label {
  display: block;
  margin-bottom: 5px;
}

.input-control {
  max-width: 100%;
  width: 100%;
  min-height: 45px;
  padding: 0 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.input-control::-webkit-input-placeholder {
  color: var(--s-black);
}

.input-control:-moz-placeholder {
  color: var(--s-black);
}

.input-control::-moz-placeholder {
  color: var(--s-black);
}

.input-control:-ms-input-placeholder {
  color: var(--s-black);
}

.input-checkbox,
.input-radio {
  display: block;
  margin: 0;
  position: relative;
}

.input-checkbox input[type="checkbox"],
.input-checkbox input[type="radio"],
.input-radio input[type="checkbox"],
.input-radio input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}

.input-checkbox span,
.input-radio span {
  display: block;
  position: relative;
  padding-left: 30px;
}

.input-checkbox span:before,
.input-checkbox span:after,
.input-radio span:before,
.input-radio span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 1px;
  cursor: pointer;
  -webkit-transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}

.input-checkbox input[type="checkbox"]:checked + span:before {
  background-color: var(--s-black);
}

.input-checkbox input[type="checkbox"]:checked + span:after {
  opacity: 1;
}

.input-checkbox span:before {
  border: 1px solid var(--s-black);
}

.input-checkbox span:after {
  left: 6px;
  top: 11px;
  background-color: var(--s-white);
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 var(--s-white), 4px 0 0 var(--s-white), 4px -2px 0 var(--s-white), 4px -4px 0 var(--s-white), 4px -6px 0 var(--s-white), 4px -8px 0 var(--s-white);
  box-shadow: 2px 0 0 var(--s-white), 4px 0 0 var(--s-white), 4px -2px 0 var(--s-white), 4px -4px 0 var(--s-white), 4px -6px 0 var(--s-white), 4px -8px 0 var(--s-white);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}

.input-radio input[type="radio"]:checked + span:before {
  background-color: var(--s-black);
}

.input-radio input[type="radio"]:checked + span:after {
  opacity: 1;
}

.input-radio span:before,
.input-radio span:after {
  border-radius: 100%;
}

.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}

.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.modal {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  padding: var(--container-gap);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
  transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
  margin: 0 auto;
}

.modal-content {
  background-color: var(--black90);
  padding: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  pointer-events: initial;
}

.modal-close {
  cursor: pointer;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  z-index: 2;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
}

.modal-close path {
  stroke: var(--yellow);
}

.modal-close:hover {
  opacity: 0.8;
}

.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
  transition: opacity ease-in-out 0.1s, visibility ease-in-out 0.1s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.app {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.app-header {
  padding: 1.25rem 0;
}

.app-header-inner {
  font-family: 'SpaceMono', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  padding: 0.688rem 1.25rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(0, 255, 224, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0 0 0 10px;
  position: relative;
}

.app-header-inner:before,
.app-header-inner:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 1.25rem;
  top: 0;
  background-color: var(--blue);
}

.app-header-inner:before {
  left: -1.875rem;
}

.app-header-inner:after {
  right: -1.875rem;
}

.app-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: none;
}

.app-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.app-content.d-flex {
  padding-bottom: 5.438rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.app-content.flex-content-start {
  padding-top: 3.125rem;
}

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

.app-content-header:not(:last-child) {
  margin-bottom: 2.5rem;
}

.app-content-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-content-title:not(:last-child) {
  margin-bottom: 1.875rem;
}

.app-content-desc {
  font-size: 1.5rem;
}

.app-content-desc:last-child {
  margin: 0;
}

.error .app-content-desc {
  max-width: 580px;
}

.app-content-wallet {
  background-color: rgba(0, 255, 224, 0.1);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  position: relative;
  padding: 1.75rem 1.875rem;
  text-transform: uppercase;
  font-family: 'SpaceMono', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  z-index: 3;
}

.app-content-wallet-address {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.app-content-wallet-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
}

.app-content-wallet-remove:hover {
  opacity: 0.8;
}

.app-content-nft {
  margin: 2.5rem auto;
  min-width: 16rem;
  max-width: 16rem;
  position: relative;
}

.price {
  color: var(--red);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.price p {
  margin-bottom: 0;
}

.price__text {
  font-family: 'SpaceMono';
  font-size: 16px;
  line-height: 23.7px;
}

.price__value {
  font-family: 'Teknikaler';
  font-size: 30px;
  margin-top: 10px;
  line-height: 1;
}

.app-content-nft img,
.app-content-nft video {
  max-height: inherit;
  margin: 0 auto;
  border-radius: 1.5rem 0 1.5rem 0;
  width: 100%;
}

.app-content-nft img:not(.active),
.app-content-nft video:not(.active) {
  mix-blend-mode: lighten;
  opacity: 0.3;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.app-footer {
  padding: 1.25rem 0 5.938rem 0;
  width: 100%;
  position: sticky;
  z-index: 3;
  bottom: 0;
}

.app-footer .button {
  max-width: 40rem;
  width: 100%;
  font-size: 2rem;
}

.app.error {
  color: var(--red);
}

.app.error .app-header-inner {
  background-color: rgba(255, 97, 58, 0.2);
}

.app.error .app-header-inner:before,
.app.error .app-header-inner:after {
  background-color: var(--red);
}

.app-loader {
  margin: auto;
  width: 4rem;
  height: 4rem;
  position: relative;
}

.app-loader-dot {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.app-loader-dot:after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100%;
  background-color: var(--blue);
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.app.main, .app.loader, .app.not-authorized, .app.wrong-network, .app.unlinked-address {
  display: none;
}

.app.main.active, .app.loader.active, .app.not-authorized.active, .app.wrong-network.active, .app.unlinked-address.active {
  display: flex;
}

.app-content-buttons {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.app-content-buttons .button-red {
  border-radius: 0;
  min-width: 260px;
}

@media screen and (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

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

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (max-height: 800px) and (min-width: 700px) {
  .app-content-nft {
    min-width: 11.875rem;
    max-width: 32vh;
  }
}

@media screen and (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

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

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 991px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

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

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (max-height: 800px) and (min-width: 991px) {
  :root {
    --h1-fz: 3rem;
  }

  .app-content.flex-content-start {
    padding-top: 1.8rem;
  }

  .app-content-header:not(:last-child) {
    margin-bottom: 2rem;
  }

  .app-content-wallet {
    padding: 1.4rem 1.875rem;
  }

  .button {
    min-height: 4.5rem;
  }

  .app-footer .button {
    font-size: 1.8rem;
  }

  .app-content-nft {
    margin: 2rem auto;
  }
}

@media screen and (min-width: 1700px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

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

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 1700px) {
  .app-content-nft img,
  .app-content-nft video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .app-footer {
    padding: 1.25rem 0;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --container-gap: 1.25rem;
  }

  .app-header-inner:before,
  .app-header-inner:after {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --h1-fz: 3rem;
  }
}

@media (max-width: 991px) {
  .button {
    font-size: 1.1rem;
    padding: 0.1rem 3rem;
    min-height: 4rem;
  }

  .app-header-inner {
    font-size: 0.875rem;
  }

  .app-content-header:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .app-content-title:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .app-content-desc {
    font-size: 1.25rem;
  }

  .app-content-wallet {
    padding: 1.2rem 1.25rem;
    font-size: 0.875rem;
  }

  .app-content-wallet-address {
    font-size: 1.125rem;
  }

  .app-footer .button {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --h1-fz: 2rem;
  }
}

@media (max-width: 576px) {
  .app-content-title:not(:last-child) {
    margin-bottom: 1rem;
  }

  .app-content-desc {
    font-size: 1.1rem;
  }

  .unlinked-address .app-content-title, .wrong-network .app-content-title {
    white-space: wrap;
  }

  .app-content-buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

