@font-face {
    font-family: azoSansRegular;
    src: url(/assets/FONT/AzoSans-Regular.ttf) format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: azoSansBlack;
    src: url(/assets/FONT/AzoSans-Black.ttf) format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: azoSansThin;
    src: url(/assets/FONT/AzoSans-Thin.ttf) format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: azoSansMedium;
    src: url(/assets/FONT/AzoSans-Medium.ttf) format('truetype');
    font-weight: normal;
}

html {
    font-family: azoSansRegular;
    color: rgb(79, 79, 79);
    font-size: 11px;
}

body {
    height: 100%;
    margin: 0px;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(/assets/PNGs/1x/whitedotedbackground.png) no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-appearance: none;
}

.header {
    height: 60px;
   /* width: 87%;*/
    margin: auto;
    display: flex;
    align-items: center;
    flex-flow: row;
}

.backbutton {
    position: relative;
    z-index: 1;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
}

    .backbutton img {
        max-height: 100%;
        height: 25px;
        width: 14px;
        margin-top: 20px;
    }

.title {
    font-family: azoSansBlack;
    color: rgb(79, 79, 79);
    text-align: start;
    font-size: 30px;
    width: 87%;
    margin: auto;
    margin-top: 10px;
    position: relative;
    height: 15px;
}

.nfttableholder {
    position: relative;
    width: 87%;
    margin: auto;
    margin-top: 12%;
}

    .nfttableholder::-webkit-scrollbar {
        width: 3px;
    }

    .nfttableholder::-webkit-scrollbar-track {
        margin-top: 32px;
    }

    .nfttableholder::-webkit-scrollbar-thumb {
        background-color: #E9E9E9;
    }


.nfttableholderscrollable {
    height: 250px;
}

.nfttable {
    width: 100%;
    margin: auto;
    border-spacing: 0 10px;
}

.nfttableborder :first-child {
    border-left: 1px solid rgba(79, 79, 79, 0.3);
    border-radius: 4px;
}

.nfttableborder td {
    background: white;
    position: sticky;
    top: 0;
}

.nfttableholder td {
    padding-top: 2px;
    padding-left: 10px;
    padding-right: 10px;
}

.nfttableborder td {
    text-align: left;
    border: 1px solid rgba(79, 79, 79, 0.3);
    border-radius: 4px;
    border-left: none;
}

.nfttable tr :first-child {
    text-align: left;
}

.nfttable td {
    text-align: center;
}

.unselectednft {
    background-color: white;
    color: rgb(79, 79, 79);
}

.selectednft {
    background-color: rgb(79, 79, 79);
    color: white;
}

    .selectednft td:first-child {
        border-left: 1px solid rgb(79, 79, 79);
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px;
    }

    .selectednft td:last-child {
        border-left: 1px solid rgb(79, 79, 79);
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px;
    }

.previewtitle {
    position: relative;
    width: 83%;
    width: calc(87% - 15px);
    margin-left: 6.5%;
    text-align: start;
    border: 1px solid rgba(79, 79, 79, 0.3);
    border-radius: 4px;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: 8%;
}

.preview {
    display: flex;
    justify-content: center;
    position: relative;
    width: 87%;
    width: calc(87% - 5px);
    margin-left: 6.5%;
    text-align: center;
    margin-top: 6%;
}

    .preview img {
        max-width: 100%;
        max-height: 320px;
        /*       border: 1px solid rgba(79, 79, 79, 0.3);
        border-radius: 4px;*/
    }

.loadingnft {
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
/*    margin-top: 25px;*/
}

.spinnercont {
    height: 55px;
    width: 55px;
    margin: auto;
    margin-top: 100px;
}

    .spinnercont img {
        margin: auto;
        text-align: center;
        display: block;
    }

.spincenter {
    position: relative;
    height: 54px;
    width: 54px;
    opacity: 0.2;
}

.spin {
    position: relative;
    top: -55px;
    height: 56px;
    width: 56px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 40px;
        height: 40px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: rgb(79, 79, 79) transparent rgb(79, 79, 79) transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Responsive Footer Section*/


app {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

#app {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.pagewrapper {
    width: 100%;
    max-width: 750px;
    flex: 1 0 auto;
}

.copyright {
    flex-shrink: 0;
    text-align: center;
    margin-top: 25px;
    font-family: azoSansRegular;
    color: white;
    font-size: 7px;
    margin-bottom: 0px;
}

@media (max-width: 360px) {
    app {
        align-items: initial;
    }

    #app {
        align-items: initial;
    }
}
/*End Responsive Footer Section*/

@media (max-height: 800px) {
    .copyright {
        padding-bottom: 10px;
    }
}



@media (max-height: 650px) {
    .nfttableholder {
        height: 210px;
    }
}


@media (max-height: 620px) {
    .nfttableholder {
        height: 185px;
    }
}


@media (max-height: 570px) {
    .nfttableholder {
        height: 150px;
    }
}