.bookmaker > .container {
    display: flex;
    gap: 16px;
    flex-flow: column;
    padding: clamp(22px, 2.222vw, 32px);
    background-color: rgb(255 255 255 / 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.bookmaker__body {
    display: grid;
    gap: clamp(20px, 2.222vw, 32px);
    grid-template-columns: repeat(3, 1fr) auto;
}
.bookmaker__body-item {
    align-self: center;
}
.bookmaker__body-item:nth-child(1) img {
    max-width: 250px;
}
.bookmaker__body-item:nth-child(2) p {
    font-size: 14px;
    font-weight: 700;
}
.bookmaker__body-item:nth-child(2) i {
    display: block;
    font-size: 24px;
    line-height: 29px;
}
.bookmaker-list {
    gap: 8px !important;
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}
.bookmaker-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}
.bookmaker-list li::before {
    content: none !important;
}
.bookmaker-list li svg use {
    fill: #fff;
}
.bookmaker-list li span i {
    font-weight: 700;
}

.bookmaker__body-item:last-child {
    display: flex;
    gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.bookmaker__bottom {
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .bookmaker__body {
        grid-template-columns: repeat(3, 1fr);
    }
    .bookmaker__body-item:last-child {
        grid-column: 1 / 4;
    }
}

@media screen and (max-width: 768px) {
    .bookmaker__body {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    .bookmaker__body-item:first-child,
    .bookmaker__body-item:last-child {
        grid-column: 1 / span 2;
    }
}

@media screen and (max-width: 576px) {
    .bookmaker__body {
        grid-template-columns: 1fr;
    }
    .bookmaker__body-item:first-child,
    .bookmaker__body-item:last-child {
        grid-column: 1;
    }
}

@media screen and (max-width: 430px) {
    .bookmaker__body-item:last-child,
    .bookmaker__body-item:last-child .btn {
        width: 100%;
    }
}