.pull-right {
    float: right;
}

.pricemoney {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    margin: 1px;
    padding: 1px;
}
@media (max-width: 600px) {
    .pricemoney {
        display: block;
    }
}

.pricemoney_block {
    text-align: center;
    display: flex;
    justify-content: center;
    background: #364564;
    margin: 2px;
    padding: 5px;
    border-radius: 3px;
}
@media (max-width: 600px) {
    .pricemoney_block {
        width: 200px;
        margin: 2px auto 2px;
    }
}

.pricemoney_block-title {
    background: #2e3b57;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 21px;
}
@media (max-width: 600px) {
    .pricemoney_block-title {
        width: 80px;
    }
}

.pricemoney_block-content {
    background: #2e3b57;
    display: inline-block;
    width: 100px;
    padding: 5px 5px 3px 5px;
    border: 1px solid transparent;
    border-radius: 3px;
    margin-left: 2px;
}
@media (max-width: 600px) {
    .pricemoney_block-content {
        flex-grow: 1;
    }
}

.pricemoney_block:nth-child(3) > .pricemoney_block-content {
    background: #7367f0;
    color: #fff;
    font-weight: bold;
}

.price {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.price h4 {
    text-align: center;
}

.price span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.price b {
    color: #eac485;
}

/* psys */
.psys {
    display: grid;
    width: 100%;
    gap: 10px;
}

@media (min-width: 350px) {
    .psys_def {
        grid-template-columns: repeat(2, 1fr);
    }
    .psys_systems {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 540px) {
    .psys_def {
        grid-template-columns: repeat(3, 1fr);
    }
    .psys_systems {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 700px) {
    .psys_def {
        grid-template-columns: repeat(4, 1fr);
    }
    .psys_systems {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1000px) {
    .psys_def {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (min-width: 1200px) {
    .psys_def {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (min-width: 1300px) {
    .psys_def {
        grid-template-columns: repeat(6, 1fr);
    }
}
.psys__item {
    text-decoration: none;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s all;
    position: relative;
    z-index: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    margin: 0;
    min-height: 66px;
    text-align: center;
}

.psys__bg {
    z-index: -1;
    border: 1px solid #f3a63a;
    border-radius: 5px;
    background: rgba(136, 135, 219, 0.05);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.psys__item:hover .psys__bg,
.psys__input:checked ~ .psys__bg,
.psys__item[data-open-gwps-active=true] .psys__bg {
    border: 1px solid #f3b053;
    background: #f3be73;
}

.psys__img {
    display: block;
    max-width: 100%;
    height: auto;
}

.psys__input {
    display: none;
    opacity: 0;
}

/* gwtab */
[data-tab],
[data-gwps] {
    display: none;
    opacity: 0;
    animation: tab 1s ease forwards;
}

@-webkit-keyframes tab {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.bonus-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.bonus-tier {
    position: relative;
    border: 1px solid #3d3d3d;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: -1px 2px 4px 2px rgb(0 0 0 / 11%);
    display: none;
}

.bonus-tier.blurred {
    filter: blur(5px);
    pointer-events: none;
    opacity: 0.5;
}

.bonus-tier.special {
    border-color: #9c27b0;
    background-color: rgba(156, 39, 176, 0.05);
}

.special-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #9c27b0;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.special-bonus-badge {
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: #ff4081;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.special-item {
    position: relative;
    border: 1px solid #9c27b0;
    background-color: rgba(156, 39, 176, 0.05);
}

.special-item::after {
    content: 'в…';
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #9c27b0;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #364564;
}

.tier-amount {
    color: #eac485;
    font-weight: bold;
}

.tier-bonus {
    font-weight: bold;
}

.tier-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.bonus-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 2px rgb(102 92 206 / 58%);
    border: 1px solid #655bd3c4;
}

.bonus-item span {
    font-size: 12px;
}

.input-group-append {
    display: none;
}

@media (max-width: 768px) {
    .tier-items {
        grid-template-columns: repeat(2, 1fr);
    }
}