.coinbox1 .left {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid #49657B1A;
    border-radius: 10px;
    padding: 13.5px 30px 13.5px 56px;
}

.coinbox1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interst_icons {
    width: 40px;
    height: 40px;
}

.coinbox1-container ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coinbox1-container ul li {
    position: relative;
}

.coinbox1 input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
}

.coinbox1 .left:after {
    content: " ";
    background-image: url('../image/svg/uncheck.svg');
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: absolute;
    left: 20px;
}

.coinbox1 input[type="checkbox"]:checked~.left:after,
.coinbox1 input[type="radio"]:checked~.left:after {
    content: " ";
    background-image: url('../image/svg/checked.svg');
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: absolute;
    left: 20px;
}

.coinbox1 input[type="checkbox"]:checked~.left,
.coinbox1 input[type="radio"]:checked~.left {
    border-color: rgba(25, 91, 203, 1);
}

.coin1 {
    width: 34px;
}

.coin-type {
    font-size: 18px;
    font-weight: 600;
    line-height: 27.09px;
    text-align: left;
    color: #1D242C;
}

.topupleft {
    display: flex;
    gap: 4.5px;
    align-items: center;
}

.coins-total span {
    font-weight: 600;
}

.coins-total {
    font-size: 12px;
    font-weight: 400;
    line-height: 18.06px;
    text-align: left;
    color: #49657B;
}

@media(max-width:425px) {
    .coinbox1 .left {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .topupleft {
        align-items: start;
    }
}