html{
    height: 100%;
    width: 100%;
}

body{
    font-family: Poppins, Helvetica, "sans-serif";
    background-color: #1f2120;
    height: 100%;
    width: 100%;
}

.main .button.active {
    background-color: #FFC107; /* Приятный желтый цвет */
}

.content{
    width: 100%;
    height: 100%;
    padding: 4% 3%;
    box-sizing: border-box;
}

.header{
    display: flex;
    justify-content: space-between;
    color: #f3f7f8;
    margin-bottom: 3%;
}

.header .left{
    font-size: 35px;
}

.header .right{
    font-size: 22px;
    display: flex;
    justify-content: space-between;
    width: 30%;
}

.main {
    position: relative;
    width: 100%;
    height: 45%;
    margin-bottom: 3%;
}

.main .info-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #333;
    color: #f3f7f8;
    padding: 2%;
    border-radius: 6%;
    font-size: 18px;
    text-align: center;
    width: 50%;
    min-height: 72%;
    border: none;

    box-shadow:
        0 -55px 100px rgba(255, 255, 0, 0.15),  /* сверху */
        -55px 0 100px rgba(255, 255, 0, 0.1),  /* слева */
        55px 0 100px rgba(255, 255, 0, 0.1),   /* справа */
        0 5px 25px rgba(255, 255, 0, 0.1);
}

.main .buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2%;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}

.main .button {
    color: #f3f7f8;
    cursor: pointer;
    font-size: 2.3vw;
    transition: background 0.3s ease;
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: center;
}

.style-button{
    background: #283130;
    border: none;
    padding: 3%;
    border-radius: 20px;
}

.main .button .logo {
    position: relative;
    background: #4a4855;
    color: #f3f7f8;
    border: none;
    height: 40%;
    width: auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    max-width: 100%;
    margin-bottom: 2%;
    overflow: hidden;
}

.main .button .logo img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
}

.main .button .text {
    max-width: 45%;
    text-align: right;
}

.main .button:nth-child(even) {
    align-items: end;
}


.payment {
    position: relative;
    width: 100%;
    height: 21%;
    margin-bottom: 3%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    color: #f3f7f8;
}

.payment .left{
    position: relative;
    width: 49%;
    font-size: 2.3vw;
    transition: background 0.3s ease;
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: space-between;
}

.payment .left .sum{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.payment .left .sum img{
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.payment .left .sum .minus, .payment .left .sum .plus{
    background-color: #414850;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    cursor: pointer;
}

.payment .left .sum .num{
    font-size: 70px;
}

.payment .left .sbp{
    background-color: #eff0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5%;
    box-sizing: border-box;
    border-radius: 20px;
    cursor: pointer;
}

.payment .left .sbp .logo{
    display: flex;
    align-items: center;
    width: 40%;
}

.payment .left .sbp .line{
    width: 1px;
    background-color: black;
    height: 100%;
}

.payment .left .sbp img{
    object-fit: contain; /* Изображение сохраняет пропорции и не выходит за пределы */
}

.payment .left .sbp .text{
    display: flex;
    align-items: center;
    width: 40%;
    height: 100%;
    font-size: 2.3vw;
    font-weight: 500;
    color: black;
}

.payment .left .sbp-text{
    font-size: 1.4vw;
    text-align: center;
}

.full-width {
    flex: 0 0 100% !important;
}


.payment .right{
    width: 49%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4%;
}

.payment .right div{
    flex: 0 0 48%;
}



