.topTxtCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.topTxt {
    font-size: 70px;
    font-weight: bolder;
    text-align: center;
    letter-spacing: 5px;
    color: white;
    margin: 0;
}

.quoteTxt {
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(130deg, #3587e3 33%, #44f0d2 66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.show {
    opacity: 1 !important;
}

.grayTxt {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
}

.discordBox {
    width: 200px;
    background: #1553df;
    border-radius: 6px;
    padding: 14px 30px 14px 30px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    color: white;
    user-select: none;
}

.discordBox:hover {
    transform: scale(.95);
}

/* Price boxes */

.priceCont {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.priceBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 130px;
    height: 80px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
    transition: .3s all;
    cursor: pointer;
}

.priceBox.selected {
    background: rgba(43, 255, 0, 0.2);
    scale: .9;
}

.priceBox p {
    font-size: 15px;
}

.priceBox h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.priceBox span {
    position: absolute;
    border-radius: 6px;
    rotate: 348deg;
    right: -15px;
    bottom: -7px;
    color: white;
    background: linear-gradient(130deg, rgb(53 135 227 / 30%) 33%, rgb(68 240 210 / 30%) 66%);
    padding: 4px;
}

.howToBuyAnim {
    animation: howToBuy 1s ease-in-out;
}

@keyframes howToBuy {
    0% {
        transform: scale(1);
        font-weight: 300;
    }

    50% {
        transform: scale(1.5);
        font-weight: 600;
    }

    100% {
        transform: scale(1);
        font-weight: 300;
    }
}

.popular {
    background: linear-gradient(130deg, rgb(53 135 227 / 30%) 33%, rgb(68 240 210 / 30%) 66%);
}

.miniTxt {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    user-select: none;
}

.miniTxt span {
    user-select: all;
}

.vipSoc {
    display: flex;
    gap: 10px;
}

/* Доп. инфо */
.vipPremInfo {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin: 4px 0px 20px 0px;
}

/* Features */

.bigTxt {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.nameBox {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.info {
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

.nameBox img {
    width: 35px;
    margin-right: 10px;
}

.cmd {
    font-weight: 500;
}

.cmd span {
    color: var(--red-color);
}

.cmdBox {
    margin: 10px 0 20px 0;
}

ul {
    padding-left: 12px;
}

li {
    font-weight: 500;
}

.personal {
    color: #393939;
}

/* Форма оплаты */

.payBox {
    gap: 14px;
}

.results {
    display: flex;
    z-index: 4;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 37px;
    width: 300px;
    padding: 14px;
    border-radius: 0 0 10px 10px;
    background: white;
    color: black;
    transition: .3s all;
    opacity: 0;
    gap: 14px;
}

.gapBox {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.searchProfiles {
    cursor: pointer;
    transition: .3s all;
}

.searchProfiles:hover {
    color: var(--red-color);
}

.pPic {
    width: 40px;
}

.cPersonal {
    text-align: center;
}

.goToProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 36px;
    padding: 10px 10px;
    border-radius: 10px;
    font-weight: 400;
    color: #dddddd;
    transition: .3s all;
    -webkit-user-select: none;
}

.goToProfile.act {
    cursor: pointer;
    background: rgb(0 0 0 / 40%);
}

.goToProfile.act:hover {
    scale: .95;
}

.textBox {
    width: 300px;
    padding: 2px;
    border: 0;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 600;
    text-align: center;
    line-height: 2.5;
}

.textBox.expand {
    border-radius: 10px 10px 0 0 !important;
}

.mdCont {
    display: flex;
    align-items: center;
}

@media (max-width: 1279px) {
    .topTxt {
        font-size: 40px;
    }

    .quoteTxt {
        font-size: 30px;
    }
}