/**
 *
 * Theme Name  :  Player Theme for Sabong Republic
 * Description :  Core CSS of this Player Theme
 * Author      :
 * Author URI  :
 * Tags        :  No Tags, y tho? :'D
 *
 */

/**
 *
 * Global Setting
 *
 */

html, body {
  overflow-x: hidden;
  margin-top: 2em;
  background-color: #FDFEFE;
}

body {
  /*font-size: .875rem;*/
}

@media only screen and (max-device-width:480px){
  html, body {
    margin-top: 1.875em;
  }
}

/**
 *
 * Navbar
 *
 */
.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  /*background-color: rgba(0, 0, 0, .25);*/
  background-color: rgb(165, 137, 52);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.navbar-toggler{
  /*border-color: white !important;*/
  border: 0;
  padding: 15px;
}

.nav-link {
  padding: .4rem 1rem;
}

.sign-out-link:hover {
  color: #dc3545 !important;
}

.navbar-brand > span{
  padding: 0 10px;
}

.nav > .nav-item:hover{
  -webkit-transition: all 125ms ease-in;
     -moz-transition: all 125ms ease-in;
      -ms-transition: all 125ms ease-in;
       -o-transition: all 125ms ease-in;
          transition: all 125ms ease-in;
  background-color: rgba(33,33,33 ,1);
}

.nav > .nav-item > .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

@media only screen and (max-width: 767px) and (orientation: portrait)
{
  .navbar-brand > span{
    display: none;
  }
}
@media only screen and (min-width: 768px)
{
  .navbar-brand > span{
    display: inline;
  }
}


/**
 *
 *  Sidebar
 *
 */

.sidebar {
  /*background-color: #403a34;*/
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);

  -webkit-transition: all 500ms ease-in-out; /* Safari 4+ */
     -moz-transition: all 500ms ease-in-out; /* Fx 5+ */
      -ms-transition: all 500ms ease-in-out; /* IE 10+, Fx 29+ */
       -o-transition: all 500ms ease-in-out; /* Opera 12+ */
          transition: all 500ms ease-in-out;
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  height: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #160E0C;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link.active {
  color: #fff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}


.sidebar{
  display: block;
  /*top: 50px;*/
  left: -800px;
  transition-duration: 250ms;
  transition-timing-function: ease-in;
}
/*.sidebar-overlay{
  right: -800px;
}*/

.sidebar-overlay {
  right: -100%;
}

.btn-close-sidebar {
  position: absolute;
  top: 5px;
  right: 5px;
}

.close-sidebar {
  -webkit-transition: all 500ms ease-in-out; /* Safari 4+ */
     -moz-transition: all 500ms ease-in-out; /* Fx 5+ */
      -ms-transition: all 500ms ease-in-out; /* IE 10+, Fx 29+ */
       -o-transition: all 500ms ease-in-out; /* Opera 12+ */
          transition: all 500ms ease-in-out;
  left: 0;
}

.close-sidebar > .sidebar-overlay {
  -webkit-transition: all 200ms ease-in; /* Safari 4+ */
     -moz-transition: all 200ms ease-in; /* Fx 5+ */
      -ms-transition: all 200ms ease-in; /* IE 10+, Fx 29+ */
       -o-transition: all 200ms ease-in; /* Opera 12+ */
          transition: all 200ms ease-in;

  /*width: 0px;*/
  right: 0;
}

.expand-main {
  -webkit-transition: all 500ms ease-in-out; /* Safari 4+ */
     -moz-transition: all 500ms ease-in-out; /* Fx 5+ */
      -ms-transition: all 500ms ease-in-out; /* IE 10+, Fx 29+ */
       -o-transition: all 500ms ease-in-out; /* Opera 12+ */
          transition: all 500ms ease-in-out;
  flex-basis: inherit;
  max-width: 100%;
}

.shrink-main {
  -webkit-transition: all 500ms ease-in-out; /* Safari 4+ */
     -moz-transition: all 500ms ease-in-out; /* Fx 5+ */
      -ms-transition: all 500ms ease-in-out; /* IE 10+, Fx 29+ */
       -o-transition: all 500ms ease-in-out; /* Opera 12+ */
          transition: all 500ms ease-in-out;
  flex-basis: inherit;
  max-width: inherit;
}


@media only screen and (max-device-width:480px) {
   /* styles for mobile browsers smaller than 480px; (iPhone) */
  .sidebar-overlay{
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    width: 25%;
    height: 100%;
    position: fixed;
    top: 0;
    /*right: 0;*/
    z-index: 1050;
    transition-duration: 250ms;
    transition-timing-function: ease-in;
  }
  .sidebar {
    display: block;
    /*top: 50px;*/
    /*left: 0;*/
    transition-duration: 250ms;
    transition-timing-function: ease-in;
    z-index: 1030;
    padding-top: unset;
    width: 75%;
  }
  .sidebar-sticky {
    top: unset;
    padding-top: unset;
    z-index: 1040;
  }
  .close-sidebar {
    left: 0;
  }
  .user-content {
    min-height: 100px;
  }
  .user-content > .user-img > img {
    border-radius: 50%;
    width: 100px;
    border: 1px solid rgba(0,0,0,0.3);
    position: absolute;
    top: 45px;
    left: 15px;
  }
}

/* different techniques for iPad screening */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
  .sidebar-overlay{
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    /*right: 0;*/
    z-index: 1050;
    transition-duration: 250ms;
    transition-timing-function: ease-in;
  }
  .sidebar {
    display: block;
    /*top: 50px;*/
    /*left: 0;*/
    transition-duration: 250ms;
    transition-timing-function: ease-in;
    z-index: 1030;
    padding-top: unset;
    width: 40%;
  }
  .sidebar-sticky {
    top: unset;
    padding-top: unset;
    z-index: 1040;
  }
  .close-sidebar {
    left: 0;
  }
  .user-content {
    min-height: 100px;
  }
  .user-content > .user-img > img {
    border-radius: 50%;
    width: 100px;
    border: 1px solid rgba(0,0,0,0.3);
    position: absolute;
    top: 45px;
    left: 15px;
  }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
  .sidebar {
    display: block;
    /*top: 0;*/
    left: -800px;
    transition-duration: 250ms;
    transition-timing-function: ease-in;
  }
  .close-sidebar {
    left: 0;
  }
  .user-content > .user-img {
    text-align: center;
  }
  .user-content > .user-img > img {
    border-radius: 50%;
    height: 100px;
    border: 1px solid rgba(0,0,0,0.3);
  }
}

@media only screen and (min-width:960px){
  /* styles for browsers larger than 960px; */
  .sidebar-overlay{
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 75%;
    height: 100%;
    position: fixed;
    top: 0;
    /*right: 0;*/
    z-index: 1050;
    transition-duration: 250ms;
    transition-timing-function: ease-in;
  }
  .sidebar {
    display: block;
    /*top: 50px;*/
    /*left: 0;*/
    transition-duration: 250ms;
    transition-timing-function: ease-in;
    z-index: 1030;
    padding-top: unset;
    width: 25%;
  }
  .sidebar-sticky {
    top: unset;
    padding-top: unset;
    z-index: 1040;
  }
  .close-sidebar {
    left: 0;
  }
  .user-content {
    min-height: 100px;
  }
  .user-content > .user-img > img {
    border-radius: 50%;
    width: 100px;
    border: 1px solid rgba(0,0,0,0.3);
    position: absolute;
    top: 40px;
    left: 8%;
    /*left: 15px;*/
  }
}

/**
 *
 * Login
 *
 */

.site-content #login {
  margin: auto;
  max-width: 500px;
}

/* .site-content #login form {
  margin-top: 3em;
} */

.login-logo {
  width: 120px;left: 50%; transform: translate(50%, 0);
}
.login-bg {
  background-image: url('login_bg.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0px;
  left: 0;
  height: 100%;
  width: 100%;
  /*filter: blur(5px);*/
  z-index: -100;
}

.login-content {
  position: absolute;
  max-width: 400px;
  min-width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(250,250,250 ,0.5);
  height: 400px;
  border-radius: 5px;
}

.username-style {

padding-left: 30px;
padding-right: 30px;
padding-top: 30px;

}

.login-content-ryan-test {
  position: absolute;
  max-width: 400px;
  min-width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(250,250,250 ,0.5);
  height: 400px;
  border-radius: 5px;
}

.input-group-text {
    background-color: rgba(158,158,158,1) !important;
    color: rgba(250,250,250 ,1) !important;
}


/**
 *
 * Footer
 *
 */
footer {
  background-color: #F5F5F5;
  padding: 2em 0;
  margin-top: 30px;
}

.btn {
  border-radius: 0 !important;
}

.bg-danger {
  background-color: #DB0402 !important;
}


  html, body {
    background-color: #fff;
  }

  .btn {
    border-radius: 0;
  }

  .site-content {
    /*height: 100vh;*/
    margin-top: 16px;
    /*margin-bottom: 15em;*/
  }

  .site-content .btn-player-one {
    background-color: #d32f2f;
    padding: 15px 10px;
  }

  .site-content .btn-player-two {
    background-color: #303F9F;
    padding: 15px 10px;
  }

  .floating-btn-close-arena {
    position: fixed;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .floating-btn-close-arena .btn-close-arena {
    border-radius: 50%;
    line-height: 1;
    height: 85px;
    width: 85px;
    /*background-color: #f44336; */
    border-color: #424242;
    border-width: medium;
  }

  .floating-btn-open-arena {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
       -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
         -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
  }

  .floating-btn-open-arena .btn-open-arena {
    border-radius: 50%;
    line-height: 1;
    height: 150px;
    width: 150px;
    /*background-color: #f44336; */
    border-color: #4CAF50;
    border-width: medium;
  }

.btn:focus {
  outline: none;
  box-shadow: none;
}

/**
 *
 * Message Winner
 *
 */
@media only screen and (max-device-width:480px) {
  .site-content #messageWinner {
    position: absolute;
    top: 15px;
    bottom: 0;
    background: rgba(33, 37, 41 ,.9);
    height: 200px;
  }

  .site-content #messageWinner p {
    font-size: 1.25em;
    position: inherit;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
       -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
         -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
  }
  .site-content #messageWinner p #spanWinnerVerdict {
    font-weight: 700;
    font-size: 1.50em;
  }
}



/**
 *
 * Trends
 *
 */

.site-content .trends-container {
  /*padding: .50rem .75rem;*/
  /*background-color: #fff;*/
  margin-top: 1em;
}

.site-content .trends-container .trends-subbox{
  overflow-x: auto;
  height: 200px;
  background-color: white;
}

.site-content .trends-container .trends
{
  /*margin-top: 1em;*/
  /*width: 100%;*/
  border-spacing: 0; border-collapse: collapse;
}

.site-content .trends-container .trends th
{
  padding: .5em;
}

.site-content .trends-container .trends td
{
  border: 1px solid; width: 2em; height: 2em;
}

.site-content .trends-container .trends .light
{
  background: #fff;
}

.site-content .trends-container .circle-team-a
{
  background: rgba(244,67,54,1);
  border: 1px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.site-content .trends-container .circle-team-b
{
  background: rgba(33,150,243,1);
  border: 1px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.site-content .trends-container .circle-draw
{
  background: rgba(255,235,59,1);
  border: 1px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.site-content .trends-container .circle-cancelled
{
  background: rgba(33,33,33 ,1);
  border: 1px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.site-content .trends-container .blank
{
  background: white;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}


.legend {
  margin-top: 1.5em;
  background: #fff;
  /*border: 1px solid; width: 2em; height: 2em;*/
}
.legend .circle-team-a,
.legend .circle-team-b,
.legend .circle-draw,
.legend .circle-cancelled {
  border: 1px solid;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  margin: 0 auto;
}

.legend .circle-team-a {
  background: rgba(244,67,54,1);
}

.legend .circle-team-b {
  background: rgba(33,150,243,1);
}

.legend .circle-draw {
  background: rgba(255,235,59,1);
}

.legend .circle-cancelled {
  background: rgba(33,33,33 ,1);
}


.site-content .player-header {
  padding: .50rem .75rem;
  margin-top: 1em;
}

.site-content .player-body {
  padding: .50rem .75rem;
  /*margin-top: 1em;*/
  background-color: #fff;
  text-align: center;
}

.site-content .player-body .btn {
  font-weight: 700;
}

.site-content #spanMatchStatus {
  font-size: 1em;
}

.site-content .bet-history-container {
  background: #fff;
  overflow-y: auto;
  height: 200px;
}

.site-content .bet-history-container #betHistoryTable {
  font-size: 12px;
}

.site-content .bet-history-container #betHistoryTable > td {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}

.site-content #streamArenaOverlay {
    position: absolute;
    z-index: 900;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
}

.site-content #streamArenaOverlay span {
    position: inherit;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/**
 *
 * COMMISSION STYLES
 *
 */

  .commission-parag {
    line-height: 1;
    font-size: 12px;
  }

  hr.dashed-style {
      border: 0;
      border-bottom: 1px dashed #fff;
      background: #000;
      margin: 0;
      width: 100%;
  }
  .bg-gray {
    background-color: #271E19 !important;
  }
  .bg-black {
    background-color: #000000 !important;
  }
  .title {
     width: 100%;
     text-align: center;
     border-bottom: 1px solid #fff;
     line-height: 0.1em;
     margin: 10px 0 20px;
     color: #fff;
  }
  .title span {
      background:#000;
      padding:0 10px;
  }

  .dashboard-btn .btn {
    font-size: 12px;
    width: 120px;
  }
  .dashboard-btn .btn img {
    width: 75px;
  }

  .sub-info .btn img {
    width: 100px;
  }

  .card {
    border: unset;
  }
  .card .btn {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
    /*border-radius: .25rem;*/
  }
  .card .btn img {
    width: 40px;
  }
  .card .btn p {
    font-size: 12px;
  }
  .card .top-subs {
    font-weight: bold;
    line-height: 1;
    font-size: 12px;
  }

  .card .btn {
    height: 100%;
  }

  /*.card .btn img {
    max-width: 30px;
  }*/

  @media screen and (device-aspect-ratio: 40/71) {
     /* for extremely smol boi like iphone 5 or less */
      .card .btn p {
        font-size: 9px;
      }
      .sub-info p {
        font-weight: 500;
        font-size: 9px;
      }
  }

  @media only screen and (max-device-width:480px){
     /* styles for mobile browsers smaller than 480px; (iPhone) */
      .dashboard-btn .btn {
        font-size: 12px;
        width: 120px;
      }
      .dashboard-btn .btn img {
        width: 50px;
      }

      .sub-info p {
        font-weight: 500;
        font-size: 12px;
      }

      .sub-info .btn img {
        width: 75px;
      }
      .diy-breadcrumb {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 12px;
        font-weight: 500;
      }

      .alert {
        left: 15px;
      }
  }


/* 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;
}

.input-group-box {
  position: relative;
}
.input-group-box span:hover {
  cursor: pointer;
}
.input-group-box span {
  font-size: 1.25em;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;

}