.psc-item {
    display: grid;
    grid-template-columns: 226px auto;
    border-radius: 8px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.psc-item:not(:last-child) {
    margin-bottom: 24px;
}

.psc-item__aside {
    position: relative;
    grid-area: 1 / 1 / 3 / 2;
    padding: 30px 13px 24px 13px;
    width: 100%;
    min-width: 226px;
    max-width: 226px;
    background: #F4F4F4;
}

.psc-item__achievement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #FF0000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 10px;
    border-radius: 8px 0 0 0;
    line-height: 1.2;
}

.psc-item__thumb {
    display: block;
    height: 130px;
}

.psc-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.25);
    transition: box-shadow ease .2s;
}

.psc-item__thumb img:hover {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25)
}

.psc-item__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 10px;
}

.psc-item__title h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.25;
}

.psc-item__title a {
    color: #000;
    text-decoration: none;
    transition: color ease .2s;
}

.psc-item__title a:hover {
    color: #FF7A00;
}

.psc-item__country img {
    width: 24px;
    height: 15px;
    object-fit: contain;
}

.psc-item__reviews {
    display: flex;
    align-items: center;
    gap: 12px;
}

.psc-item__bonus {
    grid-area: 1 / 2 / 2 / 3;
    padding: 10px 15px;
    background: linear-gradient(268deg, rgba(219.30, 0, 255, 0.15) 0%, rgba(255, 45, 85, 0.15) 100%);
    border-bottom: 2px #DB00FF dotted;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: auto;
}

.psc-item__bonus-title {
    font-size: 20px;
    font-weight: bold;
}

.psc-item__bonus-title .copy-code {
    display: inline-block;
    color: #FF2D55;
}

.psc-item__bonus-title .copy-code::after {
    content: none;
}

.psc-item__bonus-promocode {
    width: 100%;
    max-width: 155px;
    min-width: 155px;
    margin-left: auto;
}

.psc-item__bonus__copy-text {
    width: 100%;
    font-size: 12px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.psc-item__bonus .btn-promocode {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.psc-item__bonus-promocode .copy-code {
    color: #fff;
}

.psc-item__bonus-promocode .copy-code span {
    border-bottom: 1px dashed #fff;
    pointer-events: none;
    user-select: none;
}

.psc-item__bonus-promocode .copy {
    fill: #fff;
}


.psc-item__bonus.no-bonus{
    background: rgb(0 0 0 / 15%);
    border-bottom: 2px #000000 dotted;
    text-align: center;
    justify-content: center;
    font-weight: bold;
}

.psc-item__body {
    grid-area: 2 / 2 / 3 / 3;
    margin-top: auto;
}

.psc__games {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #E5E5EA;
}

.psc__games--item {
    padding: 5px;
    font-size: 14px;
    background: #F7F7F7;
    border-radius: 4px;
    border: 1px solid #E5E5EA;
    line-height: 1.1;
}

.psc__informer {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 15px;
}

.psci--items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.15;
    flex: 0 0 calc(50% - 15px);
    padding: 6px 0;
}

.psci--items-border {
    padding-bottom: 9px;
    margin-bottom: 9px;
    border-bottom: 1px solid #E5E5EA;
}

.psci--key {
    font-size: 14px;
    color: #AEAEB2;
    font-weight: bold;
    flex: 1;
}

.psci--value {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
}

.psci--value .more {
    color: #007AFF;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.psci__logo {
    max-width: 45px;
    height: 19px;
    object-fit: contain;
    text-align: center;
    line-height: 20px;
}

.brand__logo {
    width: 16px;
    height: 19px;
    object-fit: contain;
    line-height: 20px;
}

.checkbox-games:checked ~ .hidden,
.checkbox-payments:checked ~ .psci--value .hidden {
    display: block !important;
}

.checkbox-payments:checked ~ .psci__logo {
    margin-top: 8px;
}

.checkbox-games:checked ~ .more,
.checkbox-payments:checked ~ .psci--value .more {
    display: none;
}

.psc__btn {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.psc__btn .btn {
    position: relative;
    flex: 1;
    font-weight: bold;
}

.psc__btn .btn.outLink::after {
    content: '';
    background-image: url(/wp-content/themes/kws-theme/assets/images/finger.svg);
    width: 31px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 12px;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .psc-item {
        display: block;
        border: 1px solid #E0E0E0;
    }

    .psc-item:not(:last-child) {
        margin-bottom: 20px;
    }

    .psc-item__aside {
        max-width: 100%;
        min-width: unset;
        display: grid;
        align-items: center;
        grid-template-columns: 115px auto;
        grid-column-gap: 10px;
        padding: 10px 5px 10px 15px;
        background: #fff;
    }

    .psc-item__thumb {
        grid-area: 1 / 1 / 4 / 2;
        max-width: 115px;
        min-width: 115px;
        height: 80px;
    }

    .psc-item__achievement {
        position: static;
        grid-area: 1 / 2 / 2 / 3;
        max-width: max-content;
        border-radius: 8px 0 8px 0;
    }

    .psc-item__title {
        grid-area: 2 / 2 / 3 / 3;
        margin: 4px 0;
    }

    .psc-item__reviews {
        grid-area: 3 / 2 / 4 / 3;
    }
}

@media (max-width: 576px) {
    .psc-item {
        overflow: unset;
    }

    .psc-item__aside {
        border-radius: 8px 8px 0 0;
    }

    .psc-item__title {
        grid-area: 1 / 2 / 3 / 3;
    }

    .psc-item__bonus {
        display: block;
        padding: 10px;
        border-top: 2px #DB00FF dotted;
        border-bottom: 2px #FF2D55 dotted;
    }

    .psc-item__bonus-title {
        font-size: 18px;
        text-align: center;
        line-height: 1.25;
    }

    .psc-item__bonus-promocode {
        max-width: 207px;
        min-width: 207px;
        margin: 10px auto 0;
    }

    .psc-item__achievement {
        position: absolute;
        top: -9px;
        font-size: 11px;
        padding: 1px 12px;
        grid-area: initial;
    }

    .psc-item__title h2 {
        font-size: 20px;
    }

    .psc-item__reviews {
        font-size: 14px;
        grid-area: 3 / 2 / 4 / 3;
    }

    .psc-item__rate {
        display: flex;
        align-items: center;
    }

    .psc-item__rate .star-full {
        fill: #FFCC00;
        margin-right: 5px;
    }

    .psc-item__reviews-link {
        display: none;
    }

    .psc-item__body {
        display: flex;
        flex-direction: column;
    }

    .psc__games {
        display: none;
    }

    .psc__informer {
        display: none;
    }

    .psc__btn {
        gap: 10px;
        padding: 15px 10px 10px 10px;
        order: 1;
    }

    .psc__btn .btn.btn-reviews {
        display: none;
    }
}

@media (min-width: 576px) {
    .psc-item__rate .star-full-hidden {
        display: none;
    }
}

.psc-item__bonus {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button-bonus-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    padding: 10px 15px;

    text-decoration: underline 1px dashed #fff;
    text-underline-offset: 3px;
    position: relative;
}
.button-bonus-code .copy{
    fill: white;
}

.button-bonus-code:after {
    content: '';

    background-image: url(/wp-content/themes/kws-theme/assets/images/finger.svg);
    width: 31px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 576px) {
    .psc-item__bonus {
        flex-direction: row;
        justify-content: space-between;
    }
}