:root {
    --bgColor: #000;
    --mainColor: #fff;
    --green: #8CE690;
    --gray: #b9b9b9;
    --greenBorder: #9CFFA0;
    --grayBorder: #cecece;
    --disbled: #848484;
    --hPadding: 0 60px;
    --vPadding: 10px 0;
    --aPadding: 10px;
    --borderWidth: 2px;
    --btnPaddingSmall: 15px 27px;
    --btnPaddingMedium: 18px 30px;
    --grid-gutter: 2rem;
    --grid-spacing: 8px;
    --headingFont: "Styrene A", sans-serif;
    --mainFont: "JHA Times Now", sans-serif;
}


/* Layout */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--bgColor);
    font-family: var(--mainFont);
    font-size: 1rem;
    line-height: 1.1;
}

main {
    color: var(--mainColor);
    min-height: 100vh;
}


.hide {
    display: none;
}

.container-full {
    padding: var(--hPadding);
    width: 100%;
}

.container-boxed {
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.box {
    background-color: #000;
    width: 100%;
    padding: 24px 40px;
    border-radius: 32px;
    position: relative;
    /*box-shadow: 0 3px 9px black, inset 0 0 9px #4F547F;*/
}


.box::after {
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: url("../images/hero.67b4b529df2e.jpg") no-repeat center;
    background-size: 200% 200%;
    content: '';
    z-index: -1;
    border-radius: 32px;
    animation: Animation 3.5s ease-in-out infinite;
}

.df-container-boxed {
    position: relative;
    overflow: hidden;
}

.df-container-boxed img {
    position: absolute;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    opacity: 0.7;

    /*
        transform: scale(0.96);
        filter: blur(2px);
        transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1)
    */
}

.df-container-boxed:hover img {

    /*transform: scale(1.25);
    filter: blur(0); */
}

.df-box {
border: none;
background: none;
}

.df-box::after {
content: none;
}


.blur-background {
position: relative;
}

.blur-background::after {
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
background-color: rgba(0,0,0, 0.6);
}

.blur-background * {
filter: blur(20px);
pointer-events: none;
}


/* Styilng and colors */

.blurred {
    filter: blur(20px);
    pointer-events: none;
}

.blurred .item:not(:first-child) {
    display: none;
}

.green {
    color: var(--green);
}

.white {
    color: var(--mainColor);
}

.black {
    color: var(--bgColor);
}

/* Typography */

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--headingFont);
    font-weight: normal;
}

h1 {
    font-size: 3rem;
}

.bigger {
    font-size: 5.5rem;
    padding-top: 30px;
}

h2 {
    letter-spacing: 0.2px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.disclaimer p {
    font-family: var(--headingFont);
}


.link {
    position: relative;
    font-family: var(--headingFont)
}

.link::after {
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s linear;
}

.link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.allocated-mints {
    margin: 30px 0;
    font-family: var(--headingFont);
    font-size: 14px;
    text-transform: uppercase;
}

.allocated-counter {
    font-weight: 600;
    font-size: 16px;
    line-height: 14px;
}

.connect-block h3 {
    font-weight: 600;
}

/* Header */
header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: var(--vPadding);
    background-color: rgba(0,0,0, 0.5)
}

nav {
    height: 60px;
}

nav a {
    font-family: var(--headingFont);
    color: #fff;
    text-decoration: none;
    padding: 0 25px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s linear;
}


nav li::before {
    content: "•";
    height: 100%;
    width: 10px;
    position: absolute;
    right: 0;
    text-align: right;
    transition: none;
}

nav li:last-child:before {
    content: none;
}

nav li:hover::before {
    color: #fff;
}

nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
}

nav li {
    position: relative;
}


.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transform: scale(0.75);
    outline: none;
    display: none;
    padding: 0;
    position: relative;
    z-index: 99;
}
.line {
    fill: none;
    stroke: var(--green);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

nav a:hover {
    color: var(--green);
}

.user-logged-in {
    font-family: var(--headingFont);
}

.account {
    padding: 10px 20px 10px 50px;
    font-family: var(--headingFont);
}
.account span {
    display: inline;
    padding: 0 14px;
}
/* Hero */

.hero {
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    margin-top: 50px;
}

.hero h1 {
    color: var(--green);
    font-size: 6rem;
    font-weight: 600;
}

.auth_item {
    background-color: #9CFFA0 !important;
}

main {
    background: url("../images/backdrop.58d4b8724e47.png");
    background-attachment: fixed;
    background-size: contain;
}

/*Buttons */

.btn {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
    border-radius: 50px;
    border-style: none;
    font-family: "Styrene A",Sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    position: relative;
    box-shadow: 0 45px 40px -10px #9cffa0 inset;
    border: 2px solid var(--greenBorder);
    background-color: var(--green);
    -webkit-transition: transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
}

.btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
    border-radius: 50px;
    z-index: -1;
}

.btn.btn-cancel {
    box-shadow: 0 45px 40px -10px #cecece inset;
    border: 2px solid var(--grayBorder);
    background-color: var(--gray);
}

.btn:hover {
    transform: scale(1.07);
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1.07);
}

.btn__small {
    font-size: 12px;
    line-height: 18px;
    padding: var(--btnPaddingSmall);
}

.btn__medium {
    font-size: 14px;
    line-height: 20px;
    padding: var(--btnPaddingMedium);
}

.intro-block {
    background-color: rgba(0,0,0, 0.5);
    padding: 10px;
}

/* Items */
.item {
    border:  1px solid white;
    border-radius: 23px;
    overflow: hidden;
    background-color: black;
}

.item label {
    font-family: var(--headingFont);
    color: var(--green);
    margin-right: 10px;
}

.mint-actions .btn-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.item input {
    width: 80px;
    margin-right: 30px;
    color: var(--green);
    background-color: #000;
    outline: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--green);
    font-family: var(--headingFont);
}

.mint-status {
    font-family: var(--headingFont);
    background-color: #333;
    padding: 10px;
    margin-top: 10px;

}

.mint-status p {
    font-size: 15px;
    position: relative;
}

.mint-status span {
    text-transform: uppercase;
    display: inline-block;
    word-break: break-all;
}

.tooltip-icon::after {
    background: url("../images/help-circle-outline.76823725e579.svg") no-repeat center;
    background-size: contain;
    content: " ";
    display: inline-block;
    height: 1em;
    width: 1em;
}

.tooltip {
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 15px;
    top: 15px;
    cursor: pointer;
    transition: opacity 0.4s linear;
}

.tooltip::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/help-circle-outline.76823725e579.svg") no-repeat center;
}

.tooltip:hover {
    opacity: 0.7;
}

.item.not-qualified .btn,
.btn.disabled {
    pointer-events: none;
}

.item.not-qualified .btn,
.btn.disabled
{
    background-color: var(--disbled);
    border-color: var(--disbled);
    box-shadow: 0 45px 40px -10px var(--disbled) inset;
}

.item.not-qualified input,
.item.not-qualified label {
    display: none;
}



.item__content {
    padding: var(--btnPaddingMedium);
}



/* Modal */
.modal {
    background-color: #3e3e3e;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    z-index: 23;
    display: none;
    overflow-y: auto;
}


.modal.show {
    display: block;
    opacity: 1;
}

.connect-block {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s linear;
}

.connect-block a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.connect-block img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s linear;
}

.connect-block:hover {
    background-color: #f6f6f6;
}

.connect-block:hover img {
    transform: scale(1.1);
}

.cart {
    position: relative;
}

.counter {
    font-size: 1rem;
    font-family: var(--headingFont);
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
    border-bottom: 1px solid var(--green);
    padding: 10px;
    line-height: 8px;
}

.countdown-wrapper {
    font-family: var(--headingFont);
    text-transform: uppercase;
}

.countdown-wrapper h3 {
    color: #000;
    background: var(--green);
    display: inline-block;
    padding: 10px 15px;
}

.countdown div {
    padding: 10px 10px 10px 0;
}

.countdown small {
    color: var(--green);
    font-weight: 600;
    margin-left: 5px;
}

.item.not-available {
    filter: grayscale(1);
}

.item__image {
    overflow: hidden;
}

.item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}


footer {
    font-family: var(--headingFont);
}

.social-icons a {
    margin: 0 15px;
    transform: scale(1);
    display: inline-block;
    transition: opacity 0.2s linear;
}

.social-icons a:hover {
    opacity: .9;
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}



/* gallery */

.gallery-grid {
    margin-top: 150px;
}

.gallery-grid article {
    background-color: #202020;
}



/*reponsive table*/

.table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}


.table tr {
    background-color: transparent;
    border: 1px solid #000;
    border-bottom: 1px solid var(--green);
    padding: .35em;
}

.table th,
.table td {
    padding: .625em;
    text-align: center;
}

.table th {
    font-family: var(--headingFont);
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 600px) {
    .table {
        border: 0;
    }

    .table caption {
        font-size: 1.3em;
    }

    .table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .table tr {
        border-bottom: 3px solid var(--green);
        display: block;
        margin-bottom: .625em;
    }

    .table td {
        border-bottom: 1px solid var(--green);
        display: block;
        font-size: .8em;
        text-align: right;
    }

    .table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 400;
        text-transform: uppercase;
        font-family: var(--headingFont);
        font-size: 10px;
    }

    .table td:last-child {
        border-bottom: 0;
    }
}


.card {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--green);
    font-size: 18px;
    line-height: 1.6;
}
.card:last-of-type {
    border-bottom: none;
}

.card p {
    margin-bottom: 1em;
}
.card ul li {
    margin-bottom: 10px;
    line-height: 1.2;
}

.card ol li ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

@keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

@keyframes pulse {
    25% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(.9);
    }
}



/* to be deleted - is for testing */
#fakeform {
    position: fixed;
    background-color: red;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    z-index: 999;
    padding: 50px 0;
    text-align: center;
    display: none;
}

#fakeform.show {
    display: block;
}