@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
@import url("./bgrid.min.css");

:root {
    --app-font: 'Inter', sans-serif;
    --app-text-default-color: #E1E1E1;
    --body-background: #141414;
    --default-text-size: 14px;
    --text-size-2: 15px;
    --text-small: 12px;
    --primary-color: #cd4e2c;
    --primary-color-rgb: 64, 63, 131;
    --secondary-color: #cd4e2c;
    --secondary-color-rgb: 131, 100, 226;
    --dark-color: #000;
    --white-clr: #fff;
    --white-clr2:#f5f5f5;
    --text-grey:#808080;
    --text-grey2:#e0e0e0;
    --theme-dark-color:#141414;
    --theme-dark-color-2: #252525;


    --theme-gradient-type-1: linear-gradient(90deg, #8A217E -7.5%, #F85754 115%);
    --theme-gradient-type-2: linear-gradient(90deg, #8A217E 0%, #F85754 50%, #FBB238 100%);
    --theme-gradient-type-3: linear-gradient(90deg, #8A217E -7.49%, #F85754 85.6%, #FBB238 114.93%);
    --dark-gradient-1: linear-gradient(90deg, #C534B4 0%, #FF4744 46.35%, #FFB73F 100%);
    --stroke-dark: #505050;
}

body {
    font-family: var(--app-font);
    font-size: var(--default-text-size);
    color: var(--app-text-default-color);
    background: var(--body-background);
}


body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    background-color: var(--dark-color);
    min-height: 20vh;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--app-text-default-color);
    font-family: var(--app-font);
}

/* header */
header {
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
    background: var(--theme-dark-color);
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 20%);
}
.navbar {
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
    padding: 8px 0px 6px 0px;
    background-color: #fff;
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 20%);
}

.logo img {
    max-height: 44px;
    margin-top: 4px;
}

/* header ends */

/* buttons */
.btn {
    display: inline-block;
    text-align: center;
    font-weight: 400;
    color: var(--dark-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 0px solid transparent;
    padding: 0.4rem 0.4rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}

.btn-outline {
    position: relative;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
}

.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--theme-gradient-type-2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* end buttons */

/* global section */
main {
    width: 100%;
    position: relative;
    min-height: 90vh;
    padding-top: 76px;
}
.section {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 0px 12px;
}
/*  */


/*  */
/* modal */
.modal-active {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    /* display: none; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    backdrop-filter: blur(1px);
}

.modal-open {
    overflow: hidden;
}

.modal>.opem {
    display: block;
}

.modal::before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.6;
    content: '';
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0px;
    pointer-events: none;
    z-index: 1;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: auto;
    margin: auto;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 25%);
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1px);
}

.modal-body {
    position: relative;
    display: flex;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-header {
    justify-content: space-between;
    padding: 1rem;
    width: 100%;
}

.modal-header .close {
    cursor: pointer;
    float: right;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    background: none;
    border: none;
    text-decoration:none;
}

.modal-header .close:hover {
    opacity: .75;
}

.modal-content.md-hdr-free {
    border-radius: 0px;
}

.modal-content.md-hdr-free .modal-header {
    position: relative;
    padding: 0px;
}

.modal-content.md-hdr-free .modal-header .close {
    position: absolute;
    z-index: 10;
    right: 20px;
    text-shadow: none;
    background: #fff;
    opacity: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
}

.m-p-min {
    padding: 0px;
}

.coll-offer{
    max-width: 400px;
}
/*  */


/* pop up */
.wallet-connect-wrapper {
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    padding: 0px 48px;
    position: relative;

}

.wallet-connect-wrapper .close_btn {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
}

.wallet-connect-wrapper .close_btn img {
    width: 22px;
    height: 22px;
}

.wallets .wallet {
    margin-bottom: 8px;
    cursor: pointer;
}

.wallet-connect-wrapper .logo {
    padding-bottom: 43px;
}

.wallet-connect-wrapper .inner-title {
    font-size: 32px;
    font-weight: 500;
    padding-bottom: 21px;
}

.wallet-connect-wrapper .description {
    font-size: 16px;
}

.wallet-connect-wrapper .wallets {
    display: inline-block;
    position: relative;
    width: 100%;
    overflow-y: scroll;
    min-height: 200px;
    padding-right: 20px;
}

.wallet-connect-wrapper .wallet {
    margin-bottom: 1rem;
    cursor: pointer;
}

.wallet-connect-wrapper .show-more {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: #0931e4;
    cursor: pointer;
}

.wallet-select-section {
    margin: auto;

    padding-right: 30px;
    padding-left: 30px;
    position: relative;

    width: 100%;
}

.wallet-select-section .in-progress {
    position: absolute;
    z-index: 12;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    text-align: center;
    background: transparent;
}

.wallet-select-section .in-progress .d-flex {
    margin: auto;
}

.wallet-select-section .in-progress .spinner {
    width: 32px;
    height: 32px;
}

.wallet-select-section.w-connect {
    overflow: hidden;
}

.wallet-select-section .wallets::-webkit-scrollbar {
    width: 10px;
}

.wallet-select-section .wallets::-webkit-scrollbar-track {
    background-color: transparent;
}

.wallet-select-section .wallets::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    background-color: var(--grey-color);
    min-height: 30%;
}

.wallet-provider-wrapper {
    display: inline-block;
    padding: 1px;
    border-radius: 30px;
    background: var(--theme-gradient-type-3);
    width: 100%;
}

.wallet-provider {
    align-items: center;
    width: auto;
    border-radius: 30px;
    padding: 6px 16px 6px 6px;
    background-color: #141414;
    font-size: 16px;
}

.wallet-provider .icon,
.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.wallet-provider .icon span,
.wallet-icon span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.wallet-provider .name {
    padding-left: 15px;
    color: #fff;
    flex: auto;
    line-height: 1;
}

.wallet-provider .name span {
    width: 100%;
    display: inline-block;
    color: #6E6E73;
    font-size: 14px;
}

.wallet-select-section {
    margin: auto;
}

.wallet-info{
    display: flex;
    padding-right: 5px;
    cursor: pointer;
    position: relative;
}
.wallet-info .ldr-t1 .spinner{
    width: 20px;
    height: 20px;
}
.wallet-info span{
    margin-top: 5px;
}
.wallet-info .chain-icon{
    border: none !important;
}
.chains-pick{
    list-style: none;
    display: flex;
    border-bottom: 1px solid var(--stroke-dark);
}
.chains-pick li{
    cursor: pointer;
    display: inline-flex;
    flex: 1 0 0%;
    color: var(--grey-color-2);
    text-transform: capitalize;
    padding-bottom: 10px;
    padding: 0px 10px 10px 10px;
    position: relative;
}
.chains-pick li.active{
    color: var(--brand-color-2);
}
.chains-pick li.active::before{
    content: '';
    width: 100%;
    position: absolute;
    height: 1px;
    background: var(--theme-gradient-type-2);
    bottom: 0px;
    left: 0px;
    display: inline-flex;
}

/*  */ 
.step-box{
    border: 1px solid var(--stroke-dark);
    border-radius: 10px;
    padding: 2rem 1rem;
}
.step-box-title{
   
}

.step-box-title span {
    background: var(--dark-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.modal-content{
    background: var(--theme-dark-color-2);
    border: 1px solid var(--stroke-dark);
}


.text-right {
    text-align: right;
}
.text-center{
    text-align: center;
}
.text-uc{
    text-transform: uppercase;
}

.b-box{
    display: block;
    max-width: 400px;
    margin: 2rem auto;
}
.wallet-input{
    border: 1px solid var(--gray-light);
    border-radius: 1836px;
    width: 100%;
    font-size: 14px;
    padding: 0.6rem 0.8rem;
    outline: none;
    min-height: 38px;
}

.btn-submit{
    margin-top: 1rem;
    width: 100%;
    background: var(--theme-gradient-type-1);
    border-radius: 100px;
    color: var(--white-color);
    padding: 0.6rem 0.8rem;
    min-height: 38px;
    min-width: 190px;
    font-size: 16px;
    line-height: 1;
    border: transparent;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.spinner {
    animation: rotate 1s linear infinite;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjM2NCAyLjYzNkwxMy45NSA0LjA1QzEyLjgwNDkgMi45MDQ4IDExLjI5ODIgMi4xOTIwNiA5LjY4NjUgMi4wMzMyNEM4LjA3NDgyIDEuODc0NDIgNi40NTc5NCAyLjI3OTMzIDUuMTExMzQgMy4xNzg5OUMzLjc2NDc0IDQuMDc4NjUgMi43NzE3NCA1LjQxNzM5IDIuMzAxNTQgNi45NjcxMUMxLjgzMTM0IDguNTE2ODMgMS45MTMwMiAxMC4xODE2IDIuNTMyNjggMTEuNjc3OUMzLjE1MjM0IDEzLjE3NDEgNC4yNzE2MiAxNC40MDkyIDUuNjk5ODMgMTUuMTcyN0M3LjEyODAzIDE1LjkzNjIgOC43NzY3OSAxNi4xODA5IDEwLjM2NTIgMTUuODY1MUMxMS45NTM2IDE1LjU0OTIgMTMuMzgzMyAxNC42OTI0IDE0LjQxMDggMTMuNDQwNkMxNS40MzgyIDEyLjE4ODggMTUuOTk5OSAxMC42MTk1IDE2IDlIMThDMTggMTEuMDgyMiAxNy4yNzggMTMuMSAxNS45NTcgMTQuNzA5NUMxNC42MzYxIDE2LjMxOTEgMTIuNzk3OSAxNy40MjA4IDEwLjc1NTcgMTcuODI3QzguNzEzNTUgMTguMjMzMiA2LjU5MzcgMTcuOTE4NyA0Ljc1NzM3IDE2LjkzNzJDMi45MjEwNCAxNS45NTU2IDEuNDgxODcgMTQuMzY3NyAwLjY4NTA2MSAxMi40NDRDLTAuMTExNzQ3IDEwLjUyMDMgLTAuMjE2ODg2IDguMzc5ODMgMC4zODc1NTggNi4zODczQzAuOTkyMDAyIDQuMzk0NzcgMi4yNjg2MyAyLjY3MzQ2IDMuOTk5OTIgMS41MTY2NkM1LjczMTIxIDAuMzU5ODY4IDcuODEwMDQgLTAuMTYwODM5IDkuODgyMjEgMC4wNDMyNjU3QzExLjk1NDQgMC4yNDczNyAxMy44OTE3IDEuMTYzNjYgMTUuMzY0IDIuNjM2WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzE1NzhfNTg3MSkiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xNTc4XzU4NzEiIHgxPSIxMyIgeTE9IjEuNDk5OTEiIHgyPSIzMSIgeTI9IjE0LjQ5OTkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0Y4NTc1NCIgc3RvcC1vcGFjaXR5PSIwLjg1Ii8+CjxzdG9wIG9mZnNldD0iMC40NjM1NDIiIHN0b3AtY29sb3I9IiNGRkM4MDQiIHN0b3Atb3BhY2l0eT0iMC4zOCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGRkM4MDQiIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=);
    height: 20px;
    width: 20px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}