/*-----------------------------------------------------------------------------------*/
/*  FONTS
/*-----------------------------------------------------------------------------------*/
@font-face {
  font-family: "Interface";
  src: url('../fonts/Interface/if_corp_rg-webfont.woff2') format('woff2'),
       url('../fonts/Interface/if_corp_rg-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Interface";
  src: url('../fonts/Interface/if_corp_bd-webfont.woff2') format('woff2'),
       url('../fonts/Interface/if_corp_bd-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Interface";
  src: url('../fonts/Interface/if_corp_xbd-webfont.woff2') format('woff2'),
       url('../fonts/Interface/if_corp_xbd-webfont.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Interface";
  src: url('../fonts/Interface/if_corp_it-webfont.woff2') format('woff2'),
       url('../fonts/Interface/if_corp_it-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/*-----------------------------------------------------------------------------------*/
/*  BASE CLASSES
/*-----------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #111;
}
::-webkit-scrollbar-thumb {
  background-color: #464f60;
}
html, body {
  max-width: 100%;
}
body {
  font-family: Arial,Arial,sans-serif;
  background-color: #121417;
  color: #f1f1f9;
}
#main {
  border-top : 1px solid #464f60;
  border-bottom : 1px solid #464f60;
}
input, select {
  font-size: inherit;
  padding: 5px;
  border: none;
  border-radius: 3px;
}
input:focus {
  outline-color: #00a826;
}
::placeholder {
  color: #ccc;
  font-size: 12px;
  font-weight: 400;
}
a {
  color: #f6bffd;
  text-decoration: none;
}
a:hover {
 color: #4d88fd;
}
a:focus {
  color: #ccc;
}
hr {
  margin-top: 0;
  margin-bottom: 15px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Interface',Arial,sans-serif;
  color: #fff;
  font-weight: 700;
  word-spacing: normal;
}
.no-overflow {
  overflow: hidden;
}
.gblock {
  background-color: #ececec;
  border: 1px solid #c8c8c8;
  padding: 15px;
  margin: 0 0 15px;
  color: #333;
}
.app-left {
  padding-right: 0;
}
.app-mid {
  padding: 0 6px 0 6px;
}
.app-right {
  padding-left: 0;
}
.box {
  background-color: #1d2129;
  border-radius: 10px;
  overflow: hidden;
}
.icon-box-g, .icon-box-w {
  color: #212529;
  font-size: 0.9rem;
  background: linear-gradient(
      20deg,
      var(--c1, #ddd),
      var(--c2, #efefef) 51%,
      var(--c1, #ddd)
    )
    var(--x, 0) / 200%;
  box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
  border-radius: 5px;
  transition: 0.5s;
}
.icon-box-g:hover {
  background: #00a826;
  color: #fff;
}
.icon-box-w:hover {
  --x: 100%;
  color: #333;
}
.page-offer {
  font-family: 'Interface',Arial,sans-serif;
  display: block;
  z-index: 100;
}
.page-offer p {
  font-size: 1.3rem;
  margin-bottom: 0;
  line-height: 1;
  letter-spacing: -1px;
}
.page-offer .heading {
  font-size: 2.7rem;
}
/*-----------------------------------------------------------------------------------*/
/*  COOKIE ALERT CLASSES
/*-----------------------------------------------------------------------------------*/
.cookiealert {
  width: 100%;
  z-index: 1070;
  border-radius: 0;
  background: #121417;
  display: none;
  transition: all 500ms ease-out;
  color: #ecf0f1;
  border-radius: 10px;
  border: 1px solid #464f60;
}
.cookiealert.show {
  display: block;
  transform: translateY(0%);
  transition-delay: 1000ms;
}
.cookiealert p {
  margin-bottom: 0;
}
.cookiealert a {
  text-decoration: none;
}
.cookiealert a.jpc-btn, .cookiealert span.jpc-btn {
  font-size: 1rem;
  line-height: 1;
  padding: 7px 15px;
}
.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}
/*-----------------------------------------------------------------------------------*/
/*  HEADER CLASSES
/*-----------------------------------------------------------------------------------*/
.logo-bar {
  font-family: 'Interface',Arial,sans-serif;
  background-color: #1d2129;
  border-radius: 0;
  padding: 10px 0;
  margin-bottom: 0;
}
.logo-bar i {
  font-size: 1.7rem;
  color: #fff;
}
.logo {
  max-width: 170px;
}
#fadein {
  display: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.secondary-head {
  background-color: #222;
  padding: 15px 0;
  margin-bottom: 40px;
}
.secondary-head h1 {
  color: #fff !important;
  text-align: left;
}
/*-----------------------------------------------------------------------------------*/
/*  NAVBAR CLASSES
/*-----------------------------------------------------------------------------------*/
.navbar {
  background-color: #1d2129;
  padding: .5rem 0;
  border-top: 1px solid #464f60;
  border-bottom: 1px solid #464f60;
}
.navbar-toggle {
  padding: 15px;
  position: relative;
  background-color: transparent;
  background-image: none;
  border: none;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  margin-bottom: 5px;
}
.burger-menu {
  position: relative;
  display: inline-block;
  height: auto;
}
/*-----------------------------------------------------------------------------------*/
/*  CSS MENU CLASSES
/*-----------------------------------------------------------------------------------*/
#cssmenu {
  padding: 0;
  margin: 0;
  border: 0;
  width: auto;
}
#cssmenu ul,
#cssmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#cssmenu ul {
  position: relative;
  z-index: 597;
}
#cssmenu ul li {
  float: left;
  min-height: 1px;
  vertical-align: middle;
}
#cssmenu ul li.hover,
#cssmenu ul li:hover {
  position: relative;
  z-index: 599;
  cursor: default;
}
#cssmenu ul ul {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 598;
  width: 100%;
  bottom: 0;
  left: 0;
  margin-top: 0;
  text-transform: none;
  min-width: 190px;
}
#cssmenu ul ul li {
  float: none;
  position: relative;
  height: 0;
  -webkit-transition: height .25s ease;
  -moz-transition: height .25s ease;
  transition: height .25s ease;
}
#cssmenu ul ul ul {
  top: 0;
  margin-left: 100%;
  left: 190px;
  width: 190px;
  border-top: 0 none;
}
#cssmenu ul li:hover > ul {
  visibility: visible;
}
/* Custom CSS Styles */
#cssmenu > ul {
  *display: inline-block;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu ul ul li:first-child > a {
  border-top: none;
}
#cssmenu ul ul li:hover > a {
  background: #000;
  color: #fff;
}
#cssmenu ul ul li:last-child > a {
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#cssmenu ul ul li:last-child:hover > a {
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
}
#cssmenu ul li > a {
  color: #fff;
  background: none;
}
#cssmenu ul li:hover > a {
  color: #fff;
  background: #2530ac;
}
#cssmenu ul li.active > a {
  color: #fff;
  background: linear-gradient(45deg,#2530ac,#3879fb);
}
#cssmenu ul ul li:hover > a, #cssmenu ul ul li.active > a {
  border-bottom: 1px solid #333;
}
#cssmenu ul li.has-sub > a:after {
  content: '+';
  margin-left: 5px;
}
#cssmenu ul li.last ul {
  left: auto;
  right: 0;
}
#cssmenu ul li.last ul ul {
  left: auto;
  right: 99.5%;
}
/*-----------------------------------------------------------------------------------*/
/*  RESPONSIVE CSS MENU CLASSES
/*-----------------------------------------------------------------------------------*/
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after, #cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  font-family: 'Interface',Arial,sans-serif;
  font-weight: 700;
  background: transparent;
}
#cssmenu > ul > li {
  float: left;
  margin: 0 5px 0 0;
}
#cssmenu > ul > li > a {
  padding: 15px 15px 11px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  -webkit-transition: color .25s ease;
  -moz-transition: color .25s ease;
  transition: color .25s ease;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}
#cssmenu ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #777;
  content: '';
  -webkit-transition: background .25s ease;
  -moz-transition: background .25s ease;
  transition: background .25s ease;
}
#cssmenu > ul > li.has-sub:hover > a:after, #cssmenu > ul > li.has-sub > a:hover:after {
  background: #439539;
}
#cssmenu ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #777;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu ul > li.has-sub:hover > a:before, #cssmenu ul > li.has-sub > a:hover:before {
  top: 23px;
  height: 0;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu li:hover > ul > li {
  height: auto;
}
#cssmenu ul ul li a {
  padding: 11px 15px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  font-size: 1.2rem;
  text-decoration: none;
  color: #999;
  font-weight: 600;
  background: #000;
}
#cssmenu ul ul li:last-child > a, #cssmenu ul ul li.last-item > a {
  border-bottom: 0;
} 
#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
  color: #fff;
  background: #000 !important;
  border-bottom: 1px solid rgba(150, 150, 150, 0.15) !important;
}
#cssmenu ul ul li.has-sub > a:after {
  top: 24px;
  right: 11px;
  background: #dddddd;
}
#cssmenu ul ul > li.has-sub:hover > a:after, #cssmenu ul ul > li.has-sub > a:hover:after {
  background: #ffffff;
} 
#cssmenu ul ul li.has-sub > a:before {
  top: 13px;
  right: 14px;
  background: #dddddd;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
/*-----------------------------------------------------------------------------------*/
/*  SIDEBAR
/*-----------------------------------------------------------------------------------*/
#sidebar {
  margin-bottom: 40px;
}
#sidebar h3 {
  border-bottom: 2px solid #439539;
}
.headerBar {
  color: #fff;
  background-color: #0a0b2d;
  font-family: 'Interface',Arial,sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  padding: 10px 15px;
  border: 2px solid #082969;
  border-radius: 10px;
  display: block;
  position: relative;
}
.side-main {
  font-family: 'Interface',Arial,sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: 0.3s;
}
.side-main a {
  color: #999;
  text-decoration: none;
}
.side-main a:hover {
  color: #439539;
}
.side-main ul {
  padding-left: 0;
  list-style: none;
}
.side-main li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
/*-----------------------------------------------------------------------------------*/
/*  MOBILE NAVIGATION CLASSES
/*-----------------------------------------------------------------------------------*/
.offcanvas {
  background-color: #1d2129;
}
.offcanvas-header {
  border-bottom: 1px solid #464f60;
}
.promo-header {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.offcanvas-body {
  background-color: #121417;
  padding: 5px;
}
.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.side-logo {
  max-width: 150px;
}
.offcanvas-body #cssmenu > ul > li {
  width: 100%;
}
.offcanvas-body #cssmenu ul > li.has-sub > a:before, .offcanvas-body #cssmenu ul > li.has-sub > a:after {
  display: none;
}
.offcanvas-body #cssmenu > ul > li a {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 11px 15px;
  text-decoration: none;
  color: #efefe9;
  margin-bottom: 5px;
  border-bottom: 0;
}
.offcanvas-body #cssmenu > ul > li a:hover {
  background-color: #dcdcdc;
}
.offcanvas-body #cssmenu ul li.active > a, .offcanvas-body #cssmenu ul li:hover > a {
  color: #fff;
  background-color: #2530ac;
  border: none;
}
.offcanvas-body #cssmenu ul li:hover > ul {
  background-color: #001730;
  padding: 5px;
  width: 100%;
}
.offcanvas-body #cssmenu > ul ul.show-submenu {
  position: relative;
  background-color: #ccc !important;
  margin-top: -5px;
  margin-bottom: 5px;
  padding-bottom: 1px !important;
}
.offcanvas-body #cssmenu ul ul ul {
  margin-left: 0;
  left: 0;
  width: 100%;
}
#cssmenu.menu-mobile-navigation-container ul li:hover > ul {
  display: none;
}
.show-submenu {
  display: block !important;
}
.sub-menu-toggle {
  font-size: 1.2rem;
  display: block;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  padding: 11px;
  background-color: #ccc;
}
.side-verts {
  text-align: center;
}
.side-verts a {
  color: #fff;
}
.side-verts .lead {
  font-size: 1rem;
}
#mmenu {
  display: none;
  color: #fff;
  background-color: #1d2129;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 0;
}
#mmenu a {
  color: #fff;
}
#mmenu .icon {
  font-size: 20px;
}
#mmenu .small {
  line-height: 1;
  font-size: .75em;
}
/*-----------------------------------------------------------------------------------*/
/*  BUTTON CLASSES
/*-----------------------------------------------------------------------------------*/
.outline-btn {
  font-family: 'Interface',Arial,sans-serif;
  font-size: 18px;
  font-weight: bold;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 30px;
  display: inline-block;
  transition: 0.3s;
}
.outline-btn:hover {
  background-color: #00c22d;
  color: #fff;
  text-decoration: none;
}
.outline-btn .glyphicon {
  top: 4px;
}
.jpc-btn {
  font-family: 'Interface',Arial,sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(45deg,#2530ac,#3879fb);
  color: #fff;
  border-radius: 6px;
  padding: 6px 30px;
  display: inline-block;
}
.jpc-btn:hover {
  background: #2530ac;
  color: #fff;
  text-decoration: none;
}
.jpc-btn.login, .jpc-btn.close {
  background: #383f4e;
  border: none;
}
.jpc-btn.login:hover, .jpc-btn.close:hover {
  background: #1d2129;
}
.promo-btn {
  font-family: 'Interface',Arial,sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(45deg, #8c2e97,#fa3eed);
  color: #fff;
  border-radius: 6px;
  padding: 6px 30px;
  display: inline-block;
}
.promo-btn:hover {
  background: #8c2e97;
  color: #fff;
  text-decoration: none;
}
.m-promo-btn {
  font-family: 'Interface',Arial,sans-serif;
  line-height: 1;
  text-align: center;
  background: linear-gradient(45deg, #8c2e97,#fa3eed);
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  display: inline-block;
}
.m-promo-btn:hover {
  background: #8c2e97;
  color: #fff;
  text-decoration: none;
}
.dark-btn {
  font-family: 'Interface',Arial,sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  background-color: #232323;
  color: #fff;
  border-radius: 4px;
  padding: 10px 30px;
  display: inline-block;
  transition: 0.3s;
}
.dark-btn:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}
.jpc-btn.ls {
  color: #fff;
  background-color: rgb(172, 194, 64);
}
.jpc-btn.ls:hover {
  color: #fff;
  background-color: #bcd745;
}
.jpc-btn.vs {
  color: #fff;
  background-color: rgb(5, 159, 157);
}
.jpc-btn.vs:hover {
  color: #fff;
  background-color: rgb(5, 169, 167);
}
.jpc-btn.ln {
  color: #fff;
  background-color: rgb(179, 17, 77);
}
.jpc-btn.ln:hover {
  color: #fff;
  background-color: rgb(179, 17, 77);
}
.jpc-btn.cas {
  color: #fff;
  background-color: rgb(0, 84, 164);
}
.jpc-btn.cas:hover {
  color: #fff;
  background-color: rgb(0, 84, 164);
}
.jpc-btn.lc {
  color: #fff;
  background-color: rgb(0, 170, 204);
}
.jpc-btn.lc:hover {
  color: #fff;
  background-color: rgb(0, 170, 204);
}
.jpc-btn.es {
  color: #fff;
  background-color: rgb(170, 0, 204);
}
.jpc-btn.es:hover {
  color: #fff;
  background-color: rgb(170, 0, 204);
}
/*-----------------------------------------------------------------------------------*/
/*  SLIDER
/*-----------------------------------------------------------------------------------*/
.slider {
  background: #1d2129;
  color: #333;
  overflow: hidden;
}
.bi.bi-info-circle {
  filter: drop-shadow(0 0 3px #121417)
  drop-shadow(0 0 5px #121417)
  drop-shadow(0 0 7px #121417)
  drop-shadow(0 0 12px #121417);
}
.bi.bi-info-circle:hover {
  filter: drop-shadow(0 0 3px #fff)
  drop-shadow(0 0 5px #389cff)
  drop-shadow(0 0 7px #131c99)
  drop-shadow(0 0 12px #d839ff);
}
/* Animation delays */
.row #one {
  animation-delay: .4s;
}
.row #two {
  animation-delay: .8s;
}
.row #three {
  animation-delay: 1.2s;
}
.row #four {
  animation-delay: 1.6s;
}
.carousel-caption {
  font-size: 1.5rem;
  padding-bottom: 2rem;
  right: auto;
  left: auto;
}
.carousel-indicators {
  position: relative;
  justify-content: right;
  margin-top: 1rem;
  margin-right: 0; 
}
.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #5c626b;
  opacity: 1;
}
.carousel-indicators .active {
  background-color: #3879fb;
}
.carousel-control-next, .carousel-control-prev {
  position: relative;
  display: inline-block;
  line-height: 0.7;
  width: auto;
  opacity: 1;
  border: 1px solid #5c626b;
  border-radius: 6px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 1.2rem;
  height: 1.2rem;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/*-----------------------------------------------------------------------------------*/
/* BLOCKS UNDER SLIDER
/*-----------------------------------------------------------------------------------*/
.block-nav {
  background-color: #1d2129;
  position: relative;
}
.horizontal-scroll.container {
  width: 98%;
  overflow-x: hidden;
}
.horizontal-scroll > .row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.horizontal-scroll > .row > .slide-block {
  width: 25%;
}
/*-----------------------------------------------------------------------------------*/
/*  VIRTUAL BET MODAL CLASSES
/*-----------------------------------------------------------------------------------*/
div.mobi-bet-count {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
.mobi-bet-count .jpc-btn {
  margin-left: 0;
}
.modal-content {
  background-color: #efefef;
  border: 1px solid #464f60;
  border-radius: 5px;
}
.modal-header {
  padding: 10px 15px;
  background-color: #121417;
  border-bottom: 1px solid #464f60;
}
.modal-header h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 0;
}
.modal-title {
  color: #fff;
}
.modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  background-color: #000;
  border-radius: 50%;
}
.modal-body {
  background-color: #1d2129;
}
#virtualBetModal .modal-body {
  color: #232323;
  padding: 0;
}
.modal-footer {
  border-top: 1px solid #464f60;
  background-color: #121417;
}
.bet-close {
  color: #fff;
  font-size: 45px;
  font-weight: normal;
  right: 10px;
  opacity: 1;
  position: absolute;
  z-index: 100;
  background: transparent;
  border: none;
  text-shadow: 0 0;
}
.btn-close {
  border: none;
}
.betslip .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23232323'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
/*-----------------------------------------------------------------------------------*/
/*  Promo Modal
/*-----------------------------------------------------------------------------------*/
#promoModal .modal-content {
  background-color: transparent;
}
#promoModal .modal-header {
  background-color: transparent;
  border-bottom: none;
}
.closePromo {
  background-color: #000;
  border-radius: 50%;
  padding: 8px;
}
.modal.show {
  display: block !important;
  background-color: rgba(0,0,0,0.85);
}
/*-----------------------------------------------------------------------------------*/
/*  BANKING PANELS
/*-----------------------------------------------------------------------------------*/
.bank-pad {
  padding: 0 12px;
}
.bank-box {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  height: 100%;
}
.banking .accordion-item {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.banking .accordion-header {
  background-color: #ececec;
  border-bottom: 2px solid #00a826;
  padding: 10px 0;
}
.banking .accordion-button {
  background: none;
  border-bottom: none;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  padding: 0.3rem;
}
.banking .accordion-button > .container-fluid {
  padding: 0;
}
.banking .accordion-header .small {
  font-size: 80%;
  display: block;
}
.banking .accordion-header .jpc-btn {
  font-size: 1.2rem;
  padding: 6px 15px;
  color: #fff !important;
}
.banking .accordion-header .jpc-btn:hover {
  color: #fff !important;
}
.banking img {
  max-height: 40px;
}
.banking .panel-text {
  margin-top: 10px;
  text-align: center;
}
.banking .accordion-body {
  padding: 15px;
}
.step-box {
  background-color: #ececec;
  padding: 10px;
  height: 100%;
}
.icons {
  max-width: 65px;
}
/*-----------------------------------------------------------------------------------*/
/*  ACCORDION CLASSES
/*-----------------------------------------------------------------------------------*/
.accordion-collapse.show {
  background-color: #ecedf3;
}
.accordion-item {
  background: transparent;
  border: none;
  margin: 10px 0;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-button {
  font-size: 1.3rem;
  padding: 0.5rem;
  color: #fff;
  background-color: #383f4e;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #2b303b;
  box-shadow: none;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fffff9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23464f60'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  background-color: #1d2129;
  box-shadow: 0 6px 12px 0 #000;
}
/*-----------------------------------------------------------------------------------*/
/*  FOOTER CLASSES
/*-----------------------------------------------------------------------------------*/
.widget-area {
  background-color: #1d2129;
  padding: 40px 0;
}
.widget-area ul {
  padding-left: 0;
  list-style: none;
}
.widget-area a {
  color: #fff;
}
.widget-area a:hover {
  color: #efefe9;
}
.trust {
  background-color: #1d2129;
  color: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 100;
}
.trust a {
  color: #fff;
}
.app, .facebook {
  width: 50px;
  max-width: 50px;
}
.ios-icon, .android-icon, .huawei-icon, .facebook {
  display: inline-block;
}
footer {
  color: #f1f1f9;
  background-color: #1d2129;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #3879fb;
}
.btm {
  color: #efefef;
  padding: 10px 0;
}
.btm p {
  margin: 0;
}
/*-----------------------------------------------------------------------------------*/
/*  MEDIA QUERIES
/*-----------------------------------------------------------------------------------*/
/* ----- Navbar early Collapse ----- */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse.collapse {
      display: none !important;
  }
  .navbar-collapse.collapse.in {
      display: block !important;
  }
  .navbar-header .collapse, .navbar-toggle {
      display:block !important;
  }
  .navbar-header {
      float:none;
  }
}
@media screen and (min-width: 1800px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1655px !important;
  }
}
@media (max-width: 768px) {
  .slider {
    display: flex;
    align-items: center;
  }
  .carousel {
    display: inline-block;
    width: 100%;
  }
  .carousel-caption {
    padding-bottom: 2.5rem;
  }
  .horizontal-scroll > .row > .slide-block {
    width: 45%;
  }
  footer {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .logo {
    max-width: 120px;
    height: 45px;
  }
  .horizontal-scroll > .row > .slide-block {
    width: 75%;
  }
}
@media (max-width: 414px) {
}
@media (max-width: 320px) {
  .accordion-button {
    font-size: 16px
  }
}