@font-face {
    font-family: "Gilroy-Regular";
    src: url("https://db.onlinewebfonts.com/t/1dc8ecd8056a5ea7aa7de1db42b5b639.eot");
    src: url("https://db.onlinewebfonts.com/t/1dc8ecd8056a5ea7aa7de1db42b5b639.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/1dc8ecd8056a5ea7aa7de1db42b5b639.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/1dc8ecd8056a5ea7aa7de1db42b5b639.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/1dc8ecd8056a5ea7aa7de1db42b5b639.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/1dc8ecd8056a5ea7aa7de1db42b5b639.svg#Gilroy-Regular")format("svg");
}

body {
    background-color: #928eb9;
    font-family: Gilroy-Regular, sans-serif;
    color: white;
    font-size: 12px;
}

a {
    cursor: pointer;
}

* {
    margin: 0;
    font: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #928eb9;
    border-radius: 10px;
    min-height: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::webkit-scrollbar-corner {
    background-color: #F5F5F5;
}

.header {
    position: relative;
    background-color: #1e1e58 !important;
    padding: 5px;
}

.modal-body {
    background-color: #928eb9 !important;
}

.header-right {
    top: 30%;
    right: 0;
    position: absolute;
    margin-left: auto;
    display: flex;
    justify-content: space-between !important;
}

.greyroundbtn {
    display: inline;
    background-color: #928eb9;
    border: 2px solid transparent;
    /* Set border width and color */
    border-radius: 15px;
    /* Rounded corners */
    padding: 5px 10px;
    width: 100px;
    text-align: center;
    color: white;
}

.greyroundbtn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    /* 50% white overlay */
}

.purpleroundbtn {
    display: inline;
    background-color: #8298e4;
    border: 2px solid transparent;
    /* Set border width and color */
    border-radius: 15px;
    /* Rounded corners */
    padding: 5px 15px;
    width: 100px;
    text-align: center;
    color: inherit;
}

.purpleroundbtn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    /* 50% white overlay */
}

.btn-link {
    color: white;
    text-decoration: none;
}

.btn-link:hover {
    color: white;
}

.bottom-tab {
    width: 200px;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
}

.bottom-tab a {
    text-decoration: none;
    width: 200px;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
}

.bottom-tab i {
    color: #4b0082;
    margin-right: 10px;
    /* Add some spacing between the icon and text */
}

.bottom-tab:hover {
    background-color: #4b0082;
    /* Change to your preferred background color on hover */
}

.bottom-tab:hover i {
    color: white;
    /* Change icon color on hover to black (or any color of your choice) */
}

.bottom-tab.active {
    background-color: #4b0082;
}

.bottom-tab.active i {
    color: white;
}

.sport-section {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
    background-image: url(../images/casino.png);
}

#multi-item-carousel {
    background-color: #1e1e58;
    display: inline-block;
    width: 100%;
}

.swiper-slide.active .sport-caption {
    color: #928eb9;
}

.swiper-slide.active img {
    transform: rotate(360deg);
    transition: transform 2s;
    /* Adjust the duration as needed */
    box-shadow: 0px 0px 15px 0px #928eb9;
    border-radius: 50%;
}

@keyframes continuousRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swiper-slide.active img {
    animation: continuousRotate 5s linear infinite;
    box-shadow: 0px 0px 15px 0px #928eb9;
    border-radius: 50%;
}

.sportbanner {
    position: relative;
    overflow: hidden;
}

.virtualbanner {
    position: relative;
    /* This sets a positioning context for absolute positioned child elements */
    overflow: hidden;
}

.sportbanner img {
    width: 100%;
    /* Makes the image take the full width of the container */
    height: 100%;
    /* Makes the image take the full height of the container */
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
}

.virtualbanner img {
    width: 100%;
    /* Makes the image take the full width of the container */
    height: 100%;
    /* Makes the image take the full height of the container */
    object-fit: cover;
}

.banner-text {
    text-align: right;
    position: absolute;
    /* Takes the text out of the document flow and positions it relative to the closest positioned ancestor (image-container in this case) */
    bottom: 10px;
    /* Positions the text 10px from the bottom of the image-container */
    right: 10px;
    /* Positions the text 10px from the left of the image-container */
    color: #ffffff;
    /* White text */
    padding: 5px;
    /* Space around the text */
}

.virtualtext {
    position: absolute;
    /* Takes the text out of the document flow and positions it relative to the closest positioned ancestor (image-container in this case) */
    bottom: 10px;
    /* Positions the text 10px from the bottom of the image-container */
    left: 10px;
    /* Positions the text 10px from the left of the image-container */
    color: #ffffff;
    /* White text */
    padding: 5px;
    /* Space around the text */
    border-radius: 5px;
}

.seperator {
    display: block;
    width: 60%;
    height: 1px;
    background: #8298e4;
    margin: 25px 0 25px auto;
}

.saperator {
    display: block;
    width: 60%;
    height: 1px;
    background: #8298e4;
    margin: 25px 0 25px 0;
}

.slot-section {
    background-color: #4b0082;
    background-image: url(../images/dashboard-slot-banner.png);
    background-repeat: no-repeat;
    text-align: right;
}

.casino-section {
    background-color: #4b0082;
    background-image: url(../images/dashboard-slot-banner1.png);
    background-repeat: no-repeat;
}

.box {
    background-color: #1e1e58 !important;
    margin: 0px;
    padding: 5px;
    overflow: hidden;
}

.circle {
    background-color: #928eb9;
    color: white;
    border: 2px solid transparent;
    /* Set border width and color */
    border-radius: 15px;
    /* Rounded corners */
    padding: 5px;
    text-align: center;

}

.left-scroll,
.mid-scroll,
.right-scroll {
    height: 50%;
    box-sizing: border-box;
}

.left-scroll {
    width: 17%;
    float: left;
    padding: 5px;
    font-size: 10px;
}

.sport-container {
    padding: 2px;
    position: relative;

    /*    align-items: start; /* Adjust alignment to be at the start */
}

.sport-container ul ul {
    display: none;
}

.sport-container li a {
    width: 100%;
    /*  border: 1px solid grey;*/
    position: relative;
    box-sizing: border-box;
}

.sport-container li a span {
    line-height: 27px;
    vertical-align: middle;
    display: inline-block;
}

.sport-container li a em {
    float: right;
    border: 1px solid #4b0082;
    text-align: center;
    border-radius: 100px;
    margin-left: auto;
    margin-right: 10px;
    padding: 0 3px;
}

.sport-container li li a {
    padding-left: 20px;
}

.sport-container li li li a {
    padding-left: 30px;
}

.sport-container li li li a span {
    line-height: 25px;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.middlefooter {
    padding: 30px;
}

.middlefooter .col-md-3 {
    width: 20%;
}

.middlefooter h6 {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-link {
    text-decoration: none;
    color: white;
    line-height: 22px;
}

.footer-link:hover {
    color: #4b0082;
}

.footerp {
    position: relative;
    padding-left: 10px;
}

.plus18 {
    position: absolute;
    left: -30px;
    max-width: 30px;
    top: 5px;
}

.countries-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: #4b0082;
    z-index: 0;
}

.countries-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    width: 5px;
    height: 1px;
    background-color: #4b0082;
    z-index: 0;
}

/* For league-list */
.league-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: white;
    z-index: 0;
}

.league-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    width: 5px;
    height: 1%;
    background-color: white;
    z-index: 0;
}

/* For subleague-list */
.subleagues-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: white;
    z-index: 0;
}

.subleagues-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    width: 5px;
    height: 1%;
    background-color: white;
    z-index: 0;
}

.right-scroll {
    float: right;
    width: 21%;
    padding: 5px;
}

.mid-scroll {
    flex: 1;
    float: left;
    max-width: calc(100% - 342px);
    min-width: calc(100% - 500px);
    padding: 5px;
}

.sport-caption {
    margin-top: 15px;
}

.swiper-slide a {
    text-decoration: none;
    /* Removes underline */
    color: white;
    /* Ensures the text color doesn't change */
    display: block;
    /* Makes the entire area clickable */
    padding: 10px;
    /* Adds some padding around each item */
}

.swiper-slide a:after {
    content: "";
    width: 1px;
    height: 40px;
    background-color: grey;
    position: absolute;
    margin: auto;
    right: 0;
    top: 20%;
}

.swiper-slide img {
    max-width: 100%;
    /* Ensures the image doesn't overflow the container */
    height: auto;
    /* Keeps the image aspect ratio */
    display: block;
    /* Removes the bottom space/gap under the image */
    margin: 0 auto;
    /* Centers the image if it's narrower than the container */
}

.swiper-button-prev,
.swiper-button-next {
    background: none;
    background-image: none !important;
    color: white !important;
}

.swiper-button-prev:after {
    font-size: 16px !important;
}

.swiper-button-next:after {
    font-size: 16px !important;
}

.matchbox {
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    margin: 10px 0;
}

.matchesheader {
    min-height: 32px;
    padding: 5px 12px !important;
    white-space: nowrap;
    margin-bottom: 2px;
}

.match-icon {
    vertical-align: middle;
    position: relative;
    margin-right: 10px;
}

.oddsbox {
    float: left;
    position: relative;
    margin-top: -5px;
    padding: 0 2px !important;
}

.match-heading {
    display: inline-block;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    /* This can be 'block' as well, depending on your needs */
    width: 100%;
    text-align: right !important;
    line-height: 20px;
    height: 22px !important;
}

#sports .custom-select {
    text-align: right !important;
    color: white;
    border: none;
    background-color: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 20px;
    /* Space for the custom dropdown icon */
    width: 100%;
    /* Ensure it fills the parent .select-wrapper */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#sports .custom-select::-ms-expand {
    display: none;
    /* for IE11 */
}

#sports .select-wrapper:after {
    content: "▼";
    position: absolute;
    right: 8px;
    top: 40%;
    transform: translateY(-50%);
    pointer-events: none;
    /* to make sure the dropdown still opens when you click on the arrow */
}

#sports .custom-select option {
    background-color: #333;
    /* change this to any color you want */
    color: white;
    /* making the text color inside the options white, adjust if needed */
}

.gradient-header {
    background: linear-gradient(to right, #1e1e58, #928eb9);
    color: white;
    padding: 5px;
}

.date-box {
    display: inline-block;
    width: 25px;
    text-align: center;
    margin: 2px;
    cusrsor: pointer;
}

.month {
    padding: 2px 0;
    color: #fff;
    /* White text color */
}

.day {
    padding: 5px 0;
}

.nav-link {
    color: white !important;
}

.nav-link.active {
    color: #4b0082 !important;
}

.icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.separator {
    width: 2px;
    height: 40px;
    background: #ccc;
    margin: 0 15px;
    /* Adjust spacing as needed */
}

/*.matchlist{
    position: relative;
    display: inline-block;
    width: 100%;
}
.match{
    height: 37px;
    border-bottom: 1px solid grey!important;
    clear: both;
}*/
#match {
    cursor: pointer;
}

.eventname {
    position: relative;
    flex: 1;
}

/*.matchname{
    position: relative;
    flex: 1;
    height: 100%;
}*/
.matchname span {
    margin: 0 3px;
}

/*.market{
    float: left;
}*/

.livecasino-item {
    width: 80px;
    height: 80px;
    display: inline-block;
    border: 1px solid grey !important;
    padding: 5px;
    font-size: 20px;
    margin-bottom: 8px
}

.livecasinolist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
}

.livecasinogame {
    width: 25%;
    padding: 5px;
    float: left;
    box-sizing: border-box;
}

.casinogamebox {
    border-radius: 10px;
    overflow: hidden;
}

.modal-background {
    background: url('../images/modalbg.jpg') no-repeat;
    background-size: 100% 100% !important;
}

.loginmodal-background {
    background: url('../images/loginmodal.jpg') no-repeat;
    background-size: 100% 100% !important;
}

.modal-dialog {
    max-width: 95%;
}

.modal-content {
    max-width: 1000px;
}

.modal-long {
    max-width: 1200px !important;
}

#loginmodal .modal-body {
    height: 588px;
}

#resetmodal .modal-body {
    height: 588px;
}

#loginmodal form {
    width: 300px;
}

.modal form {
    max-width: 600px;
    width: 600px;
}

/* Hide the default radio input within the modal */
.modal input[type="radio"] {
    display: none;
}

/* Style the label to look like a rounded border checkbox within the modal */
.modal input[type="radio"]+label {
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid #333;
    /* Dark border color, you can adjust as required */
    border-radius: 20px;
    /* Rounded borders */
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Style when radio is checked within the modal */
.modal input[type="radio"]:checked+label {
    background-color: #4b0082;
    /* Light gray background, adjust if needed */
    border-color: #007bff;
    /* Blue border, adjust if needed */
}

/* Input with rounded border within the modal */
.modal input[type="text"],
.modal input[type="password"],
.modal input[type="number"],
.modal input[type="email"] {
    height: 35px;
    width: 100%;
    border-radius: 20px;
    border: 2px solid #333;
    color: inherit;
    padding: 5px 10px;
    background: none;
    margin-bottom: 5px !important;
    box-sizing: border-box;
}

.modal select {
    height: 35px;
    width: 100%;
    border-radius: 20px;
    /* Adjust if you want more or less rounding */
    border: 2px solid #333;
    padding: 5px 10px;
}

.modal input[type="checkbox"] {
    display: none;
}

.modal input[type="checkbox"]+label {
    position: relative;
    padding-left: 27px;
    /* Space for the custom checkbox */
    cursor: pointer;
    display: inline-block;
}

.modal input[type="checkbox"]+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid #333;
    border-radius: 4px;
    background-color: #fff;
}

.modal input[type="checkbox"]:checked+label:before {
    background-color: #007bff;
    /* Change this color as needed */
    border: 2px solid #007bff;
}

.modal input[type="checkbox"]:checked+label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7%;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translateY(-50%);
}

.iti {
    width: 100% !important;
}

#phone {
    padding-left: 30px;
}

.modal-close {
    position: absolute;
    top: 15px;
    color: #4b0082 !important;
}

.d-sep {
    margin-top: 2px;
    margin-bottom: 2px;
    height: 2px;
    background-color: #4b0082;
}

#selections p {
    margin-bottom: 0;
}

.match-entry {
    border-top: 1px solid grey;
}

#header {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.bet-header {
    background-color: #4b0082;
    align-items: center;
    vertical-align: middle;
}

.table {
    font-family: Gilroy-Regular, sans-serif !important;
    color: white !important;
}

.table td {
    font-size: 12.5px;
    background: #4C4687 !important;
    border: 1px solid grey;
    height: 30px !important;
}

.market-btn {
    cursor: pointer;
}

.market-btn.active {
    border-radius: 30px;
    border: 1px solid grey;
    box-sizing: border-box;
    background: #4b0082;
}