/*---------------------------------------
    Theme Name: 
    Description: 
    Author Name: 
    Author URI:  
    Theme URI: 
    Version: 1.0
-----------------------------------------
    Table of contents
-----------------------------------------
    1 Base Style
        1.1 Functions
        1.2 Variables
        1.3 Mixins
        1.4 Global
    2 Modules Style
        2.1 Hero
        2.2 Header
        2.3 Logo
        2.4 List
        2.5 Nav
        2.6 Primary Nav
        2.7 Nav Toggler
        2.8 Nice Select
        2.9 Form Control
        2.10 Primary Submenu Toggler
        2.11 Preloader
        2.12 Back To Top
        2.13 Button Style
        2.15 Section 
    3 Theme Style
        3.1 Color
        3.2 Background
        3.3 Padding
        3.4 Margin
        3.5 Utility Classes
        3.6 Animation
    4. Layouts Style
        4.1 Course Section
        4.2 Feedback Section
        4.3 CTA Section
        4.4 Footer 1
        4.5 Service Section

/*---------------------------------------
    0.1 Base Style
-----------------------------------------*/
/*---------------------------------------
    1. Global
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Roboto:wght@400;500;700&display=swap");

:root {
    --heading-font: "Inter", sans-serif;
    --body-font: "Roboto", sans-serif;
    --h1: clamp(2.7468rem, 4vw, 3.052rem);
    --h2: clamp(2.1969rem, 3vw, 2.441rem);
    --h3: clamp(1.7577rem, 2.7vw, 1.953rem);
    --h4: clamp(1.4067rem, 2vw, 1.563rem);
    --h5: 1.0625rem;
    --h6: 1rem;
    --base-h: 230;
    --base-s: 89%;
    --base-l: 65%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-dark: var(--base-h) var(--base-s) calc(var(--base-l) - 8%);
    --accent-h: 237;
    --accent-s: 35%;
    --accent-l: 30%;
    --accent: var(--accent-h) var(--accent-s) var(--accent-l);
    --accent-dark: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 20%);
    --light-h: 186;
    --light-s: 49%;
    --light-l: 98%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --dark-h: 237;
    --dark-s: 57%;
    --dark-l: 15%;
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    --dark-100: var(--dark-h) calc(var(--dark-s) - 7%) calc(var(--dark-l) + 15%);
    --dark-200: var(--dark-h) calc(var(--dark-s) - 7%) calc(var(--dark-l) + 10%);
    --dark-300: var(--dark-h) calc(var(--dark-s) - 7%) calc(var(--dark-l) + 8%);
    --dark-400: var(--dark-h) calc(var(--dark-s) - 7%) calc(var(--dark-l) + 5%);
    --dark-500: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 2%);
    --dark-600: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 4%);
    --dark-700: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 6%);
    --dark-800: var(--dark-h) var(--dark-s) calc(var(--dark-l) - 8%);
    --black-h: 0;
    --black-s: 0%;
    --black-l: 29%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --white: 0 0% 100%;
    --primary: 204 88% 44%;
    --secondary: 208 23% 55%;
    --success: 161 74% 45%;
    --danger: 5 76% 55%;
    --warning: 43 99% 49%;
    --info: 190 76% 40%;
    --text: var(--black);
    --heading: var(--black);
    --border: 0 0% 92%;
}

html {
    font-size: 100%;
}

body {
    position: relative;
    background: hsl(var(--white));
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: hsl(var(--text));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1.5rem 0 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    color: hsl(var(--dark));
}

h1 {
    margin-top: 0;
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
    letter-spacing: 0.05em;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.xsm-text {
    font-size: 0.75rem;
}

small,
.sm-text {
    font-size: 0.875rem;
}

.lg-text {
    font-size: 1.125rem;
}

.xl-text {
    font-size: 1.25rem;
}

.xxl-text {
    font-size: 1.5rem;
}

.fw-regular {
    font-weight: 400;
}

.fw-md {
    font-weight: 500;
}

.lh-1 {
    line-height: 1;
}

.hr {
    background-color: hsl(var(--base));
}

button:focus {
    outline: none !important;
}

.btn:focus,
.btn.focus {
    outline: none;
    box-shadow: none;
}

input:focus {
    outline: none;
}

.form-control {
    border: 1px solid hsl(var(--border));
}

textarea {
    resize: none;
}

@media screen and (min-width: 1600px) {
    .container-restricted {
        max-width: 1540px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/*---------------------------------------
    0.2 Modules Style
-----------------------------------------*/
/*---------------------------------------
    2.1 Logo
-----------------------------------------*/
.logo {
    width: 220px;
    height: 40px;
}


@media (max-width: 1399px) {
    .logo {
        width: 228px;
        height: 40px;
    }
}

@media (max-width: 1300px) {
    .logo {
        width: 238px;
        height: 40px;
    }
}

.header-fluid-custom-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/*---------------------------------------
    2.2 List
-----------------------------------------*/
.list {
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.list--row {
    flex-direction: row;
}

.list--base li {
    position: relative;
    display: flex;
    align-items: center;
}

.list--base li::before {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    line-height: 10px;
    border-radius: 50%;
    margin-right: 15px;
    background: hsl(var(--base));
    box-shadow: 0 0 0 5px hsl(var(--base) / 0.2);
}

/*---------------------------------------
    2.3 Form Control
-----------------------------------------*/
.form--control {
    height: 45px;
    line-height: 32px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d9d9d9;
    background: transparent;
    color: hsl(var(--dark));
    transition: all 0.3s ease;
}

.form--control[type="password"],
.form--control[type="text"] {
    padding: 0.375rem 1.7rem 0.375rem 0.75rem !important;
}

.form--control::placeholder {
    color: hsl(var(--dark) / 0.6);
}

.form--control:focus {
    outline: none;
    border: 1px solid hsl(var(--black) / 0.4);
    background: transparent;
    color: hsl(var(--heading));
    box-shadow: none;
}

.form--control:-webkit-autofill {
    -webkit-text-fill-color: hsl(var(--heading)) !important;
    -webkit-box-shadow: 0 0 0px 1000px hsl(var(--base) / 0.1) inset;
}

.form--control[readonly] {
    background: hsl(var(--dark) / 0.1);
    border: 1px solid hsl(var(--dark) / 0.05);
    color: hsl(var(--dark-400));
}

.form--control[readonly]::placeholder {
    color: hsl(var(--dark-400) / 0.5);
}

.form--control[disabled] {
    background: hsl(var(--dark) / 0.1);
    border: 1px solid hsl(var(--dark) / 0.05);
    color: hsl(var(--dark-400));
}

.form--control[disabled]::placeholder {
    color: hsl(var(--dark-400) / 0.5);
}

.form--control[type="file"]::-webkit-file-upload-button {
    background: #f7f7f7 !important;
    color: hsl(var(--dark)) !important;
}

textarea.form--control {
    height: auto;
    line-height: normal;
    padding-top: 15px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d9d9d9;
    background: transparent;
    color: hsl(var(--dark));
    transition: all 0.3s ease;
}

textarea.form--control::placeholder {
    color: hsl(var(--dark-400) / 0.5);
}

textarea.form--control:focus {
    outline: none;
    border: 1px solid hsl(var(--black) / 0.4);
    background: transparent;
    color: hsl(var(--heading));
    box-shadow: none;
}

/*---------------------------------------
    2.4 Preloader
-----------------------------------------*/
.preloader {
    position: relative;
    display: grid;
    place-items: center;
    height: 100vh;
    background-color: hsl(var(--dark));
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.preloader__img {
    width: 80px;
    height: 80px;
    animation: imageBeat 2s infinite ease;
}

.preloader__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*---------------------------------------
    2.5 Back To Top
-----------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 5px hsl(var(--black) / 0.5);
    display: none;
}

/*---------------------------------------
    2.6 Button Style
-----------------------------------------*/
.btn {
    font-family: var(--heading-font);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 3px;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 14px;
}

.btn--primary {
    background: hsl(var(--primary));
    color: hsl(var(--white));
}

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

.btn--secondary {
    background: hsl(var(--secondary));
    color: hsl(var(--white));
}

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

.btn--success {
    background: hsl(var(--success));
    color: hsl(var(--white));
}

.btn--success:hover {
    color: hsl(var(--white));
    background: hsl(var(--success));
}

.btn--danger {
    background: hsl(var(--danger));
    color: hsl(var(--white));
}

.btn--danger:hover {
    color: hsl(var(--white));
    background: hsl(var(--danger));
}

.btn--warning {
    background: hsl(var(--warning));
    color: hsl(var(--white));
}

.btn--warning:hover {
    color: hsl(var(--white));
    background: hsl(var(--warning));
}

.btn--info {
    background: hsl(var(--info));
    color: hsl(var(--white));
}

.btn--info:hover {
    color: hsl(var(--white));
    background: hsl(var(--info));
}

.btn--dark {
    background: hsl(var(--dark));
    color: hsl(var(--white));
}

.btn--dark:hover {
    color: hsl(var(--white));
    background: hsl(var(--dark));
}

.btn--light {
    background-color: hsl(var(--light));
    color: hsl(var(--dark));
}

.btn--light:hover {
    color: hsl(var(--white));
    background: hsl(var(--dark));
}

.btn--base {
    position: relative;
    isolation: isolate;
    background: hsl(var(--base));
    color: hsl(var(--light));
}

.btn--base:hover {
    color: hsl(var(--white));
    border: 1px solid transparent;
}

.btn--login {
    font-size: 14px;
    padding: 5px 8px;
    background: hsl(var(--light));
}

.btn--signup {
    color: hsl(var(--light));
    font-size: 14px;
    padding: 5px 8px;
    background: hsl(var(--base));
}

.btn--signup:hover {
    color: hsl(var(--light));
}

.btn--view {
    padding: 0;
    display: inline-grid;
    place-content: center;
    width: 30px;
    height: 30px;
    background: hsl(var(--base));
    font-size: 14px;
    line-height: 1;
    color: hsl(var(--light));
}

.btn--view:hover {
    box-shadow: none;
    color: hsl(var(--light));
}

.btn--add-more {
    min-width: 91px;
    height: 100%;
    font-size: 14px;
    line-height: 1;
}

.btn--sqr {
    line-height: 1;
    padding: 0.75rem;
    font-size: 20px;
}

.btn--sm {
    padding: 0.3rem 1rem;
}

.btn--md {
    padding: 0.5rem 1rem;
}

.btn--lg {
    padding: 0.625rem 1.25rem;
}

.btn--xl {
    padding: 0.7rem 1.5rem;
}

.btn--xxl {
    padding: 1rem 2rem;
}

/*---------------------------------------
    2.7 Section 
-----------------------------------------*/
.section {
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(30px, 4vw, 61px);
}

.section--sm {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section--top {
    padding-top: clamp(30px, 4vw, 60px);
}

.section--bottom {
    padding-bottom: clamp(30px, 4vw, 60px);
}

.section__head {
    padding-bottom: 30px;
}

.section__para {
    max-width: 60ch;
}

.section__title span {
    background: linear-gradient(to right, hsl(var(--danger)), hsl(var(--canvas-900)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section__subtitle {
    display: inline-block;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: var(--heading-font);
    color: hsl(var(--base));
}

.section__subtitle::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 4px;
    border-radius: 20px;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    background-color: hsl(var(--base) / 0.5);
}

.section__subtitle::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    top: 50%;
    left: calc(100% + 30px);
    transform: translateY(-50%);
    background-color: hsl(var(--base));
}

/*---------------------------------------
    2.8 Icon
-----------------------------------------*/
.icon {
    position: relative;
    display: inline-block;
}

.icon--circle {
    border-radius: 50%;
    text-align: center;
}

.icon--sqr {
    border-radius: 5px;
    text-align: center;
}

.icon--xs {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

.icon--sm {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
}

.icon--md {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
}

.icon--lg {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
}

.icon--xl {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 35px;
}

.icon--xxl {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 40px;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000000cf;
    z-index: 9998;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.8;
}

.header-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--dark) / 0.7);
    z-index: 999;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.header-overlay.show {
    visibility: visible;
    opacity: 1;
}

.search--toggler {
    font-size: 14px;
    color: hsl(var(--light));
}

/*---------------------------------------
    2.10 User
-----------------------------------------*/
.user {
    display: flex;
}

.user__img {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.user__img--sm {
    width: 35px;
    height: 35px;
}

.user__img--md {
    width: 45px;
    height: 45px;
}

.user__img--lg {
    width: 50px;
    height: 50px;
}

.user__img--xl {
    width: 70px;
    height: 70px;
}

.user__img--xxl {
    width: 130px;
    height: 130px;
}

.user__img-is {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*---------------------------------------
    2.11 Banner
-----------------------------------------*/
.banner {
    position: relative;
    isolation: isolate;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(var(--black) / 0.5);
    mix-blend-mode: darken;
    z-index: -1;
}

.banner__content {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 575px) {
    .banner__content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .banner__content h2 {
        font-size: 25px;
    }
}

/*---------------------------------------
    2.12 Table
-----------------------------------------*/
/* table css start */
.custom--table {
    margin-bottom: 0;
    border-radius: 5px;
    box-shadow: 0 5px 10px hsl(var(--black) / 0.1);
    background: hsl(var(--light));
}

.custom--table> :not(:first-child) {
    border-top: none;
}

.custom--table> :not(caption)>*>* {
    border-bottom-width: 0;
}

.custom--table thead {
    background-color: hsl(var(--base));
}

.custom--table thead th {
    padding: 0.8rem 1.25rem;
    font-family: var(--heading-font);
    font-size: 14px;
    color: hsl(var(--white));
    text-align: center;
    font-weight: 500;
    vertical-align: middle;
}

.custom--table thead th:first-child {
    border-radius: 5px 0 0 0;
    text-align: left;
}

.custom--table thead th:last-child {
    border-radius: 0 5px 0 0;
    text-align: right;
}

.custom--table tbody td {
    border-top: none;
    border-bottom: 1px solid hsl(var(--base) / 0.2);
    padding: 0.8rem 1.25rem;
    font-family: var(--heading-font);
    font-size: 14px;
    color: hsl(var(--heading));
    text-align: center;
    vertical-align: middle;
}

.custom--table tbody td:first-child {
    text-align: left;
}

.custom--table tbody td:last-child {
    text-align: right;
}

.custom--table tbody tr:last-child td {
    border-bottom: none;
}

.custom--table [data-label] {
    position: relative;
}

.custom--table [data-label]::before {
    position: absolute;
    content: attr(data-label);
    font-weight: 500;
    left: 0;
    padding: 0.8125rem 0.9375rem;
    display: none;
    color: hsl(var(--heading));
}

.custom--table-separate {
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: none;
    background: transparent;
}

.custom--table-separate thead th:first-child {
    border-radius: 5px 0 0 0;
}

.custom--table-separate thead th:last-child {
    border-radius: 0 5px 0 0;
}

.custom--table-separate tbody tr {
    background: hsl(var(--base) / 0.1);
}

.custom--table-separate tbody td {
    border-bottom: none;
}

.custom--table-separate tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

.custom--table-separate tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody tr {
        display: block;
        border: 1px solid hsl(var(--base) / 0.1);
    }

    .table-responsive--md tbody tr+tr {
        margin-top: 10px;
    }

    .table-responsive--md tbody tr:nth-child(odd) {
        background-color: hsl(var(--base) / 0.03);
    }

    .table-responsive--md tbody tr:last-child td {
        border-top: 1px solid hsl(var(--base) / 0.2);
    }

    .table-responsive--md tbody tr td {
        padding-right: 15px;
    }

    .table-responsive--md tbody tr td+td {
        border-top: 1px solid hsl(var(--base) / 0.1);
    }

    .table-responsive--md tbody tr td:last-child {
        padding-right: 15px;
    }

    .table-responsive--md tr th,
    .table-responsive--md tr td {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-left: 45% !important;
        text-align: right !important;
    }

    .table-responsive--md tr th:first-child,
    .table-responsive--md tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--md [data-label]::before {
        display: block;
        color: hsl(var(--dark));
    }
}

@media (max-width: 767px) {
    .table-responsive--sm thead {
        display: none;
    }

    .table-responsive--sm tbody tr:nth-child(odd) {
        background-color: hsl(var(--accent-400));
    }

    .table-responsive--sm tbody tr td {
        padding-right: 15px;
    }

    .table-responsive--sm tbody tr td:last-child {
        padding-right: 15px;
    }

    .table-responsive--sm tr th,
    .table-responsive--sm tr td {
        display: block;
        padding-left: 45% !important;
        text-align: right !important;
        border-bottom: 1px solid hsl(var(--base) / 0.25);
    }

    .table-responsive--sm tr th:first-child,
    .table-responsive--sm tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--sm [data-label]::before {
        display: block;
    }
}

/* table css end */
/*---------------------------------------
    2.13 Accordion
-----------------------------------------*/

/*---------------------------------------
    2.14 Badge
-----------------------------------------*/
.badge {
    border-radius: 2px;
}

.badge--primary {
    background: hsl(var(--primary) / 0.15);
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.badge--secondary {
    background: hsl(var(--secondary) / 0.15);
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.badge--danger {
    background: hsl(var(--danger) / 0.15);
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.badge--success {
    background: hsl(var(--success) / 0.15);
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.badge--warning {
    background: hsl(var(--warning) / 0.15);
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.badge--info {
    background: hsl(var(--info) / 0.15);
    border: 1px solid hsl(var(--info));
    color: hsl(var(--info));
}

.badge--dark {
    background: hsl(var(--dark) / 0.15);
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

/*---------------------------------------
    2.15 Form Select
-----------------------------------------*/
.form--select {
    position: relative;
    isolation: isolate;
}

.form--select::before {
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: hsl(var(--dark));
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    background: transparent;
    display: grid;
    place-items: center;
    padding-inline: 15px;
    border-radius: 0 0.25rem 0.25rem 0;
    border-left: 0;
    pointer-events: none;
    z-index: 1;
    font-size: 14px;
}

.form--select .form-select {
    height: 45px;
    border-radius: 5px;
    padding-right: 46px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #d9d9d9;
    background: transparent;
    color: hsl(var(--dark));
}

.form--select .form-select:focus {
    outline: none;
    border: 1px solid hsl(var(--black) / 0.4);
    background: transparent;
    color: hsl(var(--dark));
    box-shadow: none;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group small {
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 12px;
}

.form-group .input-group-text.mobile-code {
    background: hsl(var(--white));
    border: 1px solid #d9d9d9;
    border-right: 0;
}

/*---------------------------------------
    2.16 Custom Check
-----------------------------------------*/
.custom--check {
    border-radius: 1px !important;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--light));
}

.custom--check:checked {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base) / 0.5);
}

.custom--check:focus {
    border: 1px solid hsl(var(--base) / 0.5);
    box-shadow: none;
}

/*---------------------------------------
    2.17 Breadcrumbs
-----------------------------------------*/
.breadcrumbs {
    align-items: center;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumbs__item::after {
    content: "";
    position: relative;
    display: inline-block;
    right: -1rem;
    height: 16px;
    width: 2px;
    background-color: hsl(var(--white));
    transform: skew(-25deg);
}

.breadcrumbs__item:last-child {
    margin-right: 0;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

.breadcrumbs__link {
    color: hsl(var(--white));
}

.breadcrumbs__link:hover {
    color: hsl(var(--base));
}

/*---------------------------------------
    2.18 Custom Pagination
-----------------------------------------*/
.pagination {
    margin-bottom: 0;
}

.pagination .page-item {
    margin-right: 1rem;
}

.pagination .page-item.active .page-link {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
}

.pagination .page-item.disabled .page-link {
    background: hsl(var(--accent-300));
    border-color: hsl(var(--accent-300));
}

.pagination .page-item:last-child {
    margin-right: 0;
}

.pagination .page-item:first-child .page-link {
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.pagination .page-item:last-child .page-link {
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
    text-align: center;
    font-size: 14px;
    background: transparent;
}

.pagination .page-link:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

/*---------------------------------------
    2.19 Custom Card
-----------------------------------------*/
.custom--card {
    border-radius: 8px;
    background-color: hsl(var(--white));
    border: 0;
    box-shadow: 0 2px 10px 0 #e5e5e5;
}

.custom--card .card-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0;
    padding: 1.2rem;
    background: transparent;
    font-family: var(--heading-font);
    font-size: 1rem;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    font-weight: 500;
}

.custom--card .card-header__icon {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
}

.custom--card .card-title {
    margin-top: 0;
    margin-bottom: 0;
}

.custom--card .card-text {
    margin-top: 1rem;
}

.custom--card .card-body {
    padding: 1.5rem;
}

.custom--card .card-footer {
    padding: 1rem 1.5rem;
    background: hsl(var(--base) / 0.1);
    border-top: 1px solid hsl(var(--base) / 0.1);
}

.custom--card-dark {
    border-radius: 3px;
    background: hsl(var(--accent-200));
    border: 1px solid hsl(var(--accent-300));
}

.custom--card-dark .card-header {
    padding: 1rem 1.5rem;
    background: hsl(var(--accent) / 0.5);
    border-bottom: 1px solid hsl(var(--accent-300));
    color: hsl(var(--white));
}

.custom--card-dark .card-title {
    margin-top: 0;
    margin-bottom: 0;
    color: hsl(var(--white));
}

.custom--card-dark .card-text {
    margin-top: 1rem;
    color: hsl(var(--white));
}

.custom--card-dark .card-body {
    padding: 2rem 1.5rem;
}

.custom--card-dark .card-footer {
    padding: 1rem 1.5rem;
    background: hsl(var(--accent) / 0.5);
    border-top: 1px solid hsl(var(--accent-300));
}

/*---------------------------------------
    2.20 Custom Modal
-----------------------------------------*/
.modal .modal-content {
    border-radius: 5px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--base) / 0.2);
}

.modal .modal-title {
    margin-top: 0;
    color: hsl(var(--heading));
}

.modal .btn-close,
.modal-header .close {
    position: relative;
    background: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.modal-header .close {
    border: none;
}

.modal .btn-close:hover {
    outline: none;
    box-shadow: none;
    color: hsl(var(--base));
}

.modal .btn-close:focus {
    outline: none;
    box-shadow: none;
    color: hsl(var(--base));
}

.modal-footer .btn--primary {
    background-color: hsl(var(--base));
}

.modal .modal-body p {
    margin-bottom: 0;
}

.modal .modal-header {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid hsl(var(--base) / 0.2);
}

.modal .modal-footer {
    padding: 0.6rem 1rem;
    border-top: 1px solid hsl(var(--base) / 0.2);
}

.modal-dark .modal-content {
    border-radius: 5px;
    background: hsl(var(--dark-400));
    border: 1px solid hsl(var(--dark-400));
}

.modal-dark .modal-title {
    margin-top: 0;
    color: hsl(var(--white));
}

.modal-dark .btn-close {
    position: relative;
    background: transparent;
    color: hsl(var(--white));
    opacity: 1;
    transition: all 0.3s ease;
}

.modal-dark .btn-close:hover {
    outline: none;
    box-shadow: none;
    color: hsl(var(--base));
}

.modal-dark .btn-close::after {
    content: "\f00d";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 34px;
}

.modal-dark .modal-body {
    color: hsl(var(--white));
}

.modal-dark .modal-header {
    border-bottom: 1px solid hsl(var(--dark-500));
    background: hsl(var(--dark-500));
}

.modal-dark .modal-footer {
    border-top: 1px solid hsl(var(--dark-500));
    background: hsl(var(--dark-500));
}

/*---------------------------------------
    2.21 User Group List
-----------------------------------------*/
.user-group-list li {
    margin-right: -25px;
}

.user-group-list li .user__img {
    box-shadow: 0 0 8px hsl(var(--black) / 0.5);
}

/*---------------------------------------
    2.22 Input Group
-----------------------------------------*/

.input--group .input-group-text {
    display: grid;
    place-items: center;
    padding-inline: 15px;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--dark));
    position: absolute;
    right: 10px;
    top: 13px;
    padding: 0;
    display: inline-block;
    z-index: 99;
}

/*---------------------------------------
    2.23 Header Primary
-----------------------------------------*/
.header-primary {
    padding: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: hsl(var(--dark-600));
}

/*---------------------------------------
    2.24 App Nav
-----------------------------------------*/
.app-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: hsl(var(--dark-600));
}

@media screen and (min-width: 992px) {
    .app-nav {
        display: none;
    }
}

.app-nav__menu {
    --gap: 5px;
}

.app-nav__menu-link {
    display: block;
    text-align: center;
}

.app-nav__menu-link.active .app-nav__menu-icon {
    color: hsl(var(--base));
}

.app-nav__menu-link-important-container {
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 1;
    pointer-events: auto;
    display: flex;
    justify-content: center;
}

.app-nav__menu-link-important {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    top: -23px;
    left: 0;
    position: relative;
    border: 3px solid hsl(var(--white));
    border-radius: 50%;
    background: hsl(var(--dark-600));
    font-size: 24px;
    color: hsl(var(--white));
}

.app-nav__menu-link-important:hover {
    color: hsl(var(--white));
}

.app-nav__menu-icon {
    display: block;
    font-size: 18px;
    line-height: 1;
    color: hsl(var(--light) / 0.9);
}

.app-nav__menu-icon i {
    font-size: 18px !important;
}

.app-nav__menu-icon img {
    height: 18px;
    width: 18px;
}

.app-nav__menu-text {
    display: block;
    font-size: 12px;
    color: hsl(var(--light) / 0.9);
}

.app-nav__drawer {
    position: absolute;
    left: -100%;
    width: 300px;
    bottom: 60px;
    height: calc(100vh - 120px);
    padding: 20px 15px;
    background-color: hsl(var(--dark));
    transition: all 0.3s ease;
}

.app-nav__drawer-open .app-nav__drawer {
    left: 0;
}

.app-nav__drawer-list {
    --gap: 0;
}

.app-nav__drawer-list li {
    border-bottom: 1px solid hsl(var(--light) / 0.1);
}

.app-nav__drawer-list li:last-child {
    border-bottom: none;
}

.app-nav__drawer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 5px;
    padding-bottom: 5px;
    color: hsl(var(--light));
}

.app-nav__drawer-link:hover {
    color: hsl(var(--base));
}

.app-nav__drawer-icon {
    display: inline;
    color: hsl(var(--base));
}

.app-nav__drawer-text {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.03em;
}

/*---------------------------------------
    2.25 Odd List
-----------------------------------------*/
.odd-list {
    width: 100%;
    transition: all 0.3s ease;
    padding-bottom: 60px;
}

@media screen and (min-width: 992px) {
    .odd-list {
        padding-bottom: 0;
        padding-top: 15px;
    }
}

.odd-list__item {
    padding: 10px 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    display: flex;
    flex-wrap: wrap;
    --gap: 0.2rem;
    justify-content: space-between;
    align-items: center;
}

.odd-list__item:last-child {
    border-bottom: none;
}

.odd-list__item-title {
    font-size: 0.875rem;
}

.odd-list__head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px;
    z-index: 8;
    border-top: 1px solid hsl(var(--light) / 0.1);
    border-bottom: 1px solid hsl(var(--light) / 0.1);
    background-color: hsl(var(--dark));
    justify-content: center;
    border-radius: 5px 5px 0 0;
}

@media screen and (min-width: 992px) {
    .odd-list__head {
        position: relative;
        top: auto;
        border-radius: 10px 10px 0 0;
    }
}

.odd-list__body {
    margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
    .odd-list__body {
        min-height: calc(100vh - 440px);
    }
}

.odd-list__body-content {
    box-shadow: 0 5px 10px hsl(var(--dark) / 0.15);
    border-radius: 0 0 5px 5px;
    background: hsl(var(--white));
}

@media (max-width: 992px) {
    .odd-list__body-content {
        padding: 15px;
    }
}

.odd-list__team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.odd-list__team-name {
    font-size: 12px;
    color: hsl(var(--light));
}

.odd-list__team-img {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ffffff9d;
}

.odd-list__team-img-is {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.odd-list__team-divide {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 3px;
    background: hsl(var(--light) / 0.1);
    font-size: 12px;
    color: hsl(var(--light));
}

.odd-list__title {
    font-size: 14px;
    padding: 5px;
    background: hsl(var(--dark) / 0.05);
}

@media screen and (min-width: 992px) {
    .odd-list__title {
        padding: 5px 15px;
    }
}

.odd-list__options {
    flex-wrap: wrap;
    --gap: 5px;
}

.odd-list__options li {
    width: 100%;
    flex-grow: 1;
}

@media screen and (min-width: 575px) {
    .odd-list__options li {
        width: 33%;
    }
}

@media screen and (min-width: 992px) {
    .odd-list__options li {
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .odd-list__options li {
        width: 33%;
    }
}

@media screen and (min-width: 1600px) {
    .odd-list__options li {
        width: 25%;
    }
}

.odd-list__option {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 3px;
    background: hsl(var(--dark) / 0.07);
    font-size: 0.875rem;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .odd-list__option:hover {
        background: hsl(var(--base) / 0.15);
    }
}

.odd-list__option-text {
    display: block;
}

.odd-list__option-ratio {
    display: block;
    font-weight: 500;
    color: hsl(var(--primary));
}

.odd-list__btn {
    margin: 0;
    padding: 0;
}

.odd-list__btn .form-check-input {
    display: none;
}

.odd-list__btn .form-check-input:checked+.odd-list__option {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.odd-list__btn .form-check-input:checked+.odd-list__option .odd-list__option-ratio {
    color: hsl(var(--white));
}

/*---------------------------------------
    2.26 Sports Category
-----------------------------------------*/
.sports-category {
    position: sticky;
    top: 60px;
    background: hsl(var(--dark-600));
    border-top: 1px solid hsl(var(--light) / 0.1);
    border-bottom: 1px solid hsl(var(--light) / 0.1);
    z-index: 9;
}

@media screen and (min-width: 992px) {
    .sports-category {
        width: 72px;
        height: calc(100vh - 61px);
        border-top: none;
        border-bottom: none;
        border-right: 1px solid hsl(var(--light) / 0.2);
    }
}

@media screen and (min-width: 992px) {
    .sports-category__list {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }
}

.sports-category__list.arrow-prev-active .sports-category__arrow-prev {
    opacity: 1;
    visibility: visible;
    background-image: linear-gradient(90deg, hsl(var(--base) / 0.5), transparent);
}

.sports-category__list.arrow-prev-active .sports-category__arrow-next {
    opacity: 0;
    visibility: hidden;
}

.sports-category__link {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    width: 72px;
    padding: 8px 0;
    position: relative;
}

.sports-category__link:hover {
    background: hsl(var(--light) / 0.1);
}

.sports-category__link.active {
    background: hsl(var(--light) / 0.1);
}

.sports-category__link.active .sports-category__icon {
    color: hsl(var(--base));
}

.sports-category__link.active .sports-category__text {
    color: hsl(var(--base));
}

.sports-category__icon {
    font-size: 18px;
    line-height: 1;
    color: hsl(var(--light) / 0.8);
}

.sports-category__text {
    display: block;
    width: 100%;
    margin-top: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
    padding: 0 5px;
    text-align: center;
    color: hsl(var(--light) / 0.8);
}

.sports-category__notification {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 2px 4px;
    background: hsl(var(--danger));
    border-radius: 3px;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: hsl(var(--light));
}

.sports-category__arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    border: none;
    z-index: 1;
    transition: all 0.3s ease;
    color: hsl(var(--white));
    background-color: transparent;
}

.sports-category__arrow-prev {
    left: 0;
    background-image: linear-gradient(89deg, hsl(var(--base) / 0.5), transparent);
}

.sports-category__arrow-next {
    right: 0;
    background-image: linear-gradient(268deg, hsl(var(--base) / 0.5), transparent);
}

/*---------------------------------------
    2.27 Sports Sub Category
-----------------------------------------*/
.sports-sub-category {
    position: sticky;
    top: 122px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: hsl(var(--dark-600));
    border-bottom: 1px solid hsl(var(--light) / 0.1);
    z-index: 9;
}

@media screen and (min-width: 992px) {
    .sports-sub-category {
        display: none;
    }
}

.sports-sub-category__text {
    font-size: 12px;
    color: hsl(var(--light));
}

.sports-sub-category__toggler {
    color: hsl(var(--light));
}

.sports-sub-category__toggler:hover {
    color: hsl(var(--base));
}

.sports-sub-category__toggler:focus {
    color: hsl(var(--base));
}

/*---------------------------------------
    2.28 Sports Sub Category Drawer
-----------------------------------------*/
.sub-category-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    background: hsl(var(--dark-600));
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .sub-category-drawer {
        position: sticky;
        top: 60px;
        left: 72px;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        height: calc(100vh - 61px);
        max-width: 170px;
        min-width: 170px;
        z-index: 1;
    }

    .sub-category-drawer::after {
        content: "";
        width: 10px;
        height: 10px;
        background-image: url(../images/radius.svg);
        background-position: left top;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 100%;
    }
}

@media screen and (min-width: 1920px) {
    .sub-category-drawer {
        max-width: 200px;
    }
}

.sub-category-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid hsl(var(--light) / 0.2);
}

@media screen and (min-width: 992px) {
    .sub-category-drawer__head {
        display: none;
    }
}

.sub-category-drawer__head-content {
    display: block;
    padding-left: 15px;
    color: hsl(var(--light));
    font-size: 14px;
    line-height: 1;
}

.sub-category-drawer__head-close {
    display: inline-block;
    border: none;
    border-left: 1px solid hsl(var(--light) / 0.2);
    background: transparent;
    padding-inline: 15px;
    aspect-ratio: 1;
    color: hsl(var(--light));
}

.sub-category-drawer__body {
    padding-top: 15px;
    padding-bottom: 15px;
    height: calc(100vh - 48px);
}

@media all and (orientation: landscape) {
    .sub-category-drawer__body {
        min-height: 568px;
    }
}

@media screen and (min-width: 992px) {
    .sub-category-drawer__body {
        height: calc(100vh - 61px);
    }
}

.sub-category-drawer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-category-drawer__link:hover .sub-category-drawer__text {
    color: hsl(var(--base));
}

.sub-category-drawer__list {
    --gap: 0.7rem;
}

.sub-category-drawer__flag {
    display: inline-block;
    width: 30px;
    height: 30px;
}

.sub-category-drawer__flag-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #484848;
}

.sub-category-drawer__text {
    display: block;
    color: hsl(var(--light) / 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .sub-category-drawer__text {
        font-size: 12px;
    }
}

.sub-category-drawer__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.sub-category-drawer__title-icon {
    display: inline-block;
    font-size: 18px;
    color: hsl(var(--base));
}

.sub-category-drawer__title-text {
    display: inline-block;
    color: hsl(var(--light));
    font-size: 14px;
    font-family: var(--heading-font);
}

/*---------------------------------------
    2.29 Open Sub category drawer
-----------------------------------------*/
.open-sub-category-drawer .sub-category-drawer {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/*---------------------------------------
    2.30 League Title
-----------------------------------------*/
.league-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.league-title__name {
    color: hsl(var(--base));
}

.league-title__flag-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    border-radius: 5px;
}

.league-title__name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--dark));
}

/*---------------------------------------
    2.31 Sports Body
-----------------------------------------*/
.sports-body {
    padding-top: 1.5rem;
    padding-bottom: calc(60px + 1.5rem);
    min-height: calc(100vh - 230px);
    background: hsl(var(--dark) / 0.05);
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .sports-body {
        padding-top: 15px;
        padding-bottom: 1rem;
        position: relative;
        min-height: calc(100vh - 60px);
    }
}

/*---------------------------------------
    2.32 Sports Card
-----------------------------------------*/
.sports-card {
    display: block;
    background: hsl(var(--white));
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 5px 15px;
}

.sports-card:hover .sports-card__list-item {
    background: hsl(var(--base) / 0.15);
}

.sports-card__head {
    display: flex;
    align-items: center;
    padding: 10px;
}

.sports-card__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.sports-card__team-flag-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    padding: 5px;
    background: #f1f1f1;
}

.sports-card__team-name {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: hsl(var(--dark));
}

.sports-card__info {
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.sports-card__info-text {
    display: block;
    font-size: 0.6875rem;
    line-height: 1;
    color: hsl(var(--dark));
}

.sports-card__info-time {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1;
    color: hsl(var(--dark));
}

.sports-card__stream {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: hsl(var(--dark) / 0.5);
}

.sports-card__stream.live {
    color: hsl(var(--danger));
}

.sports-card__list {
    display: flex;
    gap: 5px;
    padding: 0 5px 5px 5px;
}

.sports-card__list-item {
    display: block;
    flex-grow: 1;
    padding: 8px;
    border-radius: 5px;
    background: hsl(var(--dark) / 0.07);
    text-align: center;
    transition: all 0.3s ease;
}

.sports-card__list-item:first-child {
    border-radius: 5px 5px 5px 10px;
}

.sports-card__list-item:last-child {
    border-radius: 5px 5px 10px 5px;
}

.sports-card__list-name {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: hsl(var(--dark));
}

.sports-card__list-count {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color: hsl(var(--base-dark));
}

.sports-card__market-title {
    font-size: 0.875rem;
    color: #6f6f6f;
}

/*---------------------------------------
    2.33 Accordion Odd
-----------------------------------------*/
.accordion--odd .accordion-item:first-of-type {
    border-radius: 0;
}

.accordion--odd .accordion-item {
    border-top: 1px solid hsl(var(--dark-100) / 0.15);
    border-left: none;
    border-right: none;
    border-bottom: none;
}

@media screen and (min-width: 992px) {
    .accordion--odd .accordion-item:last-of-type .accordion-body {
        padding-bottom: 15px;
    }
}

.accordion--odd .accordion-header {
    background: #ddd;
    margin-top: 0;
    margin-bottom: 15px;
}

.accordion--odd .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion--odd .accordion-button {
    padding: 1rem 5px;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (min-width: 992px) {
    .accordion--odd .accordion-button {
        padding: 15px;
    }
}

.accordion--odd .accordion-button::after {
    content: "\f107";
    background-image: unset;
    font-family: "Line Awesome Free";
    font-weight: 900;
}

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

.accordion--odd .accordion-button {
    background-color: hsl(var(--dark) / 0.7);
    color: #fff;
    box-shadow: none;
}

.accordion--odd .accordion-body {
    padding: 0 5px 5px;
    border-radius: 0 0 10px 10px;
    background-color: hsl(var(--white));
}

@media screen and (min-width: 992px) {
    .accordion--odd .accordion-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*---------------------------------------
    2.34 Modal bet
-----------------------------------------*/
.modal-bet__title {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: hsl(var(--light));
}

.modal-bet .modal-title {
    margin-top: 0;
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--light));
}

.modal-bet .modal-content {
    background: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
}

.modal-bet .btn-close {
    flex-shrink: 0;
    color: hsl(var(--light));
    background: transparent;
    font-size: 24px;
    line-height: 1;
    opacity: 1;
}

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

.modal-bet .modal-header {
    background: hsl(var(--dark-600));
    border-bottom: 1px solid hsl(var(--dark) / 0.01);
}

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

.modal-bet .modal-body .odd-list__head {
    border-radius: 0;
    background: hsl(var(--dark-100));
}

.modal-bet .modal-body .odd-list__mid {
    border-radius: 0;
    background: hsl(var(--dark-100));
}

.modal-bet .modal-body__content {
    padding: 1rem;
}

.modal-bet .modal-footer {
    border-top: 1px solid hsl(var(--light) / 0.01);
    background: hsl(var(--dark-600));
}

.modal-bet__input {
    border: 1px solid hsl(var(--dark-100) / 0.5);
    background: hsl(var(--dark-600));
    color: hsl(var(--light));
}

.modal-bet__input:focus {
    background: hsl(var(--dark-600) / 0.5);
    border: 1px solid hsl(var(--dark-100) / 0.5);
    color: hsl(var(--light));
}

.modal-bet__input::placeholder {
    color: hsl(var(--light) / 0.5);
}

.modal-bet__info {
    display: block;
    font-size: 12px;
    line-height: 1.2;
}

.modal-bet__return {
    color: hsl(var(--light));
    font-weight: 500;
}

.header-button {
    position: relative;
}

span.bet-count {
    position: absolute;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    padding: 3px;
    font-size: 11px;
    display: flex;
    align-items: center;
    background: hsl(var(--base));
    color: hsl(var(--white));
    justify-content: center;
    top: -7px;
    right: -8px;
    line-height: 1;
}

/*---------------------------------------
    2.37 Widget Card
-----------------------------------------*/
.widget-card {
    border-radius: 5px;
    border: 1px solid hsl(var(--base) / 0.1);
    background: hsl(var(--base-dark) / 0.15);
}

@media screen and (min-width: 992px) {
    .widget-card {
        background: hsl(var(--base) / 0.2);
    }
}

.widget-card--primary {
    position: relative;
    background: hsl(var(--dark));
    isolation: isolate;
    overflow: hidden;
}

.widget-card--primary::before {
    content: "";
    position: absolute;
    inset: -15px;
    background-image: url(../images/wave.svg);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

.widget-card--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/wave.svg);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

.widget-card--primary .widget-card__id {
    color: hsl(var(--light) / 0.8);
}

.widget-card--primary .widget-card__reload {
    color: hsl(var(--light) / 0.8);
}

.widget-card--primary .widget-card__balance {
    color: hsl(var(--light));
}

.widget-card--primary .widget-card__balance-text {
    color: hsl(var(--light));
}

.widget-card--secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 0;
}

.widget-card--secondary .widget-card__body {
    padding: 0;
    flex-grow: 1;
}

.widget-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    background: hsl(var(--dark-600));
    border-radius: 5px 5px 0 0;
}

.widget-card__id {
    font-size: 13px;
}

.widget-card__reload {
    padding-right: 0;
    padding-left: 0;
}

.widget-card__icon-container {
    display: inline-block;
}

.widget-card__icon {
    position: relative;
    display: grid;
    place-content: center;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background: hsl(var(--base));
    border-radius: 50%/10%;
    isolation: isolate;
    font-size: 26px;
    color: hsl(var(--light));
}

.widget-card__icon::before {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: -5%;
    left: -5%;
    background: hsl(var(--base));
    border-radius: 5%/50%;
    z-index: -1;
}

.widget-card__body {
    padding: 15px;
}

.widget-card__balance {
    margin-top: 0;
    margin-bottom: 5px;
}

.widget-card__balance-text {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.widget-card__deposit {
    margin-top: 10px;
    font-size: 12px;
    background: hsl(var(--base));
    color: hsl(var(--light));
    border-radius: 2px;
}

.widget-card__deposit:hover {
    color: hsl(var(--light));
}

/*---------------------------------------
    2.38 User Dashboard
-----------------------------------------*/
.user-dashboard {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: calc(100vh - 120px);
}

@media all and (orientation: landscape) {
    .user-dashboard {
        min-height: 568px;
    }
}

@media screen and (min-width: 992px) {
    .user-dashboard {
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: calc(100vh - 430px);
    }
}

@media screen and (min-width: 1400px) {
    .user-dashboard {
        min-height: calc(100vh - 330px);
    }
}

/*---------------------------------------
    2.39 Dashboard Sidebar
-----------------------------------------*/
@media screen and (min-width: 992px) {
    .dashboard-sidebar {
        top: 90px;
    }
}

.dashboard-sidebar__nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: hsl(var(--base) / 0.2);
}

@media screen and (min-width: 992px) {
    .dashboard-sidebar__nav-toggle {
        display: none;
    }
}

.dashboard-sidebar__nav-toggle-text {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--dark));
    font-weight: 500;
}

.dashboard-sidebar__nav-toggle-btn {
    padding: 0;
    line-height: 1;
    font-size: 24px;
    background: transparent;
    color: hsl(var(--base-dark));
    display: flex;
    flex-wrap: wrap;
}

.dashboard-sidebar__nav-toggle-btn i {
    font-size: 2rem;
}

.dashboard-sidebar__nav-toggle-btn:hover {
    color: hsl(var(--base-dark));
}

.dashboard-sidebar__nav-toggle-btn:focus {
    color: hsl(var(--base-dark));
}

.trans-number {
    width: calc(100% - 126px);
}

.trans-btn {
    width: 102px;
}

@media (max-width: 575px) {
    .trans-number {
        width: 100%;
    }

    .trans-btn {
        width: 100%;
    }

    .trans-btn .btn {
        width: 100%;
    }
}

.cate-ta {
    position: relative;
}

.submenu {
    position: absolute;
    width: 160px;
    padding: 15px;
    background-color: #fff;
}

/*---------------------------------------
    2.40 Dashboard Menu
-----------------------------------------*/
.dashboard-menu {
    position: fixed;
    inset: 0;
    background: hsl(var(--dark));
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    max-height: 100vh;
    overflow-y: auto;
    width: 320px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

@media screen and (min-width: 992px) {
    .dashboard-menu {
        margin-top: 1rem;
        position: unset;
        inset: unset;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        background: transparent;
        max-height: unset;
        width: unset;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        box-shadow: 0 2px 10px 0 #e5e5e5;
        max-height: 100vh;
        overflow-y: auto;
        border-radius: 5px;
    }
}

.dashboard-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsl(var(--dark-600));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__head {
        display: none;
    }
}

.dashboard-menu__head-text {
    display: block;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--light));
}

.dashboard-menu__head-close {
    padding: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    color: hsl(var(--light));
    font-size: 32px;
    border: 0;
    border-radius: 0;
}

.dashboard-menu__head-close i {
    font-size: 24px;
}

.dashboard-menu__head-close:hover {
    color: hsl(var(--light));
}

.dashboard-menu__head-close:focus {
    color: hsl(var(--light));
}

.dashboard-menu__body {
    background: hsl(var(--dark-500));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body {
        background: transparent;
    }
}

.dashboard-menu__body .accordion-header {
    margin-top: 0;
}

.dashboard-menu__body .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.dashboard-menu__body .accordion-button:not(.collapsed) {
    background: transparent;
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion-button:not(.collapsed) {
        background: transparent;
        box-shadow: none;
        color: hsl(var(--dark));
    }
}

.dashboard-menu__body .accordion-button:not(.collapsed)::after {
    content: "\f106";
    transform: rotate(0);
}

.dashboard-menu__body .accordion-button:not(.collapsed)[aria-expanded="false"]::after {
    content: "\f107";
}

.dashboard-menu__body .accordion-item:last-of-type {
    border-radius: 0;
}

.dashboard-menu__body .accordion-item {
    border: none;
    background: hsl(var(--dark-300));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion-item {
        background: transparent;
    }
}

.dashboard-menu__body .accordion-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: hsl(var(--light));
    font-size: 14px;
    line-height: 1.2;
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion-button {
        background: hsl(var(--base) / 0.1);
        color: hsl(var(--dark));
    }
}

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

.dashboard-menu__body .accordion-button:hover {
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion-button:hover {
        color: hsl(var(--base));
    }
}

.dashboard-menu__body .accordion-button::after {
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    background-image: unset;
}

.dashboard-menu__body .accordion-button__icon {
    display: inline-block;
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    color: hsl(var(--base));
}

.dashboard-menu__body .accordion-body {
    padding: 0;
}

.dashboard-menu__body .accordion.has-sub .accordion-button {
    padding-left: 48px;
    padding-right: 15px;
    background: hsl(var(--dark-300));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion.has-sub .accordion-button {
        background: transparent;
    }
}

.dashboard-menu__body .accordion.has-sub .accordion-button:hover {
    box-shadow: none;
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion.has-sub .accordion-button:hover {
        color: hsl(var(--base));
    }
}

.dashboard-menu__body .accordion.has-sub .accordion-button:focus {
    box-shadow: none;
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__body .accordion.has-sub .accordion-button:focus {
        color: hsl(var(--base));
    }
}

.dashboard-menu__list {
    background: hsl(var(--dark-100));
    gap: 0;
}

@media screen and (min-width: 992px) {
    .dashboard-menu__list {
        background: transparent;
        gap: 0;
    }
}

.dashboard-menu__list li {
    background: hsl(var(--dark-600));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__list li {
        background: transparent;
    }

    .dashboard-menu__list li:last-child {
        border-bottom: none;
    }
}

.dashboard-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    background: transparent;
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__link {
        background: transparent;
        color: hsl(var(--dark));
    }
}

.dashboard-menu__link:hover {
    color: hsl(var(--base));
}

.dashboard-menu__icon {
    display: inline-block;
    flex-shrink: 0;
    /* font-size: 24px; */
    line-height: 1;
    color: hsl(var(--base));
}

.dashboard-menu__icon img {
    height: 14px;
    width: 14px;
}

.dashboard-menu__text {
    display: block;
    flex-grow: 1;
}

.dashboard-menu__inner {
    --gap: 0;
}

.dashboard-menu__inner>li {
    background: hsl(var(--dark-300));
    border-bottom: 1px solid hsl(var(--light) / 0.1);
}

@media screen and (min-width: 992px) {
    .dashboard-menu__inner>li {
        background: #f9f9f9;
        border-bottom: 1px solid hsl(var(--base) / 0.1);
    }
}

.dashboard-menu__inner>li:last-child {
    border-bottom: none;
}

.menu-blance {
    margin: 15px;
}

.dashboard-menu__inner-link {
    display: block;
    padding: 10px 10px 10px 48px;
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .dashboard-menu__inner-link {
        color: hsl(var(--dark));
    }
}

.dashboard-menu__inner-link:hover {
    color: hsl(var(--base));
}

/*---------------------------------------
    2.41 Dashboard Sub Menu
-----------------------------------------*/
.dashboard-submenu {
    --gap: 0;
}

.dashboard-submenu>li {
    border-bottom: 1px solid hsl(var(--light) / 0.1);
}

.dashboard-submenu>li:last-child {
    border-bottom: none;
}

.dashboard-submenu__link {
    display: flex;
    padding: 8px 10px 8px 48px;
    font-size: 13px;
    color: hsl(var(--light));
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .dashboard-submenu__link {
        background: hsl(var(--dark) / 0.05);
        color: hsl(var(--dark));
    }
}

.dashboard-submenu__link:hover {
    color: hsl(var(--base));
}

/*---------------------------------------
    2.42 Dashboard Menu Toggler
-----------------------------------------*/
.dashboard-menu-open .dashboard-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/*---------------------------------------
    2.41 Form Lable
-----------------------------------------*/
.form-label {
    font-size: 14px;
    line-height: 1;
    color: hsl(var(--dark) / 0.8);
    font-weight: 500;
}

/*---------------------------------------
    2.42 Deposit Card
-----------------------------------------*/
.deposit-card {
    padding: 15px;
    border-radius: 5px;
    background: hsl(var(--base) / 0.2);
}

.deposit-card__list {
    --gap: 0;
}

.deposit-card__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    font-size: 14px;
    line-height: 1;
    border-bottom: 1px dashed hsl(var(--base) / 0.5);
}

.deposit-card__list li:first-child {
    padding-top: 0;
}

.deposit-card__list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.deposit-card__amount {
    font-weight: 500;
}

/*---------------------------------------
    2.44 Support Card
-----------------------------------------*/
.support-card {
    border: 1px solid hsl(var(--base) / 0.2);
    border-radius: 5px;
    background: hsl(var(--white));
}

.support-card__title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
    .support-card__title {
        margin-bottom: 0;
    }
}

.support-card__head {
    padding: 12px 15px;
    border-bottom: 1px solid hsl(var(--base) / 0.2);
}

@media screen and (min-width: 768px) {
    .support-card__head {
        display: flex;
        justify-content: space-between;
    }
}

.support-card__date {
    display: block;
    line-height: 1;
}

.support-card__body {
    padding: 12px 15px;
}

.support-card__body-text {
    font-size: 14px;
    margin-bottom: 0;
    color: hsl(var(--dark) / 0.8);
}

.support-card__list {
    --gap: 0.5rem;
}

@media screen and (min-width: 768px) {
    .support-card__list {
        margin-top: 1rem;
    }
}

.support-card__file {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border: 1px solid hsl(var(--base) / 0.2);
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    color: hsl(var(--base));
}

.support-card__file:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

/*---------------------------------------
    2.45 Support List
-----------------------------------------*/
.support-list {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.home-page {
    background: hsl(var(--dark) / 0.05);
}

/*---------------------------------------
    2.46 Home Page
-----------------------------------------*/
@media screen and (min-width: 992px) {
    .home-page {
        display: flex;
        align-items: flex-start;
        background: hsl(var(--dark) / 0.05);
    }
}

/*---------------------------------------
    2.47 Betslip
-----------------------------------------*/
@media screen and (max-width: 991px) {
    .open-betslip .betslip {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .betslip {
        position: fixed;
        top: 60px;
        right: 0;
        left: auto;
        width: 100%;
        height: calc(100vh - 60px);
        z-index: 1019;
        background: #e8e8ec;
        padding: 10px;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        max-width: 370px;
        box-shadow: 5px 0 7px 0px #000000;
    }

    .betslip__head {
        display: block;
        gap: 5px;
        padding: 0.8rem 1rem;
        border-radius: 10px 10px 0 0;
        background: hsl(var(--dark-400));
        border-radius: 10px;
    }

    .betslip__body {
        height: calc(100vh - 405px);
        background: hsl(var(--dark-400));
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }

    .betslip__footer-list {
        gap: 0;
    }

    .list.betslip__list {
        gap: 0px;
    }

    .betslip__footer li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .betslip__footer li:first-child {
        padding-bottom: 8px;
        border-bottom: 1px solid hsl(var(--dark) / 0.1);
    }

    .betslip__footer-text {
        display: block;
        font-size: 12px;
        color: hsl(var(--dark));
        line-height: 1.2;
    }

    .betslip__footer-btn {
        width: 100%;
        color: hsl(var(--light));
    }

    .betslip__footer-bottom {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 1rem;
    }

    .betslip__footer-bottom .form--control {
        border: 1px solid hsl(var(--base));
        color: hsl(var(--dark));
        background: hsl(var(--white));
    }

    .betslip__footer-bottom .form--control::placeholder {
        color: hsl(var(--dark) / 0.4);
    }

    .betslip__footer-bottom .form--control:focus {
        outline: none;
        border: 1px solid hsl(var(--base));
        background: hsl(var(--white));
        color: hsl(var(--dark));
        box-shadow: none;
    }

    .betslip__list {
        --gap: 0.2rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .betslip__list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 1px solid #ddd;
        background: hsl(var(--white));
    }

    .betslip__list li:last-child {
        border-bottom: 0px;
    }

    .betslip__list-close {
        width: 25px;
        display: flex;
        align-items: center;
        border: none !important;
        justify-content: center;
    }

    .btn.betslip__list-close:hover {
        color: hsl(var(--danger)) !important;
    }

    .betslip__list-suspended {
        font-size: 10px;
        background-color: hsl(var(--danger) / 0.07);
        padding: 3px;
        width: 70px;
        text-align: center;
        font-weight: 500;
        margin-top: 3px;
        border-radius: 3px;
        color: hsl(var(--danger));
    }

    .betslip__list-text {
        font-size: 12px;
        margin-top: 3px;
        color: hsl(var(--base));
    }

    .betslip-return {
        font-size: 12px;
    }

    .fullbetslip__selection-body {
        width: 100%;
    }

    .betslip__list-content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 8px;
        line-height: 17.6px;
        display: grid;
        grid-auto-columns: auto auto fit-content(120px);
    }

    .betslip__footer-list .betslip__list-odd {
        color: hsl(var(--base));
        font-weight: 500;
    }

    .betslip__list-close i {
        font-size: 1rem;
    }

    .betslip__list-ratio {
        border: 1px solid #ddd;
        padding: 0px 3px;
        width: 110px;
        font-size: 10px;
        border-radius: 5px;
        background-color: hsl(var(--dark) / 0.03);
    }

    .betslip__list-ratio span {
        font-size: 10px;
        color: hsl(var(--dark) / 0.8);
    }

    .betslip__list-ratio input {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ddd;
        background: transparent !important;
        padding: 0px;
    }

    .betslip__list-ratio input:focus {
        border-color: hsl(var(--base));
    }

    .betslip__list-text {
        font-size: 12px;
        margin-top: 3px;
        color: hsl(var(--base));
    }

    .betslip-return {
        font-size: 12px;
    }

    .fullbetslip__selection-body {
        width: 100%;
    }

    .betslip__list-content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 8px;
        line-height: 17.6px;
        display: grid;
        grid-auto-columns: auto auto fit-content(120px);
    }

    .betslip__footer-list .betslip__list-odd {
        color: hsl(var(--base));
        font-weight: 500;
    }

    .betslip__list-close i {
        font-size: 1rem;
    }

    .btn.betslip__list-close:hover {
        color: hsl(var(--danger)) !important;
    }

    .betslip__list-odd {
        font-size: 12px;
        line-height: 1.5;
        color: hsl(var(--dark));
        letter-spacing: 0.03em;
    }

    .betslip__list-match {
        font-size: 11px;
        line-height: 1.5;
        color: hsl(var(--dark) / 0.9);
        letter-spacing: 0.03em;
    }

    .betslip__list-ratio {
        border: 1px solid #ddd;
        padding: 0px 3px;
        width: 110px;
        font-size: 10px;
        border-radius: 5px;
        background-color: hsl(var(--dark) / 0.03);
    }

    .betslip__list-ratio span {
        font-size: 10px;
        color: hsl(var(--dark) / 0.8);
    }

    .betslip__list-question {
        font-size: 12px;
        line-height: 1.5;
        color: hsl(var(--dark) / 0.7);
        letter-spacing: 0.03em;
        font-weight: 500;
    }

    .betslip__list-ratio input {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ddd;
        background: transparent !important;
        padding: 0px;
    }

    .betslip__list-team {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: hsl(var(--dark));
        letter-spacing: 0.08em;
    }

    .place-btn {
        width: calc(100% - 40px);
        padding-left: 20px;
    }

    .betslip__list-ratio span {
        display: block;
        font-size: 10px;
    }

    .betslip__list-ratio span.amount {
        border-bottom: 1px solid #ddd;
    }

    .betslip__list-content {
        width: calc(100% - 25px);
    }

    .betslip__footer {
        background-color: #fff;
        padding-bottom: 25px;
        border-radius: 10px;
    }
}

@media screen and (min-width: 992px) {
    .betslip {
        display: block;
        position: sticky;
        top: 65px;
        width: 100%;
        max-width: 370px;
        min-width: 370px;
        padding-right: 10px;
        padding-bottom: 15px;
        height: calc(100vh - 65px);
        padding: 10px;
    }

    .betslip__head {
        display: block;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        padding: 0.8rem 1rem;
        border-radius: 10px;
        background: hsl(var(--dark));
    }

    .betslip__head-content {
        padding-left: 10px;
        font-size: 12px;
        color: hsl(var(--light));
    }

    .betslip__body {
        max-height: calc(100vh - 370px);
        background: hsl(var(--base) / 0.05);
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }

    .betslip__footer-list {
        gap: 0;
    }

    .list.betslip__list {
        gap: 0px;
    }

    .betslip__footer li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .betslip__footer li:first-child {
        padding-bottom: 8px;
        border-bottom: 1px solid hsl(var(--dark) / 0.1);
    }

    .betslip__footer-text {
        display: block;
        font-size: 13px;
        color: hsl(var(--dark));
        line-height: 1.2;
    }

    .betslip__footer-btn {
        width: 100%;
        color: hsl(var(--light));
    }

    .betslip__footer-bottom {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 25px;
    }

    .betslip__footer-bottom .form--control {
        border: 1px solid hsl(var(--base));
        color: hsl(var(--dark));
        background: hsl(var(--white));
    }

    .betslip__footer-bottom .form--control::placeholder {
        color: hsl(var(--dark) / 0.4);
    }

    .betslip__footer-bottom .form--control:focus {
        outline: none;
        border: 1px solid hsl(var(--base));
        background: hsl(var(--white));
        color: hsl(var(--dark));
        box-shadow: none;
    }

    .betslip__list {
        --gap: 0.2rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .betslip__list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 1px solid #ddd;
        background: hsl(var(--white));
    }

    .betslip__list li:last-child {
        border-bottom: 0px;
    }

    .betslip__list-close:hover {
        color: hsl(var(--danger));
    }

    .betslip__list-suspended {
        font-size: 10px;
        background-color: hsl(var(--danger) / 0.07);
        padding: 3px;
        width: 70px;
        text-align: center;
        font-weight: 500;
        margin-top: 3px;
        border-radius: 3px;
        color: hsl(var(--danger));
    }

    .betslip__list-ratio input:focus {
        border-color: hsl(var(--base));
    }

    .betslip__list-text {
        font-size: 12px;
        margin-top: 3px;
        color: hsl(var(--base));
    }

    .betslip-return {
        font-size: 12px;
    }

    .fullbetslip__selection-body {
        width: 100%;
    }

    .betslip__list-content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 8px;
        line-height: 17.6px;
        display: grid;
        grid-auto-columns: auto auto fit-content(120px);
    }

    .betslip__footer-list .betslip__list-odd {
        color: hsl(var(--base));
        font-weight: 500;
    }

    .betslip__list-close i {
        font-size: 1rem;
    }

    .betslip__list-ratio {
        border: 1px solid #ddd;
        padding: 0px 3px;
        width: 110px;
        font-size: 10px;
        border-radius: 5px;
        background-color: hsl(var(--dark) / 0.03);
    }

    .betslip__list-ratio span {
        font-size: 10px;
        color: hsl(var(--dark) / 0.8);
    }

    .betslip__list-ratio input {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ddd;
        background: transparent !important;
        padding: 0px;
    }

    .place-btn {
        width: calc(100% - 40px);
        padding-left: 20px;
    }

    .betslip__list-ratio span {
        display: block;
        font-size: 10px;
    }

    .betslip__list-ratio span.amount {
        border-bottom: 1px solid #ddd;
    }

    .betslip__list-content {
        width: calc(100% - 25px);
    }

    .betslip__footer {
        background-color: #fff;
        padding-bottom: 25px;
        border-radius: 10px;
    }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
    .betslip__list-close {
        border: 1px solid hsl(var(--base));
        color: hsl(var(--base));
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-content {
        flex-grow: 1;
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-bet {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-odd {
        font-size: 12px;
        line-height: 1.5;
        color: hsl(var(--dark));
        letter-spacing: 0.03em;
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-team {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: hsl(var(--dark));
        letter-spacing: 0.08em;
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-match {
        font-size: 11px;
        line-height: 1.5;
        color: hsl(var(--dark) / 0.9);
        letter-spacing: 0.03em;
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-question {
        font-size: 12px;
        line-height: 1.5;
        color: hsl(var(--dark) / 0.7);
        letter-spacing: 0.03em;
        font-weight: 500;
    }

    .betslip__list-question span {
        font-weight: 500;
        color: hsl(var(--base));
    }
}

@media screen and (min-width: 992px) {
    .betslip__list-ratio {
        flex-shrink: 0;
        color: hsl(var(--dark));
        font-size: 13px;
    }
}

@media screen and (min-width: 1920px) {
    .betslip {
        max-width: 370px;
        min-width: 370px;
    }
}

/*---------------------------------------
    2.48 Social List
-----------------------------------------*/
.social-list {
    --gap: 0.5rem;
}

.social-list__icon {
    display: inline-block;
    text-decoration: none;
}

.social-list__icon i,
.social-list__icon span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.social-list__icon i:hover,
.social-list__icon span:hover {
    box-shadow: 0 5px 15px 0 hsl(var(--dark) / 0.3);
}

.social-list__icon [class*="facebook"] {
    background: #1877f2;
    color: #fff;
}

.social-list__icon [class*="linkedin"] {
    background: #0077b5;
    color: #fff;
}

.social-list__icon [class*="instagram"] {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}

.social-list__icon [class*="twitter"] {
    background: #1da1f2;
    color: #fff;
}

/*---------------------------------------
    2.49 Hero Slider
-----------------------------------------*/
.hero-slider__content {
    padding: 30px 15px;
    position: relative;
    isolation: isolate;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .hero-slider__content {
        padding: 30px;
    }
}

@media screen and (min-width: 992px) {
    .hero-slider__content {
        padding: 30px 15px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-slider__content {
        padding: 40px 30px;
    }
}

.hero-slider__subtitle {
    display: block;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: hsl(var(--light));
}

.hero-slider__title {
    margin-top: 10px;
    font-size: 20px;
    color: hsl(var(--white));
}

@media screen and (min-width: 1200px) {
    .hero-slider__title {
        font-size: 24px;
    }
}

/*---------------------------------------
    2.50 Primary Menu
-----------------------------------------*/
@media screen and (min-width: 992px) {
    .primary-menu-container {
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: space-between;
        width: 100% !important;
    }
}

.primary-menu {
    --gap: 10px;
}

@media screen and (min-width: 992px) {
    .primary-menu {
        --gap: 15px;
    }
}

@media screen and (min-width: 992px) {
    .primary-menu-lg {
        display: flex;
        --gap: 15px;
    }

    .primary-menu-lg__link {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .primary-menu-lg__link:hover .primary-menu-lg__link-icon {
        color: hsl(var(--base));
    }

    .primary-menu-lg__link:hover .primary-menu-lg__link-text {
        color: hsl(var(--light));
    }

    .primary-menu-lg__link-icon {
        display: inline-block;
        font-size: 20px;
        line-height: 1;
        color: hsl(var(--base));
    }

    .primary-menu-lg__link-text {
        display: inline-block;
        font-size: 13px;
        color: hsl(var(--light));
    }
}

@media screen and (min-width: 992px) and (min-width: 1200px) {
    .primary-menu-lg__link-text {
        font-size: 14px;
    }
}

/*---------------------------------------
    2.52 Login Page
-----------------------------------------*/
.login-page {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: calc(100vh - 305px);
    display: flex;
    align-items: center;
}

/*---------------------------------------
    2.53 Login Form
-----------------------------------------*/
.login-form {
    padding: 30px 15px;
    background: hsl(var(--white));
    border-radius: 5px;
    margin-top: 8px;
}

@media screen and (min-width: 768px) {
    .login-form {
        padding: 50px 40px;
    }
}

.login-form__title {
    margin-top: 0;
    font-size: 18px;
    position: relative;
    padding-bottom: 0.5rem;
}

@media screen and (min-width: 992px) {
    .login-form__title {
        font-size: 24px;
    }
}

.login-form__title::after {
    content: "";
    width: 30px;
    height: 4px;
    background: hsl(var(--base));
    position: absolute;
    left: 0;
    top: 100%;
}

/*---------------------------------------
    2.54 Sidebar nav
-----------------------------------------*/
.sidebar-nav__list {
    --gap: 5px;
}

.sidebar-nav li {
    transition: all 0.3s ease;
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav li:hover {
    border-right: 3px solid hsl(var(--base));
}

.sidebar-nav__link {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: 3px solid transparent;
    font-weight: 500;
    font-size: 14px;
    color: hsl(var(--dark));
    background: hsl(var(--white));
    box-shadow: 0 0 5px hsl(var(--dark) / 0.1);
    border: 1px solid hsl(var(--base) / 0.2);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.sidebar-nav__link:hover {
    padding-left: 15px;
    padding-right: 15px;
    color: hsl(var(--base));
    transition: all 0.3s ease;
}

.sidebar-nav__link.active {
    background: hsl(var(--base) / 0.05);
    border-right: 3px solid hsl(var(--base));
    color: hsl(var(--base));
    transition: all 0.3s ease;
}

/*---------------------------------------
    2.55 Map
-----------------------------------------*/
.map {
    width: 100%;
    height: 300px;
    margin-bottom: -7px;
    mix-blend-mode: luminosity;
}

@media screen and (min-width: 768px) {
    .map {
        height: 600px;
    }
}

/*---------------------------------------
    2.56 Contact Card
-----------------------------------------*/
.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 5px;
    background: hsl(var(--white));
}

@media screen and (min-width: 768px) {
    .contact-card {
        padding: 20px 15px 20px 40px;
        position: relative;
        isolation: isolate;
    }
}

.contact-card__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: hsl(var(--base));
    color: hsl(var(--white));
}

@media screen and (min-width: 768px) {
    .contact-card__icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        position: absolute;
        left: -25px;
        box-shadow: 0 0 5px 8px hsl(var(--dark) / 0.05);
    }

    .contact-card__icon::after {
        content: "";
        position: absolute;
        inset: -5px;
        outline: 2px solid hsl(var(--base));
        border-radius: 50%;
    }
}

.contact-card__title {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.contact-card__text {
    margin-bottom: 0;
    font-size: 14px;
}

/*---------------------------------------
    2.57 QR Code
-----------------------------------------*/
.qr-code-wrapper {
    padding: 15px;
    background: hsl(var(--white));
}

.qr-code {
    padding: 5px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    color: hsl(var(--dark));
}

.qr-code-copy-form {
    display: flex;
}

.qr-code-copy-form input[type="text"] {
    background-color: transparent;
    border: none;
    font-size: 14px;
    width: calc(100% - 75px);
    height: 40px;
}

@media screen and (min-width: 400px) {
    .qr-code-copy-form input[type="text"] {
        font-size: 1rem;
    }
}

.qr-code-copy-form .text-copy-btn {
    width: 75px;
    background-color: hsl(var(--base));
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.qr-code-form {
    position: relative;
}

.qr-code-form .form--control {
    height: 65px;
    padding-right: 95px;
}

.qr-code-form__btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 75px;
    height: calc(100% - 20px);
    font-size: 14px;
}

/*---------------------------------------
    0.3 Theme Style
-----------------------------------------*/
/*---------------------------------------
    3.1 Color
-----------------------------------------*/
.text--primary {
    color: hsl(var(--primary));
}

.text--secondary {
    color: hsl(var(--secondary));
}

.text--success {
    color: hsl(var(--success));
}

.text--danger {
    color: hsl(var(--danger));
}

.text--warning {
    color: hsl(var(--warning));
}

.text--info {
    color: hsl(var(--info));
}

.text--dark {
    color: hsl(var(--dark));
}

.text--light {
    color: hsl(var(--light));
}

.text--white {
    color: hsl(var(--white));
}

.text-clr {
    color: hsl(var(--text));
}

.heading-clr {
    color: hsl(var(--heading));
}

.text--base {
    color: hsl(var(--base));
}

.text--accent {
    color: hsl(var(--accent));
}

.text--accent-400 {
    color: hsl(var(--accent-400));
}

/*---------------------------------------
    3.2 Background
-----------------------------------------*/
.bg--primary {
    background: hsl(var(--primary));
}

.bg--secondary {
    background: hsl(var(--secondary));
}

.bg--success {
    background: hsl(var(--success));
}

.bg--danger {
    background: hsl(var(--danger));
}

.bg--warning {
    background: hsl(var(--warning));
}

.bg--info {
    background: hsl(var(--info));
}

.bg--dark {
    background: hsl(var(--dark));
}

.bg--light {
    background-color: hsl(var(--white));
}

.bg--base {
    background-color: hsl(var(--base));
}

.bg--accent {
    background: hsl(var(--accent));
}

/*---------------------------------------
    3.3 Padding
-----------------------------------------*/
.t-pt-5 {
    padding-top: 5px;
}

.t-pt-10 {
    padding-top: 10px;
}

.t-pt-15 {
    padding-top: 15px;
}

.t-pt-20 {
    padding-top: 20px;
}

.t-pt-25 {
    padding-top: 25px;
}

.t-pt-30 {
    padding-top: 30px;
}

.t-pt-35 {
    padding-top: 35px;
}

.t-pt-40 {
    padding-top: 40px;
}

.t-pt-45 {
    padding-top: 45px;
}

.t-pt-50 {
    padding-top: 50px;
}

.t-pt-55 {
    padding-top: 55px;
}

.t-pt-60 {
    padding-top: 60px;
}

.t-pt-65 {
    padding-top: 65px;
}

.t-pt-70 {
    padding-top: 70px;
}

.t-pt-75 {
    padding-top: 75px;
}

.t-pt-80 {
    padding-top: 80px;
}

.t-pt-85 {
    padding-top: 85px;
}

.t-pt-90 {
    padding-top: 90px;
}

.t-pt-95 {
    padding-top: 95px;
}

.t-pt-100 {
    padding-top: 100px;
}

.t-pt-105 {
    padding-top: 105px;
}

.t-pt-110 {
    padding-top: 110px;
}

.t-pt-115 {
    padding-top: 115px;
}

.t-pt-120 {
    padding-top: 120px;
}

.t-pb-5 {
    padding-bottom: 5px;
}

.t-pb-10 {
    padding-bottom: 10px;
}

.t-pb-15 {
    padding-bottom: 15px;
}

.t-pb-20 {
    padding-bottom: 20px;
}

.t-pb-25 {
    padding-bottom: 25px;
}

.t-pb-30 {
    padding-bottom: 30px;
}

.t-pb-35 {
    padding-bottom: 35px;
}

.t-pb-40 {
    padding-bottom: 40px;
}

.t-pb-45 {
    padding-bottom: 45px;
}

.t-pb-50 {
    padding-bottom: 50px;
}

.t-pb-55 {
    padding-bottom: 55px;
}

.t-pb-60 {
    padding-bottom: 60px;
}

.t-pb-65 {
    padding-bottom: 65px;
}

.t-pb-70 {
    padding-bottom: 70px;
}

.t-pb-75 {
    padding-bottom: 75px;
}

.t-pb-80 {
    padding-bottom: 80px;
}

.t-pb-85 {
    padding-bottom: 85px;
}

.t-pb-90 {
    padding-bottom: 90px;
}

.t-pb-95 {
    padding-bottom: 95px;
}

.t-pb-100 {
    padding-bottom: 100px;
}

.t-pb-105 {
    padding-bottom: 105px;
}

.t-pb-110 {
    padding-bottom: 110px;
}

.t-pb-115 {
    padding-bottom: 115px;
}

.t-pb-120 {
    padding-bottom: 120px;
}

.t-pr-5 {
    padding-right: 5px;
}

.t-pr-10 {
    padding-right: 10px;
}

.t-pr-15 {
    padding-right: 15px;
}

.t-pr-20 {
    padding-right: 20px;
}

.t-pr-25 {
    padding-right: 25px;
}

.t-pr-30 {
    padding-right: 30px;
}

.t-pr-35 {
    padding-right: 35px;
}

.t-pr-40 {
    padding-right: 40px;
}

.t-pr-45 {
    padding-right: 45px;
}

.t-pr-50 {
    padding-right: 50px;
}

.t-pr-55 {
    padding-right: 55px;
}

.t-pr-60 {
    padding-right: 60px;
}

.t-pr-65 {
    padding-right: 65px;
}

.t-pr-70 {
    padding-right: 70px;
}

.t-pr-75 {
    padding-right: 75px;
}

.t-pr-80 {
    padding-right: 80px;
}

.t-pr-85 {
    padding-right: 85px;
}

.t-pr-90 {
    padding-right: 90px;
}

.t-pr-95 {
    padding-right: 95px;
}

.t-pr-100 {
    padding-right: 100px;
}

.t-pr-105 {
    padding-right: 105px;
}

.t-pr-110 {
    padding-right: 110px;
}

.t-pr-115 {
    padding-right: 115px;
}

.t-pr-120 {
    padding-right: 120px;
}

.t-pl-5 {
    padding-left: 5px;
}

.t-pl-10 {
    padding-left: 10px;
}

.t-pl-15 {
    padding-left: 15px;
}

.t-pl-20 {
    padding-left: 20px;
}

.t-pl-25 {
    padding-left: 25px;
}

.t-pl-30 {
    padding-left: 30px;
}

.t-pl-35 {
    padding-left: 35px;
}

.t-pl-40 {
    padding-left: 40px;
}

.t-pl-45 {
    padding-left: 45px;
}

.t-pl-50 {
    padding-left: 50px;
}

.t-pl-55 {
    padding-left: 55px;
}

.t-pl-60 {
    padding-left: 60px;
}

.t-pl-65 {
    padding-left: 65px;
}

.t-pl-70 {
    padding-left: 70px;
}

.t-pl-75 {
    padding-left: 75px;
}

.t-pl-80 {
    padding-left: 80px;
}

.t-pl-85 {
    padding-left: 85px;
}

.t-pl-90 {
    padding-left: 90px;
}

.t-pl-95 {
    padding-left: 95px;
}

.t-pl-100 {
    padding-left: 100px;
}

.t-pl-105 {
    padding-left: 105px;
}

.t-pl-110 {
    padding-left: 110px;
}

.t-pl-115 {
    padding-left: 115px;
}

.t-pl-120 {
    padding-left: 120px;
}

/*---------------------------------------
    3.4 Margin
-----------------------------------------*/
.t-mt-5 {
    margin-top: 5px;
}

.t-mt-10 {
    margin-top: 10px;
}

.t-mt-15 {
    margin-top: 15px;
}

.t-mt-20 {
    margin-top: 20px;
}

.t-mt-25 {
    margin-top: 25px;
}

.t-mt-30 {
    margin-top: 30px;
}

.t-mt-35 {
    margin-top: 35px;
}

.t-mt-40 {
    margin-top: 40px;
}

.t-mt-45 {
    margin-top: 45px;
}

.t-mt-50 {
    margin-top: 50px;
}

.t-mt-55 {
    margin-top: 55px;
}

.t-mt-60 {
    margin-top: 60px;
}

.t-mt-65 {
    margin-top: 65px;
}

.t-mt-70 {
    margin-top: 70px;
}

.t-mt-75 {
    margin-top: 75px;
}

.t-mt-80 {
    margin-top: 80px;
}

.t-mt-85 {
    margin-top: 85px;
}

.t-mt-90 {
    margin-top: 90px;
}

.t-mt-95 {
    margin-top: 95px;
}

.t-mt-100 {
    margin-top: 100px;
}

.t-mt-105 {
    margin-top: 105px;
}

.t-mt-110 {
    margin-top: 110px;
}

.t-mt-115 {
    margin-top: 115px;
}

.t-mt-120 {
    margin-top: 120px;
}

.t-mb-5 {
    margin-bottom: 5px;
}

.t-mb-10 {
    margin-bottom: 10px;
}

.t-mb-15 {
    margin-bottom: 15px;
}

.t-mb-20 {
    margin-bottom: 20px;
}

.t-mb-25 {
    margin-bottom: 25px;
}

.t-mb-30 {
    margin-bottom: 30px;
}

.t-mb-35 {
    margin-bottom: 35px;
}

.t-mb-40 {
    margin-bottom: 40px;
}

.t-mb-45 {
    margin-bottom: 45px;
}

.t-mb-50 {
    margin-bottom: 50px;
}

.t-mb-55 {
    margin-bottom: 55px;
}

.t-mb-60 {
    margin-bottom: 60px;
}

.t-mb-65 {
    margin-bottom: 65px;
}

.t-mb-70 {
    margin-bottom: 70px;
}

.t-mb-75 {
    margin-bottom: 75px;
}

.t-mb-80 {
    margin-bottom: 80px;
}

.t-mb-85 {
    margin-bottom: 85px;
}

.t-mb-90 {
    margin-bottom: 90px;
}

.t-mb-95 {
    margin-bottom: 95px;
}

.t-mb-100 {
    margin-bottom: 100px;
}

.t-mb-105 {
    margin-bottom: 105px;
}

.t-mb-110 {
    margin-bottom: 110px;
}

.t-mb-115 {
    margin-bottom: 115px;
}

.t-mb-120 {
    margin-bottom: 120px;
}

.t-mr-5 {
    margin-right: 5px;
}

.t-mr-10 {
    margin-right: 10px;
}

.t-mr-15 {
    margin-right: 15px;
}

.t-mr-20 {
    margin-right: 20px;
}

.t-mr-25 {
    margin-right: 25px;
}

.t-mr-30 {
    margin-right: 30px;
}

.t-mr-35 {
    margin-right: 35px;
}

.t-mr-40 {
    margin-right: 40px;
}

.t-mr-45 {
    margin-right: 45px;
}

.t-mr-50 {
    margin-right: 50px;
}

.t-mr-55 {
    margin-right: 55px;
}

.t-mr-60 {
    margin-right: 60px;
}

.t-mr-65 {
    margin-right: 65px;
}

.t-mr-70 {
    margin-right: 70px;
}

.t-mr-75 {
    margin-right: 75px;
}

.t-mr-80 {
    margin-right: 80px;
}

.t-mr-85 {
    margin-right: 85px;
}

.t-mr-90 {
    margin-right: 90px;
}

.t-mr-95 {
    margin-right: 95px;
}

.t-mr-100 {
    margin-right: 100px;
}

.t-mr-105 {
    margin-right: 105px;
}

.t-mr-110 {
    margin-right: 110px;
}

.t-mr-115 {
    margin-right: 115px;
}

.t-mr-120 {
    margin-right: 120px;
}

.t-ml-5 {
    margin-left: 5px;
}

.t-ml-10 {
    margin-left: 10px;
}

.t-ml-15 {
    margin-left: 15px;
}

.t-ml-20 {
    margin-left: 20px;
}

.t-ml-25 {
    margin-left: 25px;
}

.t-ml-30 {
    margin-left: 30px;
}

.t-ml-35 {
    margin-left: 35px;
}

.t-ml-40 {
    margin-left: 40px;
}

.t-ml-45 {
    margin-left: 45px;
}

.t-ml-50 {
    margin-left: 50px;
}

.t-ml-55 {
    margin-left: 55px;
}

.t-ml-60 {
    margin-left: 60px;
}

.t-ml-65 {
    margin-left: 65px;
}

.t-ml-70 {
    margin-left: 70px;
}

.t-ml-75 {
    margin-left: 75px;
}

.t-ml-80 {
    margin-left: 80px;
}

.t-ml-85 {
    margin-left: 85px;
}

.t-ml-90 {
    margin-left: 90px;
}

.t-ml-95 {
    margin-left: 95px;
}

.t-ml-100 {
    margin-left: 100px;
}

.t-ml-105 {
    margin-left: 105px;
}

.t-ml-110 {
    margin-left: 110px;
}

.t-ml-115 {
    margin-left: 115px;
}

.t-ml-120 {
    margin-left: 120px;
}

/*---------------------------------------
    3.5 Utility Classes
-----------------------------------------*/
.t-heading-font {
    font-family: var(--heading-font);
}

.t-body-font {
    font-family: var(--body-font);
}

.t-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.t-link--base {
    color: hsl(var(--base));
}

.t-link--base:hover {
    color: hsl(var(--base));
}

.t-link:hover {
    text-decoration: none;
}

.t-short-para {
    max-width: 50ch;
}

.pass-toggle {
    cursor: pointer;
}

.pass-toggle:hover {
    cursor: pointer;
}

/*---------------------------------------
    3.6 Animation
-----------------------------------------*/
@keyframes btnVideo {
    0% {
        box-shadow: 0 0 0 0 hsl(var(--warning));
    }

    50% {
        box-shadow: 0 0 0 10px hsl(var(--warning) / 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px hsl(var(--warning) / 0.04);
    }
}

@keyframes circle {
    0% {
        transform: rotate(0deg) translate(-60px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(-60px) rotate(-360deg);
    }
}

@keyframes goright {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(80px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes goleft {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-80px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes topRight {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(80px, -80px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes topLeft {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(80px, 80px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes circlerotate {
    0% {
        transform: rotate(0deg) translate(-60px);
    }

    100% {
        transform: rotate(360deg) translate(-60px);
    }
}

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

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

@keyframes goTop {
    0% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-20px) translateX(-50%);
    }

    100% {
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes heartBeat {
    0% {
        outline: 0 solid rgba(var(--r), var(--g), var(--b), 0.5);
    }

    25% {
        outline: 5px solid rgba(var(--r), var(--g), var(--b), 0.5);
    }

    50% {
        outline: 10px solid rgba(var(--r), var(--g), var(--b), 0.5);
    }

    75% {
        outline: 5px solid rgba(var(--r), var(--g), var(--b), 0.5);
    }

    100% {
        outline: 0 solid rgba(var(--r), var(--g), var(--b), 0.5);
    }
}

@keyframes imageBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/*---------------------------------------
    0.4 Layouts Style
-----------------------------------------*/
/*---------------------------------------
    4.1 Footer
-----------------------------------------*/
.footer {
    padding: 30px 15px;
    background: hsl(var(--white));
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .footer {
        position: relative;
        isolation: isolate;
        overflow: hidden;
    }
}

.footer--light {
    border-radius: 10px;
    box-shadow: 0 5px 15px hsl(var(--dark) / 0.15);
}

@media screen and (min-width: 992px) {
    .footer--light::before {
        content: "";
        position: absolute;
        inset: -30px;
        background-image: url(../images/wave-dark.svg);
        background-size: contain;
        background-position: right bottom;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .footer--light::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url(../images/wave-dark.svg);
        background-size: contain;
        background-position: right bottom;
        background-repeat: no-repeat;
        z-index: -1;
        inset: -70px;
    }
}

.footer--dark {
    background: hsl(var(--dark));
}

@media screen and (min-width: 992px) {
    .footer--dark::before {
        content: "";
        position: absolute;
        inset: -30px;
        background-image: url(../images/wave.svg);
        background-size: contain;
        background-position: right bottom;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .footer--dark::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url(../images/wave.svg);
        background-size: contain;
        background-position: right bottom;
        background-repeat: no-repeat;
        z-index: -1;
        inset: -70px;
    }
}

.footer--dark .footer__title {
    color: hsl(var(--light));
}

.footer--dark .footer__about {
    color: hsl(var(--light));
}

.footer--dark .footer__link {
    color: hsl(var(--light) / 0.8);
}

.footer__title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.footer__about {
    max-width: 45ch;
    font-size: 14px;
    color: hsl(var(--dark));
}

.footer__list {
    --gap: 5px;
}

.footer__list li {
    line-height: 1;
}

.footer__link {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    color: hsl(var(--dark));
}

.footer__link:hover {
    color: hsl(var(--base));
}

.footer-bottom {
    padding: 15px;
    border-radius: 10px;
    background: hsl(var(--white));
}

@media screen and (min-width: 576px) {
    .footer-bottom {
        padding: 10px 15px;
        box-shadow: 0 0 15px hsl(var(--dark) / 0.15);
    }
}

.footer-bottom--dark {
    padding: 15px 0 90px;
    border-radius: 0;
    background: hsl(var(--dark-700));
    color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
    .footer-bottom--dark {
        padding: 15px 0;
    }
}

.footer__flag {
    width: 50px;
    height: 25px;
    display: inline-block;
}

.footer__flag-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*---------------------------------------
    4.2 Sidebar
-----------------------------------------*/
.sidebar {
    top: 75px;
}

/*---------------------------------------
    4.3 Contact Section
-----------------------------------------*/
.contact-section {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
}

.contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: hsl(var(--base));
    mix-blend-mode: multiply;
}

/*# custom css */
label.required:after {
    content: "*";
    color: #dc3545 !important;
    margin-left: 2px;
}

.dashboard-menu__link.active,
.dashboard-menu__inner-link.active {
    background: hsl(var(--base));
}

.dashboard-menu__link.active .dashboard-menu__icon,
.dashboard-menu__link.active .dashboard-menu__text,
.dashboard-menu__inner-link.active {
    color: hsl(var(--white));
}

.sub-category-drawer__link,
.sub-category-drawer__link.active .sub-category-drawer__text {
    color: hsl(var(--base));
}

.no-question-found {
    text-align: center;
    justify-content: center;
}

.no-question-found::after {
    display: none;
}

.option-odd-list__item button {
    min-width: 76px;
}

.odd-list__option.active,
.option-odd-list__item button.active {
    background: hsl(var(--base) / 0.7);
    color: hsl(var(--white));
}

.odd-list__option.active .odd-list__option-ratio {
    color: hsl(var(--white));
}

.bet-to-remove {
    background: hsl(var(--danger) / 0.2) !important;
}

.bet-to-remove .betslip__list-content,
.bet-to-remove .mobile-betslip__list-content {
    position: relative;
}

.bet-to-remove .betslip__list-content:hover .bet-to-remove__text,
.bet-to-remove .mobile-betslip__list-content:hover .bet-to-remove__text {
    visibility: visible;
    opacity: 1;
}

.bet-to-remove .betslip__list-close,
.bet-to-remove .mobile-betslip__list-close {
    border-color: hsl(var(--danger));
    background: hsl(var(--danger));
    color: hsl(var(--white));
}

.bet-to-remove__text {
    display: grid;
    place-content: center;
    padding: 10px 15px;
    border-radius: 3px;
    position: absolute;
    background: hsl(var(--base));
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: 13px;
    line-height: 1.2;
    color: hsl(var(--white));
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.bet-type {
    padding: 15px 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
}

.bet-type__btn {
    display: inline-block;
    width: 100%;
    padding: 8px 15px;
    border: 1px solid hsl(var(--dark) / 0.3);
    background: transparent;
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--dark));
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.bet-type__btn:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.bet-type__btn.active {
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.custom-switch .form-check-input {
    margin-left: 0;
}

/*---------------------------------------
    Select Language
-----------------------------------------*/
.select-lang {
    position: relative;
    isolation: isolate;
    display: flex;
    gap: 5px;
}

.select-lang::before {
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: hsl(var(--light));
    position: absolute;
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 0 0.25rem 0.25rem 0;
    pointer-events: none;
    z-index: 1;
    font-size: 12px;
}

@media screen and (min-width: 992px) {
    .select-lang::before {
        padding-right: 0;
    }
}

.select-lang--container {
    padding-top: 3px;
    padding-bottom: 3px;
}

.select-lang__icon {
    position: relative;
    color: hsl(var(--base));
    top: auto;
    left: auto;
}

.select-lang .form-select {
    border: none;
    padding: 0;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--light));
    background: transparent;
}

@media screen and (min-width: 992px) {
    .select-lang__icon {
        position: absolute;
        left: -7px;
        top: -4px;
    }

    .select-lang .form-select {
        padding: 0 12px;
    }

    .betting-body {
        min-height: calc(100vh - 615px);
    }
}

.select-lang .form-select:focus {
    box-shadow: none;
}

.select-lang option {
    padding-left: 30px;
    padding-right: 30px;
    background-color: hsl(var(--accent-dark));
}

@media (max-width: 475px) {
    .google-captcha * {
        max-width: 260px !important;
    }
}

.dashboard-menu__inner {
    display: none;
}

.dashboard-menu__inner-link.active {
    background-color: hsl(var(--base));
}

.dashboard-menu__list li.active .dashboard-menu__inner {
    display: block;
}

@media (min-width: 992px) {
    .dashboard-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .dashboard-sidebar::-webkit-scrollbar-track {
        background-color: #cccccc;
    }

    .dashboard-sidebar::-webkit-scrollbar-thumb {
        background: hsl(var(--base));
        background: #aaaaaa;
    }
}

button.rotate::after {
    content: "\f106" !important;
    color: hsl(var(--base));
}

@media (max-width: 991px) {
    .dashboard-menu__inner-link.active {
        background-color: hsl(var(--base) / 0.3);
    }
}

@media only screen and (max-width: 575px) and (min-width: 424px) {
    .col-xsm-6 {
        width: 50%;
    }
}

.border--base {
    border: 1px solid hsl(var(--base));
}

.dashboard-menu__list li .accordion-button.rotate::after {
    content: "\f106";
    color: hsl(var(--base));
}

.dashboard-sidebar {
    position: sticky;
    top: 120px;
    z-index: 99;
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        z-index: 9999;
    }
}

.removeFile {
    font-size: 20px !important;
    line-height: 1;
}

.modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 111;
}

.deposit-usd .text {
    line-height: 1;
    transform: translateY(2px);
}

.login-form .input-group .form-control {
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;
}

.input-group-text {
    border: 1px solid hsl(var(--base) / 0.15);
}

.login-form .input-group .phone-number.form-control {
    border-left: 0;
    margin-left: 0 !important;
    border-radius: 0 3px 3px 0 !important;
}

.input-group-text.mobile-code {
    border-right: 0;
}

.betslip__body {
    background: #fff;
    border: 1px solid #dddddddb;
    margin: 10px 0;
    border-radius: 10px;
    margin-top: 0px;
}

.game-title {
    text-align: center;
    padding: 15px 0 7px 0;
}

.fs-size--45 {
    font-size: 45px;
}

.fs-size--15 {
    font-size: 15px;
}

.btn-outline--base {
    background: unset;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.btn-outline--warning {
    background: unset;
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.btn-outline--success {
    background: unset;
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.btn-outline--danger {
    background: unset;
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.btn-outline--info {
    background: unset;
    border: 1px solid hsl(var(--info));
    color: hsl(var(--info));
}

.btn-outline--base.active,
.btn-outline--base:hover {
    background: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.sports-category .slick-track,
.sports-sub-category .slick-track {
    margin-left: 0 !important;
}

@media (max-width: 991px) {
    .sub-category-drawer__flag {
        width: 20px;
        height: 20px;
    }

    .sub-category-drawer__flag-img {
        margin: auto 0;
        margin-top: 5px;
    }

    .sub-category-drawer__text {
        font-size: 12px !important;
    }

    .sub-category-drawer__link {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .right-side-nav {
        display: none;
    }
}

@media (max-width: 374px) {
    .logo {
        max-width: 120px;
    }
}

.bet-type__live,
.bet-type__upcoming {
    display: inline-block;
    width: 100%;
    padding: 6px 8px;
    border: 1px solid hsl(var(--white));
    background: transparent;
    font-size: 14px;
    line-height: 1.2;
    color: hsl(var(--white));
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.bet-type__live:hover,
.bet-type__upcoming:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.bet-type__live.active,
.bet-type__upcoming.active {
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.post-card {
    height: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.post-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-card__thumb {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
}

.post-card__thumb img {
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    max-height: 250px;
}

.post-card__content {
    padding: 20px;
}

.post-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -0.3125rem -0.625rem;
    padding-left: 0px;
}

.post-meta li {
    margin: 0.3125rem 0.625rem;
    font-size: 14px;
    list-style: none;
}

.post-meta li a {
    color: #6f6f6f;
    display: flex;
    align-items: center;
}

.post-meta li a:hover {
    color: #95bf46;
}

.post-meta li a i {
    font-size: 1.125rem;
}

.post-card__thumb .post-meta {
    position: absolute;
    bottom: 17px;
    left: 25px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.post-card__thumb .post-meta li a {
    font-size: 14px;
}

.blog-details__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-details__thumb img {
    width: 100%;
}

.blog-details__thumb .post__date {
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 75px;
    text-align: center;
}

.blog-details__thumb .post__date .date {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    background-color: #95bf46;
    padding: 10px 5px;
    width: 100%;
    line-height: 1;
}

.blog-details__thumb .post__date .month {
    background-color: #ffffff;
    padding: 4px 5px;
    width: 100%;
    line-height: 1;
    font-size: 18px;
}

.blog-details__content {
    margin-top: 30px;
}

.blog-details__content p {
    margin-top: 20px;
}

.blog-details__content .blog-details__title {
    font-size: 24px;
}

.blog-details__content blockquote {
    margin-top: 30px;
    margin-bottom: 0;
}

blockquote {
    font-size: 18px;
    color: #6f6f6f;
    font-style: italic;
    text-align: center;
    padding: 50px 60px;
    background-color: #002046;
    color: #fff;
}

@media (max-width: 575px) {
    blockquote {
        padding: 30px 40px;
        font-size: 16px;
    }
}

.blog-details__footer {
    text-align: center;
    padding-top: 50px;
}

.blog-details__footer .caption {
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-social__link {
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-social__link li {
    list-style: none;
}

.blog-social__link li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    border-radius: 30px;
}

.blog-social__link li a:hover {
    background-color: hsl(var(--base));
    color: #ffffff;
}

.sidebar {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .sidebar {
        padding-left: 0;
    }
}

.sidebar .widget+.widget {
    margin-top: 35px;
}

@media (max-width: 767px) {
    .sidebar .widget+.widget {
        margin-top: 30px;
    }
}

.sidebar .widget {
    padding: 25px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 8px;
}

.sidebar .widget .search-form {
    position: relative;
}

.sidebar .widget .search-form input {
    width: 100%;
    border: 1px solid #e5e5e5;
}

.sidebar .widget .search-form .search-btn {
    position: absolute;
    color: #95bf46;
    background-color: transparent;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #6f6f6f;
    width: 50px;
    height: 100%;
}

.sidebar .widget .widget__title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.sidebar .widget .widget__title::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: hsl(var(--base));
}

.sidebar .widget .map iframe {
    width: 100%;
}

.sidebar .list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .list li:first-child {
    padding-top: 0;
}

.sidebar .list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .list li .caption {
    font-weight: 600;
}

.sidebar .list li .caption::after {
    content: " :";
}

.sidebar .list li .info {
    float: right;
}

.sidebar .categories__list li:first-child a {
    padding-top: 0;
}

.sidebar .categories__list li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .categories__list li a {
    display: block;
    color: #6f6f6f;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .categories__list li a span {
    float: right;
}

.sidebar .categories__list li a span::before {
    content: "(";
}

.sidebar .categories__list li a span::after {
    content: ")";
}

.sidebar .archive__list li:first-child a {
    padding-top: 0;
}

.sidebar .archive__list li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .archive__list li a {
    display: block;
    color: #6f6f6f;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .archive__list li a:hover {
    color: #95bf46;
}

.sidebar .archive__list li a span {
    float: right;
}

.sidebar .archive__list li a span::before {
    content: "(";
}

.sidebar .archive__list li a span::after {
    content: ")";
}

.sidebar .small-post-list .small-post {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .small-post-list .small-post:first-child {
    padding-top: 0;
}

.sidebar .small-post-list .small-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .small-post-list .small-post__thumb {
    width: 60px;
    height: 50px;
}

.sidebar .small-post-list .small-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.sidebar .small-post-list .small-post__content {
    width: calc(100% - 60px);
    padding-left: 20px;
}

.sidebar .small-post-list .small-post__content .post__title a {
    font-size: 16px;
    font-weight: 600;
}

.bet-chart-heading-area .bet-chart {
    border-radius: 3px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--base) / 0.2);
    padding: 5px 10px;
}

.bet-chart-heading-area .bet-chart span,
i {
    font-size: 14px;
}

.bet-chart-heading-area .bet-chart i:last-of-type {
    margin-left: 2px;
}

@media (max-width: 375px) {
    .bet-chart-heading-area {
        display: block !important;
    }

    .bet-chart-heading-area h5 {
        margin-bottom: 10px;
    }

    .bet-chart-heading-area .bet-chart {
        display: inline-block;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .bet-table {
        overflow-x: auto;
    }

    .bet-table table {
        width: unset;
        min-width: 1100px;
    }
}

.banner-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.banner_slide {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
}

.banner_image {
    width: 100%;
}

.hero-slider__content {
    position: absolute;
    bottom: 0;
}

.banner_overlay {
    position: absolute;
    z-index: 900;
    width: 800px;
    height: 100%;
    left: 50%;
    margin-left: -400px;
}

.banner_overlay_container {
    position: absolute;
    top: 0;
    width: 70%;
    padding-left: 50px;
}

.banner-slider_nav {
    position: absolute;
    z-index: 9999;
    width: 800px;
    bottom: 0;
    text-align: center;
    left: 50%;
    margin-left: -400px;
    padding-left: 0;
    margin-bottom: 0;
}

.banner-slider_nav_item {
    display: inline;
}

.banner-slider_nav_item>a {
    display: inline-block;
    font-size: 3em;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    padding: 8px 3px;
    line-height: 12px;
}

.banner-slider_nav_item>a:hover {
    color: rgba(0, 0, 0, 0.75);
}

.banner-slider_nav_item--is-selected>a {
    color: #000;
}

.banner_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.banner_button {
    padding: 20px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
}

.hero-slider__content {
    padding: 30px 15px;
    isolation: isolate;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 768px) {
    .hero-slider__content {
        padding: 30px;
    }
}

@media screen and (min-width: 992px) {
    .hero-slider__content {
        padding: 30px 15px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-slider__content {
        padding: 40px 30px;
    }
}

.hero-slider__subtitle {
    display: block;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: hsl(var(--light));
}

.hero-slider__title {
    margin-top: 10px;
    font-size: 20px;
    color: hsl(var(--white));
}

@media screen and (min-width: 1200px) {
    .hero-slider__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 425px) {
    .betslip {
        max-width: 100% !important;
    }
}

.simplebar-offset {
    right: 0;
    bottom: 0;
}

.simplebar-content-wrapper {
    height: auto;
    overflow: hidden scroll;
}

.simplebar-content {
    padding: 0px 4.8px;
}

.simplebar-wrapper {
    margin: 0px -4.8px;
}

@media (max-width: 991px) {
    .sports-sub-category .simplebar-content {
        background: hsl(var(--light) / 0.1);
    }
}

@media only screen and (max-width: 574px) and (min-width: 425px) {
    .col-msm-6 {
        width: 50%;
    }
}

.league-game-count {
    position: absolute;
    padding: 2px 4px;
    background: hsl(var(--danger));
    border-radius: 3px;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: hsl(var(--light));
}

@media (max-width: 991px) {
    .league-game-count {
        top: 0;
    }
}

.betslip-right {
    line-height: 1rem;
}

.validation-msg,
.total-validation-msg,
.total-stake-amount {
    display: block;
    font-size: 0.6875rem;
    padding-top: 2px;
}

.simplebar-horizontal {
    visibility: hidden;
}

.simplebar-horizontal .simplebar-scrollbar {
    width: 0px;
    display: none;
}

.simplebar-vertical {
    visibility: visible;
}

.simplebar-vertical .simplebar-scrollbar {
    height: 725px;
    transform: translate3d(0px, 0px, 0px);
    display: block;
}

.simplebar-placeholder {
    width: auto;
    height: 735px;
}

.maintenance-page {
    display: grid;
    place-content: center;
    width: 100vw;
    height: 100vh;
}

.maintenance-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    font-size: 26px;
    color: #e73d3e;
}

.empty-slip-message {
    display: grid;
    place-content: center;
    height: 50vh;
    color: #cfcfcf;
    font-size: 0.8754rem;
    font-family: inherit;
}

.empty-slip-message img {
    width: 75px;
    margin-bottom: 0.875rem;
}

.bet-return {
    line-height: 1rem;
}

.bet-return span {
    font-size: 12px;
}

.delete-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--danger));
    border-radius: 50%;
    color: #fff;
    border: 0;
}

.delete-btn i {
    font-size: 20px;
}

.betslip__list-close {
    width: 25px;
    display: flex;
    align-items: center;
    border: none !important;
    justify-content: center;
    background-color: transparent !important;
}

.betslip-form {
    display: none;
}

.empty-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 630px);
}

.empty-message img {
    width: 110px;
}

.empty-message p {
    margin-top: 0.5rem;
    color: #b5b5b5;
    font-size: 0.875rem;
}

.widget-card__icon i {
    font-size: 22px;
}

.remove-cursor {
    cursor: unset;
}

/* Custom Dropdown Css End */

#loginModal .modal-content .modal-body {
    padding: 2.8rem;
}

.login-modal .modal-body .close {
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 1;
}

.login-modal .modal-body .close i {
    font-size: 18px;
}

.option-odd-list__item {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.option-odd-list .sports-category__arrow-next,
.option-odd-list .sports-category__arrow-prev {
    background: linear-gradient(268deg, #ffffff, #ffffffc9);
    color: #3b3b3b;
    top: 1px;
    border-radius: 0 3px 3px 0;
    border-left: 0;
    line-height: 1;
    width: 35px;
}

.option-odd-list .sports-category__arrow-prev.slick-disabled {
    display: none !important;
}

.option-odd-list .sports-category__arrow-next {
    right: -14px;
}

.option-odd-list .sports-category__arrow-prev {
    left: -14px;
    left: 0;
    opacity: 1;
    visibility: visible;
    background: linear-gradient(268deg, #ffffffc9, #ffffff);
}

.option-odd-list .sports-category__arrow-next i {
    font-size: 0.875rem;
}

.custom-dropdown {
    margin-bottom: 7px;
}

.option-odd-list .slick-slide {
    margin: 0 6px;
}

.locked {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.locked::before {
    position: absolute;
    content: "\f023";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    left: 0;
    top: 0;
    border-radius: inherit;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
    align-items: center;
}

.option-odd-list__item .btn-light.active:focus,
.option-odd-list__item .btn-light.active:active {
    box-shadow: none !important;
}