@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
    --primary-color: #C5A459;
    --primary-color-alpha-50: rgba(197, 164, 89, 0.5);
    --primary-color-alpha-65: rgba(197, 164, 89, 0.65);
    --primary-color-alpha-0: rgba(197, 164, 89, 0);
    --secondary-color: #172434;
    --secondary-color-alpha-50: rgba(23, 36, 52, 0.5);
    --secondary-color-alpha-65: rgba(23, 36, 52, 0.65);
    --secondary-color-alpha-0: rgba(23, 36, 52, 0);
    --secondary-light-color: #577097;
    --secondary-sub-color: #1E3251;
    --body-bg-color: #F4F5F4;
    --border-primary-color: #E9EBEA;
    --border-secondary-color: #CFD3E2;
    --border-third-color: #BBBFBE;
    --border-fourth-color: #48516B;
    --border-fifth-color: rgba(49, 55, 61, 0.10);
    --text-primary-color: #172434;
    --text-secondary-color: #7F89A7;
    --odd-box-bg-color: #F6F7FA;
    --profit-color: #38DA0D;
    --profit-color1: #29A508;
    --loss-color: #FF0101;
    --white-color: #ffffff;
    --black-color: #000000;
    --footer-link-color: #B1BAD3;
    --left-menu-width: 265px;
    --right-menu-width: 360px;
    --card-bg-color: #F5F6FA;
    --login-form-bg-color: #0F2442;
    --button-bg: #EBEBEC;
    --back-color: #A1E0FF;
    --lay-color: #FEB3C6;
    --warning-color: #ffb638;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

body {
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--body-bg-color);
}

.main-wrapper {
    padding-bottom: 15px;
    overflow: hidden;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--secondary-sub-color) 100%);
    color: var(--white-color);
    height: 100px;
    z-index: 9;
}

header .navbar {
    padding: 10px 0 9px;
}

header .navbar>.container-fluid {
    justify-content: flex-start;
}

header .menu-btn {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    display: none;
}

header .menu-icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 22px;
    top: 50%;
    background-color: var(--white-color);
    border-radius: 4px;
    left: 0;
    transform: translateY(-50%);
}

header .menu-icon::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--white-color);
    content: "";
    top: -7px;
    border-radius: 4px;
}

header .menu-icon::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--white-color);
    content: "";
    top: 7px;
    border-radius: 4px;
}

header .menu-btn.open .menu-icon {
    transition-duration: 0.5s;
    background: transparent;
}

header .menu-btn.open .menu-icon::before {
    transform: rotateZ(45deg) scaleX(1) translate(5px, 5px);
}

header .menu-btn.open .menu-icon::after {
    transform: rotateZ(-45deg) scaleX(1) translate(5px, -5px);
}

header .dropdown-item {
    padding: 8px 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

header .dropdown-header {
    font-weight: 600;
    color: var(--secondary-color);
}

.language-option {
    margin-right: 15px;
}

.language-option .dropdown-toggle {
    color: var(--white-color);
    gap: 6px;
    font-size: 12px;
}

.language-option .dropdown-toggle::after {
    content: none;
}

.language-option .dropdown-menu {
    min-width: 60px;
    padding: 3px 0;
}

.language-option .dropdown-menu .dropdown-item {
    padding-left: 10px;
    padding-right: 10px;
}

.user-action {
    gap: 10px;
}

.user-action .btn-login {
    color: var(--secondary-color);
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 4px 16px;
    font-weight: 500;
}

.user-action .btn-login:hover {
    background-color: var(--primary-color);
}

.user-action .btn-register {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 4px 16px;
    font-weight: 500;
}

.user-action .btn-register:hover {
    background-color: var(--white-color);
}

.btn-notification {
    background-color: transparent;
    border: 0;
    outline: 0;
    margin: 0 5px 0 15px;
    position: relative;
}

.btn-notification .counter {
    background-color: var(--profit-color);
    color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -3px;
    font-size: 9px;
    font-weight: 600;
    width: 12px;
    height: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.quick-links {
    padding: 0 0 9px;
}

.quick-links ul.nav {
    gap: 20px;
}

.quick-links .nav-link {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 3px;
    position: relative;
}

.quick-links .nav:first-child .nav-link::after {
    content: "";
    background-color: var(--primary-color);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.4s;
}

.quick-links .nav:first-child .nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.quick-links .nav:first-child .nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
}

.quick-links .nav .dropdown-toggle::after {
    content: none;
}

.quick-links .nav .dropdown-toggle::before {
    border-style: solid;
    border-width: 0.15em 0.15em 0 0;
    content: '';
    display: inline-block;
    height: 0.65em;
    width: 0.65em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    margin-top: -3px;
}

.quick-links .nav:last-child .nav-link {
    padding-right: 16px;
}

.left-menu {
    width: var(--left-menu-width);
    height: calc(100% - 130px);
    background-color: var(--white-color);
    left: 15px;
    position: fixed;
    top: 115px;
    overflow-y: auto;
    overflow-x: hidden;
}

.side-menu a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 14px;
    gap: 10px;
    padding: 15px 40px 15px 12px;
    border-bottom: 1px solid var(--border-primary-color);
    position: relative;
}

.side-menu a:hover {
    background-color: var(--border-primary-color);
}

.side-menu a:last-child {
    border-bottom: 0;
}

.side-menu a::after {
    border-style: solid;
    border-width: 0.15em 0.15em 0 0;
    content: '';
    display: inline-block;
    height: 0.65em;
    width: 0.65em;
    transform: rotate(45deg);
    margin-top: 2px;
    border-color: var(--border-third-color);
    position: absolute;
    right: 20px;
}

.side-menu a .match-counter {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.left-menu .side-menu-divider {
    padding: 10px 15px;
    background-color: var(--body-bg-color);
    color: var(--secondary-color-alpha-50);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.main-container {
    background-color: var(--white-color);
    margin-top: 115px;
    margin-bottom: -20px;
    margin-left: calc(var(--left-menu-width) + 30px);
    margin-right: calc(var(--right-menu-width) + 30px);
}

.main-slider {
    padding: 15px 0 15px 15px;
}

.main-slider .swiper-gradient {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    width: 25px;
    height: 25px;
    background-color: var(--white-color);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    color: var(--secondary-color);
    margin-top: -15px;
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
    font-size: 10px;
    font-weight: 600;
}

.main-slider .swiper-button-prev.swiper-button-disabled,
.main-slider .swiper-button-next.swiper-button-disabled {
    opacity: 0;
}

.game-market .nav .nav-item {
    margin: 0 10px;
}

.game-market .nav .nav-item .nav-link {
    padding: 5px 4px 5px 0;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--secondary-color);
    border-bottom: 2px solid transparent;
}

.game-market .nav .nav-item .nav-link.active {
    border-bottom: 2px solid var(--primary-color);
}

.categories {
    position: relative;
    padding: 20px 0 20px 15px;
}

.categories::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.sports-categories {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    overflow-x: auto;
}

.sports-categories a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 3px 12px;
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    min-height: 32px;
}

.sports-categories a:last-child {
    margin-right: 15px;
}

.sports-categories a.active {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.sports-categories a:hover {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.sports-categories a:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.sports-categories a.active img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.market-list .accordion-item {
    margin-bottom: 20px;
}

.accordion-title .accordion-button {
    font-size: 15px;
    font-weight: 600;
    padding: 6px 15px;
    color: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color-alpha-50) 0%, var(--primary-color-alpha-0) 100%);
    box-shadow: none;
}

.accordion-title .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23172434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.accordion-title .accordion-button:focus {
    box-shadow: none;
}

.matches {
    padding: 0 15px;
}

.match-item {
    padding: 10px 30px 10px 0;
    border-bottom: 1px solid var(--border-primary-color);
    position: relative;
}

.matches .match-item:last-child {
    border-bottom: 0;
}

.match-item .match-time {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color-alpha-50);
    margin: 0 0 5px;
}

.match-item .match-time .live-match {
    color: var(--loss-color);
}

.match-item .match-sub-header .match-action {
    position: absolute;
    right: 0;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.match-item .match-sub-header .match-action a img {
    opacity: 0.6;
}

.match-item .match-sub-header .match-action a:hover img {
    opacity: 1;
}

.match-item .team {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 3px 0;
}

.match-item .team-name {
    font-weight: 500;
}

.match-item .team-name:has(~.score) {
    width: 35%;
}

.match-item .score {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 5px;
    border-radius: 4px;
    background-color: var(--odd-box-bg-color);
    border: 1px solid var(--border-fifth-color);
}

.match-item .odd-sub-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color-alpha-50);
    margin: 0 0 10px;
}

.match-item .match-odds {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}

.match-item .match-odds .odds {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    background-color: var(--odd-box-bg-color);
    padding: 15px 20px;
    height: 50px;
    font-size: 15px;
    position: relative;
}

.match-item .match-odds .odds .odd-title {
    font-weight: 400;
    color: var(--secondary-color);
}

.match-item .match-odds .odds .odd-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.match-item .match-odds .odds:hover {
    cursor: pointer;
    background-color: var(--border-secondary-color);
}

.match-item .match-odds .odds .triangle {
    display: inline-block;
    margin: 0 1px;
    vertical-align: middle;
    position: absolute;
    right: 0;
    width: 14px;
    height: 8px;
    border-bottom: solid 8px transparent;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    border-radius: 10px;
}

.match-item .match-odds .odds .triangle.profit {
    border-bottom-color: var(--profit-color);
    transform: rotate(45deg);
    top: 5px;
}

.match-item .match-odds .odds .triangle.loss {
    border-bottom-color: var(--loss-color);
    transform: rotate(135deg);
    bottom: 5px;
}

.blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

@keyframes blinker {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
    }
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
    }
}

.footer {
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--secondary-sub-color) 100%);
    padding: 0 50px;
}

.footer-menu {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-fourth-color);
}

.footer-menu h5 {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    position: relative;
}

.footer-menu h5::after {
    content: "+";
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-menu ul {
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.footer-menu ul li {
    margin: 12px 0;
}

.footer-menu ul li a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: all 0.4s;
}

.footer-menu ul li a:hover {
    color: var(--white-color);
}

.footer-icons {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-fourth-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px 60px;
}

.footer-icons a img {
    transition: all 0.3s;
}

.footer-icons a:hover img {
    filter: brightness(0) invert(1);
}

.footer-company {
    text-align: center;
    padding: 50px 0;
    color: var(--footer-link-color);
}

.footer-company img {
    margin-bottom: 22px;
}

.footer p {
    font-size: 12px;
    line-height: 22px;
    color: var(--footer-link-color);
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    padding: 0 0 30px;
}

.right-menu {
    width: var(--right-menu-width);
    height: calc(100% - 130px);
    background-color: var(--white-color);
    right: 15px;
    position: fixed;
    top: 115px;
}

.user-bets .nav-pills {
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--secondary-sub-color) 100%);
    padding: 8px 0;
    height: 46px;
}

.user-bets .nav-pills .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary-color);
    padding: 5px 0;
    border-radius: 0;
}

.user-bets .nav-pills .nav-item:first-child .nav-link {
    border-right: 2px solid var(--border-fourth-color);
}

.user-bets .nav-pills .nav-item .nav-link .match-counter {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    position: relative;
    top: -1px;
    opacity: 0.5;
}

.user-bets .nav-pills .nav-item .nav-link.active {
    color: var(--white-color);
    background-color: transparent;
}

.user-bets .nav-pills .nav-item .nav-link.active .match-counter {
    opacity: 1;
}

.betslip-tabs .nav-underline {
    background: var(--body-bg-color);
    height: 36px;
}

.betslip-tabs .nav-underline .nav-item .nav-link {
    font-weight: 500;
    color: var(--text-secondary-color);
    padding: 9px 0;
    border-radius: 0;
    border-bottom-width: 2px;
}

.betslip-tabs .nav-underline .nav-item .nav-link.active {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
}

.betslip-tabs .tab-content {
    padding: 15px;
    overflow-y: auto;
    height: calc(100dvh - 368px);
}

.betslip-blocks .blocks:not(:last-child) {
    margin-bottom: 15px;
}

.betslip-blocks .blocks .card {
    background-color: var(--odd-box-bg-color);
    border: 0;
    border-radius: 4px;
    overflow: hidden;
}

.betslip-blocks .blocks .card .card-header {
    border-radius: 0;
    background-color: var(--border-secondary-color);
    border: 0;
    padding: 8px 10px;
}

.betslip-blocks .blocks .card .card-header .match-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color-alpha-65);
}

.betslip-blocks .blocks .card .card-header .btn-close {
    width: 13px;
    height: 13px;
    padding: 0;
}

.betslip-blocks .blocks .card .card-body {
    padding: 8px 10px;
}

.betslip-blocks .blocks .card .card-body .stake-area .stake-team {
    width: 85%;
}

.betslip-blocks .blocks .card .card-body .stake-area .stake-team small {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color-alpha-50);
    width: 100%;
    display: inline-block;
}

.betslip-blocks .blocks .card .card-body .stake-area .stake-team .runner-name {
    font-weight: 600;
}

.betslip-blocks .blocks .card .card-body .stake-area .stake-value {
    font-weight: 600;
}

.betslip-blocks .blocks .card .card-body .stake-payout-area {
    margin-top: 10px;
}

.betslip-blocks .blocks .card .card-body .stake-payout-area .stake-bet small {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color-alpha-50);
}

.betslip-blocks .blocks .card .card-body .stake-payout-area .stake-bet .bet-amount .input-group-text {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--odd-box-bg-color);
    font-size: 10px;
    font-weight: 600;
    padding: 0;
    line-height: 10px;
    z-index: 1;
    text-align: center;
    justify-content: center;
}

.betslip-blocks .blocks .card .card-body .stake-payout-area .stake-bet .bet-amount .form-control {
    border: 1px solid var(--border-primary-color);
    border-radius: 4px;
    background-color: var(--white-color);
    padding: 5px 5px 5px 30px;
    font-weight: 600;
    color: var(--secondary-color);
    width: 135px;
}

.betslip-blocks .blocks .card .card-body .stake-payout-area .stake-bet .bet-amount .input-group>.form-control:focus {
    z-index: 0;
    box-shadow: none;
}

.betslip-blocks .blocks .card .card-body .stake-payout-area .est-payout small {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color-alpha-50);
}

.betslip-blocks .blocks .card .card-body .stake-payout-area .est-payout .payout-value {
    font-weight: 600;
}

.user-bets-footer {
    border-top: 1px solid var(--border-primary-color);
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 156px;
    background-color: var(--white-color);
}

.user-bets-footer .total-amounts {
    padding: 15px;
}

.user-bets-footer .total-amounts .title {
    color: var(--secondary-color-alpha-50);
    font-weight: 500;
}

.user-bets-footer .total-amounts .value {
    font-weight: 600;
}

.user-bets-footer .total-amounts .total-stake,
.user-bets-footer .total-amounts .total-payout {
    padding: 5px 0;
}

.user-bets-footer .total-amounts .place-bet {
    margin-top: 15px;
}

.user-bets-footer .total-amounts .place-bet .delete-bet {
    padding: 10px;
    margin-right: 15px;
    opacity: 0.7;
}

.user-bets-footer .total-amounts .place-bet .delete-bet:hover {
    opacity: 1;
}

.user-bets-footer .total-amounts .place-bet .btn-bet {
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 600;
    padding: 15px;
    width: 100%;
}

.user-bets-footer .total-amounts .place-bet .btn-bet:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.user-bets-footer .total-amounts .place-bet .btn-cancel {
    border-radius: 0;
    border: 0;
    color: var(--loss-color);
    font-size: 17px;
    font-weight: 600;
    padding: 15px 25px;
}

.user-bets .tab-content #pills-mybets {
    padding: 15px;
    overflow-y: auto;
    height: calc(100dvh - 332px);
}

.offcanvas-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.offcanvas-title {
    font-size: 16px;
    font-weight: 600;
}

.offcanvas-header .btn-close {
    width: 12px;
    height: 12px;
    background-size: 12px;
    opacity: 1;
}

.offcanvas-header .btn-close:focus {
    box-shadow: none;
}

.offcanvas-body {
    padding: 15px;
}

.notifications .card {
    border: 0;
    border-radius: 4px;
    background-color: var(--card-bg-color);
    padding: 15px;
}

.notifications .card:not(:last-child) {
    margin: 0 0 15px;
}

.notifications .card .date-time {
    font-size: 12px;
    color: var(--secondary-color-alpha-65);
    font-weight: 500;
    margin: 0 0 5px;
}

.notifications .card .title {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px;
}

.notifications .card p {
    font-size: 13px;
    line-height: 20px;
    color: var(--secondary-color-alpha-65);
    font-weight: 500;
}

.notifications .card p:last-child {
    margin: 0;
}

.notifications .card .delete-note {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mobile-bottom-menu {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    z-index: 9;
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--secondary-sub-color) 100%);
    display: flex;
    align-items: center;
}

.mobile-bottom-menu .menu-item {
    display: inline-flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 500;
    color: var(--white-color);
    text-decoration: none;
    gap: 2px;
    width: 20%;
    align-items: center;
    text-align: center;
}

.mobile-bottom-menu .menu-item img {
    filter: brightness(0) invert(1);
    height: 25px;
    flex-shrink: 0;
}

.mobile-bottom-menu .menu-item.active img {
    filter: none;
}

.mobile-bottom-menu::before {
    content: "";
    width: 72px;
    height: 77px;
    border-radius: 50%;
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--secondary-sub-color) 75%, var(--secondary-sub-color) 100%);
    position: absolute;
    z-index: -1;
    bottom: 5px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.mobile-bottom-menu .menu-item .circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: -21px;
}

.mobile-bottom-menu .menu-item .circle img {
    filter: none;
}

.login-modal .modal-content {
    background-color: var(--login-form-bg-color);
    border: 0;
    border-radius: 15px;
}

.login-modal .modal-header {
    border: 0;
    padding-bottom: 5px;
}

.login-modal .modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1;
    padding: 10px;
    width: 12px;
    height: 12px;
    background-size: 12px;
}

.login-modal .modal-header .btn-close:focus {
    box-shadow: none;
}

.login-modal .modal-body {
    padding: 0 20px 20px;
}

.user-entry-form {
    padding: 0 20px 20px;
}

.user-entry-form .form-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    text-align: center;
    margin: 0 0 30px;
}

.user-entry-form .nav-pills {
    background-color: rgba(245, 249, 255, 0.05);
    border-radius: 60px;
    margin: 0 auto 35px;
    width: 85%;
}

.user-entry-form .nav-pills .nav-item .nav-link {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 15px;
    border-radius: 60px;
}

.user-entry-form .nav-pills .nav-item .nav-link.active {
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.user-entry-form .form-group .dropdown-toggle {
    position: absolute;
    border: 0;
    border-radius: 0;
    padding: 0 10px 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    top: 50%;
    transform: translateY(-50%);
}

.user-entry-form .form-group .dropdown-toggle.show {
    background-color: transparent;
}

.user-entry-form .form-group .dropdown-toggle:hover {
    background-color: transparent;
}

.user-entry-form .form-group .dropdown-toggle img {
    height: 20px;
}

.user-entry-form .form-group .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 8px;
}

.user-entry-form .form-group .dropdown-menu {
    min-width: auto;
}

.user-entry-form .form-group .dropdown-menu img {
    height: 20px;
}

.user-entry-form .form-group .form-control {
    border-radius: 10px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white-color);
}

.user-entry-form .form-group .form-select {
    border-radius: 10px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white-color);
}

.user-entry-form .form-group .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.user-entry-form .form-floating>.form-select~label {
    color: #CAD3E1;
    font-size: 12px;
}

.user-entry-form .form-floating>.form-select~label::after {
    background-color: transparent;
    border-radius: 0;
}

.user-entry-form .form-group .form-select option {
    color: var(--secondary-color);
}

.user-entry-form .form-group.mobile-number .form-control {
    padding-left: 110px;
}

.user-entry-form .form-group .form-control:focus {
    box-shadow: none;
}

.user-entry-form .form-group .form-select:focus {
    box-shadow: none;
}

.user-entry-form .form-group.mobile-number .form-control::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.user-entry-form .form-group.mobile-number .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

.user-entry-form .form-group .form-control::placeholder {
    color: #CAD3E1;
}

.user-entry-form .form-group .form-control::-moz-placeholder {
    color: #CAD3E1;
}

.user-entry-form .form-group .mobile-code {
    color: var(--white-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 75px;
}

.user-entry-form .form-group.password .forgot-password {
    color: var(--white-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.user-entry-form .form-group.password .forgot-password a {
    text-decoration: none;
    color: var(--white-color);
    padding: 4px 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.user-entry-form .form-group.password .forgot-password a:hover {
    color: var(--primary-color);
}

.user-entry-form .form-group.password .show-password {
    color: var(--white-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 95px;
}

.user-entry-form .form-group.password .form-control {
    padding-right: 128px;
}

.user-entry-form .btn-login {
    background-color: var(--primary-color);
    border: 1px solid transparent;
    color: var(--secondary-color);
    text-transform: uppercase;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.user-entry-form .btn-login:hover {
    border-color: var(--white-color);
    background-color: var(--white-color);
}

.form-footer {
    font-size: 13px;
    color: #90A2BD;
    text-align: center;
    margin-top: 90px;
}

.form-footer a {
    color: var(--white-color);
    font-weight: 500;
    text-decoration: underline;
    font-size: 15px;
}

.form-footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.register-modal .user-entry-form .form-group.password .form-control {
    padding-right: 15px;
}

.register-modal .user-entry-form .form-group.password .show-password {
    right: 15px;
}

.register-modal .left-container {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #0A1C35;
    z-index: 0;
}

.register-modal .right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    padding: 16px;
    background-color: var(--login-form-bg-color);
}

.register-modal .right-container .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1;
    padding: 10px;
    width: 12px;
    height: 12px;
    background-size: 12px;
}

.register-modal .modal-body {
    padding: 0;
}

.register-modal .bonus-addition {
    display: flex;
}

.register-modal .bonus-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.register-modal .bonus-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-modal .user-entry-form {
    max-width: 340px;
    width: 100%;
    padding: 40px 0 80px;
}

.register-modal .modal-content {
    overflow: hidden;
}

.register-modal .bonus-title {
    position: relative;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.register-modal .bonus-title a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.register-modal .offer-text {
    position: absolute;
    top: 60%;
    z-index: 101;
    width: 100%;
}

.register-modal .offer-text h4 {
    max-width: 90%;
    margin: 0 auto 5px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: normal;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
}

.register-modal .offer-text p {
    max-width: 80%;
    margin: 0 auto;
    color: #90a2bd;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    font-weight: 300;
}

.register-modal .offer-bootom {
    position: relative;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}


/*---------------market page-------------*/

.market-game-info {
    background-image: url(../images/market-game-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 0;
}

.market-game-info::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(30, 50, 81, 0.5) 0%, rgba(23, 36, 52, 0.5) 100%);
    z-index: -1;
}

.market-game-info .market-game-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px 18px;
}

.market-game-info .market-game-info-top p {
    display: flex;
    gap: 7px;
    align-items: center;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    margin-bottom: 0;
}

.market-game-info .market-game-info-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-game-info .market-game-info-buttons .btn-display,
.market-game-info .market-game-info-buttons .btn-statistics {
    border: 0;
    background-color: transparent;
}

.market-game-info .market-game-info-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px 30px;
}

.market-game-info .market-game-info-center .team-name {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
}

.market-game-info .market-game-info-center .team-name:last-child {
    justify-content: end;
}

.market-game-info .market-game-info-center .team-name p {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 0;
}

.market-game-info .market-game-info-center .score-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
}

.market-game-info .market-game-info-center .score-card .score-card-top p {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    margin-bottom: 0;
}

.market-game-info .market-game-info-center .score-card .score-card-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.market-game-info .market-game-info-center .score-card .score-card-bottom p {
    background-color: var( --odd-box-bg-color);
    border: 1.25px solid rgba(49, 55, 61, 0.1);
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    margin-bottom: 0;
    padding: 9px;
    border-radius: 5px;
    position: relative;
}

.market-game-info .market-game-info-center .score-card .score-card-bottom p:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -12px;
    height: 100%;
    width: 1px;
    background-color: rgba(233, 235, 234, 0.5);
}

.market-game-info .market-game-info-bottom {
    border-top: 1px solid rgba(233, 235, 234, 0.25);
    padding: 18px 0;
}

.market-game-info .market-game-info-bottom p {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    text-align: center;
    margin-bottom: 0;
}

.market-page-content {
    background-color: var(--white-color);
    padding: 15px;
}

.market-content .market-bet-box {
    border: 1px solid var(--button-bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.market-content .exchange-markets .market-bet-box:last-child {
    margin-bottom: 0;
}

.market-content .market-bet-box .btn-bet-block {
    background-color: var(--button-bg);
    padding: 13px 45px 13px 15px;
    color: var(--secondary-color);
    font-weight: 600;
    width: 100%;
    border: 0;
    position: relative;
    text-align: start;
}

.market-content {
    margin-top: 20px;
}

.market-content .row>[class*='col-'] {
    padding-left: 7px;
    padding-right: 7px;
}

.market-content .row {
    margin: 0 -7px;
}

.market-content .market-bet-box .btn-bet-block.collapsed img {
    transform: translateY(-50%) rotate(180deg);
}

.market-content .market-bet-box .btn-bet-block img {
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center;
    transition: all 0.5s;
    position: absolute;
    right: 15px;
    top: 50%;
}

.market-content .market-bet-box .bet-block .bet-table table {
    margin-bottom: 0;
    border: 0;
}

.market-content .market-bet-box .bet-block .bet-table .table-data {
    border-bottom: 0;
    align-items: center;
    justify-content: center;
    padding: 13px 15px;
    border-right: 1px solid var(--button-bg);
    border-bottom: 1px solid var(--button-bg);
    display: flex;
    align-items: center;
}

.market-content .market-bet-box .bet-block .table-data-row {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 15px;
}

.market-content .market-bet-box .bet-block .row>[class*='col-'] {
    border-right: 1px solid var(--button-bg);
}

.market-content .market-bet-box .bet-block .row>[class*='col-']:last-child {
    border-right: 0;
}

.market-content .market-bet-box .bet-block .row {
    border-bottom: 1px solid var(--button-bg);
}

.market-content .market-bet-box .bet-block .row:last-child {
    border-bottom: 0;
}

.market-content .market-bet-box .bet-block .table-data-row h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
}

.market-content .market-bet-box .bet-block .table-data-row p {
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

.market-content .market-bet-box .bet-block .show-more-less {
    padding: 17px 20px;
    text-align: center;
}

.market-content .market-bet-box .bet-block .btn-show-more {
    color: #475EEC;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    background-color: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
}

.closed {
    display: none;
    transition: all 0.3s;
}

.show-less .btn-show-more img {
    transform: rotate(180deg);
}

.after-login .language-option {
    border-left: 1px solid #577097;
    border-right: 1px solid #577097;
    margin-right: 0;
    padding: 0 15px;
    margin-left: 15px;
}

.user-options .dropdown-toggle {
    padding: 0;
    border: 0;
    background-color: transparent;
}

.user-options .dropdown-toggle::after {
    content: none;
}

.user-options .dropdown-menu {
    border-radius: 4px;
    background-color: var(--white-color);
    border: 0;
    margin-top: 10px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

header .user-options {
    margin-left: 15px;
}

header .user-options .dropdown-item {
    padding: 10px 20px;
}

.after-login .user-options .dropdown-menu::before {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 9px 10px 9px;
    border-color: transparent transparent #FFFFFF transparent;
    transform: rotate(0deg);
    position: absolute;
    top: -8px;
    right: 6px;
}

.after-login .user-balance .btn-group {
    background-color: var(--white-color);
    border-radius: 50px;
}

.after-login .user-balance .btn-group .btn-deposit {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px !important;
    border: 0;
    font-weight: 600;
    padding: 5px 10px;
}

.after-login .user-balance .btn-group .btn-deposit span {
    font-weight: 600;
}

.after-login .user-balance .btn-group .btn-balance {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: transparent;
}

.game-market.single .nav {
    border-bottom: 1px solid var(--border-primary-color);
    gap: 5px;
}

.game-market.single .nav .nav-item .nav-link {
    padding: 15px 10px 10px 10px;
    min-height: 45px;
}

.game-market.single .nav .nav-item .nav-link .counter {
    width: 24px;
    height: 18px;
    border-radius: 20px;
    background-color: #d9d9d9;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.sports-categories a .counter {
    width: 24px;
    height: 18px;
    border-radius: 20px;
    background-color: #d9d9d9;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.side-menu a.sports-A-Z {
    font-size: 16px;
}

.side-menu .accordion-button {
    background-color: var(--body-bg-color);
    font-weight: 500;
    color: #8f8f8f;
    font-size: 14px;
    padding: 8px 15px;
    gap: 5px;
    align-items: center;
    box-shadow: none;
}

.side-menu .accordion-button span {
    font-weight: 500;
}

.side-menu .accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23BBBFBE' stroke-width='2px' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.side-menu .accordion-item {
    margin-bottom: 5px;
    border: 0;
}

.side-menu .match-item {
    padding: 8px;
    border-bottom: 1px solid var(--border-primary-color);
}

.side-menu .match-item .match-time {
    font-size: 12px;
    margin: 0;
}

.side-menu .match-item .match-time .live-match {
    font-size: 12px;
}

.side-menu .match-item .match-odds {
    gap: 10px;
    margin-top: 3px;
}

.side-menu .match-item .match-odds .odds {
    height: 35px;
    border-radius: 4px;
}

.side-menu .match-item .match-odds .odds .odd-title {
    font-size: 12px;
}

.side-menu .match-item .match-odds .odds .odd-value {
    font-size: 12px;
}

.side-menu .match-item .match-odds .odds .triangle {
    width: 10px;
    height: 6px;
    border-bottom: solid 6px transparent;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
}

.side-menu .match-item .match-odds .odds .triangle.profit {
    top: 3px;
    border-bottom-color: var(--profit-color);
}

.side-menu .match-item .match-odds .odds .triangle.loss {
    bottom: 3px;
    border-bottom-color: var(--loss-color);
}

.side-menu .match-item .team-name:has(~.score) {
    width: 100%;
}

.side-menu .match-item .score {
    margin-left: auto;
    font-size: 10px;
    padding: 1px 2px;
}

.side-menu .match-item .team-name {
    font-size: 12px;
    font-weight: 600;
}

.market-page-content .categories {
    padding: 20px 0 0;
}


/*-----------Casino Page-----------*/

.main-container.casino-loby {
    margin-right: 15px;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box .banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 65%;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px 0 12px 12px;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box .banner-content h1 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 5px;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box .banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 10px;
    padding-right: 40px;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box .more-info {
    display: flex;
    margin-top: auto;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box .more-info a {
    text-decoration: none;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    display: flex;
    align-items: center;
    padding: 10px 40px;
    border-radius: 4px;
    transition: all 0.3s;
    background-color: transparent;
}

.main-container.casino-loby .main-slider .swiper-slide .banner-box .more-info a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    border-color: var(--primary-color);
}

.main-container.casino-loby .main-slider {
    padding-bottom: 0;
}

.main-container.casino-loby .game-market .categories .search-bar {
    width: 400px;
    position: relative;
    flex-shrink: 0;
}

.main-container.casino-loby .game-market .categories .search-bar img {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.main-container.casino-loby .game-market .categories .search-bar input {
    background-color: #EFEFEF;
    border: 1px solid #EFEFEF;
    color: var(--text-primary-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 11px 8px 35px;
}

.main-container.casino-loby .game-market .categories .search-bar input::placeholder {
    color: #ADB0BD;
    font-weight: 500;
}

.main-container.casino-loby .game-market .categories .search-bar input:focus {
    box-shadow: none;
}

.main-container.casino-loby .game-market .categories {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-container.casino-loby .game-market .casino-games-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--primary-color-alpha-50) 0%, var(--primary-color-alpha-0) 100%);
    padding: 6px 15px;
    justify-content: space-between;
}

.main-container.casino-loby .game-market .casino-games-header h6 {
    margin-bottom: 0;
    color: var(--text-primary-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}

.main-container.casino-loby .game-market .casino-games-header a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.main-container.casino-loby .game-market .casino-games-header a:hover {
    color: var(--secondary-color);
}

.main-container.casino-loby .game-market .casino-games-header .casino-games-header-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-container.casino-loby .game-market .casino-games-header .casino-game-slide-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-container.casino-loby .game-market .casino-games-header .casino-game-slide-button button {
    border: 0;
    background-color: transparent;
}

.main-container.casino-loby .game-market .casino-games-header .casino-game-slide-button button:focus {
    box-shadow: none;
}

.main-container.casino-loby .game-market .casino-games-header .casino-game-slide-button button.swiper-button-disabled img,
.main-container.casino-loby .game-market .casino-games-header .casino-game-slide-button button.swiper-button-disabled img {
    opacity: 0.5;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block {
    border-radius: 4px;
    overflow: hidden;
    display: block;
}

.main-container.casino-loby .game-market .casino-games-options {
    padding: 15px;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block img {
    transition: all 0.3s;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s;
    border-radius: 4px;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block:hover .card-overlay {
    opacity: 1;
    height: 100%;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block:hover .game-block img {
    transform: scale(1.2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block .card-overlay a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block .card-overlay a svg {
    width: 24px;
    height: 24px;
    margin-left: 2px;
}

.main-container.casino-loby .game-market .casino-games {
    margin-top: 15px;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block.provider-block {
    background-color: #F3F3F3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 93px;
    width: 100%;
    object-fit: contain;
    padding: 15px;
}

.main-container.casino-loby .game-market .casino-games-options .swiper-slide .game-block.provider-block img {
    flex-shrink: 0;
}

.main-container.casino-loby .game-market {
    padding-bottom: 45px;
}


/*------------promitions------------*/

.main-container.promotion-loby {
    margin-right: 15px;
}

.promitions-header {
    background: linear-gradient(90deg, var(--primary-color-alpha-50) 0%, var(--primary-color-alpha-0) 100%);
    padding: 6px 15px;
}

.promitions-header h6 {
    margin-bottom: 0;
    color: var(--text-primary-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card {
    background-color: #F3F3F3;
    border-radius: 4px;
    overflow: hidden;
    height: calc(100% - 15px);
    margin-bottom: 15px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-img {
    border-radius: 4px;
    overflow: hidden;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-img img {
    width: 100%;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-content {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-content .promotion-card-data p {
    margin-bottom: 8px;
    color: var(--secondary-color-alpha-50);
    font-weight: 400;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-content .promotion-card-data h5 {
    margin-bottom: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-content .promotion-card-button a {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 14px 38px;
    text-transform: capitalize;
    border-radius: 4px;
    transition: all 0.3s;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-content .promotion-card-button a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .promotion-card .promotion-card-content .promotion-card-button {
    display: inline-flex;
}

.main-container.promotion-loby .promotions-cards-sections {
    padding: 15px 15px 45px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .row>[class*='col-'] {
    padding-left: 7px;
    padding-right: 7px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-card-group .row {
    margin: 0 -7px;
}


/*--------------------Promotions details----------------*/

.promotions-details-sections-img img {
    width: 100%;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-img {
    margin-bottom: 40px;
    position: relative;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-content {
    padding: 0 50px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-content h6 {
    color: var(--secondary-color-alpha-50);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-content h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 20px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-content p {
    color: rgba(23, 36, 52, 0.6);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 18px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-content ul li {
    color: rgba(23, 36, 52, 0.6);
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-content h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    margin: 40px 0;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-img #countdown {
    position: absolute;
    bottom: 0;
    right: 50px;
    background-color: rgba(23, 36, 52, 0.8);
    display: flex;
    align-items: center;
    border-radius: 16px 16px 0 0;
    padding: 15px 40px;
    gap: 10px;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-img #countdown h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--white-color);
    margin-bottom: 0;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-img #countdown ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
}

.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-img #countdown ul li,
.main-container.promotion-loby .promotions-cards-sections .promotions-details-sections .promotions-details-sections-img #countdown ul li span {
    list-style: none;
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--white-color);
}

.promotions-details-sections .promotion-card-button a {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
    padding: 20px 36px;
    text-transform: capitalize;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-flex;
    margin-top: 40px;
}

.promotions-details-sections .promotion-card-button a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.exchange .match-item .match-odds {
    gap: 12px;
    position: relative;
}

.exchange .match-item .match-odds .odds {
    background-color: transparent;
    border: 1px solid var(--button-bg);
    padding: 4px;
    height: 55px;
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.exchange .match-item .match-odds .odds .odd-title {
    font-size: 11px;
    line-height: 1;
}

.exchange .match-item .match-odds .odds .odd {
    width: 50%;
    background-color: var(--button-bg);
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 4px;
}

.exchange .match-item .match-odds .odds .odd.back {
    background-color: var(--back-color);
}

.exchange .match-item .match-odds .odds .odd.lay {
    background-color: var(--lay-color);
}

.exchange .other-market-counts {
    position: absolute;
    right: 100%;
    bottom: 5px;
    margin-right: 12px;
    display: flex;
    gap: 5px;
}

.exchange .other-market-counts .item {
    width: 25px;
    height: 45px;
    border-radius: 20px;
    border: 1px solid var(--button-bg);
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    cursor: pointer;
}

.exchange .other-market-counts .item .value {
    font-size: 11px;
    font-weight: 600;
    padding-top: 3px;
}

.exchange .other-market-counts .item .title {
    width: 23px;
    height: 23px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 11px;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-title .accordion-button.exchange-button .odds-heading {
    display: flex;
    gap: 12px;
}

.accordion-title .accordion-button.exchange-button .odds-heading * {
    font-size: 13px;
    font-weight: 600;
}

.odds-heading .title {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
}

.accordion-title .accordion-button.exchange-button {
    padding: 6px 25px 6px 15px;
}

.accordion-title .accordion-button.exchange-button * {
    font-size: 15px;
    font-weight: 600;
}

.accordion-title .accordion-button.exchange-button::after {
    margin-right: -15px;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block img {
    left: 15px;
    right: auto;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block {
    padding: 13px 8px 13px 40px;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block * {
    font-size: 15px;
    font-weight: 600;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block .odds-heading {
    display: flex;
    gap: 12px;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block .odds-heading * {
    font-size: 13px;
    font-weight: 600;
}

.exchange-markets .match-item {
    padding: 10px 15px;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block .odds-heading .title {
    padding: 0 4px;
    display: flex;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block .odds-heading .title span {
    width: 50%;
    text-align: center;
}

.market-content .exchange-markets .matches {
    padding: 0;
}

.market-content .exchange-markets .matches .match-item .team {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    gap: 5px;
}

.market-content .exchange-markets .matches .match-item .team-name {
    font-weight: 600;
}

.market-content .exchange-markets .matches .match-item .team .market-value {
    font-weight: 400;
}

.market-content .exchange-markets .matches .match-item .team .market-value.profit {
    color: var(--profit-color1);
}

.market-content .exchange-markets .matches .match-item .team .market-value.loss {
    color: var(--loss-color);
}

.market-content .exchange-markets .market-action {
    display: inline-flex;
    gap: 10px;
    position: absolute;
    right: 15px;
}

.market-content .exchange-markets .market-bet-box .btn-bet-block .market-action img {
    position: unset;
    transform: none;
}

.inactive-overlay {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(235, 235, 236, 0.75);
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
}

.inactive-overlay span {
    font-weight: 700;
    font-size: 13px;
}

.fancy-market {
    margin-bottom: 20px;
}

.fancy-header {
    background: linear-gradient(90deg, var(--primary-color-alpha-50) 0%, var(--primary-color-alpha-0) 100%);
    padding: 6px 30px 6px 15px;
}

.fancy-header h6 {
    margin-bottom: 0;
    color: var(--text-primary-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}

.fancy-header .market-action {
    display: inline-flex;
    gap: 10px;
}

.fancy-market .categories {
    padding: 20px 15px 0;
}

.fancy-market-content {
    padding: 15px;
}

.max-min-stake {
    display: inline-flex;
    flex-direction: column;
}

.max-min-stake span {
    font-size: 11px;
    font-weight: 500;
}

.toaster {
    position: fixed;
    z-index: 9999;
    top: 15px;
    right: 15px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #adadad;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 50px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
}

.toaster.active {
    transform: translateX(0);
}

.toaster-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toaster-content img {
    flex-shrink: 0;
}

.toaster-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 10px 0 5px;
}

.toaster-content .message-text {
    font-size: 20px;
    font-weight: 700;
}

.toaster-content .text-1 {
    color: var(--secondary-color);
    text-transform: uppercase;
}

.toaster-content .text-2 {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 15px;
    margin: 5px 0 0;
}

.toaster .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #ddd;
    border-radius: 10px;
}

.toaster .progress::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--secondary-color);
}

.toaster.success .progress::before {
    background-color: var(--profit-color1);
}

.toaster.invalid .progress::before {
    background-color: var(--loss-color);
}

.toaster.warning .progress::before {
    background-color: var(--warning-color);
}

.toaster .progress.active::before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}


/*---------------Account Pages---------------*/

.main-container.account-loby {
    background-color: transparent;
    margin-right: 15px;
}

.main-container.account-loby .my-account-page {
    padding-bottom: 36px;
}

.page-section-header {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.my-account-section {
    margin-top: 15px;
}

.my-account-section .my-account-left-side .my-account-left-content {
    background-color: var(--white-color);
    padding: 20px 15px;
    border-radius: 4px;
}

.my-account-section .my-account-left-side .my-account-left-content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my-account-section .my-account-left-side .my-account-left-content ul li {
    list-style: none;
    margin-bottom: 10px;
}

.my-account-section .my-account-left-side .my-account-left-content ul li:last-child {
    margin-bottom: 0;
}

.my-account-section .my-account-left-side .my-account-left-content ul li .account-links {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #949BA5;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 20px;
    transition: all 0.3s;
    border-radius: 4px;
}

.my-account-section .my-account-left-side .my-account-left-content ul li .account-links img {
    transition: all 0.3s;
}

.my-account-section .my-account-left-side .my-account-left-content ul li .account-links.active {
    color: var(--secondary-color);
    font-weight: 700;
    background-color: var(--card-bg-color);
}

.my-account-section .my-account-left-side .my-account-left-content ul li .account-links.active img {
    filter: brightness(0) grayscale(1);
}

.my-account-section .my-account-left-side .my-account-left-content ul li .account-links:hover {
    color: var(--secondary-color);
    font-weight: 700;
    background-color: var(--card-bg-color);
}

.my-account-section .my-account-left-side .my-account-left-content ul li .account-links:hover img {
    filter: brightness(0) grayscale(1);
}

.account-main-content .account-page-card {
    background-color: var(--white-color);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 24px;
}

.account-main-content .account-page-card .account-page-card-header {
    padding-bottom: 14px;
    border-bottom: 1px solid #DADDE6;
}

.account-main-content .account-page-card .account-page-card-header h1 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 0;
    text-transform: capitalize;
}

.account-main-content .account-page-card .account-page-card-header p {
    color: #5F6975;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 12px;
    line-height: 20px;
}

.account-main-content .account-page-card .account-page-card-content {
    margin-top: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.account-main-content .account-page-card .account-page-card-content .profile-picture {
    display: flex;
    align-items: center;
    gap: 30px;
}

.account-main-content .account-page-card .account-page-card-content .profile-picture .profile-data h6 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 10px;
}

.account-main-content .account-page-card .account-page-card-content .profile-picture .profile-data p {
    color: #949BA5;
    font-weight: 400;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 16px;
}

.edit-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 4px;
    padding: 8px 16px;
    transition: all 0.3s;
    font-weight: 500;
}

.edit-button a img {
    transition: all 0.3s;
}

.edit-button a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.edit-button a:hover img {
    filter: brightness(0) invert(1);
}

.account-main-content .account-page-card .account-page-card-content .profile-picture .upload-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.account-main-content .account-page-card .account-page-card-content .profile-picture .upload-icon:hover {
    background-color: var(--primary-color);
}

.account-main-content .account-page-card .account-page-card-content .profile-picture .upload-icon:hover label img {
    filter: brightness(0) invert(1);
}

.account-main-content .account-page-card .account-page-card-content .profile-picture .upload-icon label img {
    cursor: pointer;
}

.avatar-upload {
    position: relative;
}

.avatar-upload .upload-icon input {
    display: none;
}

.avatar-upload .upload-icon input label {
    cursor: pointer;
}

.avatar-upload .avatar-preview {
    position: relative;
    border-radius: 50%;
    border: 4px solid rgba(151, 151, 151, 0.15);
    width: 100px;
    height: 100px;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.account-contact-info .account-contact-info-block {
    margin-bottom: 20px;
}

.account-contact-info .account-contact-info-block:last-child {
    margin-bottom: 0;
}

.account-contact-info .account-contact-info-block h5 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 10px;
}

.account-contact-info .account-contact-info-block p {
    color: #5F6975;
    font-weight: 400;
    margin-bottom: 0;
}

.account-contact-info .account-contact-info-block .contact-email {
    position: relative;
    width: 65%;
}

.account-contact-info .account-contact-info-block .contact-email input {
    background-color: var(--card-bg-color);
    border-radius: 4px;
    padding: 10px 72px 10px 12px;
    color: #5F6975;
    font-weight: 400;
    width: 100%;
    border: 0;
}

.account-contact-info .account-contact-info-block .contact-email input:focus {
    box-shadow: none;
}

.account-contact-info .account-contact-info-block .contact-email input:focus-visible {
    outline: 0;
}

.account-contact-info .account-contact-info-block .contact-email img {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.account-page-card-content-left-side {
    width: 70%;
    max-width: 100%;
}

.personal-verification .personal-verification-card {
    background-image: url(../images/verification-bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 30px 30px 20px;
    border-radius: 4px;
}

.personal-verification .personal-verification-card h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 0;
    text-align: center;
}

.personal-verification .personal-verification-card ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.personal-verification .personal-verification-card ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #31373D;
    font-weight: 500;
    padding: 4px 0;
}

.verification-button .btn-verification {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
    width: 100%;
    padding: 14px;
    display: block;
    text-align: center;
    margin-top: 35px;
    transition: all 0.3s;
}

.verification-button .btn-verification:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.personal-verification .personal-verification-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #31373D;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 4px;
}

.personal-verification {
    margin-top: 20px;
}

.personal-verification .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.personal-verification .row {
    margin: 0 -10px;
}

.account-page-card-content-right-side {
    flex-shrink: 0;
}

.my-account-section.mobile-account-page .my-account-left-side .my-account-left-content ul li .account-links {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.my-account-section.mobile-account-page .my-account-left-side .my-account-left-content ul li .account-links .right-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.my-account-section.mobile-account-page .my-account-left-side .my-account-left-content ul li .account-links img {
    filter: brightness(0) grayscale(1);
}

.my-account-section.mobile-account-page .my-account-left-side .my-account-left-content ul li .account-links:hover {
    background-color: transparent;
}

.payment-method .btn-payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--card-bg-color);
    border: 2px solid var(--card-bg-color);
    border-radius: 8px;
    width: 100%;
    padding: 9px 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.payment-method .btn-payment-method:hover {
    background-color: var(--white-color);
    border-color: var(--primary-color);
}

.payment-method .btn-payment-method.active {
    background-color: var(--white-color);
    border-color: var(--primary-color);
}

.payment-method .btn-payment-method .payment-info h6 {
    color: #31373D;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: start;
}

.payment-method .btn-payment-method .payment-info p {
    color: #31373D;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 0;
    text-align: start;
}

.payment-method {
    padding-right: 30px;
    border-right: 1px solid #DADDE6;
}

.payment-title {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 0;
}

.account-contact-info.payment-section {
    margin-top: 20px;
}

.payment-method-details {
    padding-left: 30px;
}

.payment-method-details h1 {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 20px;
}

.payment-method-details p {
    color: #5E6A78;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.amount-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amount-info h2 {
    margin-bottom: 0;
    color: var(--secondary-color);
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
}

.amount-info p {
    margin-bottom: 0;
    color: #5E6A78;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

.quantity {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
    background-color: var(--card-bg-color);
    align-items: center;
    padding: 0 15px;
}

.quantity button {
    background-color: var(--card-bg-color);
    color: #5E6A78;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #BDBDBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quantity button img {
    transition: all 0.3s;
}

.quantity button:hover {
    background-color: var(--primary-color);
}

.quantity button:hover img {
    filter: brightness(0) invert(1);
}

.input-box {
    width: 100%;
    text-align: center;
    border: none;
    padding: 12px;
    outline: none;
    background-color: var(--card-bg-color);
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
}

.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}

.amount-box {
    margin-top: 40PX;
}

.quick-amount {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.quick-amount .btn-quick-amount {
    background-color: var(--primary-color);
    color: #6D4C00;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    text-align: center;
    background-color: rgba(197, 164, 89, 0.15);
    border: 0;
    border-radius: 4px;
    padding: 10px 5px;
    text-decoration: none;
    width: 25%;
    transition: all 0.3s;
}

.quick-amount .btn-quick-amount:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.payment-method-details h3 {
    margin-bottom: 0;
    color: #5F6975;
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    text-align: center;
    margin-top: 8px;
}

.payment-method .btn-payment-method img {
    flex-shrink: 0;
}

.withdraw-page .payment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.withdraw-page .payment-info .amount-range {
    display: flex;
    align-items: center;
    gap: 12px;
}

.withdraw-form {
    margin-top: 25px;
}

.withdraw-form-field {
    margin-bottom: 15px;
}

.withdraw-form .withdraw-form-field:last-child {
    margin-bottom: 0;
}

.withdraw-form-field .form-label {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    margin-bottom: 10px;
}

.withdraw-form-field .form-label span {
    color: #5F6975;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
}

.withdraw-form-field .form-control {
    background-color: var(--card-bg-color);
    border: 0;
    border-radius: 4px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    padding: 12px 15px;
}

.withdraw-form-field .form-control:focus {
    box-shadow: none;
}

.balance-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.total-aval-balance {
    display: flex;
    align-items: center;
    gap: 5px;
}

.total-aval-balance h5 {
    color: #5F6975;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    margin-bottom: 0;
}

.total-aval-balance h6 {
    color: #172434;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    margin-bottom: 0;
}

.balance-summary {
    background-color: var(--card-bg-color);
    border-radius: 4px;
    padding: 12px;
    margin-top: 25px;
}

.balance-summary .total-aval-balance {
    justify-content: space-between;
    margin-bottom: 12px;
}

.balance-summary .total-aval-balance:last-child {
    margin-bottom: 0;
}

.payment-arrow {
    width: auto !important;
}

.report-section-filter .filter-field .form-label {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    margin-bottom: 10px;
}

.report-section-filter .filter-field .form-control,
.report-section-filter .filter-field .form-select {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    padding: 12px 15px;
    background-color: var(--card-bg-color);
    border: 0;
    border-radius: 4px;
}

.report-section-filter .filter-field .form-select {
    padding: 14px 15px;
}

.report-section-filter .filter-field .form-select:focus,
.report-section-filter .filter-field .form-control:focus {
    box-shadow: none;
}

.report-section-filter .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.report-section-filter .row {
    margin: 0 -10px;
}

input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
    cursor: pointer;
}

input[type="date"]:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    background: url(../images/date.svg);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.report-table {
    margin-top: 5px;
}

.report-table .table thead tr th {
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    padding: 9px 10px;
    background-color: var(--secondary-color);
    border-right: 1px solid #F5F6FA;
    text-align: start;
}

.report-table .table thead tr th span {
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    text-align: start;
}

.report-table .table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #F5F6FA;
}

.report-table .table thead tr th:first-child {
    border-radius: 4px 0 0 4px;
}

.report-table .table thead tr th:last-child {
    border-radius: 0 4px 4px 0;
}

#pl-report-table .table tbody tr td:nth-child(2) {
    white-space: break-spaces;
}

.report-table .table tbody tr td {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    border-right: 1px solid #F5F6FA;
    padding: 10px;
    vertical-align: middle;
    text-align: start;
}

.report-table .table tbody tr td.profit {
    color: #29A508;
    text-align: center;
}

.report-table .table tbody tr td.loss {
    color: #FF0101;
    text-align: center;
}

.report-table .table tbody tr td:last-child {
    border-right: 0;
}

.report-table .row:last-child .col>[class*='col-']:first-child {
    display: none;
}

.report-table .dt-container .row:last-child>[class*='col-']:first-child {
    display: none;
}

.report-table .dt-container .row:last-child {
    justify-content: center !important;
}

.report-table .dt-container .row:last-child>[class*='col-']:last-child {
    width: 100% !important;
}

.report-table .dt-container .row:first-child {
    margin-top: 0 !important;
}

.report-table .dt-container .dt-paging.paging_simple_numbers {
    width: 100% !important;
}

.report-table .pagination .page-item:first-child {
    margin-right: auto;
}

.report-table .pagination .page-item:last-child {
    margin-left: auto;
}

.report-table .page-link {
    background-color: var(--card-bg-color);
    border-radius: 4px;
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 500;
    line-height: 11px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    transition: all 0.3s;
}

.report-table .pagination {
    gap: 5px;
    width: 100% !important;
    margin: 0 !important;
}

.report-table .page-item.active .page-link {
    background-color: var(--secondary-color);
    color: var(--white-color);
    position: relative;
}

.report-table .page-item .page-link.previous {
    background-color: transparent;
    color: rgba(23, 36, 52, 0.5);
    padding-left: 45px;
}

.report-table .page-item .page-link.next {
    background-color: transparent;
    color: rgba(23, 36, 52, 0.5);
    padding-right: 35px;
}

.report-table .page-item .page-link.next:hover,
.report-table .page-item .page-link.previous:hover {
    color: rgba(23, 36, 52, 1);
}

.report-table .page-item .page-link.previous::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    background-image: url(../images/previous-arrow.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.report-table .page-item .page-link.next::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background-image: url(../images/previous-arrow.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(180deg);
}

.report-table .page-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.page-link:focus {
    box-shadow: none;
}

.report-table .dtr-data {
    white-space: break-spaces;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--secondary-color);
}

.report-table .dtr-title {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: var(--secondary-color);
}

.filter-field {
    margin-bottom: 15px;
}


/* .description {
    white-space: break-spaces !important;
} */

.bonus-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-box img {
    flex-shrink: 0;
}

.bonus-data p {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    margin-bottom: 10px;
}

.bonus-data h1 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 0;
}

.bonus-data h1.total-bonus {
    color: #3BC117;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 0;
}

.custom-border {
    border-left: 1px solid #949BA5;
}