/**
 * main.css
 *
 * The main stylesheet for the NFTY web applications.
 *
 * A few things to keep in mind regarding the structure of the file:
 *      ~ Indentation is 4 spaces per tab.
 *      ~ Each section starts with a comment of its name, and two empty lines
 *      signify the end of a section.
 *      ~ Readability above all else. This is why everything is so strongly
 *      separated into their own sections.
 *      ~ The HSL model is used for colors, as they are much more human
 *      friendly. See the following reference:
 *      https://css-tricks.com/hsl-hsla-is-great-for-programmatic-color-control
 *      ~ The !important keyword is used only for utilities, specifically,
 *      single responsibility utilities.
 *
 */


/* Variables */

:root {
    /* Black and white colors */
    
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);

    /* Body colors */

    --body-bg-color: var(--white-color);
    --body-text-color: hsl(210, 11%, 15%);

    /* Light and dark background colors */

    --bg-light-color: hsl(210, 17%, 98%);
    --bg-very-light-color: hsl(210, 17%, 98%);
    --bg-dark-color: hsl(210, 11%, 15%);

    /* Text colors */

    --text-prominent-color: var(--black-color);
    --link-prominent-color-hover: hsla(0, 0%, 0%, 0.7);

    --text-muted-color: hsl(208, 7%, 46%);
    --link-muted-color-hover: hsl(208, 7%, 25%);

    --text-very-muted-color: hsl(0, 1%, 71%);

    /* Brand colors */

    --primary-color-hsl: 287, 47%, 38%;
    --primary-color: hsl(var(--primary-color-hsl));

    --primary-color-light-hsl: 287, 47%, 50%;
    --primary-color-light: hsl(var(--primary-color-light-hsl));

    --secondary-color-hsl: 340, 69%, 58%;
    --secondary-color: hsl(var(--secondary-color-hsl));

    --secondary-color-light-hsl: 340, 69%, 70%;
    --secondary-color-light: hsl(var(--secondary-color-light-hsl));

    --tertiary-color-hsl: 24, 86%, 63%;
    --tertiary-color: hsl(var(--tertiary-color-hsl));

    --link-theme-color: var(--primary-color);
    --link-theme-color-hover: var(--primary-color-light);

    --button-theme-color: var(--primary-color);
    --button-theme-color-hover: var(--primary-color-light);

    /* Shadows */

    --shadow-small: 0 0.125rem 0.25rem hsla(0, 0%, 0%, 0.075);
    --shadow: 0 0.5rem 1rem hsla(0, 0%, 0%, 0.15);
    --shadow-large: 0 1rem hsla(0, 0%, 0%, 0.175);

    /* Containers */

    --container-adjusmtent-spacing: 20px;

    /* Fonts */

    --base-font-family: 'Rubik', sans-serif;
    --font-weight-bold: 600; /* Depending on the font being used, this may be adjusted */
}

.dark-mode {
    /* Body colors */

    --body-bg-color: hsl(0, 0%, 10%);
    --body-text-color: hsla(0, 0%, 100%, 0.8);

    /* Light and dark background colors */

    --bg-light-color: hsl(0, 0%, 15%);
    --bg-very-light-color: hsl(0, 0%, 20%);
    --bg-dark-color: hsl(0, 0%, 5%);

    /* Text colors */

    --text-prominent-color: var(--white-color);
    --link-prominent-color-hover: hsla(0, 0%, 100%, 0.8);

    --text-muted-color: hsla(0, 0%, 100%, 0.6);
    --link-muted-color-hover: hsla(0, 0%, 100%, 0.8);

    --text-very-muted-color: hsla(0, 0%, 100%, 0.4);

    /* Brand colors */

    --primary-color-hsl: 290, 80%, 50%;
    --primary-color-light-hsl: 287, 80%, 55%;

    --secondary-color-hsl: 340, 75%, 58%;
    --secondary-color-light-hsl: 340, 75%, 70%;

    --link-theme-color: var(--secondary-color);
    --link-theme-color-hover: var(--secondary-color-light);

    --button-theme-color: var(--secondary-color);
    --button-theme-color-hover: var(--secondary-color-light);
}


/* Base styles */

html,
body {
    background-color: var(--body-bg-color);
    color: var(--body-text-color);
}


/* Fonts */

body {
    font-family: var(--base-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

strong,
b {
    font-weight: var(--font-weight-bold);
}


/* Containers (and related) */

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1260px;
    }
}

.container-adjust-spacing {
    padding-left: var(--container-adjusmtent-spacing);
    padding-right: var(--container-adjusmtent-spacing);
}

.container-adjust-spacing-2x {
    padding-left: calc(2 * var(--container-adjusmtent-spacing));
    padding-right: calc(2 * var(--container-adjusmtent-spacing));
}

@media (min-width: 576px) {
    .container-sm-adjust-spacing-2x {
        padding-left: calc(2 * var(--container-adjusmtent-spacing));
        padding-right: calc(2 * var(--container-adjusmtent-spacing));
    }
}

@media (min-width: 768px) {
    .container-md-adjust-spacing-2x {
        padding-left: calc(2 * var(--container-adjusmtent-spacing));
        padding-right: calc(2 * var(--container-adjusmtent-spacing));
    }
}

@media (min-width: 992px) {
    .container-lg-adjust-spacing-2x {
        padding-left: calc(2 * var(--container-adjusmtent-spacing));
        padding-right: calc(2 * var(--container-adjusmtent-spacing));
    }
}

@media (min-width: 1200px) {
    .container-xl-adjust-spacing-2x {
        padding-left: calc(2 * var(--container-adjusmtent-spacing));
        padding-right: calc(2 * var(--container-adjusmtent-spacing));
    }
}

.m-adjust-container {
    margin: var(--container-adjusmtent-spacing);
}

.mx-adjust-container {
    margin-left: var(--container-adjusmtent-spacing);
    margin-right: var(--container-adjusmtent-spacing);
}

@media (min-width: 576px) {
    .m-sm-adjust-container {
        margin: var(--container-adjusmtent-spacing);
    }

    .mx-sm-adjust-container {
        margin-left: var(--container-adjusmtent-spacing);
        margin-right: var(--container-adjusmtent-spacing);
    }
}

@media (max-width: 575.98px) {
    .px-xs-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* Positioning */

.top-25 {
    top: 25% !important;
}

.start-75 {
    left: 75% !important;
}


/* Text */

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

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

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

.text-gradient {
    color: var(--primary-color);
    background: -webkit-linear-gradient(0deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-reverse {
    color: var(--primary-color);
    background: -webkit-linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    color: var(--primary-color);
    background: -webkit-linear-gradient(0deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt-reverse {
    color: var(--primary-color);
    background: -webkit-linear-gradient(0deg, var(--tertiary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

.fs-7 {
    font-size: 14px !important;
}

.fs-8 {
    font-size: 12px !important;
}

@media (max-width: 575.98px) {
    .fs-xs-6 {
        font-size: 16px !important;
    }

    .fs-xs-7 {
        font-size: 14px !important;
    }

    .fs-xs-8 {
        font-size: 12px !important;
    }
}

.text-twitter {
    color: #1da1f2 !important;
}

.text-discord {
    color: #5865f2 !important;
}

.text-telegram {
    color: #0088cc !important;
}

.text-instagram {
    color: var(--primary-color);
    background: -webkit-linear-gradient(45deg, var(--tertiary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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


/* Links */

.link-prominent {
    color: var(--text-prominent-color);
    text-decoration: none;
}

.link-prominent:hover {
    color: var(--link-prominent-color-hover);
}

.link-muted {
    color: var(--text-muted-color);
    text-decoration: none;
}

.link-muted:hover {
    color: var(--link-muted-color-hover);
}

.link-theme {
    color: var(--link-theme-color);
    text-decoration: none;
}

.link-theme:hover {
    color: var(--link-theme-color-hover);
    text-decoration: none;
}


/* Backgrounds */

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

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

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

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

.bg-gradient {
    background: linear-gradient(
        90deg,
        hsla(var(--tertiary-color-hsl), 0.1),
        hsla(var(--secondary-color-hsl), 0.1),
        hsla(var(--primary-color-hsl), 0.1)
    ) !important;
}

.bg-gradient-alt {
    background: linear-gradient(
        90deg,
        hsla(var(--primary-color-hsl), 0.1),
        hsla(var(--secondary-color-hsl), 0.1),
        hsla(var(--tertiary-color-hsl), 0.1)
    ) !important;
}

.bg-discord {
    background-color: #5865f2 !important;
}

.bg-telegram {
    background-color: #0088cc !important;
}

.bg-ethereum {
    background-color: #96A5D7 !important;
}

.bg-shopify {
    background-color: #96bf48 !important;
}

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

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

.bg-tertiary-light {
    background-color: hsla(var(--tertiary-color-hsl), 0.075) !important;
}


/* Background patterns */

.bg-pattern {
    content: " ";
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-pattern-1 {
    background-image: url("https://nftynetwork.io/static/images/pattern-1.png");
}

.bg-pattern-2 {
    background-image: url("https://nftynetwork.io/static/images/pattern-2.png");
}

.bg-pattern-3 {
    background-image: url("https://nftynetwork.io/static/images/pattern-3.png");
}

.bg-pattern-4 {
    background-image: url("https://nftynetwork.io/static/images/pattern-4.png");
    background-repeat: no-repeat;
    background-position: center;
}


/* Borders */

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

.border-secondary-light {
    border-color: hsla(var(--secondary-color-hsl), 0.2) !important;
}

.rounded-4 {
    border-radius: 16px !important;
}

@media (max-width: 575.98px) {
    .rounded-xs-0 {
        border-radius: 0 !important;
    }
}

.border-dashed {
    border-style: dashed !important;
}

.border-transparent {
    border-color: transparent !important;
}

.border-body {
    border-color: var(--body-bg-color) !important;
}


/* Z-index */

.z-1 {
    z-index: 1 !important;
}

.z-n-1 {
    z-index: -1 !important;
}


/* Vertical spacer */

.v-spacer {
    width: 100%;
    height: 1px;
    content: " ";
}


/* White space */

.ws-no-wrap {
    white-space: nowrap !important;
}


/* Cursor */

.cursor-pointer {
    cursor: pointer !important;
}


/* Buttons */

.btn {
    --vertical-padding: 8px;
    --horizontal-padding: 24px;

    font-weight: var(--font-weight-bold);
    padding: var(--vertical-padding) var(--horizontal-padding);
    border-radius: calc(var(--horizontal-padding) * 2);
    transition: box-shadow .15s ease-in-out;
}

.btn-sm {
    --vertical-padding: 5px;
    --horizontal-padding: 16px;
}

.btn-lg {
    --vertical-padding: 10px;
    --horizontal-padding: 40px;
}

.btn:not(.btn-light):not(.btn-dark):not(.btn-primary):not(.btn-info):not(.btn-success):not(.btn-warning):not(.btn-danger):not(.btn-outline-light):not(.btn-outline-dark):not(.btn-outline-primary):not(.btn-outline-info):not(.btn-outline-success):not(.btn-outline-warning):not(.btn-outline-danger):focus {
    box-shadow: 0 0 0 4px hsla(var(--primary-color-hsl), 0.3);
}

.btn-default {
    color: var(--primary-color);
    border: 1px solid hsla(0, 0%, 0%, 0.1);
}

.btn-default:hover {
    color: var(--primary-color);
    border-color: hsla(0, 0%, 0%, 0.2);
}

.btn-default:focus {
    border-color: var(--primary-color);
}

.btn-default.active {
    background-color: hsla(0, 0%, 0%, 0.025);
}

.btn-bordered {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-bordered:hover,
.btn-bordered:focus {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.btn-gradient {
    color: var(--white-color);
    background-color: var(--primary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: 0;
}

.btn-gradient:hover {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color), var(--primary-color));
}

.btn-gradient:focus {
    color: var(--white-color);
}

.btn-gradient-reverse {
    color: var(--white-color);
    background-color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: 0;
}

.btn-gradient-reverse:hover {
    color: var(--white-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
}

.btn-gradient-reverse:focus {
    color: var(--white-color);
}

.btn-gradient-alt {
    color: var(--white-color);
    background-color: var(--primary-color);
    background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color), var(--primary-color));
    border: 0;
}

.btn-gradient-alt:hover {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-gradient-alt:focus {
    color: var(--white-color);
}

.btn-gradient-alt-reverse {
    color: var(--white-color);
    background-color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    border: 0;
}

.btn-gradient-alt-reverse:hover {
    color: var(--white-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.btn-gradient-alt-reverse:focus {
    color: var(--white-color);
}

.btn-theme {
    color: var(--white-color);
    background-color: var(--button-theme-color);
    border: 0;
}

.btn-theme:hover {
    color: var(--white-color);
    background-color: var(--button-theme-color-hover);
}

.btn-theme:focus {
    color: var(--white-color);
}

.btn:disabled,
.btn:disabled:hover,
.btn:disabled:focus {
    color: hsla(0, 0%, 0%, 0.3);
    background-color: transparent;
    background: none;
    border: 1px solid hsla(0, 0%, 0%, 0.3);
    pointer-events: initial;
    cursor: not-allowed;
}

.btn-check:focus + .btn-default {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px hsla(var(--primary-color-hsl), 0.3);
}

.btn-check:checked + .btn-default {
    background-color: hsla(0, 0%, 0%, 0.025);
}


/* Form controls */

.form-label {
    font-weight: var(--font-weight-bold);
}

.form-control,
.form-select {
    --vertical-padding: 8px;
    --horizontal-padding: 20px;

    padding: var(--vertical-padding) var(--horizontal-padding);
    border-radius: calc(var(--horizontal-padding) * 2);
}

.form-control-sm,
.form-select-sm {
    --vertical-padding: 6px;
    --horizontal-padding: 16px;
}

.form-control-lg,
.form-select-lg {
    --vertical-padding: 12px;
    --horizontal-padding: 24px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px hsla(var(--primary-color-hsl), 0.3);
}

textarea.form-control,
textarea.form-control-sm,
textarea.form-control-lg {
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 12px;
}

.form-number::-webkit-outer-spin-button,
.form-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-number {
    -moz-appearance: textfield;
}

/* File input reset */

.form-control[type="file"] {
    padding: .375rem .75rem;
}

/* Placeholders */

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: hsla(0, 0%, 0%, 0.35);
}

.form-control::-moz-placeholder { /* Firefox 19+ */
    color: hsla(0, 0%, 0%, 0.35);
}

.form-control:-ms-input-placeholder { /* IE 10+ */
    color: hsla(0, 0%, 0%, 0.35);
}

.form-control:-moz-placeholder { /* Firefox 18- */
    color: hsla(0, 0%, 0%, 0.35);
}

/* Hidden input */

.hidden-input-container {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    top: 0;
    left: 0;
}

/* Bootstrap 5 JSON field widget */

.bs5-json-field-widget {
    padding: 20px;
    border: 1px solid hsla(0, 0%, 0%, 0.15);
    border-radius: 4px;
    font-family: var(--bs-font-monospace);
}

.bs5-json-field-widget .json-item {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.15);
}

.bs5-json-field-widget .json-item-content {
    flex-grow: 1;
}

.bs5-json-field-widget .json-item-remove,
.bs5-json-field-widget .json-item-remove:hover,
.bs5-json-field-widget .json-item-remove:active,
.bs5-json-field-widget .json-item-remove:focus {
    background-color: transparent;
    color: var(--black-color);
    border: 0;
    border-radius: 4px;
    box-shadow: none;
    line-height: 1;
    padding: 2px 6px;
    margin-right: 10px;
}

.bs5-json-field-widget .json-item-remove:focus {
    box-shadow: 0 0 0 3px hsla(var(--secondary-color-hsl), 0.5);
    outline: 0;
}


/* Widths and heights */

.width-1 {
    width: 30px !important;
}

.width-2 {
    width: 60px !important;
}

.width-3 {
    width: 100px !important;
}

.width-4 {
    width: 200px !important;
}

.height-1 {
    height: 30px !important;
}

.height-2 {
    height: 60px !important;
}

.height-3 {
    height: 100px !important;
}

.height-4 {
    height: 200px !important;
}


/* Opacity */

.opacity-75 {
    opacity: 75%;
}

.opacity-50 {
    opacity: 50%;
}

.opacity-25 {
    opacity: 25%;
}


/* Dropdowns */

.dropdown-menu {
    border-radius: 6px;
    border-color: hsla(0, 0%, 0%, 0.05);
    box-shadow: var(--shadow-small);
}

.dropdown-item:active,
.dropdown-item.active {
    background-color: var(--primary-color);
}


/* Image */

.centered-x-img-container {
    display: flex;
    justify-content: center;
}

.centered-y-img-container {
    display: flex;
    align-items: center;
}

.centered-xy-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img-container {
    display: block;
    width: 34px;
    height: 34px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img-container-md {
    display: block;
    width: 44px;
    height: 44px;
    border: 4px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img-container-lg {
    display: block;
    width: 84px;
    height: 84px;
    border: 4px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img-container-xl {
    display: block;
    width: 124px;
    height: 124px;
    border: 4px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
}

.centered-x-img-container img,
.centered-y-img-container img,
.centered-xy-img-container img,
.avatar-img-container img,
.avatar-img-container-md img,
.avatar-img-container-lg img,
.avatar-img-container-xl img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Scroll shadows */

.scroll-shadow-x {
    white-space: nowrap;
    overflow-x: auto;

    background-image:
    /* Shadows */
    linear-gradient(to right, var(--white-color), var(--white-color)),
    linear-gradient(to right, var(--white-color), var(--white-color)),
    /* Shadow covers */
    linear-gradient(to right, rgba(0, 0, 0, .05), rgba(255, 255, 255, 0)),
    linear-gradient(to left, rgba(0, 0, 0, .05), rgba(255, 255, 255, 0));

    background-position: left center, right center, left center, right center;
    background-repeat: no-repeat;
    background-size: 30px 100%, 30px 100%, 10px 100%, 10px 100%;

    /* Opera doesn't support this in the shorthand */
    background-attachment: local, local, scroll, scroll;
}


/* Header */

.header-logo {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-decoration: none;

    /* Text gradient (not supported on all browsers) */
    background: -webkit-linear-gradient(0deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-logo:hover,
.header-logo:focus {
    color: var(--primary-color);
}


/* Section divider */

.section-divider {
    content: " ";
    width: 100%;
    height: 10px;
    border-bottom: 1px solid var(--body-text-color);
}


/* Home hero section */

.home-hero-nft-img-wrapper {
    --nft-price-width: 260px;
    --nft-price-height: 68px;

    --nft-price-label-width: 150px;
    --nft-price-label-height: 36px;

    position: relative;
    width: 480px;
    height: 360px;
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .home-hero-nft-img-wrapper {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .home-hero-nft-img-wrapper {
        width: 600px;
        height: 450px;
    }
}

@media (max-width: 767.98px) {
    .home-hero-nft-img-wrapper {
        width: 480px;
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .home-hero-nft-img-wrapper {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 419.98px) {
    .home-hero-nft-img-wrapper {
        width: 300px;
        height: 225px;
    }
}

.home-hero-nft-img-wrapper .centered-xy-img-container {
    border-radius: 12px;
    overflow: hidden;
}

.home-hero-nft-img-wrapper img {
    border-radius: 12px;
}

.home-hero-nft-img-wrapper img.portrait {
    max-height: 100%;
}

.home-hero-nft-thumbnail-wrapper {
    width: 48px;
    height: 48px;
    max-width: 100%;
}

.home-hero-nft-thumbnail-wrapper a {
    text-decoration: none;
}

.home-hero-nft-thumbnail-wrapper a.active {
    pointer-events: none;
}

.home-hero-nft-thumbnail-wrapper .centered-xy-img-container {
    border-radius: 6px;
    background-color: hsla(0, 0%, 0%, 0.025);
    overflow: hidden;
}

.home-hero-nft-thumbnail-wrapper a.active .centered-xy-img-container {
    box-shadow: 0 0 0 2px var(--white-color), 0 0 0 4px var(--primary-color);
}

.home-hero-nft-price {
    position: absolute;
    z-index: 10;
    left: calc((100% - var(--nft-price-width)) / 2);
    bottom: calc((-1) * (var(--nft-price-height) / 2));
    display: inline-block;
    text-align: center;
    width: var(--nft-price-width);
    height: var(--nft-price-height);
    line-height: var(--nft-price-height);
    border-radius: var(--nft-price-height);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--black-color);
    background-color: var(--white-color);
    box-shadow: var(--shadow);
}

.home-hero-nft-price-label {
    position: absolute;
    z-index: 10;
    left: calc((100% - var(--nft-price-label-width)) / 2);
    bottom: calc(var(--nft-price-label-height) / 2);
    display: inline-block;
    text-align: center;
    width: var(--nft-price-label-width);
    height: var(--nft-price-label-height);
    line-height: var(--nft-price-label-height);
    border-radius: var(--nft-price-label-height);
    font-size: 14px;
    color: var(--white-color);
    background-color: var(--black-color);
    box-shadow: var(--shadow);
}

.col-home-hero-artist {
    border-right: 1px solid hsla(0, 0%, 0%, 0.1);
}

@media (max-width: 575.98px) {
    .col-home-hero-artist {
        border-right: 0;
        border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
    }
}

.home-hero-ghost-nft-container {
    right: 10px;
    bottom: 10px;
}

@media (min-width: 576px) {
    .home-hero-ghost-nft-container {
        right: 20px;
        bottom: 20px;
    }
}

@media (min-width: 768px) {
    .home-hero-ghost-nft-container {
        right: 25px;
        bottom: 25px;
    }
}

.home-hero-ghost-nft-container .home-hero-nft-img-wrapper {
    position: relative;
}

.home-hero-ghost-nft-container .home-hero-nft-img-wrapper::after {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: hsla(0, 100%, 100%, 0.6);
    border-radius: 12px;
}


/* Home live auctions xl carousel */

.home-live-auctions-xl-carousel {
    --carousel-btn-width: 48px;
    --carousel-btn-height: 48px;
}

.home-live-auctions-xl-carousel .carousel-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1;
    top: calc((100% - var(--carousel-btn-height)) / 2);
    background-color: var(--white-color);
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 50%;
    opacity: 1;
    padding: 0;
    width: var(--carousel-btn-width);
    height: var(--carousel-btn-height);
}

.home-live-auctions-xl-carousel .carousel-btn:hover {
    border-color: hsla(0, 0%, 0%, 0.2);
}

.home-live-auctions-xl-carousel .carousel-btn:focus {
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-size: 64%;
}


/* Explore NFTs hero section */

.explore-nft-search-container {
    --icon-width: 60px;
    --input-padding: 12px;
    --dropdown-right: 20px;
    --dropdown-toggle-width: 130px;

    position: relative;
}

@media (max-width: 575.98px) {
    .explore-nft-search-container {
        --dropdown-toggle-width: 80px;
    }
}

.explore-nft-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-width);
    height: 100%;
    color: hsla(0, 0%, 0%, 0.3);
}

.explore-nft-search {
    padding: var(--input-padding);
    padding-left: var(--icon-width);
    padding-right: calc(var(--dropdown-right) + var(--dropdown-toggle-width) + var(--input-padding));
    border-radius: calc(var(--input-padding) * 4);
    border-color: hsla(0, 0%, 0%, 0.025);
    box-shadow: var(--shadow-small);
}

.explore-nft-search-dropdown {
    position: absolute;
    top: 0;
    right: var(--dropdown-right);
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}

.explore-nft-search-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: var(--dropdown-toggle-width);
    height: 100%;
    font-size: 14px;
}


/* NFT card */

.nft-card {
    position: relative;
    margin: var(--container-adjusmtent-spacing);
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
}

.nft-card:hover {
    box-shadow: var(--shadow-small);
}

.nft-card-img-container {
    height: 220px; /* Previously it was 240px */
    background-color: hsla(0, 0%, 0%, 0.025);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    .nft-card-img-container {
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .nft-card-img-container {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .nft-card-img-container {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .nft-card-img-container {
        height: auto;
        max-height: 400px;
    }
}


/* Artist card */

.artist-card {
    --cover-image-container-height: 160px;

    position: relative;
    display: block;
    margin: var(--container-adjusmtent-spacing);
    padding-top: calc(var(--cover-image-container-height) / 2);
    color: inherit;
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
    text-decoration: none;
}

.artist-card:hover {
    color: inherit;
    box-shadow: var(--shadow-small);
    text-decoration: none;
}

.artist-card-cover-img-container {
    position: absolute;
    top: 0;
    left: 0;
    height: var(--cover-image-container-height);
    z-index: -1;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: hsla(0, 0%, 0%, 0.025);
    overflow: hidden;
}

.artist-card-description {
    position: relative;
}

@media (min-width: 576px) {
    .artist-card-description {
        height: 80px;
        overflow: hidden;
    }
}


/* Card bottom label (floating) */

.card-bottom-label {
    --width: 160px;
    --height: 44px;

    position: absolute;
    z-index: 10;
    left: calc((100% - var(--width)) / 2);
    bottom: calc((-1) * (var(--height) / 2));
    display: inline-block;
    text-align: center;
    width: var(--width);
    height: var(--height);
    line-height: var(--height);
    border-radius: var(--height);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--white-color);
    background-color: var(--black-color);
}


/* NFT details */

.nft-details-img-wrapper {
    width: 600px;
    height: 560px;
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .nft-details-img-wrapper {
        width: 480px;
        height: 448px;
    }
}

@media (max-width: 991.98px) {
    .nft-details-img-wrapper {
        width: 540px;
        height: 504px;
    }
}

@media (max-width: 767.98px) {
    .nft-details-img-wrapper {
        width: 480px;
        height: 448px;
    }
}

@media (max-width: 575.98px) {
    .nft-details-img-wrapper {
        width: 420px;
        height: 392px;
    }
}

@media (max-width: 419.98px) {
    .nft-details-img-wrapper {
        width: 300px;
        height: 280px;
    }
}

.nft-details-img-wrapper .centered-xy-img-container {
    border-radius: 12px;
    overflow: hidden;
}

.nft-details-img-wrapper img {
    border-radius: 12px;
}

.nft-details-img-wrapper img.portrait {
    max-height: 100%;
}

/* Icon link */

.nft-details-icon-link {
    display: inline-block;
    position: relative;
    color: var(--black-color);
    text-decoration: none;
    border-radius: 6px;
}

.nft-details-icon-link:hover {
    color: hsla(0, 0%, 0%, 0.7);
    text-decoration: none;
}

.nft-details-icon-link .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    color: var(--primary-color);
    background-color: hsla(0, 0%, 0%, 0.05);
    border-radius: 50%;
}


/* NFT details page */

/* Artist, bids, owners card */

.nft-details-artist-bids-owners-section {
    --bids-owner-card-title-section-height: 90px;
    --bids-owner-card-scroll-section-height: 320px;
    --bids-owner-card-scroll-margin-bottom: 10px;
}

@media (min-width: 576px) {
    .nft-details-artist-bids-owners-section .artist-card-description {
        height: auto;
        overflow: auto;
    }
}

@media (min-width: 768px) {
    .nft-details-artist-bids-owners-section .artist-card {
        height: calc(var(--bids-owner-card-title-section-height) + var(--bids-owner-card-scroll-section-height) + var(--bids-owner-card-scroll-margin-bottom));
    }

    .nft-details-artist-bids-owners-section .artist-card-description {
        height: 110px;
        overflow: hidden;
    }
}

.bids-owner-card {
    margin: var(--container-adjusmtent-spacing);
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
    text-decoration: none;
}

.bids-owner-card .title-section {
    height: var(--bids-owner-card-title-section-height);
}

.bids-owner-card .scroll-section {
    height: var(--bids-owner-card-scroll-section-height);
    overflow-y: auto;
}

@media (min-width: 768px) {
    .bids-owner-card .scroll-section {
        margin-bottom: var(--bids-owner-card-scroll-margin-bottom);
    }
}

/* Custom scrollbar for scroll sections (not for tablets and phones) */

@media (min-width: 768px) {
    .bids-owner-card .scroll-section::-webkit-scrollbar {
        width: 5px;
    }

    .bids-owner-card .scroll-section::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 0;
    }

    .bids-owner-card .scroll-section::-webkit-scrollbar-thumb {
        background-color: hsla(0, 0%, 0%, 0.1);
        border-radius: 12px;
    }

    .bids-owner-card .scroll-section::-webkit-scrollbar-thumb:hover {
        background-color: hsla(0, 0%, 0%, 0.2);
    }

    .bids-owner-card .scroll-section {
        scrollbar-color: hsla(0, 0%, 0%, 0.1) transparent;
        scrollbar-width: thin;
    }
}


/* Wallet card */

.wallet-card {
    position: relative;
    display: block;
    margin: var(--container-adjusmtent-spacing);
    color: inherit;
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
    text-decoration: none;
}

.wallet-card:hover {
    color: inherit;
    box-shadow: var(--shadow-small);
    text-decoration: none;
}

.wallet-card-img-container {
    height: 64px;
    margin-top: 10px;
}

.wallet-card-description {
    position: relative;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .wallet-card-description {
        height: 80px;
        margin-bottom: 0;
        overflow: hidden;
    }
}


/* Profile page */

.profile-cover-img-container {
    width: 100%;
    height: 260px;
    background-color: hsla(0, 0%, 0%, 0.025);
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    .profile-cover-img-container {
        height: 240px;
    }
}

@media (max-width: 991.98px) {
    .profile-cover-img-container {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .profile-cover-img-container {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .profile-cover-img-container {
        height: 180px;
    }
}

.profile-cover-img-container img {
    width: 100%;
}

.profile-dp-container {
    --width: 124px;
    --height: 124px;

    position: absolute;
    z-index: 1;
    bottom: calc((-1) * (var(--height) / 2));
    left: var(--container-adjusmtent-spacing);
    display: block;
    width: var(--width);
    height: var(--height);
    border: 4px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
}

.profile-dp-container img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Minting NFT */

/* NFT type card */

.nft-type-card {
    position: relative;
    display: block;
    height: 300px;
    margin: var(--container-adjusmtent-spacing);
    color: var(--white-color);
    background-color: hsla(0, 0%, 0%, 0.6);
    border-radius: 12px;
    text-decoration: none;
}

.nft-type-card:hover {
    color: var(--white-color);
    text-decoration: none;
}

.nft-type-card.active {
    pointer-events: none;
    box-shadow: inset 0 0 0 2px var(--white-color), 0 0 0 4px var(--primary-color);
}

@media (max-width: 1199.98px) {
    .nft-type-card {
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .nft-type-card {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .nft-type-card {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .nft-type-card {
        height: 260px;
    }
}

.nft-type-card-img-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* NFT preview */

.nft-preview-img-wrapper {
    width: 380px;
    height: 380px;
    max-width: 100%;
    padding: 20px;
    border: 1px solid hsla(0, 0%, 0%, 0.15);
    border-radius: 12px;
}

@media (max-width: 1199.98px) {
    .nft-preview-img-wrapper {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 991.98px) {
    .nft-preview-img-wrapper {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .nft-preview-img-wrapper {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .nft-preview-img-wrapper {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 419.98px) {
    .nft-preview-img-wrapper {
        width: 300px;
        height: 300px;
    }
}

.nft-preview-img-wrapper .centered-xy-img-container {
    border-radius: 12px;
    overflow: hidden;
}

.nft-preview-img-wrapper img {
    border-radius: 12px;
}

.nft-preview-img-wrapper img.portrait {
    max-height: 100%;
}

/* Mint NFT image upload */

.mint-nft-img-upload-container {
    position: relative;
    width: 100%;
}

.mint-nft-img-upload-container::before {
    content: " ";
    display: block;
    padding-top: 100%;
}

.mint-nft-img-upload-input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    top: 0;
    left: 0;
}

.mint-nft-img-upload-label {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: var(--primary-color);
    line-height: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%237B338EFF' stroke-width='6' stroke-dasharray='10%2c 18' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
}

.mint-nft-img-upload-label.has-image {
    color: var(--white-color);
}

.mint-nft-img-upload-label:hover {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23DE4A7BFF' stroke-width='6' stroke-dasharray='10%2c 18' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.mint-nft-img-upload-input:focus + .mint-nft-img-upload-label {
    box-shadow: 0 0 0 6px var(--white-color), 0 0 0 10px hsla(var(--primary-color-hsl), 0.25);
}

.mint-nft-img-upload-selected-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: -1;
}

.mint-nft-img-upload-selected-img-wrapper .centered-xy-img-container {
    border-radius: 12px;
    overflow: hidden;
}

.mint-nft-img-upload-selected-img-wrapper img {
    border-radius: 12px;
    filter: brightness(0.3);
}

.mint-nft-img-upload-selected-img-wrapper img.portrait {
    max-height: 100%;
}

/* Step controls */

.minting-nft-step-controls {
    border-top: 1px dashed hsla(0, 0%, 0%, 0.1);
}

/* Gas fees wallet card */

.gas-fees-wallet-card {
    position: relative;
    display: block;
    max-width: 300px;
    color: inherit;
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
    text-decoration: none;
}

.gas-fees-wallet-card:hover {
    color: inherit;
    box-shadow: var(--shadow-small);
    text-decoration: none;
}

.gas-fees-wallet-card-img-container {
    height: 100px;
    margin-top: 10px;
}


/* Generic link cards */

.link-card {
    position: relative;
    display: block;
    color: inherit;
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
    text-decoration: none;
}

.link-card:hover {
    color: inherit;
    box-shadow: var(--shadow-small);
    text-decoration: none;
}


/* Generic check (checkbox or radio) cards */

.check-card-container {
    position: relative;
}

.check-card-input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.check-card {
    position: relative;
    display: block;
    color: inherit;
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
}

.check-card:hover {
    color: inherit;
    box-shadow: var(--shadow-small);
    text-decoration: none;
}

.check-card-input:focus + .check-card {
    box-shadow: 0 0 0 3px hsla(var(--primary-color-hsl), 0.3);
}

.check-card-input:checked + .check-card {
    border-color: transparent;
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.check-card-input:checked:focus + .check-card {
    box-shadow: 0 0 0 3px var(--secondary-color), 0 0 0 8px hsla(var(--primary-color-hsl), 0.15);
}

.check-card-input:disabled + .check-card {
    background-color: hsla(0, 0%, 0%, 0.01);
    pointer-events: none;
}


/**
 * NFTY Marketplace specific
 */

/* Footer */

@media (min-width: 768px) {
    .nftymarketplace .col-footer {
        border-left: 1px dashed hsla(0, 0%, 0%, 0.2);
        border-right: 1px dashed hsla(0, 0%, 0%, 0.2);
    }

    .nftymarketplace .col-footer:first-child {
        border-right: 0;
    }

    .nftymarketplace .col-footer:last-child {
        border-left: 0;
    }
}


/**
 * NFTY Landing specific
 */

/* Containers (and related) */

@media (min-width: 1400px) {
    .nftylanding .container-xxl,
    .nftylanding .container-xl,
    .nftylanding .container-lg,
    .nftylanding .container-md,
    .nftylanding .container-sm,
    .nftylanding .container {
        max-width: 1220px;
    }
}


/* Box shadows */

.nftylanding .shadow-alt-lg {
    box-shadow: 0 1rem 2rem hsla(var(--secondary-color-hsl), 0.035) !important;
}


/* Bg blockers */

.nftylanding .bg-blocker {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    background-color: var(--white-color);
}

.nftylanding .bg-blocker-top {
    top: 0;
}

.nftylanding .bg-blocker-bottom {
    bottom: 0;
}

.nftylanding #how-we-work .bg-blocker {
    height: 250px;
}

.nftylanding #how-we-are-different .bg-blocker {
    height: 120px;
}

.nftylanding #phone-screens .bg-blocker {
    height: 80px;
}


/* Phones screens (and related) */

.nftylanding .phone-screen {
    width: 300px;
    max-width: 100%;
    height: 500px;
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 360px) {
    .nftylanding .phone-screen {
        width: 280px;
    }
}

.nftylanding .phone-screen-minted-nft-img-wrapper {
    height: 180px;
}

.nftylanding .phone-screen-minted-nft-img-wrapper .centered-xy-img-container {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.nftylanding .phone-screen-minted-nft-img-wrapper img.portrait {
    max-height: 100%;
}

.nftylanding .phone-screen-cutoff {
    width: 460px;
    max-width: 100%;
    height: 380px;
    padding-top: 100px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}


/* Hero section */

.nftylanding .logo-top {
    height: 56px;
}

@media (max-width: 575.98px) {
    .nftylanding .logo-top {
        height: 44px;
    }
}


/* Sharing section */

.nftylanding .sharing-fixed-height {
    height: 500px;
}

@media (min-width: 768px) {
    .nftylanding .sharing-fixed-height-md {
        height: 500px;
    }
}

@media (min-width: 992px) {
    .nftylanding .sharing-fixed-height-lg {
        height: 500px;
    }
}


/* Partners section */

.nftylanding .partner-logo-container {
    height: 120px;
}

.nftylanding .partner-logo-container-sm {
    height: 80px;
}

@media (max-width: 575.98px) {
    .nftylanding .partner-logo-container {
        height: 100px;
    }
    .nftylanding .partner-logo-container-sm {
        height: 70px;
    }
}

.nftylanding .partner-logo-container img,
.nftylanding .partner-logo-container-sm img {
    max-height: 100%;
    filter: saturate(0);
}

.nftylanding .partners-bg-bubble {
    --width-height: 0;

    content: " ";
    position: absolute;
    z-index: -1;
    display: block;
    width: var(--width-height);
    height: var(--width-height);
    border-radius: 50%;
}

.nftylanding .partners-bg-bubble-1 {
    --width-height: 200px;

    top: -30px;
    left: -60px;
}

.nftylanding .partners-bg-bubble-2 {
    --width-height: 60px;

    top: -40px;
    left: 80px;
}


/* Goals section */

.nftylanding .goal-card {
    position: relative;
    margin: var(--container-adjusmtent-spacing);
    border: 2px solid hsla(var(--secondary-color-hsl), 0.2);
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .nftylanding .goal-card {
        height: 420px;
    }
}

.nftylanding .btn-goal-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 36px;
    height: 36px;
    border: 2px solid hsla(var(--primary-color-hsl), 0.2);
}

.nftylanding .goal-card-bg-bubble {
    --width-height: 0;

    content: " ";
    position: absolute;
    z-index: -1;
    display: block;
    width: var(--width-height);
    height: var(--width-height);
    border-radius: 50%;
}

.nftylanding .goal-card-bg-bubble-1 {
    --width-height: 400px;

    bottom: -60px;
    right: -180px;
}

.nftylanding .goal-card-bg-bubble-2 {
    --width-height: 400px;

    bottom: -60px;
    left: -240px;
}

.nftylanding .goal-card-bg-bubble-3 {
    --width-height: 360px;

    bottom: -200px;
    right: -300px;
}

.nftylanding .goal-card-bg-bubble-4 {
    --width-height: 360px;

    bottom: -200px;
    left: -100px;
}

.nftylanding .goal-card-bg-bubble-5 {
    --width-height: 100px;

    top: 20px;
    right: -80px;
}


/* How we are different section */

@media (min-width: 992px) {
    .nftylanding .differences-card-item {
        height: 100px;
    }
}

@media (max-width: 575.98px) {
    .nftylanding .fs-override-xs {
        font-size: calc(1rem + .3vw) !important;
    }
}


/* Attaining market section */

.nftylanding .attaining-market-card {
    --number-width-height: 60px;
}

@media (max-width: 1199.98px) {
    .nftylanding .attaining-market-card {
        margin-left: calc(var(--number-width-height) / 2);
    }
}

@media (max-width: 575.98px) {
    .nftylanding .attaining-market-card {
        margin-left: 0;
    }
}

.nftylanding .attaining-market-card-number {
    position: absolute;
    z-index: 1;
    top: calc((100% - var(--number-width-height)) / 2);
    left: calc((-1) * (var(--number-width-height) / 2));
    background-color: var(--white-color);
    width: var(--number-width-height);
    height: var(--number-width-height);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 1rem 0.2rem hsla(var(--secondary-color-hsl), 0.02);
}

.nftylanding .attaining-market-card-number::after {
    content: " ";
    display: block;
    position: absolute;
    left: calc(var(--number-width-height) / 2);
    width: calc((var(--number-width-height) / 2) + 10px);
    height: calc(var(--number-width-height) + 40px);
    background-color: var(--white-color);
}

@media (max-width: 575.98px) {
    .nftylanding .attaining-market-card-number {
        display: none;
    }
}


/* Embed form */

.nftylanding #mlb2-4371457 * {
    font-family: var(--base-font-family) !important;
}

.nftylanding #mlb2-4371457.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent;
}

.nftylanding #mlb2-4371457.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.nftylanding #mlb2-4371457.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 0;
}


/**
 * NFTY Network specific
 */

.nftynetwork {
    --base-font-family: 'Poppins', sans-serif;
}

.nftynetwork.dark-mode {
    --body-bg-color: hsl(238, 60%, 11%);
    --bg-light-color: hsl(242, 54%, 14%);
    --bg-very-light-color: hsl(240, 23%, 22%);
}

@media (min-width: 1400px) {
    .nftynetwork .container-xxl,
    .nftynetwork .container-xl,
    .nftynetwork .container-lg,
    .nftynetwork .container-md,
    .nftynetwork .container-sm,
    .nftynetwork .container {
        max-width: 1160px;
    }
}

/* Hero gradient */

.nftynetwork .hero-gradient {
    background: radial-gradient(
        circle at top right,
        hsla(246, 46%, 42%, 0.5),
        hsla(328, 45%, 44%, 0.7),
        hsla(246, 46%, 42%, 0.7),
        hsla(246, 46%, 42%, 0.5),
        var(--body-bg-color),
        var(--body-bg-color),
        var(--body-bg-color),
        var(--body-bg-color)
    );
}

/* Integrations section */

.nftynetwork .integrations-img-container {
    box-shadow: inset 0 0 30px 5px hsla(var(--tertiary-color-hsl), 0.05), 0 0 30px 10px hsla(var(--tertiary-color-hsl), 0.25);
    border-radius: 20px;
}

/* Learn section */

@media (min-width: 768px) {
    .nftynetwork .learn-card {
        height: 390px;
    }
}

/* Calendly widget */

.nftynetwork .calendly-widget-container {
    max-width: 600px;
}

.nftynetwork .calendly-inline-widget {
    max-width: 600px;
    min-width: 320px;
    height: 600px;
}

/* Link card variations */

.nftynetwork .products-link-card,
.nftynetwork .community-link-card {
    border: 0;
}

.nftynetwork .products-link-card:hover,
.nftynetwork .community-link-card:hover {
    box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.25);
}

/* Product link card */

@media (max-width: 991.98px) {
    .nftynetwork .products-link-card {
        border-radius: 4px;
    }
}

.nftynetwork .products-link-card.active {
    background-color: var(--bg-very-light-color);
}

/* Community link card */

.nftynetwork .community-link-card {
    background-color: hsl(238, 41%, 27%);
}

.nftynetwork .community-link-card.active {
    background: linear-gradient(
        45deg,
        hsl(238, 41%, 27%),
        hsla(var(--secondary-color-hsl), 0.4)
    );
}

@media (min-width: 992px) {
    .nftynetwork .community-link-card.on-second-row {
        height: 210px;
    }
}

@media (min-width: 1200px) {
    .nftynetwork .community-link-card.on-second-row {
        height: 170px;
    }
}

/* Globe animations */

@keyframes nftynetworkGlobeSpin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}

.nftynetwork .globe-1 {
    animation: nftynetworkGlobeSpin 150s linear infinite;
}

@media (max-width: 991.98px) {
    .nftynetwork .globe-1 {
        height: 1000px;
    }
}

@media (max-width: 767.98px) {
    .nftynetwork .globe-1 {
        height: 800px;
    }
}

@media (max-width: 575.98px) {
    .nftynetwork .globe-1 {
        height: 600px;
    }
}

.nftynetwork .globe-2 {
    animation: nftynetworkGlobeSpin 75s linear infinite;
}

@media (max-width: 767.98px) {
    .nftynetwork .globe-2 {
        height: 700px;
    }
}

@media (max-width: 575.98px) {
    .nftynetwork .globe-2 {
        height: 500px;
    }
}


/**
 * NFTY Connect specific
 */

/* Footer */

.nftyconnect .footer {
    border-top: 2px solid var(--secondary-color);
}

@media (min-width: 768px) {
    .nftyconnect .col-footer {
        border-left: 1px dashed hsla(0, 0%, 0%, 0.1);
        border-right: 1px dashed hsla(0, 0%, 0%, 0.1);
    }

    .nftyconnect .col-footer:first-child {
        border-right: 0;
    }

    .nftyconnect .col-footer:last-child {
        border-left: 0;
    }
}


/* Notifications */

@keyframes notificationsSlideIn {
    to {
        bottom: 0;
    }
    from {
        bottom: -100%;
    }
}

.nftyconnect .notifications-container {
    --width: 400px;

    position: fixed;
    bottom: 0;
    right: 10px;
    width: var(--width);
    max-width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    animation: notificationsSlideIn 0.5s;
    animation-timing-function: ease-out;
}

@media (max-width: 575.98px) {
    .nftyconnect .notifications-container {
        --width: 300px;

        right: calc(50% - (var(--width) / 2));
    }
}

@keyframes notificationGlow {
    12.5% {
        box-shadow: 0 0 0 1px hsla(var(--main-color-hsl), 0.4);
    }
    25% {
        box-shadow: 0 0 0 2px hsla(var(--main-color-hsl), 0.35);
    }
    37.5% {
        box-shadow: 0 0 0 3px hsla(var(--main-color-hsl), 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px hsla(var(--main-color-hsl), 0.25);
    }
    62.5% {
        box-shadow: 0 0 0 5px hsla(var(--main-color-hsl), 0.2);
    }
    75% {
        box-shadow: 0 0 0 6px hsla(var(--main-color-hsl), 0.15);
    }
    87.5% {
        box-shadow: 0 0 0 7px hsla(var(--main-color-hsl), 0.1);
    }
    100% {
        box-shadow: 0 0 0 8px hsla(var(--main-color-hsl), 0.05);
    }
}

.nftyconnect .notification {
    --main-color-hsl: 210, 100%, 56%;
    --main-color: hsl(var(--main-color-hsl));
    --bg-color: hsl(210, 100%, 99.5%);

    width: 100%;
    background-color: var(--bg-color);
    border: 1px solid hsla(var(--main-color-hsl), 0.5);
    border-radius: 8px;
    animation: notificationGlow 1s infinite;
}

.nftyconnect .notification-success {
    --main-color-hsl: 147, 50%, 47%;
    --bg-color: hsl(147, 50%, 97.5%);
}

.nftyconnect .notification-warning {
    --main-color-hsl: 48, 89%, 50%;
    --bg-color: hsl(48, 89%, 97.5%);
}

.nftyconnect .notification-error {
    --main-color-hsl: 6, 78%, 57%;
    --bg-color: hsl(6, 78%, 97.5%);
}

.nftyconnect .notification .icon-container {
    color: var(--main-color);
}

@keyframes notificationFade {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.nftyconnect .notification.fade {
    animation: notificationFade 2s;
}


/* User settings */

.nftyconnect .user-settings-sidebar {
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
}

@media (min-width: 768px) {
    .nftyconnect .user-settings-sidebar {
        border-right: 1px solid hsla(0, 0%, 0%, 0.1);
        border-bottom: 0;
    }
}

/* QR Code container */

.nftyconnect .qr-code {
    background-color: hsla(0, 0%, 0%, 0.01);
}


/* Token gate type and chain select */

.nftyconnect .token-gate-type-select-card .icon-container,
.nftyconnect .token-gate-chain-select-card .logo-container {
    width: 64px;
    height: 64px;
}

@media (min-width: 768px) {
    .nftyconnect .token-gate-type-select-card,
    .nftyconnect .token-gate-chain-select-card {
        min-height: 310px;
    }
}


/* Token gate details */

.nftyconnect .token-gate-details-img-container {
    height: 300px;
}

.nftyconnect .token-gate-details-img-container a {
    cursor: zoom-in;
}


/* About NFTY */

.nftyconnect .about-nfty-card {
    margin: var(--container-adjusmtent-spacing);
}

.nftyconnect .about-nfty-card .icon-container {
    width: 64px;
    height: 64px;
}

@media (min-width: 576px) {
    .nftyconnect .about-nfty-card-description {
        height: 80px;
        margin-bottom: 0;
        overflow: hidden;
    }
}


/* Admin */

.nftyconnect .admin-highlight-row {
    border-radius: 6px;
}

.nftyconnect .admin-highlight-row:hover {
    box-shadow: inset 0 0 0 3px hsla(var(--primary-color-hsl), 0.3);
}


/* Token gate cards */

.nftyconnect .tokengate-card-img-container {
    height: 200px;
}

@media (min-width: 768px) {
    .nftyconnect .tokengate-card-content-container {
        height: 120px;
    }
}


/* Creator cards */

@media (min-width: 768px) {
    .nftyconnect .creator-card-description {
        height: 70px;
    }
}