:root {
    --w3-bg: #f5f7fb;
    --w3-panel: #fff;
    --w3-panel-2: #f2f4f8;
    --w3-line: #e5e7eb;
    --w3-text: #111827;
    --w3-muted: #6b7280;
    --w3-head: #b45309;
    --w3-chip: #eef2f7;
    --w3-date-bg: #111827;
    --w3-date-ring: #f59e0b;

    --w3-digit: #475569;
    --w3-digit-bg: rgba(71, 85, 105, 0.14);
    --w3-big-color: #333;
    --w3-cell-min: 130px;
}

a.link-default{
	color: #1f3dd0;
}
.create-account-container .mpass-text{
	width: 150px !important;
}
.user-lock-container .ptitle{
	border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
.user-lock-nav {
    padding: 0;
}
.top-winner-list-box img{
	display: block;
	margin: 0 auto;
	
}
.mini-stats-wid{
	margin-bottom: 12px;
}
.fixture-nav.upcoming-fixure{
	display: block;
	flex: none;
	overflow: hidden;
	border-radius: 8px;
	width: 400px;
}
.fixture-nav .fixure-title{
	border-radius: 8px 0px 0px 8px;
	background-color: #434343;
}
.fixture-nav .fixure-title::after{
	border-left: 20px solid #434343;
}
.fixture-nav.upcoming-fixure .f-title{
	white-space: nowrap;
	width: 300px;
	text-overflow: ellipsis;
	overflow: hidden;
}
.loader-overlay {
    display: block;
    position: fixed;
    z-index: 9999;
    background-image: url('../img/loader.gif');
    background-color: #666;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-size: 100px 100px;
} 
.inside-loader-overlay {
    display: block;
    position: fixed;
    z-index: 9999;
    background-image: url('../img/loader.gif');
    background-color: #666;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-size: 100px 100px;
}
#loader-full {
    display: block;
    position: fixed;
    z-index: 9999;
    background-image: url('../img/loader.gif');
    background-color: #666;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-size: 100px 100px;
}

/* matka calendar */

.calendar {
    background: var(--w3-panel);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    font: 14px/1.4 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

/* Top bar */
.calendar .topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--w3-line);
}

.calendar .left,
.calendar .right {
    font-size: 12px;
    color: var(--w3-muted);
}

.calendar .right {
    text-align: right;
}

.calendar .left b,
.calendar .right b {
    color: var(--w3-text);
}

.calendar .center {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.calendar .navbtn {
    background: var(--w3-panel-2);
    border: 1px solid var(--w3-line);
    color: var(--w3-text);
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
}

.calendar .navbtn:hover {
    filter: brightness(1.1);
}

.calendar .navbtn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    filter: none;
}

.calendar .navbtn[disabled]:hover {
    filter: none;
}

.calendar .month {
    font-weight: 800;
    letter-spacing: 0.4px;
    min-width: 200px;
    text-align: center;
}

/* single horizontal scroller for header + grid */
.calendar .cal-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.calendar .cal-strip {
    width: fit-content;
    min-width: 100%;
}

/* DOW (Mon first) */
.calendar .dow {
    display: grid;
    grid-template-columns: repeat(7, minmax(var(--w3-cell-min), 1fr));
}

.calendar .dow>div {
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: var(--w3-head);
    padding: 10px 0;
    background: var(--w3-panel-2);
    border-right: 1px solid var(--w3-line);
    border-bottom: 1px solid var(--w3-line);
}

.calendar .dow>div:last-child {
    border-right: none;
}

/* Grid */
.calendar .grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(var(--w3-cell-min), 1fr));
    border-left: 1px solid var(--w3-line);
}

.calendar .cell {
    min-height: 120px;
    position: relative;
    border-right: 1px solid var(--w3-line);
    border-bottom: 1px solid var(--w3-line);
    padding: 8px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.02),
            rgba(0, 0, 0, 0.06));
    overflow: hidden;
    /* keep everything inside on mobile */
}

.calendar .cell:hover {
    outline: 1px solid #5b5f66;
    z-index: 1;
}

/* show prev/next-month trailing days dimmed */
.calendar .cell.out.prev,
.calendar .cell.out.next {
    opacity: 0.45;
}

/* top row inside a cell: DATE centered (no O/C titles) */
.calendar .cell-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

/* date badge */
.calendar .date-badge {
    padding: 4px 8px;
    background: var(--w3-date-bg);
    color: #fff;
    font-weight: 900;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(243, 181, 22, 0.45);
    box-shadow: 0 0 0 2px rgba(243, 181, 22, 0.18) inset,
        0 2px 6px rgba(0, 0, 0, 0.35);
}

/* inner content column for safe shrink */
.calendar .content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* body: O digits | BIG | C digits */
.calendar .oc-rows {
    display: grid;
    grid-template-columns: minmax(22px, 28px) 1fr minmax(22px, 28px);
    /* flexible rails to prevent overflow */
    gap: 10px;
}

.calendar .digits {
    display: grid;
    grid-auto-rows: min-content;
    gap: 3px;
    align-content: start;
    justify-items: center;
}

.calendar .digits .d {
    font-size: 15px;
    line-height: 18px;
    border-radius: 6px;
    padding: 0 0;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    /* keep pills in rail */
    transition: background 0.15s ease;
}

/* pill only when digit exists */
.calendar .digits .d.has {
    padding: 3px 6px;
    font-weight: 900;
    color: var(--w3-digit);
    background: var(--w3-digit-bg);
}

/* bigger big number */
.calendar .big {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--w3-big-color);
    letter-spacing: 1px;
    margin-top: 10px;
    line-height: 1.4;
}
@media (max-width: 1279px) {
	.fixture-nav.upcoming-fixure{
		width: 100%;
	}
	.fixture-nav.upcoming-fixure .f-title{
		width: 100%;
	}
}

@media only screen and (min-width: 1280px) and (max-width: 1366px) {
    .fixture-nav.upcoming-fixure{
    	width: 350px;
    }
}
.site-searchbox{
	width: 250px;
}
/*.login-banner .carousel-item{
	width: 100%;
    padding-top: 23.47%;
    background-size: cover !important;    
    background-position: center !important;
}*/

.shine {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 104px; 
  display: inline-block;
  position: relative; 
  
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards; 
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
  }

/*box {
  height: 104px;
  width: 100px;
}

div {
  display: inline-flex;
  flex-direction: column; 
  margin-left: 25px;
  margin-top: 15px;
  vertical-align: top; 
}

lines {
  height: 10px;
  margin-top: 10px;
  width: 200px; 
}

photo {
  display: block!important;
  width: 325px; 
  height: 100px; 
  margin-top: 15px;
}
*/
@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }
  
  100% {
    background-position: 468px 0; 
  }
}
.bodymovinanim {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    position: fixed;
    background-color: var(--bg-body);
    z-index: 999999999;
}
.bodymovinanim > svg{
  width: 50% !important;
  height: 50% !important;
}

.live-bets-report .report-event-title
{
    background-color: #e2e2e2;
    padding: 6px;
    color: #333;
    font-weight: 500;
}
.live-bets-report .table
{
    table-layout: unset;
}
.live-bets-report .report-table{
    min-height:unset;
}

.casino-video-last-results-top{
  height: 245px;
}
.casino-video-last-results-top.hide-lr {
    height: 0;
    transition: 1s;
    padding-top: 0;
    padding-bottom: 0;
}
/*.grecaptcha-badge{
    display: none !important;
}*/
.andar-bahar2 .card-inner{
  min-height: 45px;
}

.home-modal .modal-content {
    background-color: transparent;
}

.home-modal .modal-header {
    padding: 0;
}

.home-modal .close-home-modal {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 50%;
    background-color: red;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

.home-modal-title {
    width: 100%;
    background-color: #ff0000;
    padding: 10px;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.home-modal-title>div {
    width: calc(100% - 50px);
}

.home-modal-title img {
    height: 30px;
    -moz-animation: blinkwarning normal 1s infinite ease-in-out;
    -webkit-animation: blinkwarning normal 1s infinite ease-in-out;
    -ms-animation: blinkwarning normal 1s infinite ease-in-out;
    animation: blinkwarning normal 1s infinite ease-in-out;
}

@-moz-keyframes blinkwarning {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blinkwarning {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes blinkwarning {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
    }
}

@keyframes blinkwarning {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
    }
}

.home-modal-title h4 {
    color: var(--text-highlight);
    font-weight: bold;
    text-transform: uppercase;
}

.home-main-banner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.home-main-banner img {
    width: 400px;
    max-width: 80%;
}

.home-modal .modal-footer {
    padding: 0;
}

.home-sub-banners {
    margin-top: 10px;
}

.home-sub-banners img {
    max-width: 45%;
    margin-right: 10px;
}

.home-sub-banners img:last-child {
    margin-right: 0;
}

.home-modal .modal-body {
    padding: 0;
    background-color: transparent;
    box-shadow: 0px 0px 20px #a9a9a9;
}
.slick-list {
    overflow: hidden;
}

.dum-card {
    width: 35px;
}
@media only screen and (max-width: 767px) { 
    .dum-card {
        width: 28px;
    }
}
.top-msg {
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding: 5px 20px;
    /* color: #ff2a2a; */
    font-size: 14px;
    border-radius: 8px;
    background: #7c0d0d;
    font-weight: bold;
}