@import url(https://fonts.googleapis.com/css?family=Roboto:500);
:root {
    --primary-bg-color: #050a3e;
    --primary-bg-hover: #233ac5;
    --primary-bg-border: #5161c1;
    --dark-body: #292e4a;
    --dark-border: #30314e;
    --transparent-primary: #6c5ffc;
    --transparent-body: #584cd9;
    --transparent-theme: rgba(0, 0, 0, 0.2);
    --transparent-border: rgba(255, 255, 255, 0.1);
    --blue: #1a1a3c;
    --dark-primary-hover: #233ac5;
    --primary-transparentcolor: #eaedf7;
    --darkprimary-transparentcolor: #2b356e;
    --transparentprimary-transparentcolor: rgba(255, 255, 255, 0.05);
    --indigo: #4b0082;
    --purple: #6f42c1;
    --pink: #fc5296;
    --orange: #fd7e14;
    --yellow: #FBB034;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #3ab7ca;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #29190b;
    --secondary: steelblue;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 2px solid red; */
}

.header,
.profile-header,
.nav-tabs {
    color: white;
    background-color: var(--primary-bg-color);
}


.header a,
.header span,
.profile-header a,
.profile-header > span {
    text-decoration: none;
    color: white;
    margin-bottom: 0;
}

.dropdown-item {
    background-color: #383b5c;

    font-size: 13px;



}

.required-label::after {
    content: " *";
    color: red;
}

.log-out {
    background-color: rgb(211, 120, 120);

}

.container-login {
    background-color: white;
    padding: 15px 30px 15px 30px;
}

.wrap-login {
    border-radius: 10px;
    background-color: #eee;
    justify-content: space-between;
}


.odds-data select {
    font-size: 5px;
    background-color: transparent;
    width: 10%;
}

/* Button */
.btn-secondary {
    color: #fff;
    background-color: #6c757d; 
    border-color: #6c757d;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

.btn-blue {
    color: #fff;
    background-color: steelblue;
    border-color: steelblue;
}

.btn-white {
color: black;
background-color: var(--white);
border-color: var(--white);
border-color: #cad3db;
border-radius: 1px;
appearance: none;
box-shadow: none;
}


.google-btn {
  width: 184px;
  height: 42px;
  background-color: #4285f4;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0,0,0,.25);
}
.google-btn .google-icon-wrapper {
    position: absolute;
    margin-top: 1px;
    margin-left: 1px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: #fff;
}
.google-icon {
    position: absolute;
    margin-top: 11px;
    margin-left: 11px;
    width: 18px;
    height: 18px;
}
.btn-text {
    float: right;
    margin: 11px 11px 0 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.2px;
    font-family: "Roboto";
  }
.btn-text:hover {
    box-shadow: 0 0 6px #4285f4;
  }
.btn-text:active {
    background: #1669F2;
}



/* Tab */

.nav-tabs .nav-item .nav-link {
    background-color: var(--primary-bg-color);
    color: #FFF;
}


.nav-item {
    color: #050a3e;
}

.nav-link.active {
    border-bottom: 7px solid white;
    border-radius: 0px;
}
.nav-tabs .nav-item .nav-link2 {
    background-color: var(--primary-bg-color);
    color: #FFF;
}

.nav-link2.active {
    border-bottom: 7px solid var(--purple);
    border-radius: 0px;
}

.tab-content {
    border-top: transparent;
    width: 100%;
}

.tab-content .tab-pane {
    background-color: #FFF;
    width: 100%;
    height: auto;
}

/* Snackbar */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 50px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
/* Table */
#table {
    overflow: scroll;
    overflow-x: auto;
}



td,
th {
    /* border: 1px solid rgb(190, 190, 190); */
    border: none;
    padding: 10px;
}

td {
    text-align: center;
}

tr:nth-child(even) {
    background-color: #eee;
    color: black;
}

th[scope="col"] {
    background-color: var(--primary-bg-color);
    color: #fff;
}

th[scope="row"] {
    background-color: lightsteelblue;
}

caption {
    font-size: 12px;
    caption-side: top;
}

.avatar {
    vertical-align: middle;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
}

.profile-card {
    padding-top: 10px;
}

.user-profile {
    height: 50px;
}

.user-profile span {
    font-size: 18px;
    font-weight: bold;
}

.user-profile p {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.user {
    font-size: 16px;
    font-weight: bold;
    height: 35px;

}

.user p {
    font-size: 9px;


}

.ranking {
    font-weight: bold;
    padding-bottom: 0;
}

.text-blue {
    font: 18px "Quicksand", san-serif;
    color: #02b0ef;
}

.text-pro {
    font: bold 50px "Quicksand";
    color: #fff;
}

.bet-type i,
.bet-type img {
    height: 20px;
    /* float: right; */
}

.paid {
    color: white;
}

.paid p {
    font-size: 10px;
}



.td-image img {
    height: 20px;
}



.ranking img {
    height: 30px;
    line-height: 30px;
}


.rank img {
    height: 30px;
    line-height: 30px;
}



.rank p {
    font-size: 12px;
    font-weight: bold
}

.profile-no {
    text-align: center;
}

.profile-no span {
    font-size: 14px;

}

.profile-no p {
    font-size: 12px;

}

.location {
    font-weight: bold;
}

.fixture-date {
    font-size: 12px;
    margin: 0;
    padding: 2px;
}


.level img {
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#level_app > div{
    gap: 16px;
    display: flex;
    flex-direction: column;
}

#referral-table th, #referral_table td, #connection_table td, #connections-table th {
    border-collapse: collapse;
    font-size: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
    white-space: pre-wrap;
    text-align: center;
}

.odds-data {
    background-color: #292d58;
}

.odds-data button {
    font-size: 10px;
}

.select {
    appearance: none;
    padding: 3px;
    background-color: var(--secondary);
    /* background-color: #292d58; */

    color: white;
    border: 1px solid;
    font-family: inherit;
    outline: none;
}



.bet img {
    height: 20px;
}

.navbar-bottom {
    background-color: var(--primary-bg-color);
}

.navbar-bottom .nav-item a , .navbar-top{
    color: white;
    font-size: 16px;
}

.f-button {
    background-color: var(--primary-bg-color);
    color: #fff;
}

/* Upload Image */
#avatar {
    background-color: transparent;
    height: 150px;
    width: 150px;
    border: 3px solid var(--primary-bg-color);
    border-radius: 50%;
    /* transition: background ease-out 200ms; */
}

#preview {
    position: relative;
}

.edit_form input[type="file"] {
    display: none;
}

#upload-button {
    /* padding: 18px; */
    border-radius: 50%;
    border: none;
    height: 30px;
    width: 30px;
    cursor: pointer;
    background-color: #050a3e;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
        0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
    transition: background-color ease-out 120ms;
    color: white;
    position: absolute;
    left: 65%;
    bottom: 0%;
}

#upload-button:hover {
    background-color: #45a;
}

.odds-option {
    background-color: steelblue;
}

.odds-option button {
    font-size: 9pt;
}

/* Solid border */
hr.solid {
    border-top: 5px solid #bbb;
    padding-left: 0%;
    padding-right: 0%;
  }

.paid-free {
    background-color: #050a3e;
    color: white;
    padding: 5px;
    font-size: 10px;

}


.remove-sl {
    /* background-color: red; */
    color: red;
    padding: 3px;
    font-size: 10px;
    font-weight: bolder;

}


/* home */
.header-home {
    padding-top: 10px;
}

.container-landing {
    background-image: url('../avatar.png');
    height: 100%;
}

.name p {
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.leagues {
    overflow: scroll;
    overflow-x: auto;
}

.leagues td {
    border: 1px solid transparent;

}

.leagues img {
    height: 60px;
}

.table-index-img {
    height: 40px;
}

.table-index {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 0 auto;
}

.list-table th,
.list-table td {
    border: none;
}

.btn-landing {
    background-color: #02b0ef;
    position: relative;
    border: none;
    color: #fff;
    width: 100%;
    border-radius: 5px;
    padding: 3px 3px 3px 3px;
}

.btn-sell {
    background-color: #02b0ef;
    position: relative;
    border: none;
    color: #fff;
    width: 25%;
    border-radius: 5px;
}

.btn-buy {
    background-color: #fff;
    position: relative;
    border: none;
    color: black;
    width: 25%;
    border-radius: 5px;
}


.post {
    width: 100%;
    background-color: #050a3e;
    position: relative;
}

.post:active {
    background: var(--primary-bg-color);
}
  
.post__text {
font: bold 20px "Quicksand", san-serif;
color: #ffffff;
transition: all 0.2s;
}
  
.post--loading .post__text {
visibility: hidden;
opacity: 0;
}
  
.post--loading::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
border: 4px solid transparent;
border-top-color: #ffffff;
border-radius: 50%;
pointer-events: none;
cursor: not-allowed;
opacity: 0.65;
animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
from {
    transform: rotate(0turn);
}

to {
    transform: rotate(1turn);
}
}

.nav-link button:hover {
    border: none;

}

.nav-link2 button:hover {
    border: none;

}


.content-section {
    display: none;
}

.accordion-item {
    width: 100%;
}

.odds-options {
    font-size: 10px;
}

.odds-options:hover{
    color: #FFF;
}

.btn-bnav:hover{
    float: none;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

.profile-cover__img {
    display: flex;
    border-radius: 11px;
    color: #fff;
    position: absolute;
    left: 50px;
    top: 183px;
    text-align: center;
    z-index: 1;
}

.profile-cover__img .profile-img-1>img {
    max-width: 120px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    margin-top: 55px;
    margin-left: -9px;
}

.profile-cover__img .profile-img-content {
    margin-top: 100px;
    display: flex;
    margin-left: 10px;
}

.profile-cover__img>.h3 {
    color: #393939;
    font-size: 20px;
    line-height: 30px;
}

.notifs {
    overflow: hidden;
}

.code{
    margin-right: 0%;
    padding: 0px 0px 0px 0px;

}

/* Tabs */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }

  .tab-menu-heading {
    padding: 0px;
    border-bottom: 1px solid #e9edf4 !important;
    font-size: 16px;
    font-weight: 500;
}

.tabs-menu ul li a {
    background-color: var(--primary-bg-color);
    padding: 10px 10px 10px 10px;
    display: block;
    font-size: 16px;
    color: #8b97d2;
    text-decoration: none;
}

.nav.panel-tabs a.active {
    color: var(--white);
}

.nav.panel-tabs.panel-secondary a.active {
    background-color: #05c3fb !important;
    color: #fff;
}

.nav.panel-tabs.panel-secondary a {
    color: #05c3fb;
}

.nav.panel-tabs.panel-danger a.active {
    background-color: #e82646 !important;
    color: #fff;
}

.nav.panel-tabs.panel-danger a {
    color: #e82646;
}

.nav.panel-tabs.panel-success a {
    color: #09ad95;
}

.nav.panel-tabs.panel-success a.active {
    background-color: #09ad95 !important;
    color: #fff;
}

.nav.panel-tabs.panel-info a {
    color: #1170e4;
}

.nav.panel-tabs.panel-info a.active {
    background-color: #1170e4 !important;
    color: #fff;
}

.panel-group .panel,
.panel-group1 .panel {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #e9edf4;
    overflow: hidden;
}


/*----- Global Loader -----*/
#global-loader {
    position: fixed;
    z-index: 50000;
    background: white;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


.loader-img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 43%;
    left: 0;
    margin: 0 auto;
    text-align: center;
}

.page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
}

/* Center the loader */
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Center the loader */
#loader2 {
    position: absolute;
    right: 15%;
    /* top: 50%; */
    /* z-index: 1; */
    width: 20px;
    height: 20px;
    margin: 0px 0px 0px 0px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #db3434;
    -webkit-animation: spin2 2s linear infinite;
    animation: spin2 2s linear infinite;
  }
  
  @-webkit-keyframes spin2 {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin2 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
/* Add animation to "page content" */
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}

@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 } 
to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
from{ bottom:-100px; opacity:0 } 
to{ bottom:0; opacity:1 }
}

.header .header-right-icons .nav-link.icon .header-badge {
    position: absolute;
    top: -3px;
    right: 0px;
    display: block !important;
    padding: 3px 5px !important;
    font-size: 10px;
    border-radius: 50px;
    line-height: 1.1;
}

.data-unavail {
    position: absolute;
    /* position: relative; */
    left: 20%;
    top: 50%;
    z-index: 1;
    width: 250px;
    height: 250px;
    overflow: hidden;
}

.notification {
    /* background-color: #555; */
    color: white;
    text-decoration: none;
    /* padding: 15px 26px; */
    position: relative;
    /* display: inline-block; */
    border-radius: 2px;
  }
  
  .notification:hover {
    background: var(--primary-bg-color);
  }
  
  .notification .badge {
    position: absolute;
    top: -10px;
    right: -2px;
    padding: 4px 6px;
    border-radius: 50%;
    background: red;
    font-size: 11px;
    color: white;
  }

  .dropdown-more {
    display: none;
    position: absolute;
    background-color: #f8f4f4;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-right: 10px;
    z-index: 1;
    right: 0;
  }
  
  .dropdown-more button {
    background-color: inherit;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
  }