/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
  #spantips {
            font-size: 12px;
            color: #fff;
            animation: bottomMenu 1s linear infinite;
        }

        @keyframes bottomMenu {
            0% {
                opacity: 0;
            }

            50% {
                opacity: .5;
            }

            100% {
                opacity: 1;
            }
        }

        .bottomMenu {
            position: fixed;
            bottom: 0;
            color: #fff;
            width: 100%;
            height: 70px;
            border-top: 1px solid #000;
            background: #35b9d2;
            z-index: 1;
            transition: all .5s;
        }

        #myID .close {
            position: absolute;
            top: -13px;
            left: 1px;
            width: 24px;
            height: 20px;
            content: "";
            background-color: white;
            border: solid lightgrey 1px;
            border-radius: 50%;
        }

        #myID .close:before {
            position: absolute;
            border-radius: 50%;
            content: "";
            width: 26px;
            height: 26px;
            top: 0px;
            left: 0px;
        }

        #myID .close:after {
            position: absolute;
            content: "X";

            font-weight: bold;
            font-size: 18px;
            color: white;
            top: 0px;
            left: 0px;
            width: 100%;
            text-align: center;
            vertical-align: middle;
            line-height: 30px;
        }

        #myID .close.blue:before {
            background-color: #034559;
            background: linear-gradient(to bottom, #378CA4 0%, #034559 100%);
        }

        .close {
            opacity: 1 !important;
        }

        .body {
            /*height: 100vh;*/
            display: flex;
            
            /*justify-content: center;*/
            /*align-items: center;*/
            /*background-color: #020002;*/
        }

        .nav {
            position: fixed;
            /* Fix the navbar at a specific position */
            bottom: 0;
            /* Position it at the bottom of the screen */
            left: 0;
            /* Stretch it to the left edge */
            width: 100%;
            /* Ensure it spans the full width of the screen */
            display: flex;
            justify-content: space-between;
            padding: 0 5px;
            background-color: #1d1a1d;
            border-top: 1px solid #252325;
            /* Adjusted border to top for better visibility */
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
            /* Optional shadow for better aesthetics */
            z-index: 999;
            /* Ensure it stays above other content */
        }


        .nav-item {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 50px;
            margin: 0 5px;
            padding: 15px;
            color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transition: .3s;
        }

        .nav-item.is-active {
            color: #ffdc11;
        }

        .nav-item.is-active::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 120%;
            height: 120%;
            transform: translate(-10%, -10%);
            background: radial-gradient(#ffdc11, transparent);
            filter: blur(10px);
            opacity: .2;
        }

        .nav-item i {
            font-size: 24px;
        }

        .nav-item span {
            font-size: 11px;
            font-weight: 600;
        }

        .nav-indicator-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.175);
            display: flex;
            justify-content: center;
        }

        .nav-indicator {
            width: 30px;
            height: 5px;
            background-color: #ffdc11;
            border-radius: 10px;
        }
    
        .match-card {
            background-color: #1c1c1c;
            color: #fff;
            border-radius: 10px;
            padding: 15px;
            margin: 0px;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .match-card .team {
            display: flex;
            align-items: center;
        }

        .match-card .team img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .match-card .finished-badge {
          
            color: #fff;
            padding: 5px 11px;
            border-radius: 2px;
            font-size: 12px;
        }

        .match-card .scores {
            font-size: 14px;
        }

        .match-card .result {
            font-weight: bold;
            margin-top: 10px;
            color: #e74c3c;
        }

        h6 {
            color: #fffff;
        }

        #blink {

            font-weight: bold;

            transition: 0.5s;
        }
        .match-card .team img {
                width: 40px;
    height: 40px;
        }
         .blink_me {
            animation: blinker 1s linear infinite;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }

        .next_match_left {
            position: relative;
            bottom: 40px;
            color: white;
            left: 372px;

        }

        .next_match_right {
            position: relative;
            bottom: 405px;
            color: white;
            left: 428px;
        }

        .next_match_left a,
        .next_match_right a {
            color: #FFFFFF;
        }

        /* .ritekhed-main-section {*/
        /*    z-index: 9999999;*/
        /*}*/
        /* WhatsApp Button*/
        /*.float{*/
        /*	position:fixed;*/
        /*	width:60px;*/
        /*	height:60px;*/
        /*	bottom:40px;*/
        /*	right:40px;*/
        /*	background-color:#25d366;*/
        /*	color:#FFF;*/
        /*	border-radius:50px;*/
        /*	text-align:center;*/
        /*  font-size:30px;*/
        /*	box-shadow: 2px 2px 3px #999;*/
        /*  z-index:100;*/
        /*}*/

        /*.my-float{*/
        /*	margin-top:16px;*/
        /*}*/
