* {
    margin: 0;
    padding: 0;
}

.dice_block_info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    background-color: var(--bs-header-primary-link-bg-color);
    border-radius: 6px;
}

.dice_block_title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bs-heading-color, inherit);
}

.dice_block_icon i {
    font-size: 32px;
}

.dice_block_value {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bs-primary);
}

.dice_slider_winzone_container {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    margin-top: 15px;
}

.dice_slider_indicator_block {
    display: flex;
    height: 46px;
    background: linear-gradient(180deg, rgba(146, 52, 52, 0.04) 0%, rgba(217, 81, 81, 0.22) 100%);
    border: 1px solid rgba(206, 85, 85, .22);
    border-radius: 6px;
    box-sizing: border-box;
    transition: width .3s;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}

.dice__slider-block--from {
    padding: 0 5px 0 0;
    justify-content: flex-end;
}

.dice__slider-block--to {
    padding: 0 0 0 5px;
}

.dice__slider-counter {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bs-heading-color, inherit);
}

.dice__slider-block--winzone {
    flex-grow: 1;
    margin: 0 2px;
    background: linear-gradient(180deg, rgba(54, 146, 52, 0.11) 0%, rgba(84, 217, 81, 0.23) 100%);
    border: 1px solid rgba(87, 206, 85, .36);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #6cc780;
    position: relative;
    padding: 0 11px;
    text-align: center;
}

.dice__slider-counter-from.rotate, .dice__slider-counter-to.rotate {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 11px;
}

.diceContainer {
    position: relative;
    padding: 20px;
    background-color: var(--bs-header-primary-link-bg-color);
    border-radius: 6px;
}

.diceInformation_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.diceInformation_top > div {
    width: 100%;
}

.dice__slider-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 10;
    display: flex;
    box-sizing: border-box;
    padding: 0 0 20px 0;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    text-transform: uppercase;
}

.dice__slider-overlay--red {
    background: rgba(31, 31, 45, .9);
}

.dice__slider-overlay--green {
    background: rgba(29, 35, 48, .9);
}

.dice__slider-overlay-congratulations {
    width: 100%;
    font-size: 12px;
    line-height: 15px;
    color: rgba(174, 218, 202, .6);
    position: absolute;
    top: 10px;
    z-index: 2;
    text-align: center;
}

.dice__slider-overlay-status {
    width: 100%;
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    z-index: 2;
}

.dice__slider-overlay-description {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    z-index: 2;
}

.dice__slider-overlay-particles {
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.dice__slider-overlay--red .dice__slider-overlay-description {
    color: #fc756c;
}

.dice__slider-overlay--green .dice__slider-overlay-description {
    color: #96f0aa;
}

.withdraw_network_items {
    display: grid;
    align-content: flex-start;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    flex-grow: 1;
    padding: 8px 0 10px;
}

.withdraw_network_item, .payment_network_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--bs-header-primary-link-bg-color);
    flex-basis: calc(50% - 5px);
    border-radius: 10px;
    position: relative;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 5px;
}

.withdraw_network_item.active, .payment_network_item.active {
    border: 1px solid #50cd89;
}

.withraw_network_item_name {
    font-size: 16px;
}

.withdraw_network_item_img, .withdraw_network_item_img img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
    .slot_image {
        width: 165px;
        min-height: 250px!important;
    }
}