
body {
    margin: 0;
    background-color: #0f131a;
    font-family: Space Grotesk, sans-serif;
    color: #fff;
    font-size: 16px;
}
.main {
    position: relative;
    max-height: 100vh;
}
.nft_slider {
    max-width: 0px;
    height: 0%;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}
.nft_slider img {
    width: 0%;
    border: none !important;
}
.slick-vertical .slick-slide {
    border: unset;
}
.minting-container {
    border-radius: 10px;
    margin: 10px;
}
.minting-container .minting-card {
    width: 100%;
    border-radius: 10px;
    padding: 20px 0 0;
    background-color: rgba(0,0,0,.7);
}

.minting-card .minting-container {
    background-color: rgba(black);
}
    
.minting-container .minting-card .minting-title {
    font-weight: 700;
}
.section.hero {
    position: relative;
    z-index: 0;
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 600px) {
    .section.hero {
        overflow-x: hidden;
        overflow: visible;
        margin-top: 65px;
    }
}
.hero-bg-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1000;
    width: 100%;
    margin-bottom: -80px;
}
.stars {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    background-image: url(assets/stars-bg.png);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.twinkling {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -9;
    width: 100%;
    height: 100%;
    background-image: url(assets/twinkling-3.png);
    background-position: 0 0;
    background-size: auto;
}
.container-info {
    margin-top: 12px;
    text-align: center;
}
.container-info svg {
    width: 21px;
    height: 21px;
    margin-bottom: 3px;
}
.container-info a {
    color: #5a3bd7;
    background: transparent;
}
.mint-btn {
    padding: 2px !important;
    border: none;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 8px;
    vertical-align: middle;
    background: #e3164e;
    background: linear-gradient(268deg, #e3164e, #7f1ba7, #841c39, #e993e7, #d27228);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e3164e",endColorstr="#d27228",GradientType=1);
    background-size: 1000% 1000%;
    animation: gradient 10s ease infinite;
}
.mint-btn:focus {
    outline: unset;
    box-shadow: none;
}
.mint-btn span {
    height: 100%;
    min-width: 220px;
    background: #191919;
    display: block;
    padding: 10px;
    border-radius: 6px;
    z-index: -1;
    cursor: pointer;
}
.mint-btn.qty-btn span {
    min-width: unset;
    height: 100%;
    width: 56px;
    background: #191919;
    display: block;
    padding: 10px;
    border-radius: 6px;
}
.mint-btn:hover span {
    background: transparent;
}
.qty-btn {
    cursor: pointer;
    color: #fff;
    font-weight: bolder;
    font-size: 21px;
    padding: 2px;
}
.divider {
    display: block;
    height: 2px;
    width: 94%;
    background: #231c3c;
    margin: 10px auto;
    background: linear-gradient(268deg, #e3164e, #7f1ba7, #841c39, #e993e7, #d27228);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e3164e",endColorstr="#d27228",GradientType=1);
    background-size: 1000% 1000%;
    animation: gradient 10s ease infinite;
    opacity: 0.3;
}
.dark-text {
    color: #231c3c;
}
@keyframes gradient {
    0% {
        background-position: 0% 24%;
    }
    50% {
        background-position: 100% 77%;
    }
    to {
        background-position: 0% 24%;
    }
}
.twinkling {
    animation: move-twink-back 200s linear infinite;
}
@keyframes move-twink-back {
    0% {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}
@keyframes move-clouds-back {
    0% {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 0;
    }
}
@media screen and (max-width: 767px) {
    .hero-bg-wrapper {
        width: 150%;
        margin: -79px -79px -79px -137px;
    }
}
@media only screen and (min-device-width: 480px) {
    .mint-btn:hover span {
        outline: none;
        content: none;
        background: #191919;
    }
}
