.table_cards {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
    max-width: 1700px;
}

.card_pic {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.card_frame {
    position: absolute;
    top: 16px;
    left: 16px;
}

.dotslinel {
    position: absolute;
    left: 24px;
    bottom: 45px;
}

.dotsliner {
    position: absolute;
    right: 24px;
    top: 45px;
    z-index: 0;
}

.flip_card {
    width: 424px;
    height: 302px;
    gap: 8px;
    perspective: 1000px;
    position: relative;
    cursor: pointer;
    filter: drop-shadow(0px 2px 6px #00000026);
    transition: all 0.3s ease-out;
}


.flip_card_face,
.flip_card_back {
    background-image: url(../images/white-paper.webp);
    max-width: 424px;
    width: 100%;
    height: 302px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    position: absolute;
    backface-visibility: hidden;
    transition: transform 0.6s;
    clip-path: url("#clip-polygon");
}


.svg_clip {
    position: absolute;
    pointer-events: none;
}

.flip_card_title {
    text-align: center;
    position: relative;
    z-index: 1;
}

.flip_card_text {
    /*padding: 40px;*/
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flip_card_back span {
    color: #28BF88;
}

.flip_card_back {
    transform: rotateY(180deg);
    background: linear-gradient(180deg, #5C1818 0%, #3C0F0F 100%);
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip_card.flipped .flip_card_face {
    transform: rotateY(180deg);
}

.flip_card.flipped .flip_card_back {
    transform: rotateY(0deg);
}

.flip_card.flipped .klac {
    opacity: 0;
}




.flip_card:nth-child(2) {
    transform: rotate(2deg);
}

.flip_card:nth-child(3) {
    transform: rotate(-3deg);
}

.flip_card:nth-child(4) {
    transform: rotate(2deg);
}

.flip_card:nth-child(5) {
    transform: rotate(-2deg) translateY(10px);
}

@media (max-width: 900px) {

    .flip_card {
        width: 343px;
        height: 302px;
    }

    .flip_card_face,
    .flip_card_back {
        width: 343px;
        height: 302px;
    }

    .card_frame {
        width: 311px;
        height: 270px;
    }

    .table_cards {
        gap: 21px;
        padding: 16px 0;
    }

    .flip_card:nth-child(1) {
        animation: colorChange 3s infinite;
        transform: rotate(-1deg);
    }

    .flip_card:nth-child(2) {
        transform: rotate(1deg);
    }

    .flip_card:nth-child(3) {
        transform: rotate(-1deg);
    }

    .flip_card:nth-child(4) {
        transform: rotate(1deg);
    }

    .flip_card:nth-child(5) {
        transform: rotate(-1deg) translateY(10px);
    }


    .flip_card_title {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -0.32px;
    }

    .flip_card_text p {
        font-size: 14px;
        line-height: 20px;
    }


    .count_title {
        text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.30);
    }
}

@media (min-width: 900px) {

    .flip_card:hover {
        filter: drop-shadow(0px 2px 6px #00000056);
    }

    .flip_card_face:hover {
        transform: scale(1.0);
    }
}
@media (max-width: 883px) {
    .fdre{
        padding: 0 25px;
    }
}
.pack {
    position: relative;
    width: 360px;
    height: fit-content;
    background: radial-gradient(ellipse at top center, rgba(255, 255, 255, 0.13) 0%, transparent 80%),
    radial-gradient(circle at center, #1b253b 0%, #1b253b 80%, #1b253b 100%);
    border-radius: 12px;
    padding: 30px 25px 40px;
    color: white;
    font-family: Georgia, serif;
    text-align: center;
    box-shadow: 0 0 5px rgba(225, 225, 225, 0.2);
}

.badgem {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 75px;
    background: url({{ asset('assets/panel/images/pack/default.webp') }}) no-repeat center/contain;
}

.title {
    font-size: 20px;
    margin-bottom: 20px;
}

.items {
    list-style: none;
    overflow: auto;
    /*max-height: 250px;*/
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.items li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
}

.items li img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/*!* Tooltip *!*/
/*.items li::after {*/
/*    content: attr(data-tooltip);*/
/*    position: absolute;*/
/*    left: 15px;*/
/*    max-width: 198px;*/
/*    top: 15px;*/
/*    transform: translateY(-50%) translateX(10px);*/
/*    background: #1e1b30;*/
/*    color: #ffd700;*/
/*    white-space: normal;*/
/*    word-break: break-word;*/
/*    padding: 6px 10px;*/
/*    font-size: 12px;*/
/*    border: 1px solid #8b6b2c;*/
/*    border-radius: 6px;*/
/*    opacity: 0;*/
/*    pointer-events: none;*/
/*    transition: opacity 0.3s ease;*/
/*    z-index: 10;*/
/*}*/

/*.items li:hover::after {*/
/*    opacity: 1;*/
/*}*/

.price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4px;
}

.subtext {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 20px;
}

.buy-button {
    /*background: linear-gradient(to right, #7b1b1b, #a12323);*/
    /*border: 1px solid #d7a645;*/
    /*color: white;*/
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-block {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 4px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-right: 10px;
}

.new-price {
    color: #b6a366;
}

.bonus-text {
    font-size: 13px;
    color: #fff;
    background: linear-gradient(90deg, #d5c06b, #ba5a7f, #551e63);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tabs-content {
    margin-top: 40px !important;
}
.tabs-item, .tabs-item > button {
    height: 40px;
}

.tabs-vertical > .tabs-list .tabs-button._is-active {
    pointer-events: none;
    --tw-border-opacity: 1;
    border-color: rgba(var(--primary), var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    box-shadow: 0 0 4px -1px;
    color: rgba(var(--primary), var(--tw-text-opacity, 1));
}
.imgs {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.27);
}