/*staking*/

.staking__global-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 38px;
    margin: 57px auto auto auto;
    max-width: 941px;
    padding: 0 15px;
}

.staking__global-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.staking__box {
    background: #131722;
    border-radius: 10px;
    max-width: 526px;
}

.staking__info {
    background: linear-gradient(90deg, #1F2152 0%, #0C0D18 100%);
    border-radius: 10px 10px 0 0 ;
    padding: 23px 48px 26px 44px;
    display: flex;
    column-gap: 20px;
}

.staking__title,
.profit__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 2px;
}

.staking__description,
.profit__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #A1A0A7;
    white-space: nowrap;
}

.staking__info-logos {
    display: flex;
    align-items: center;
    position: relative;
    right: 0;
    width: 100%;
    margin-top: 5px;
}

.staking__logo {
    position: absolute;
    right: 0;
}

.staking__logo-bitcoin {
    right: 132px;
    z-index: 7;
}

.staking__logo-ethereum {
    right: 109px;
    z-index: 6;
}

.staking__logo-tether {
    right: 87px;
    z-index: 5;
}

.staking__logo-usdc {
    right: 63px;
    z-index: 4;
}

.staking__logo-solana {
    right: 40px;
    z-index: 3;
}

.staking__logo-tron {
    right: 18px;
    z-index: 2;
}

.staking__logo-polygon {
    z-index: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    outline: none;
}

input[type=number] {
    -moz-appearance:textfield;
    outline: none;
    border: none;
}

input[type=text] {
    -moz-appearance:textfield;
    outline: none;
    border: none;
}

.staking__send {
    position: relative;
}

.staking__send,
.staking__get {
    width: 100%;
}

.staking__send-title,
.staking__get-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 12px;
}


.staking__send-title2 {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 12px;
    margin-top:30px;
}



.staking__send-input{
    position: relative;
}

.staking__send-input,
.staking__get-input {
    display: flex;
    background-color: #000000;
    border-radius: 5px;
    padding: 10px 20px 11px 18px;
}

.staking__send-input input,
.staking__get-input input {
    background-color: #000000;
    padding-right: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    max-width: 276px;
    flex-basis: 100%;
}

.staking__send-input input::placeholder,
.staking__get-input input::placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #9F9EA5;
}

.staking__send-select {
    background-color: #2b3348;
    border-radius: 5px;
    min-width: 122px;
    height: 37px;
    cursor: pointer;
    padding: 8px 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    
}

.staking__send-select img{
    width: 21px;
    height: 21px;
    pointer-events: none;
}

.staking__send-select svg{
    position: absolute;
    right: 15px;
    top: 15px;
    transform: rotate(0deg);
    transition: transform .3s ease-in-out;
    pointer-events: none;
}

.staking__send-select.active svg{
    transform: rotate(180deg);
}

.staking__select-name{
    margin-left: 9px;
    pointer-events: none;
}

.staking__send-available {
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    margin-top: 12px;
}

.staking__send-available span {
    color: #5C76FD;
    cursor: pointer;
}

.stakingForm__currency-list{
    border: 1px solid transparent;
    border-radius: 0px 0px 10px 10px;
    /*position: relative;*/
    overflow: hidden;
    height: 0;
    transition: all .3s ease-in-out;
    background: #1C2030;
    visibility: hidden;
    margin-top: 5px;
    position: absolute;
    right: 0;
    width: 100%;
}

.stakingForm__currency-list.active{
    box-shadow: 1px 1px 31px -7px rgb(0 0 0 / 75%);
    -webkit-box-shadow: 1px 1px 31px -7px rgb(0 0 0 / 75%);
    -moz-box-shadow: 1px 1px 31px -7px rgba(0,0,0,0.75);
    height: 200px;
    background: #1f2534;
    visibility: visible;
}


.stakingForm__coin-items{
    height: 191px;
    overflow-x: hidden;
    overflow-y: scroll;
}


.stakingForm__coin-items::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.stakingForm__coin-items::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border: 0 none #ffffff;
    border-radius: 42px;
}

.staking__currency-item{
    width: auto;
    height: 48px;
}

.staking__currency-item{
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
   
    background-color: rgba(255, 255, 255, 0);
}

.staking__currency-item{
    padding-left: 15px;
    padding-right: 15px;
   
}


.staking__currency-item:hover{
    background:#3f465a;
}


.staking__currency-item:last-child{
    border-bottom: none;
}

.stakingForm__currency-sub,
.stakingForm__currency-content,
.stakingForm__currency-title,
.stakingForm__currency-img{
    line-height: 14px;
    pointer-events: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-size: 14px;
    
}

.stakingForm__currency-content{
    display: flex;
    flex-direction: column;
    row-gap: 3px;
    align-items: start;
    justify-content: center;
    flex-basis: 80%;
}

.stakingForm__currency-title{
    color: #9e9e9e;
        font-size: 13px;
}

.list-coin-one{
    z-index: 3;
}

.stakingForm__currency-img{
    width: 30px;
    height: 30px;
}

.staking__you {
    display: flex;
    margin-top: 44px;
    margin-bottom: 18px;
    padding: 0 48px 0 45px;
}

.staking__dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.staking__dot {
    width: 6px;
    height: 6px;
    background-color: #545C72;
    border-radius: 50%;
}

.staking__dot + .staking__dot {
    margin-top: 6px;
}

.staking__select {
    padding: 0 48px 0 44px;
}

.staking__select-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 14px;
}

.staking__select-buttons {
    display: grid;
    grid-template-columns: repeat(2, 206px);
    grid-template-rows: repeat(2, 60px);
    gap: 16px 22px;
}

.staking__select-button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    background: #202636;
    border: 1px solid #4C5877;
    border-radius: 5px;
    max-width: 206px;
    flex-basis: 100%;
    position: relative;
}


.staking__select-button:hover {
background:#2c344a;
}


.staking__select-button:before {
    content: "";
    position: absolute;
    width: 101%;
    height: 103%;
    top: -1px;
    left: -1px;
    border-radius: 5px;
    padding: 1.5px;
    background: linear-gradient(90deg, #5C76FD 0%, #42C667 100%);
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.staking__select-button.staking__select-button-active:before {
    opacity: 1;
}

.staking__select-button-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #A1A0A7;
    pointer-events: none;
}

.staking__select-button-day {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    white-space: nowrap;
    width: 56px;
    pointer-events: none;
}

.staking__select-button-percent {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #54D881;
}

.staking__select-button-line {
    background-color: #A1A0A7;
    width: 1px;
    height: 40px;
    pointer-events: none;
}

.staking__select-button-container {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.staking__link-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.staking__link {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    background: linear-gradient(90deg, #0E6CF8 0%, #AA00D5 100%);
    border-radius: 5px;
    padding: 13px 73px 13px 78px;
    margin-top: 39px;
    margin-bottom: 38px;
}


.staking__link:hover {
background:#5534b5;
background: linear-gradient(90deg, #4242d5 0%, #50a6ab 100%);
}


.staking__sub-description {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #A1A0A7;
    padding: 0 48px 29px 44px;
}

/*staking*/



/*profit*/

.profit {
    background: #131722;
    border-radius: 10px;
}

.profit__info {
    background: linear-gradient(90deg, #1F2152 0%, #0C0D18 100%);
    border-radius: 10px 10px 0 0;
    padding: 26px 20px 25px 40px;
}

.profit__main {
    padding: 44px 41px 32px 41px;
}

.profit__value {
    margin-bottom: 30px;
}

.profit__value,
.profit__total {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #A1A0A7;
    display: flex;
    justify-content: space-between;
}

.profit__numbers {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.profit__numbers span {
    color: #54D881;
    margin-top: 6px;
}

/*profit*/



/*tips*/

.tips {
    background: #131722;
    border-radius: 10px;
    margin-top: 42px;
    padding: 41px 42px 48px 40px;
}

.tips__list-item {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #A1A0A7;
}

.tips__list-item + .tips__list-item {
    margin-top: 28px;
}

/*tips*/

@media (max-width: 900px) {
    .staking__global-container {
        flex-direction: column;
        align-items: center;
    }

    .staking__global-wrapper {
        max-width: 500px;
    }

    .staking {
        margin-bottom: 42px;
    }
}

@media (max-width: 570px) {
    .staking__box {
        max-width: fit-content;
    }

    .staking__select-buttons {
        grid-template-columns: repeat(2, 170px);
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .staking__info,
    .profit__info {
        padding: 23px 30px 26px 30px;
    }

    .staking__you,
    .staking__select {
        padding: 0 30px 0 30px;
    }

    .staking__sub-description {
        padding: 0 30px 30px 30px;
    }

    .profit__main,
    .tips {
        padding: 30px;
    }

    .staking__send-input, .staking__get-input {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 510px) {
    .staking__send-input, .staking__get-input {
        flex-direction: column;
        padding: 15px 20px;
    }

    .staking__send-select {
        margin-top: 10px;
    }

    .stakingForm__currency-list {
        left: 0;
    }
}

@media (max-width: 450px) {
    .staking__select-buttons {
        grid-template-columns: repeat(2, 150px);
    }

    .staking__you {
        margin-top: 30px;
    }

    .staking__select-button {
        width: auto;
        padding: 10px 0;
    }

    .staking__info,
    .profit__info {
        padding: 23px 20px 26px 20px;
    }

    .staking__you,
    .staking__select {
        padding: 0 20px 0 20px;
    }

    .staking__sub-description {
        padding: 0 20px 20px 20px;
    }

    .profit__main {
        padding: 20px;
    }

    .staking__select-button-day {
        font-size: 16px;
    }

    .staking__select-button-percent {
        font-size: 21px;
    }
}

@media (max-width: 430px) {
    .staking__logo,
    .staking__logo img {
        width: 35px;
        height: 35px;
    }

    .staking__select-buttons {
        gap: 16px 10px;
    }
}

@media (max-width: 400px) {
    .staking__logo,
    .staking__logo img {
        width: 30px;
        height: 30px;
    }

    .staking__logo-bitcoin {
        right: 108px;
        z-index: 7;
    }

    .staking__logo-ethereum {
        right: 88px;
        z-index: 6;
    }

    .staking__logo-tether {
        right: 67px;
        z-index: 5;
    }

    .staking__logo-usdc {
        right: 48px;
        z-index: 4;
    }

    .staking__logo-solana {
        right: 30px;
        z-index: 3;
    }

    .staking__logo-tron {
        right: 12px;
        z-index: 2;
    }
}

@media (max-width: 380px) {
    .staking__info,
    .profit__info {
        padding: 23px 15px 26px 15px;
    }

    .staking__you,
    .staking__select {
        padding: 0 15px 0 15px;
    }

    .staking__sub-description {
        padding: 0 15px 15px 15px;
    }

    .profit__main {
        padding: 15px;
    }
}
