@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600&display=swap');


/*colors vars*/
:root {
    --red: #C98474;
    --blue: #94B3FD;
    --green: #32cd59;
    --yellow: #F2D388;
    --silver: #fff;
}


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

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

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

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

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

.gold {
    color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right,
            #462523 0,
            #cb9b51 22%,
            #f6e27a 45%,
            #f6f2c0 50%,
            #f6e27a 55%,
            #cb9b51 78%,
            #462523 100%);
}

.bad {
    opacity: 0.6;
}

.bred {
    background: var(--red);
}

.bblue {
    background: var(--blue);
}

.bgreen {
    background: var(--green) !important;
}

.byellow {
    background: var(--yellow);
}

.bsilver {
    background: var(--silver);
}

.bdblue {
    border-color: var(--blue);
}

.bdred {
    border-color: var(--red);
    opacity: 0.7
}

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

.bdsilver, .bdbad {
    border-color: rgba(255, 255, 255, 0.25)
}

.bdgold {
    border-color: #cb9b51;
    /* box-shadow: 0 0 15px -5px #f6e27a; */
}

.bdgold div {
    /* box-shadow: 0 0 15px 0 #f6e27a; */
}

.border{
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.round{
    border-radius: 15px;
}


body {
    margin: 0;
    padding: 0;
    position: relative;
    /*background img fixed*/

    color: #fff;
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 10px;


}

.card.soon{
    opacity: 1;
    position: relative;
}
.card.soon:after{
    content: "EM BREVE";
    font-size: 12px;
    padding: 5px;
    position:absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    background: rgba(0,0,0,0.7);
    line-height:12px;
    border-radius: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

* {
    font-family: 'Poppins', sans-serif;
}

a {
    color: #fff;
}

/* stepWindow fixed popup */
.stepWindow{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    z-index: 100;
    /* flur */
    backdrop-filter: blur(5px);
}

.task{position:relative;}

.status.note:hover:after{
    /* data-note content */
    content: attr(data-note);
    font-size: 16px;
    color: #ff6161;
    margin-left: 5px;
    background: rgba(0,0,0,0.9);
    position:absolute;
    top:0;
    left:-5px;
    width:100%;
    border-radius: 15px;
    height: 50px;
    line-height: 50px;

}

.stepWindow > .content{
    background: rgba(0,0,0,0.8);
    position: absolute;
    top: 70px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: auto;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    /* add border radius to scroll bar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) rgba(0,0,0,0);
    
}

.stepWindow > .content img{
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    max-width: 700px;
}

.stepWindow > .close{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
}

.stepWindow > .title{
    position: absolute;
    top: 17px;
    left: 20px;
    font-size: 26px;
    text-transform: lowercase;
}

.stepWindow > .title > i{
    margin-right: 10px;
}

.cards{
    overflow: hidden;
    border: 0.1rem solid rgb(72, 81, 91);
    border-radius: 2.4rem;
    background: radial-gradient(118.05% 171.99% at -4.09% 0%, rgba(25, 25, 25, 0.6) 0%, rgba(25, 25, 25, 0) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0.6rem 2.4rem 0px;
    backdrop-filter: blur(0.3rem);
    padding:20px;

}

.card.task_title{
    font-size: 22px;
    line-height: 22px;
    font-weight: 300;
}

.card.task_title .material-symbols{
    font-size: 22px;
    line-height: 22px;
    vertical-align: middle;
    margin-right: 5px;
}

/* force 3 columns, min-width 200px */
.wallets{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr) ) ;
    gap: 10px;  
    padding-bottom: 120px !important;
}

.wallets.full{
    display: block;

}

.card.wallet{
    position: relative;
    display: flex;
    flex-direction: column;    
    gap: 15px;
    padding: 10px;
    color: #000;
    font-size: 16px;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    overflow:hidden;
    border: 1px solid rgba(100, 100, 100, 0.10);
    background: rgba(255,255,255,0.015);
    justify-content: space-between;
    height: 117px;
    /* make it square proportion */
    /* aspect-ratio: 16/8.1; */
    /* aspect-ratio: 4/3; */
    
}
.list .card.wallet{
    /* min-height: 120px; */
}
.full .card.wallet{
    min-height: 200px;
    transition: min-height 300ms;
}

.full .card.wallet .wallet_link{
    display: none;
}
.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.inputfile + label {
    font-size: 14px;
    font-weight: 300;
    border: 1px dashed rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: inline-block;
    width: 100%;
    height: 60px;
    border-radius: 15px;
    line-height: 60px;
}
.inputfile:focus + label,
.inputfile + label:hover {
    border: 1px dashed rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}
.inputfile + label {
	cursor: pointer; /* "hand" cursor */
}
.inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}
.inputfile + label * {
	pointer-events: none;
}


.wallet_finish{
    width: 250px;
    height: 60px;
    border-radius: 30px;
    line-height: 60px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: #32cd59;
    position: fixed;
    bottom: 30px;
    left: calc(50% - 100px);
    border: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
    
}


.list .wallet:hover{
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}

.list .wallet:hover .wallet_logo{
    box-shadow: 0 -70px 120px 120px rgba(255,255,255,0.25);
}

.wallets.full .wallet_logo{
    width: 80px;
    height: 80px;
}

.wallets.full .wallet_title{
    margin-left: 93px;
    line-height: 20px;
    height: 45px;
    top: 15px;
}

.wallets.full .wallet_title span{
    font-size: 26px;
}


.wallets.full .wallet_info{
    position:absolute;
    left: 100px;
    top: 60px;
}

.wallets.full .wallet_menu_icon i{
    font-size: 0;
}

.wallets.full .wallet_menu_icon i:before{
    content: "close";
    text-align: center;
    display: block;
    font-family: 'Material Symbols' !important;
    position: absolute;
    top: -1px;
    left: -1px;
    text-align: center;
    height: 40px;
    width: 40px;
    font-size: 18px;
    line-height: 40px;
}

.wallet_form{
    display: grid;
    grid-auto-flow: column;
    position: relative;
    gap: 20px;
}

.wallet_form form{
    border: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: #fff;
    border-radius: 15px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    position: relative;
    justify-content: space-between;
}


.wallet_form form.required:after{
    background: #000;
    color: #fff;
    content: "obrigatório";
    font-size: 12px;
    padding: 0 5px;
    position: absolute;
    top: -11px;
    right: 10px;
    border-radius: 10px;
    height: 20px;
    line-height: 20px;

}

.wallet_form form > div{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
}

.wallet_form form > div i{
    margin-right: 5px;
}

.wallet_form form > div > a{
    margin-left: 10px;
    font-size: 12px;
    font-weight: 300;
}

.wallet_form input[type="text"],.wallet_form button{
    width: 100%;
    border-radius: 15px;
    height: 40px;
    line-height: 40px;
    border: none;
    box-sizing: border-box;
    display: block;
    color: #fff;
}

.wallet_form input[type="text"]{
    padding: 0 10px;
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.wallet_form button{
    background: rgba(255,255,255,0.3);
    font-weight: bold;
}

/* .wallet_logo{
    width: 80px;
    height: 80px;
    border-radius: 0 50% 50% 0;
    background: #fff;
    border: none;
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    top: 20px;
    bottom: 0;
    left: -20px; 
    padding: 12px 5px 13px 20px;
    opacity: 1;
    box-shadow: 0 -70px 120px 120px rgba(255,255,255,0.15);
} */
.wallet_logo{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 10px; 
    padding: 5px;
    opacity: 1;
    box-shadow: 0 -90px 110px 110px rgba(255,255,255,0.18);
    z-index: 1;
}
.wallet_logo:after{
    content:"account_balance_wallet";
    font-family: 'Material Symbols';
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 30px;
    display: block;
    color: rgba(0,0,0,0.25);
}

.card.wallest:before{
    content:"";
    display:block;
    height: 65px;
    position:absolute;
    left: 0;
    top:0;
    right: 0;
    
    border-bottom: 1px solid rgba(255,255,255,1);
    background: #fff;
    opacity: 0.05;
    z-index: 0;
}



.wallet_title{
    display: flex;
    align-items: start;
    flex-direction: column;
    line-height: 14px;
    z-index: 1;
    color: #fff;
    text-align: left;
    height: 45px;
    margin: 0 0 0 52px;
    justify-content: center;
}
.wallet_title > span{
    font-size: 15px;
    font-weight: 700;
    text-align:left;
}
.wallet_title > i{
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    display: block;
    text-transform: lowercase;
}

.wallet_menu_icon{
    position:absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    z-index: 3;
}

.wallet_menu_icon:after,.full .wallet_menu_icon:before{
    border: 1px solid #777;
    color: #777;
    content: 'more_horiz';
    font-family: 'Material Symbols', sans-serif;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display:block;
    position:absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    box-sizing: border-box;
}

.full .wallet_menu_icon:before{
    content: 'close';
}

.full .wallet_menu_icon.done:after{
    content: 'concluído';
}
.full .wallet_menu_icon.error:after{
    content: 'erro';
}
.full .wallet_menu_icon.pending:after{
    content: 'pendente';
}

.wallet_menu_icon.done:after{
    border-color: #32cd59;
    color: #32cd59;
    content: 'check';
}
.wallet_menu_icon.error:after{
    border-color: #FF5D6E;
    color: #FF5D6E;
    content: 'exclamation';
}
.full .wallet_menu_icon{
    left: 90px;
    right: 10px;
    height: 80px;
    width: auto;
}
.full .wallet_menu_icon:after{
    right: 45px;
    top: 0;
    width: initial;
    font-family: inherit;
    font-size: 14px;
    padding: 0 15px;
}
.wallet_menu_icon:hover:after{
    content: 'more_horiz';
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.wallet_menu{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left: 0;
    background: rgba(0,0,0,0.85);
    display:flex;
    gap: 8px;
    padding: 10px;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: end;
    z-index: 2;
    display: none;
    border: none;
}

.wallet_menu a{
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    line-height: 26px;
    border-radius: 13px;
    line-height: 26px;
    height: 26px;
    display: block;
    background: #000;
    box-sizing: border-box;
}

.wallet_add{
    height: 50px;
    line-height: 50px;
    text-align:center;
    font-size: 18px;
    color:#fff;
    cursor: pointer;
}
.wallet_info{
    color: #999;
    border-radius: 13px;
    line-height:26px;
    height: 26px;
    z-index: 1;
    text-align: left;
    font-weight: 300;
    font-size: 14px;
    display: block;   
    padding: 0;
    white-space: nowrap;
    box-sizing: border-box;
}
.wallet_info span{
    /* border: 1px solid rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.7); */
    background: rgba(255,255,255,0.05);
    padding: 0 5px;
    border-radius: 26px;
    position: relative;
    margin-right: 5px;
    display: inline-block;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    line-height:26px;
    height: 26px;
}

.wallet_info span.pending{
    background: none;
    line-height:26px;
    height: 26px;
    color: rgba(255,255,255,0.3);
    border: 1px dashed rgba(255,255,255,0.1);
    box-sizing: border-box;
}

.wallet .material-symbols{
    font-size: 18px;
    vertical-align: middle;
    line-height: 18px;
}

.wallet_status{
    line-height:20px;
    font-weight: 800;
    border: 0px solid gray;
    z-index: 1;
    text-align: center;
    display: none;
}

.wallet_status.auto{
    border-color: #6161ff;
    color: #6161ff;
}
.wallet_status.auto .material-symbols{
    background: #6161ff;
}

.wallet_status.done{
    border-color: #32cd59;
    color: #32cd59;
}
.wallet_status.done .material-symbols{
    background: #32cd59;
}

.wallet_status.pending{
    border-color: #777;
    color: #777;
}
.wallet_status.pending .material-symbols{
    background: #777;
}

.wallet_status.error{
    border-color: #ff6161;
    color: #ff6161;
}
.wallet_status.error .material-symbols{
    background: #ff6161;
}

.wallet_status .material-symbols{
    font-size: 15px;
    color: #fff;
    height: 20px;
    width: 20px;
    line-height: 20px;
    background: #ccc;
    border-radius: 50%;
    text-align: center;
    margin-right: 7px;
}

.card.wallet.hide{
    width: 0.1px;
    height: 0.1px;
    min-height: 0.1px;
    position:absolute;
    top: -1000px;
    opacity: 0;
}

.wallet > *{
    /* border: 1px solid red; */
    box-sizing: border-box;
}

.wallet_link{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}




.exchange {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    position: relative;
    display: flex;
    grid:10px;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.exchange .logo {
    width: 60px;
    aspect-ratio: 1 / 1;
    border-width: 1px;
    padding: 4px;
    border-style: solid;
    border-radius: 50px;
    margin: 0 10px;
    box-sizing: border-box;
    vertical-align: top;
}

.exchange .logo div {
    height: 100%;
    border-radius: 100%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
}

.exchange b {
    display: block;
    font-size: 18px;
    text-align: left;
    overflow: hidden;
    flex: 0 0 auto;
    flex-grow: 1;
    min-width:170px;
}

.exchange b .local {
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: normal;
    padding: 0 5px;
    text-align: left;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
}

.exchange b .local .material-symbols-rounded {
    font-size: 14px;
    line-height: 12px;
    vertical-align: middle;
    margin-top: -2px;
}

button .material-symbols-rounded {
    font-size: 12px;
    line-height: 12px;
    vertical-align: middle;
    margin-top: -2px;
}

.exchange a {
    cursor: pointer;
    text-decoration: none;
    background: #FF5D6E;
    border-radius: 25px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border: none;
    font-weight: 400;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
    font-size:13px;
    width:130px;
    margin-left:10px;
}

.exchange a .material-symbols-rounded {
    font-size:20px;
}

.exchange .nota {
    height: 30px;
    line-height: 30px;
    font-size: 22px;
    display: inline-block;
    width: 60px;
    text-align: center;
}

.convertForm{
    display: none;
}

.info {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
}

.form{
    padding-top:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: column;
    gap: 10px;
    line-height: 50px;
    text-align: center;
    flex-wrap: wrap;
}


.row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

.col,.col1,.col2,.col3,.col4,.col5,.col6{
    width: 16.66%;
    margin:0;
    box-sizing: border-box;
}
.col2{width:33.33%;}
.col3{width:50%;}
.col4{width:66.66%;}
.col5{width:83.33%;}
.col6{width:100%;}




.doublecol{
    width: 100%;
    display:flex;
}
.form .doublecol label{
    width:50%;
}

.features .item,.exchanges .item{
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    min-width: 50px;
    flex: 1;
    font-size: 12px;
    display:flex;
    line-height: 14px;
    padding: 10px 0;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    box-sizing: border-box;
}

.exchanges .item{
    /* height: 81px;
    padding-top:46px; */
    padding-top:34px;
    line-height: 10px;
}

a.item{
    text-decoration: none;
}


.exchanges .item:after{
    border-radius: 10px;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: var(--background);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute ;
    top: 6px;
    left: calc(50% - 10px);
    opacity: 1;
    box-sizing: border-box;
}

.exchanges .item:before{
    border-radius: 50%;
    content: "+";
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: block;
    width: 24px;
    height: 24px;
    background-color: #000;
    position: absolute ;
    top: 4px;
    left: calc(50% - 12px);
    opacity: 1;
    box-sizing: border-box;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
}




.item i.material-symbols-rounded{
    font-size: 14px;
    margin-right: 3px;
}

.item.soon{
    opacity: 0.3;
}

.form label, .form .label{
    display:flex;
    width:100%;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    position:relative;
}

.form button i{font-size:22px;}

.form label > span,.form .label > span{
    text-align: right;
    width: 100px;
    min-width: 100px;
    line-height:14px;
}


.cotar{
    display:flex;
    gap:0;
    position:relative;
    background: rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius:15px;
}

.cotar div{
    position:absolute;
    top:-15px;
    width:100%;
    color: rgba(255,255,255,0.7);
    z-index: -1;
}

.cotar div span{
    display:inline-block;
    width: 33.33%;
    text-align: center;
    font-size: 12px;
    
}

#cot_res span{
    width: 100%;
    display: block;
}

#cot_res input{
    color: var(--green);
    border-color: var(--green);
}

.form .cotar input{
    padding: 20px 5px 0;
    line-height: 30px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    margin: 0;
    z-index: 1;
    background:none;
    border:none;
}

.form .cotar input:first-of-type{
    /* border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    border-right: none; */
}

.form .cotar input:last-of-type{
    /* border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    border-left: none; */
}

.form > a{
    display: block;
    width: 100%;
}

.request form label span,.request .form label span{
    flex: 1 0 130px;
    min-width: 130px;
}

.request form label span i{
    margin-left:7px;
}

.hist{
    display:block;
    position:absolute;
    width:50px;
    height:50px;
    line-height: 50px;
    text-align: center;
    top:17px;
    right:13px;
    cursor:pointer;
    border-radius: 15px;
    opacity: 0.6;
}
.hist:hover{
    background: rgba(255,255,255,0.1);
}

.form input, .form select{
    background:none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
    height:50px;
    line-height: 50px;
    padding: 0 5px;
    color: #fff;
    font-size:16px;
    margin:0;    
    width: calc(100% - 75px);
    box-sizing: border-box;
}

.msg{
    /* text-align: center;
    background: none;
    border:1px solid rgba(50,50,50,0.4);
    border-radius: 14px;
    min-height: 50px;
    line-height: 20px;
    padding: 15px 10px;
    font-size:16px;
    margin:0;
    width: 100%;
    color: #fff;
    font-weight: 500;
    box-sizing: border-box; */
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 0;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    color: #fff;
    box-sizing: border-box;
    padding: 14px 10px !important;
    font-weight: 500;
    background: linear-gradient(80deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(4px);
    overflow: hidden;
    border: 1px solid rgba(72, 81, 91, 0.10);
    min-height: 50px;
    width: 100%;
}

.card .msg{
    border-radius: 15px;
    box-shadow: none;
}

.form .button.instruction{
    width: 130px;
    flex: 1 0 130px;
}


.msg.error{
    background: linear-gradient(80deg, rgba(255,50,50, 0.07), rgba(255,50,50, 0.12), rgba(255,50,50, 0.07));
    border:1px solid rgba(255,50,50,0.05);
    color: Tomato;  
}

.msg.success{
    background: linear-gradient(80deg, rgba(50,255,50, 0.07), rgba(50,255,50, 0.12), rgba(50,255,50, 0.07));
    border:1px solid rgba(50,255,50,0.04);
    color: LimeGreen;  
}

.msg.warning{
    background: linear-gradient(80deg, rgba(255,255,50, 0.07), rgba(255,255,50, 0.12), rgba(255,255,50, 0.07));
    border:1px solid rgba(255,255,50,0.03);
    color: Gold;  
}

#operation {
    top:75px;
}

.square{
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    cursor:pointer;
}

.form button,.form .button{
    padding: 5px 30px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 14px;
    height: 50px;
    line-height: 50px;
    padding: 0 5px;
    color: #fff;
    font-size:16px;
    margin:0;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration:none;
    min-width: 50px;
}

h1 {
    width: 100%;
    grid-column: 1/2;
    display: flex;
    align-items:center;
    justify-content:space-between;
    padding: 0;
    margin: 15px 0;

}

h1 img{
    width: 200px;
    vertical-align: middle;
}

h1 p{
    display:block;
    font-size:12px;
    font-weight:normal;
    margin:0;
    padding:0;
    text-align:right;
    line-height: 22px;
    width: 200px;
}



h2 {
    line-height: 16px;
    font-size: 16px;
    margin-top: -40px;
    grid-column: 1/2;
}

.nota i {
    background: rgba(255, 255, 255, 0.15);
    width: 6px;
    display: inline-block;
    vertical-align: bottom;
    margin: 0 1px;
    border-radius: 3px;
}

.nota .b1 {
    height: 10px;
}

.nota .b2 {
    height: 15px;
}

.nota .b3 {
    height: 20px;
}

.nota .b4 {
    height: 25px;
}

.nota .b5 {
    height: 30px;
}

.nota1 .b1,
.nota2 .b1,
.nota2 .b2 {
    background: var(--red);
}

.nota3 .b1,
.nota3 .b2,
.nota3 .b3,
.nota4 .b1,
.nota4 .b2,
.nota4 .b3,
.nota4 .b4 {
    background: var(--yellow);
}

.nota5 i {
    background: var(--green);
}

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

.trust {
    color: var(--red);
}

.notfound {
    font-size: 20px;
}

.exchange .stamp {
    font-size: 30px;
}

.exchange .stamp.red {
    opacity: 0.7;
}

/* divs inside .exchangeOptions has to be equal width if > 1 elements or 100% if one element */
.exchangeOptions{
    margin-top:20px;
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.exchangeOptions > div{
    gap:10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    /* opacity: 0.4; */
    position: relative;
}

.bottomNote{
    font-size: 14px;
    opacity: 0.6;
    text-align: center;
    margin-top: 10px;
    padding:0;
    line-height: 20px;
}

.exchangeOptions > div.required{
    opacity: 1;
}

.exchangeOptions > div.required:after,.exchangeOptions > div.optional:after{
    content: "obrigatório";
    font-size:12px;
    padding: 0 5px;
    position:absolute;
    top: -11px;
    right: 10px;
    color: #fff;
    background: #ff6161;
    border-radius:10px;
    height:20px;
    line-height: 20px;
}

.exchangeOptions > div.optional:after{
    content: "opcional";
    background: #6161ff;
}

.exchangeOptions > div:hover{
    opacity: 1;
}

#exchange_form{
    width:100%;
}

.etitle{
    height:90px;
    margin-bottom: 12px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
}

#files{
    border-style: dashed !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.etitle p{
    height:30px;
    line-height: 30px;
    margin:0;
    padding:0;
    font-size:22px;
}

.task{
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    margin: 0 10px 10px;
    padding:0 10px;
    display:flex;
    line-height:14px;
    font-size: 13px;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    
}

.task > *{
    flex: 1 1 0;
    width: 0;
    flex-basis: 100%;
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task .material-symbols{
    font-size: 16px;
    vertical-align: middle;
}

.task .range{
    opacity:0.7;
    font-size: 12px;
}

.task .status{
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    display: block;
    text-align:center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius:10px;
    height: 30px;
    margin: 5px 0;
    line-height: 30px;
    text-decoration: none;
    box-sizing: border-box;
}

.etitle span{
    height: 30px;
    line-height: 14px;
    font-size:12px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    opacity: 0.75;
}

.etitle a{
    height:30px;
    line-height: 30px;
    margin:0;
    padding:0;
    opacity: 0.75;
}

.etitle a:hover{
    opacity: 1;
}

.etitle a > i{
    margin-right:5px;
}


.exchange.bad {
    opacity: 0.5;
}

.center{
    text-align: center;
}
.left{
    text-align: left;

}

.steps{
    display:none !important;
}

.p10{
    padding: 10px;
}
.m10{
    margin: 10px;

}
.right{
    text-align: right;
}

.material-symbols {
    vertical-align: middle;
    padding-bottom: 1px;
    margin-top: -1px;
}

.requestType > div{
    height: 200px;
}

/*readonly disable*/
input:disabled, input[readonly] {
    opacity: 0.7;
}



.notfound button {
    background: #FF5D6E;
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    border: none;
    margin: 0;
    color: #fff;
    font-size: 18px;
    padding: 0 10px;
    vertical-align: top;
}

.notfound input {
    background: #ffffff;
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    border: none;
    margin: 0 10px 0 0;
    width: 200px;
    padding: 0 10px;
    vertical-align: top;
}

/*card similar ao .exchanges, lado a lado com 3 colunas com tamanho minimo 200px*/
/*with gap between cards but not on container borders*/
.container {
    width: 100%;
    max-width: 900px;
    
    margin-bottom: 30px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
    position: relative;

}

.grid{
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

}


.full {
    grid-column: span 3;
}

.card, .box {
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin: 0;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    color: #fff;
    flex-grow: 1;
    box-sizing: border-box;
    padding: 15px;
    font-weight: 300;
    background: linear-gradient(80deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.012));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    overflow: hidden;
    border: 1px solid rgba(72, 81, 91, 0.10);
}

.card.transparent{
    background: none;
}

.card.portal{
    min-height: 265px;
}

.form input {
    margin: 0;
    color: #fff;
    flex-grow: 1;
    box-sizing: border-box;
    font-weight: 300;
    background: rgba(0,0,0,0.2);   
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.form input:focus,.form button:focus {
    outline: none;
    /* add light shadow */
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@keyframes breath {
    0% {}

    50% {
        transform: rotate(5deg) scale(1.2);
    }

    100% {}
}

#bkg {
    /* animation: breath 40s linear infinite; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-image: url("blockchain.jpg"); */

    background-image: url("/img/backgroundc.png");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    background-color:#000;
    z-index: -1;
    opacity: 0.5;
}

.card h3, .box h3 {
    margin: 0;
    padding: 5px 0;
    display: block;
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
}

.bill_history{
    display: flex;
    padding: 0 10px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    flex-direction: column;
}

.billToggle{
    /* cursor: pointer; */
}


.card p,.box p{margin:0;padding:0;}

.card h3 .material-symbols-rounded {
    font-size: 30px
}

.card ul {
    text-align: left;
    list-style: none;
    font-weight: 300;
    margin: 0 auto;
    padding: 0;
    display: inline-block;
}

.card li {
    line-height: 20px;
    margin: 5px 0;
}

.logout{
    padding:5px;
    border-radius: 15px;
    text-decoration:none;
    font-size:12px;
    line-height: 20px;
}

.logout:hover{
    text-decoration: underline;
}

.upper{
    text-transform: uppercase;
}

footer {
    margin-top: auto;
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 1;
    min-height: 50px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 0 30px;
    box-sizing: border-box;
    font-weight: 200;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}


footer *{
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12px;
    line-height: 50px;
}

footer a:hover{
    text-decoration: underline;
}



/*exchange last element*/
.exchange:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 750px) {
    .exchange a {
        display: none;
    }
    .exchange b {
        font-size: 15px;
        min-width:130px;
        white-space: nowrap;
    }

    .wallet_form{
        grid-auto-flow: row;
    }
}

/*mobile style*/
@media only screen and (max-width: 600px) {

    .exchangeOptions{
        flex-direction: column;
    }

    h1{
        padding: 0 10px;
        box-sizing: border-box;
    }

    h1 img{
        width:150px;
        margin-top:-10px;
    }

    h1 p:first-child{display:none;}

    h1 span{display:block;text-align: right;}



    h2 {
        font-size: 13px;
        margin-top: -25px;
    }

    .card{
        min-height: inherit;
    }

    .container {
        gap: 10px;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
    }

    .exchanges {
        padding: 10px;
    }

    .container>* {
        grid-column: span 1;
    }

    .exchange .notas {
        display: none;
    }

    .exchange .nota.geral {
        width: 40px;
        display: block;
        position: absolute;
        top: 10px;
        left: 0px;
    }

    .exchange .stamp {
        width: 40px;
        margin-top: 30px;
        font-size: 22px;
    }

    .form .button.instruction{
        width: 50px;
        flex: 1 0 50px;
    }
    .form .button.instruction span{
        display:none;
    }





    .form .expand{
        margin-top: 25px;
    }
    .form .expand > span{
        position:absolute;
        top:-20px;
        font-size: 13px;
        left:10px;
        height: 15px;
        line-height: 15px;
        text-align:left;

    }
    .form .expand > span i{
        font-size: 18px;
    }

    .form select,.form input,.form button{
        width:100%;
    }

}

.switch_theme{
    position:absolute;
    bottom: 10px;
    left: 10px;
}

