.bookmaker_render {
    margin-bottom: 20px;
}
.bookmaker_render .bookmaker_render_wrap {
    padding: 8px;
    background: var(--Monotone-500, #eaeaee);
}
.bookmaker_render .bookmaker_render_item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background: var(--Monotone-0, #fff);
    padding: 19px 12px;
    position: relative;
}
.bookmaker_render .bookmaker_render_item + .bookmaker_render_item {
    margin-top: 8px;
}
.bookmaker_render .bookmaker_info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bookmaker_render .bookmaker_action, .bookmaker_render .bookmaker_desc {
    flex-direction: column;
    display: flex;
    align-items: center;
    flex: 1;
}
.bookmaker_render .bookmaker_logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.bookmaker_render .bookmaker_action {
    max-width: 112px;
}
.bookmaker_render .bookmaker_details {
    max-width: 156px;
    width: 100%;
}
.bookmaker_render .bookmaker_action {
    gap: 6px;
}
.bookmaker_render .bookmaker_action a {
    width: 100%;
    font-size: 12px;
    display: flex;
    height: 30px;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
}
.bookmaker_render .bookmaker_action a:hover {
    text-decoration: unset;
}
.bookmaker_render .bookmaker_action .btn_play:before {
    content: '';
    width: 14px;
    height: 14px;
    background: url('../../images/ball.svg');
    margin-right: 6px;
}
.bookmaker_render .bookmaker_action .btn_play {
    border-radius: 4px;
    border-bottom: 2px solid var(--Ver-02-Khch, #ee0b1a);
    background: var(--Ver-02-Red-main, #b3232c);
    transition: all 0.3s;
    font-size: 12px;
}
.bookmaker_render .bookmaker_action .btn_play:hover {
    transition: all 0.3s;
    border-bottom: 2px solid var(--Ver-02-Red-main, #b3232c);
    background: var(--Ver-02-Khch, #ee0b1a);
}
.bookmaker_render .bookmaker_action .btn_detail {
    border-radius: 4px;
    background: var(--Ver-02-Bg-default, #9d7477);
}
.bookmaker_render .bookmaker_action .btn_detail:hover {
    transition: all 0.3s;
    background: var(--Ver-02-Red-main, #b3232c);
}
.bookmaker_render .bookmaker_render_wrap {
    counter-reset: item-counter;
}
.bookmaker_render .bookmaker_info {
    position: relative;
}
.bookmaker_render .bookmaker_render_item::before {
    counter-increment: item-counter;
    content: counter(item-counter);
    margin-right: 5px;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0%, 0%);
    border-radius: 99px;
    background: var(--Khch, #cc2525);
    color: var(--Monotone-0, #fff);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.bookmaker_render .bookmaker_title {
    color: var(--Ver-02-Main-bg, #370307);
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.bookmaker_render .bookmaker_start {
    line-height: 10px;
}
.bookmaker_render .bookmaker_main_desc {
    color: var(--Ver-02-Title-nhn-nh, #007e1a);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 6px;
}
.bookmaker_render .bookmaker_subtitle,
.bookmaker_render .bookmaker_sub_desc{
    font-size: 12px;
}
.bookmaker_render .bookmaker_sub_desc{
    text-align: center;
}
@media (max-width: 768px) {
    .bookmaker_render .bookmaker_render_wrap{
        background: initial;
        padding: 0;
    }
    .bookmaker_render .bookmaker_render_item{
        display: block;
        padding: 10px;
        border-radius: 4px;
        background: #FFF;
        box-shadow: 4px 4px 8px 0px rgba(0, 7, 69, 0.08);
    }
    .bookmaker_render .bookmaker_render_item{
        display: block;
        padding: 10px;
    }
    .bookmaker_render .bookmaker_info{
        width: 100%;
    }
    .bookmaker_render .bookmaker_details{
        max-width: 100%;
        width: calc(100% - 72px);
    }
    .bookmaker_render .bookmaker_title{
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        margin-bottom: 6px;
    }
    .bookmaker_render .bookmaker_subtitle{
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        text-transform: capitalize;
        margin-top: 6px;
    }
    .bookmaker_render .bookmaker_desc{
        margin-top: 11px;
    }
    .bookmaker_render .bookmaker_main_desc{
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }
    .bookmaker_render .bookmaker_sub_desc{
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }
    .bookmaker_render .bookmaker_action{
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    .bookmaker_render .bookmaker_action .btn_play{
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        width: 100%;
    }
    .bookmaker_render .bookmaker_render_item + .bookmaker_render_item{
        margin-top: 12px;
    }
    .bookmaker_render .bookmaker_action .btn_detail{
        margin-top: 2px;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
    }
    .bookmaker_render .bookmaker_render_item::before{
        color: #FFF;
        text-align: center;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        text-transform: uppercase;
        width: 28px;
        height: 28px;
        border-radius: 0;
        border-top-left-radius: 5px;
        border-bottom-right-radius: 5px;
        z-index: 1;
        top: 0;
        left: 0;
    }
}