.premium-option{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
    padding: 30px; 
    border-radius: 1.5px; 
    background-color: #343a40; 
    width: 250px; 
    height: 300px; 
    border-bottom: 4px solid gold;
}

.price {
    font-size: 24px;
    color: #333;
}

.old-price {
    color: #999;
    margin-right: 10px;
}

.new-price {
    color: gold;
    font-weight: bold;
}

.accountView{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}


.leftBlockAccountInfo{
    display: grid;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    margin-top: 15px;
    width: calc(15% - 15px);
    border-radius: 1px;
    border-bottom: 2px solid #606ff1;
    background-color: #212529;
    padding-bottom: 25px;
}

.rightBlockAccountInfo{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: left;
    align-items: flex-start;
    margin-right: 15px;
    margin-top: 15px;
    width: calc(85% - 30px);
}

.textBlockAccount{
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}

.nameUserTextAccount{
    margin-top: 25px;
    text-align: center;
    width: 100%;
    color: white;
    line-height: normal;
    font-size: 1.5rem;
}

.textBalanceUserAccount{
    text-align: center;
    width: 100%;
    color: white;
}

.buttonExitAccount{
    width: 125px;
    background-color: blue;
    border-radius: 5px;
    cursor: pointer;
}

.lineAccount{
    height: 5px;
    background-color: #2c2d2e;
}

.line_1{
    width: 100%;
}


.iconProfile{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-height: 120px;
    margin-top: 15px;
}

.boxBalanceProfile{
    background-color: red;
    width: 200px;
    height: 200px;
}

.profileBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.profileBox .cardProfileBox{
    position: relative;
    background: #212529;
    width: 100%;
    min-width: 500px;
    height: 150px;
    padding: 10px;
    border-radius: 1px;
    display: flex;
    align-content: center;
    justify-content: left;
    border-bottom: 2px solid #969696;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.premiumInfo{
    width: 400px;
}

.bunnotRight{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
    padding-right: 50px;
}

.valueBoxProfile{
    width: auto;
    display: grid;
    color: white;
    position: relative;
    font-weight: 24px;
    font-size: 1.2rem;
    text-align: left;
}

.nameProfleBox{
    width: auto;
    display: grid;
    color: white;
    position: relative;
    font-weight: 24px;
    font-size: 1.5rem;
    text-align: left;
}

.textPremiumNotUse{
    color: red;
}


@media (max-width: 1350px) {
    .accountView{
        gap: 0px;
    }
    .leftBlockAccountInfo{
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }

    .rightBlockAccountInfo{
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }

    .profileBox
    {
        
    }

    .profileBox .cardProfileBox
    {
        min-width: 100px;
    }

}


