.rtp-wrapper {
    display: block;
    position: relative;
    border-radius: 8px;
}

.rtp-wrapper .rtp-header {
    border-radius: 8px 8px 0 0;
}

.rtp-wrapper .rtp-body {
    border-radius: 0 0 8px 8px;
}

.card.card-game,
.card.card.card-game .card-body {
    display: block;
    position: relative;
    border-radius: 8px;
    min-height: 100px;
}

.card.card-game .card-body img.card-img-top {
    border-radius: 8px 8px 0 0;
}

.card.card-game .card-body .game-link {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.56);
}

.card.card-game .card-body:hover .game-link {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.card.card-game .percent {
    height: 27px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    position: relative;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
}

.card.card-game .percent p {
    z-index: 15;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    line-height: 27px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: black;
    margin: 0;
}

.card.card-game .percent-bar {
    /* background-color: #ffc107; */
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    border-radius: 0 0 0 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    /* background-color: #007bff; */
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    /* animation: ; */
    z-index: 10;
}

.card.card-game .percent-bar.yellow {
    background-color: #ffc107;
}

.card.card-game .percent-bar.green {
    background-color: #28a745;
}

.card.card-game .percent-bar.red {
    background-color: #dc3545;
}

.card.card-provider,
.card.card-provider .card-body {
    border-radius: 0;
    box-shadow: none;
}

.card.card-provider .card-body img.provider-thumbnail {
    display: block;
    margin: 0 auto;
    width: 26px;
    height: 24px;
}

.card.card-list-provider,
.card.card-list-provider .card-body {
    border-radius: 0;
    box-shadow: none;
}

.card.card-list-provider .card-body img.provider-thumbnail {
    display: block;
    margin: 0 auto;
    width: 20px !important;
    height: 20px !important;
}

.list-group {
    border-radius: 0;
}

.list-group .list-group-item {
    border-color: var(--color-3);
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.list-group .list-group-item:first-child,
.list-group .list-group-item:first-child .card.card-list-provider {
    border-radius: 8px 8px 0 0;
}

.list-group .list-group-item:last-child,
.list-group .list-group-item:last-child .card.card-list-provider {
    border-radius: 0 0 8px 8px;
}

.modal .modal-dialog .modal-content .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .modal-dialog .modal-content .modal-header .modal-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
}

.modal .modal-dialog .modal-content .modal-header h5 {
    font-size: 14px;
}

.modal .modal-dialog .modal-content .modal-body h5,
.modal .modal-dialog .modal-content .modal-body p {
    font-size: 14px;
}

.modal .modal-dialog .modal-content .modal-body p.text-list {
    display: block;
    position: relative;
    width: 30px;
    margin-right: 10px;
    color: #77777754;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
}

.modal .modal-dialog .modal-content .list-group,
.modal .modal-dialog .modal-content .list-group .list-group-item {
    border-radius: 0;
}

.modal .modal-dialog .modal-content .modal-footer .btn-group .btn:first-child {
    border-radius: 0 0 0 8px;
}

.modal .modal-dialog .modal-content .modal-footer .btn-group .btn:last-child {
    border-radius: 0 0 8px 0;
}