/* poker-odds-calculate.css */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: Lato, sans-serif;
  margin: 0;
}

body {
  margin: 0;
  line-height: 16px;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main {
  height: 100%;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
:after,
:before {
  box-sizing: inherit;
}

/*CALCULATOR STYLES*/
.popup-opened {
  position: fixed !important;
  overflow: hidden;
}

.popup-opened .steps-list__item {
  z-index: -1;
}

.popup-opened .odds-calculator .calculator {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.popup-opened .odds-calculator .calc-body {
  position: relative;
}

.popup-opened .odds-calculator .popup-container {
  display: block !important;
}

.popup-opened .odds-calculator .card {
  padding: 2px;
}

.popup-opened .odds-calculator .calc-cards {
  display: block;
  border: none;
  background: none;
  overflow: inherit;
  max-width: 280px;
  margin: 0 auto;
}

.popup-opened .odds-calculator .calc-cards .card-wrap {
  margin: 5px 2.5px;
}

@media screen and (min-width: 576px) {
  .popup-opened .odds-calculator .calc-cards .card-wrap {
    margin: 6px 2%;
  }
}

.popup-opened .odds-calculator .calc-cards .suits {
  width: 100%;
  padding: 5px 25px 5px 35px;
  border: 1px solid #fff;
  margin: 19px 0;
  background-color: #0C4F93;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  position: relative;
}

.popup-opened .odds-calculator .calc-cards .suits .card-wrap {
  width: 33px;
}

.popup-opened .odds-calculator .calc-cards .suit-type {
  width: 100%;
  flex-flow: row wrap;
  float: left;
  margin: 0;
  background: none;
  border: none;
  position: static;
}

.popup-opened .odds-calculator .calc-cards .suit-type:before {
   width: 75px;
   height: 75px;
   line-height: 75px;
   font-size: 30px;
   top: -10px;
   left: -20px;
}

.popup-opened .odds-calculator .calc-cards .suit-type .type-space {
  margin: 5px 2.5px;
  width: 42px;
}

.popup-opened .odds-calculator .calc-cards .suit-type .card-wrap[data-suit][data-value] .card-value {
  justify-content: flex-start;
}

.popup-opened .odds-calculator .calc-cards .suit-type .card-suits {
  margin-top: 10px;
}

.popup-opened .odds-calculator .calc-cards .cards {
  width: 100%;
  min-height: 95px;
  border: 2px solid #66676D;
  padding: 10px;
  border-radius: 5px;
  overflow: visible;
  position: relative;
}

.popup-opened .odds-calculator .calc-cards .cards .card-wrap:last-child {
  margin-right: 22%;
}

.popup-opened .odds-calculator .cards {
  padding: 0;
}

.popup-opened .odds-calculator .flop,
.popup-opened .odds-calculator .turn,
.popup-opened .odds-calculator .river {
  float: left;
}

.popup-opened .odds-calculator .flop .text,
.popup-opened .odds-calculator .turn .text,
.popup-opened .odds-calculator .river .text {
  padding: 0 0 5px;
  color: #7891a4;
  font-weight: 700;
  font-size: 11px;
}

.popup-opened .odds-calculator .flop .empty,
.popup-opened .odds-calculator .turn .empty,
.popup-opened .odds-calculator .river .empty {
  background-color: #7891a4;
}

.popup-opened .odds-calculator .flop .card-wrap .card-suits,
.popup-opened .odds-calculator .turn .card-wrap .card-suits,
.popup-opened .odds-calculator .river .card-wrap .card-suits {
  margin-top: 15px;
}

.popup-opened .odds-calculator .flop {
  width: auto;
}

.popup-opened .odds-calculator .turn,
.popup-opened .odds-calculator .river {
  margin-left: 10px;
  width: 44px;
}

.odds-calculator {
  margin: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .odds-calculator {
    width: 100%;
    margin: 0;
  }
}

.odds-calculator .calculator {
  clear: both;
  position: relative;
  min-width: 300px;
  max-width: 950px;
  margin: 0 auto;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  background-color: #222533;
  border-radius: 10px 10px 0 0;
  overflow: initial;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calculator {
    overflow: auto;
  }
}

.odds-calculator .calculator p {
  line-height: 1;
  margin: 0;
}

.odds-calculator .calculator img {
  max-width: 100%;
}

.odds-calculator .calculator select {
  font-size: 13.33px;
}

.odds-calculator .calculator option {
  font-size: 11px;
}

.odds-calculator .calculator label {
  cursor: default;
}

.odds-calculator .calc-body {
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-body {
    padding: 0 40px;
  }
}

.odds-calculator .card {
  padding: 2px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .card {
  padding: 5px;
  }
}

.odds-calculator .popup_message {
  opacity: 0;
  transition: opacity 0.5s ease-in, top 0.5s ease-in-out;
  position: absolute;
  top: -85px;
  z-index: 999999999;
  left: calc(50% - 100px);
  color: #222533;
  max-width: 200px;
  text-align: center;
  width: 100%;
  max-height: 250px;
  padding: 15px;
  border: 1px solid #66676D;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.75);
  display: none;
}

.odds-calculator .popup_message .close {
  background-color: transparent;
  outline: 0;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0;
}

.odds-calculator .card-type-btns {
  list-style: none;
  position: relative;
  top: 5px;
  color: #fff;
  padding-left: 0;
  margin: 10px 0;
  display: none;
}

@media screen and (min-width: 768px) {
  .odds-calculator .card-type-btns {
    display: block;
  }
}

.odds-calculator .card-type-btns__title {
  font-weight: 700;
}

.odds-calculator .card-type-btns li {
  display: inline-block;
  position: relative;
  font-size: 13.33px;
  color: #fff;
}

.odds-calculator .card-type-btns .card-type-btn {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.odds-calculator .card-type-btns .card-type-btn.current {
  color: #F9D653;
  text-decoration: none;
}

.odds-calculator .card-type-btns .card-type-btn:hover {
  color: #F9D653;
  text-decoration: none;
}

.odds-calculator .calc-nav {
  background-color: transparent;
  font-size: 14px;
  line-height: 28px;
  height: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav {
    font-size: 20px;
    line-height: 34px;
    position: static;
    height: inherit;
  }
}

.odds-calculator .calc-nav:before {
  left: 0;
  box-shadow: -4px 0 0 4px #222533, 2px 0 6px 4px #222533;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav:before {
    box-shadow: none;
  }
}

.odds-calculator .calc-nav:after {
  right: 0;
  box-shadow: 4px 0 0 4px #222533, 0 0 6px 4px #222533;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav:after {
    box-shadow: none;
  }
}

.odds-calculator .calc-nav:before,
.odds-calculator .calc-nav:after {
  display: block;
  content: '';
  clear: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 0;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav:before,
  .odds-calculator .calc-nav:after {
    clear: both;
    display: table;
    position: static;
    z-index: auto;
    height: inherit;
  }
}

.odds-calculator .calc-nav .nav-box {
  display: none;
  position: relative;
  width: 72%;
  padding-bottom: 8px;
  float: left;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav .nav-box {
    padding: 8px 10px 8px 15px;
  }
}

.odds-calculator .calc-nav label {
  position: absolute;
  width: 89px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav label {
    position: static;
    width: auto;
  }
}

.odds-calculator .calc-nav .sel2 {
  padding-left: 90px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav .sel2 {
    padding: 0;
  }
}

.odds-calculator .calc-nav .sel1 {
  display: inline-block;
  width: 100%;
  max-width: calc(100% - 5px);
  z-index: 9999;
  vertical-align: top;
  padding-left: 90px;
  margin-left: 5px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav .sel1 {
    padding: 0;
    width: 250px;
    max-width: 36%;
    z-index: auto;
    margin: 0;
  }
}

.odds-calculator .calc-nav .sel1 .jq-selectbox {
  width: 100%;
}

.odds-calculator .calc-nav .players {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-nav .players {
    padding-left: 5%;
  }
}

.odds-calculator .game-type-menu {
  display: flex;
  max-width: 700px;
  justify-content: space-between;
  list-style: none;
  position: relative;
  overflow: auto;
  margin: 0;
  padding: 0 10px 10px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .game-type-menu {
    position: static;
    padding: 0;
    margin: 15px 0;
  }
}

.odds-calculator .game-type-menu__item {
  margin-left: 10px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .odds-calculator .game-type-menu__item {
    white-space: normal;
  }
}

.odds-calculator .game-type-menu__item:first-child {
  margin-left: 0;
}

.odds-calculator .game-type-menu a {
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #999BA3;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  user-select: none;
  display: block;
}

@media screen and (min-width: 768px) {
  .odds-calculator .game-type-menu a {
    font-size: 12px;
    line-height: 12px;
    padding: 5px;
  }

  .odds-calculator .game-type-menu a:hover {
    color: #F9D653;
    border-bottom: 1px solid #F9D653;
  }
}

.odds-calculator .game-type-menu a.active {
  color: #F9D653;
  border-bottom: 1px solid #F9D653;
}

.odds-calculator .popup-container {
  width: 100%;
  height: calc(var(--vh,1vh) * 100);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 98;
  overflow: auto;
}

.odds-calculator .popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8000;
  background-color: rgba(0, 0, 0, 0.6);
}

.odds-calculator .popup-tr {
  width: 100%;
  height: 100%;
  display: table;
}

.odds-calculator .popup-tr .popup-td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50%;
}

.odds-calculator .popup {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 8100;
  max-width: 100%;
  margin: 0;
  color: #fff;
  background-color: #222533;
  box-shadow: none;
  padding: 25px 20px;
  overflow: auto;
  height: calc(100% - 77px);
}

@media screen and (min-width: 768px) {
  .odds-calculator .popup {
    max-width: 86%;
    padding: 0;
    margin: 0 auto;
    overflow: inherit;
  }
}

.odds-calculator .popup .close {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 5px;
  width: 34px;
  height: 34px;
  background-color: #222533;
}

@media screen and (min-width: 768px) {
  .odds-calculator .popup .close {
    background: none;
  }
}

.odds-calculator .popup .cont {
  display: block;
  border-top: 2px solid #999BA3;
  padding-top: 25px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .popup .cont {
    border: none;
    padding: 0;
  }
}

.odds-calculator .popup .cards-block {
  text-align: center;
  line-height: 0;
}

.odds-calculator .popup .cards-block .card-wrap[data-suit][data-value] .card-suits {
  margin-top: 15px;
}

.odds-calculator .popup .cards-block .card-suits {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .popup .cards-block .card-suits {
    margin-top: 15px;
  }
}

.odds-calculator .popup .cards {
  width: auto;
  padding: 0 13px;
  display: inline-block;
  overflow: initial;
  line-height: 1;
  margin: 0 -10px 0 -6px;
  list-style: none;
}

.odds-calculator .popup .card-wrap {
  width: 38px;
  height: 57px;
  margin: 0 3px;
  float: left;
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  border: 2px solid transparent;
}

@media screen and (min-width: 768px) {
  .odds-calculator .popup .card-wrap {
    width: 46px;
    height: 69px;
    margin: 0 4px;
    background-color: #F6F6F8;
    border-radius: 2px;
    position: static;
    border: none;
  }
}

.odds-calculator .popup .btn-next-card {
  right: 0;
  top: 33%;
  display: inline-block;
  height: 30px;
  font-size: 12px;
  padding: 0;
  line-height: 14px;
  position: relative;
  margin: 10px 0;
  width: 100%;
  background-color: #373A46;
  border: 1px solid #999BA3;
  border-radius: 5px;
  color: #fff;
}

.odds-calculator .popup_message {
  opacity: 0;
  transition: opacity .5s ease-in, top .5s ease-in-out;
  position: absolute;
  top: -85px;
  z-index: 999999999;
  left: calc(50% - 100px);
  color: #222533;
  max-width: 200px;
  text-align: center;
  width: 100%;
  max-height: 250px;
  padding: 15px;
  border: 1px solid #999BA3;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.75);
  display: none;
}

.odds-calculator .popup_message .close {
  background-color: transparent;
  outline: 0;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0;
}

.odds-calculator .btn-randomize {
  z-index: 1;
  display: none;
  color: #E5E6E9;
  line-height: 1;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(51, 51, 51, 0.5);
  cursor: pointer;
  position: relative;
  right: 0;
  bottom: 0;
  height: 30px;
  background-color: #0C4F93;
  border: 1px solid transparent;
  font-size: 12px;
  border-radius: 5px;
  padding: 0 10px;
  width: calc(100% - 10px);
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .btn-randomize {
    right: 135px;
    bottom: 30px;
    position: absolute;
    width: auto;
    font-size: 14px;
    margin-bottom: 0;
  }
}

.odds-calculator .btn-randomize:hover {
  text-shadow: none;
  background-color: #248EC6;
  border-color: #248EC6;
}

.odds-calculator .btn-randomize span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .odds-calculator .btn-randomize span {
    vertical-align: baseline;
  }
}

.odds-calculator .btn-randomize span.icon {
  display: inline-block;
  float: left;
  width: 12px;
  height: 15px;
  background-color: #fff;
  color: #0C4F93;
  position: absolute;
  left: -22px;
  margin-left: 5px;
  top: -2px;
  line-height: 16px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .btn-randomize span.icon {
    position: relative;
    left: -5px;
    top: 0;
    line-height: 12px;
  }
}

.odds-calculator .reset {
  color: #E5E6E9;
  line-height: 16px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(51, 51, 51, 0.5);
  cursor: pointer;
  position: relative;
  right: 10px;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-color: #373A46;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  padding: 0;
  max-width: 100%;
  display: block;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .odds-calculator .reset {
    bottom: 20px;
    max-width: none;
    position: absolute;
    display: inline-block;
    width: 115px;
    margin: 15px auto 10px;
    font-size: 13px;
    line-height: 13px;
  }
}

.odds-calculator .reset:hover {
  text-shadow: none;
  background-color: #248EC6;
  border-color: #248EC6;
}

.odds-calculator .jq-selectbox {
  vertical-align: top;
  font-size: 16px;
  line-height: 34px;
}

.odds-calculator .jq-selectbox__select {
  padding: 5px 15px;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  text-shadow: none;
  border: 1px solid #fff;
  background-color: #373A46;
  border-radius: 5px;
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
  height: 34px;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .odds-calculator .jq-selectbox__select {
    font-size: 16px;
  }
}

.odds-calculator .jq-selectbox__select-text {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 20px;
  font-size: 9.6px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .jq-selectbox__select-text {
    height: auto;
    font-size: 13px;
  }
}

.odds-calculator .jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 100%;
  border: none;
}

.odds-calculator .jq-selectbox__trigger-arrow {
  right: 8px;
  border: 3px solid #fff;
  position: absolute;
  top: 14px;
  width: 0;
  height: 0;
  transform: rotate(45deg);
  padding: 3px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .odds-calculator .jq-selectbox__trigger-arrow {
    transform: rotate(0deg);
    padding: 0;
    display: block;
    border-top: 5px solid #999BA3;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
}

.odds-calculator .jq-selectbox__dropdown {
  font-style: italic;
  font-size: 13px;
  line-height: 23px;
  border-color: #7e9cb0;
  background-color: #667f90;
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
}

@media screen and (min-width: 768px) {
  .odds-calculator .jq-selectbox__dropdown {
    font-size: 16px;
    line-height: 26px;
  }
}

.odds-calculator .jq-selectbox__dropdown ul {
  padding: 0 3px;
}

.odds-calculator .jq-selectbox__dropdown li {
  margin-bottom: 2px;
  padding: 0 7px;
  color: #fff;
  border-radius: 8px;
  border: 1px solid transparent;
}

.odds-calculator .jq-selectbox__dropdown li.sel {
  color: #222533;
  background-color: #7891a3;
}

.odds-calculator .calc-header {
  overflow: hidden;
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  background-color: #0C4F93;
  padding: 10px 20px 3px;
  border-radius: 10px 10px 0 0;
  display: block;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-header {
    font-size: 27px;
    line-height: 32px;
    padding: 15px 40px;
    z-index: auto;
    position: static;
    display: flex;
  }
}

.odds-calculator .ttl {
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border-left: none;
  float: none;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .odds-calculator .ttl {
    font-size: 24px;
    float: left;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .ttl {
    font-size: 22px;
  }
}

.odds-calculator .calculator-logo {
  font-size: 13px;
  color: #99c8e0;
  float: none;
  line-height: 1;
  display: block;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calculator-logo {
    float: right;
  }
}

.odds-calculator .calculator-logo span {
  vertical-align: super;
  margin-right: 5px;
}

.odds-calculator .calculator-logo .fa-icon-logo-cc {
  font-size: 15px;
  vertical-align: super;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calculator-logo .fa-icon-logo-cc {
    font-size: 25px;
    vertical-align: baseline;
  }
}

.odds-calculator .calc-bot {
  padding: 9px 14px;
  color: #66676D;
  font-size: 13px;
  line-height: 26px;
  background-color: #E5E6E9;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot {
    padding: 11px 16px;
    font-size: 18px;
    line-height: 18px;
  }
}

.odds-calculator .calc-bot:after,
.odds-calculator .calc-bot:before {
   content: '';
   display: block;
   clear: both;
}

.odds-calculator .calc-bot .share {
  font-size: 13px;
  line-height: 30px;
  float: none;
  color: #66676D;
  margin: 0 auto 8px;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot .share {
    float: left;
    font-size: 18px;
    line-height: 36px;
    margin: 0;
    width: inherit;
  }
}

.odds-calculator .calc-bot .share:after {
   content: '';
   display: block;
   clear: both;
}

.odds-calculator .calc-bot .label {
  float: left;
  margin-right: 10px;
  padding-top: 2px;
  line-height: 28px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot .label {
    margin: 0;
    padding-top: 0;
    line-height: 30px;
  }
}

.odds-calculator .calc-bot .st_facebook_hcount,
.odds-calculator .calc-bot .st_twitter_hcount {
  float: left;
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot .st_facebook_hcount,
  .odds-calculator .calc-bot .st_twitter_hcount {
    margin-left: 15px;
  }
}

.odds-calculator .calc-bot .st_facebook_hcount .st-facebook-counter {
  background-color: #425596;
  background-image: none !important;
}

.odds-calculator .calc-bot .st_facebook_hcount .st-facebook-counter:before {
  background-position: -36px -40px;
}

.odds-calculator .calc-bot .st_facebook_hcount .stHBubble {
  background-color: #4f66b4;
}

.odds-calculator .calc-bot .st_facebook_hcount .stArrow:hover .stHBubble {
  background-color: #354682;
}

.odds-calculator .calc-bot .st_facebook_hcount .stArrow:hover .stHBubble:before {
   border-top-color: #4f66b4;
}

.odds-calculator .calc-bot .st_facebook_hcount .stArrow:before {
   border-top-color: #4f66b4;
}

.odds-calculator .calc-bot .st_facebook_hcount .stBubble_hcount {
  color: #fff;
}

.odds-calculator .calc-bot .st_twitter_hcount .st-twitter-counter {
  background-color: #47a0d4;
  background-image: none !important;
}

.odds-calculator .calc-bot .st_twitter_hcount .st-twitter-counter:before {
   background-position: -54px -40px;
}

.odds-calculator .calc-bot .st_twitter_hcount .stHBubble {
  background-color: #4eb5f2;
}

.odds-calculator .calc-bot .st_twitter_hcount .stArrow:hover .stHBubble {
  background-color: #358dc0;
}

.odds-calculator .calc-bot .st_twitter_hcount .stArrow:hover .stHBubble:before {
   border-top-color: #4eb5f2;
}

.odds-calculator .calc-bot .st_twitter_hcount .stArrow:before {
   border-top-color: #4eb5f2;
}

.odds-calculator .calc-bot .stButton {
  margin: 0;
  vertical-align: top;
  position: relative;
  z-index: 1;
  font-size: 11px;
  line-height: 16px;
}

#calculator.odds-calculator .calc-bot .stMainServices {
  position: relative;
  margin: 0;
  padding: 0;
  opacity: 1;
  vertical-align: top;
  border-radius: 4px 0 0 4px;
  width: 34px;
  height: 30px !important;
}

@media screen and (min-width: 768px) {
  #calculator.odds-calculator .calc-bot .stMainServices {
    width: 40px;
    height: 36px !important;
  }
}

.odds-calculator .calc-bot .stMainServices:before {
  background-image: url('../images/sprite.png');
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
}

.odds-calculator .calc-bot .stArrow {
  position: relative;
  width: 40px;
  height: 30px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  background: none !important;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot .stArrow {
    width: 52px;
    height: 36px;
  }
}

.odds-calculator .calc-bot .stArrow:before {
   top: 5px;
   left: 0;
   border: solid rgba(0, 0, 0, 0);
   content: " ";
   height: 0;
   width: 0;
   position: absolute;
   pointer-events: none;
   border-width: 8px 6px;
   margin-left: -6px;
}

.odds-calculator .calc-bot .stHBubble {
  display: block;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 0 4px 4px 0;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot .stHBubble {
    height: 36px;
  }
}

.odds-calculator .calc-bot .stBubble_hcount {
  height: 30px;
  padding: 0;
  font-size: 12px;
  line-height: 30px;
}

@media screen and (min-width: 768px) {
  .odds-calculator .calc-bot .stBubble_hcount {
    height: 36px;
    font-size: 14px;
    line-height: 36px;
  }
}

.odds-calculator .mob {
  display: none;
  float: right;
  color: #999ba3;
  font-size: 13px;
  line-height: 15px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .odds-calculator .mob {
    font-size: 15px;
    line-height: 17px;
  }
}

.odds-calculator .mob span {
  display: inline-block;
  max-width: 94px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .odds-calculator .mob span {
    max-width: 108px;
  }
}

.odds-calculator .share textarea {
  padding: 8px 12px;
  width: 100%;
  height: 110px;
  overflow: auto;
  resize: none;
  font-size: 13.33px;
}

@media (min-width: 768px) {
  .odds-calculator .skipped_player .empty {
    cursor: default;
  }

  .odds-calculator .skipped_player .card-wrap {
    opacity: 0.5;
  }
}

.odds-calculator .players-holder {
  border-top: 1px solid #fff;
  max-width: 350px;
  margin: 35px auto 0;
}
@media (min-width: 768px) {
  .odds-calculator .players-holder {
    border-top: none;
    max-width: none;
    margin: 0;
  }
}

.odds-calculator .players-holder .player-cards {
  font-size: 14px;
  position: relative;
  display: block;
  margin: 0;
  padding: 15px 0 15px 70px;
  color: #999ba3;
  line-height: 16px;
  text-align: center;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  font-weight: 700;
  border-spacing: 0;
}

.odds-calculator .players-holder .player-cards:before {
  counter-increment: players;
  content: counter(players) ".";
  display: inline-block;
  line-height: 50px;
  position: absolute;
  left: 45px;
}

.odds-calculator .players-holder .player-cards:after {
  display: block;
  clear: both;
  content: "";
}

@media (min-width: 768px) {
  .odds-calculator .players-holder .player-cards {
    text-align: left;
    font-weight: 300;
    position: absolute;
    padding: 0 0 4px;
    font-size: 20px;
    line-height: 19px;
    border-bottom: none;
    width: 13%;
    border-radius: 3px;
  }
  .odds-calculator .players-holder .player-cards:before {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .players-holder .player-cards {
    font-size: 17px;
  }
}

.odds-calculator .players-holder .player-cards .card-wrap:not(.active)[data-suit][data-value]:hover {
  background-color: #fff;
  border-color: transparent;
}

.odds-calculator .players-holder .player-cards:not(.skipped_player) .card-wrap:hover {
  background-color: rgba(237, 198, 33, 0.3);
  border-color: #f9d653;
}

.odds-calculator .players-holder .player-cards .card-value + .card-suits {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .odds-calculator .players-holder .player-cards .card-value + .card-suits {
    margin-top: 15px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .players-holder .player-cards .card-value + .card-suits {
    margin-top: 10px;
  }
}

.odds-calculator .players-holder .text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  padding: 5px 3px;
  letter-spacing: 0.5px;
  margin: 0;
  width: 60%;
  display: inline-block;
  position: relative;
  top: -3px;
  text-align: left;
}

@media (min-width: 768px) {
  .odds-calculator .players-holder .text {
    display: block;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .players-holder .text {
    padding-left: 2px;
    font-size: 11px;
    top: 0;
  }
}

.odds-calculator .remove-card {
  display: none;
  content: "";
  position: absolute;
  top: -9px;
  right: -9px;
  text-decoration: none;
  background-image: url('../images/imgpsh_fullsize.png');
  background-position: 0 0;
  background-size: cover;
  width: 23px;
  height: 23px;
}

.odds-calculator .chance-of-winning {
  padding: 6px 3px 0 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  clear: both;
  width: 60%;
  display: inline-block;
  text-align: left;
}

@media (min-width: 768px) {
  .odds-calculator .chance-of-winning {
    font-size: 16px;
    width: auto;
    line-height: 1;
    display: block;
    text-align: inherit;
    height: 0;
    white-space: nowrap;
  }
}

.odds-calculator .chance-of-winning.current-winner {
  color: #229e56;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .chance-of-winning {
    font-size: 12.5px;
  }
}

.odds-calculator .chance-of-tie {
  padding: 0 4px 0 3px;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  height: 0;
  color: #7891a4;
  width: 60%;
}

@media (min-width: 768px) {
  .odds-calculator .chance-of-tie {
    font-size: 16px;
    width: auto;
    line-height: 1;
    white-space: nowrap;
  }
}

.odds-calculator .chance-of-tie.current-tie {
  color: #229e56;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .chance-of-tie {
    font-size: 12.5px;
  }
}

.odds-calculator .remove_player {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  right: 1px;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .odds-calculator .remove_player {
    display: none;
  }
}

.odds-calculator .remove_player i {
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: #fff;
  box-sizing: content-box;
}

.odds-calculator .toggle_player {
  display: none;
  position: absolute;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  top: 5px;
  left: -15px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  outline: 0;
  color: #fff;
  font-size: 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .odds-calculator .toggle_player {
    display: block;
    background-color: #229e56;
    border: 1px solid #229e56;
  }
}

.odds-calculator .empty {
  background-color: #7891a4;
  position: relative;
  border-radius: 5px;
  border: 2px solid transparent;
}

.odds-calculator .empty:after {
  content: "";
  color: #fff;
  display: block;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 12px);
  width: 20px;
  text-align: center;
  height: 24px;
  background-image: url('../images/plus.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.odds-calculator .card-layer {
  position: absolute;
  width: 100%;
  bottom: 4%;
  left: 5.5%;
  z-index: 1;
}

.odds-calculator .card-wrap {
  float: left;
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid transparent;
  height: 50px;
}

@media (min-width: 768px) {
  .odds-calculator .card-wrap {
    min-height: 72px;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .card-wrap {
    min-height: 62px;
  }
}
.odds-calculator .card-wrap.empty {
  position: relative;
  border-radius: 5px;
  padding-bottom: 0;
  border: 2px solid transparent;
  background-color: #66676d;
}
@media (min-width: 768px) {
  .odds-calculator .card-wrap.empty {
    padding-bottom: 60%;
  }
}
.odds-calculator .card-wrap.active-empty {
  border-color: #f9d653;
  position: relative;
}
.odds-calculator .card-wrap.active {
  background-color: #999ba3 !important;
  border-color: #f9d653 !important;
}

.odds-calculator .card-value {
  color: #000;
  font-weight: 700;
  text-align: left;
}

.odds-calculator .card-suits {
  text-align: right;
}

.odds-calculator .calc-field {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  border: none;
  height: inherit;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field {
    border-top: 1px solid #999ba3;
  }
}

.odds-calculator .calc-field .card-wrap.active {
  position: relative;
}

.odds-calculator .calc-field .card-wrap.active .remove-card {
  display: block;
}

.odds-calculator .calc-field:not(.game3) .card-wrap,
.odds-calculator .calc-field:not(.game4) .card-wrap {
  width: 34px;
  margin: 0 1px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .card-wrap,
  .odds-calculator .calc-field:not(.game4) .card-wrap {
    width: 44.24%;
    margin: 0 2.8%;
  }
}

.odds-calculator .calc-field:not(.game3) .table-box,
.odds-calculator .calc-field:not(.game4) .table-box {
  top: 35%;
}

.odds-calculator .calc-field:not(.game3) .table-box .card-value + .card-suits,
.odds-calculator .calc-field:not(.game4) .table-box .card-value + .card-suits {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .table-box .card-value + .card-suits,
  .odds-calculator .calc-field:not(.game4) .table-box .card-value + .card-suits {
    margin-top: 15px;
  }
}

.odds-calculator .calc-field:not(.game3) .chance-of-tie,
.odds-calculator .calc-field:not(.game4) .chance-of-tie {
  position: relative;
  bottom: auto;
  text-align: left;
  display: inline-block;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .chance-of-tie,
  .odds-calculator .calc-field:not(.game4) .chance-of-tie {
    position: absolute;
    bottom: -15px;
    display: block;
    text-align: inherit;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field:not(.game3) .chance-of-tie,
  .odds-calculator .calc-field:not(.game4) .chance-of-tie {
    bottom: -12px;
  }
}

.odds-calculator .calc-field:not(.game3) .empty,
.odds-calculator .calc-field:not(.game4) .empty {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .empty,
  .odds-calculator .calc-field:not(.game4) .empty {
    padding-bottom: 60%;
  }
}

.odds-calculator .calc-field:not(.game3) .player1,
.odds-calculator .calc-field:not(.game4) .player1 {
  width: 100%;
  top: auto;
  left: 0;
  bottom: 7.3%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player1,
  .odds-calculator .calc-field:not(.game4) .player1 {
    width: 15%;
    left: 41%;
  }
}

@media (min-width: 992px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-wrap,
  .odds-calculator .calc-field:not(.game4) .player1 .card-wrap {
    min-height: 90px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-wrap,
  .odds-calculator .calc-field:not(.game4) .player1 .card-wrap {
    min-height: 74px;
  }
}

.odds-calculator .calc-field:not(.game3) .player1 .card-value,
.odds-calculator .calc-field:not(.game4) .player1 .card-value {
  font-size: 14px;
}
@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-value,
  .odds-calculator .calc-field:not(.game4) .player1 .card-value {
    padding: 3px 0 0;
  }
}

@media (min-width: 992px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-value,
  .odds-calculator .calc-field:not(.game4) .player1 .card-value {
    font-size: 30px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-value,
  .odds-calculator .calc-field:not(.game4) .player1 .card-value {
    padding: 0;
  }
}

.odds-calculator .calc-field:not(.game3) .player1 .card-value + .card-suits,
.odds-calculator .calc-field:not(.game4) .player1 .card-value + .card-suits {
  margin-top: 8px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-value + .card-suits,
  .odds-calculator .calc-field:not(.game4) .player1 .card-value + .card-suits {
    margin-top: 19px;
    font-size: 35px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field:not(.game3) .player1 .card-value + .card-suits,
  .odds-calculator .calc-field:not(.game4) .player1 .card-value + .card-suits {
    margin-top: 20px;
    font-size: 20px;
  }
}

.odds-calculator .calc-field:not(.game3) .player2,
.odds-calculator .calc-field:not(.game4) .player2 {
  top: auto;
  left: 0;
  bottom: 11%;
  margin-left: 1px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player2,
  .odds-calculator .calc-field:not(.game4) .player2 {
    margin: 0;
    left: 21.5%;
  }
}

.odds-calculator .calc-field:not(.game3) .player3,
.odds-calculator .calc-field:not(.game4) .player3 {
  left: 0;
  top: 51%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player3,
  .odds-calculator .calc-field:not(.game4) .player3 {
    left: 2%;
  }
}

.odds-calculator .calc-field:not(.game3) .player4,
.odds-calculator .calc-field:not(.game4) .player4 {
  left: 0;
  top: 15.2%;
  margin-left: 1px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player4,
  .odds-calculator .calc-field:not(.game4) .player4 {
    margin: 0;
    left: 2%;
  }
}

.odds-calculator .calc-field:not(.game3) .player5,
.odds-calculator .calc-field:not(.game4) .player5 {
  left: 0;
  top: -1%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player5,
  .odds-calculator .calc-field:not(.game4) .player5 {
    left: 21.5%;
  }
}

.odds-calculator .calc-field:not(.game3) .player6,
.odds-calculator .calc-field:not(.game4) .player6 {
  left: 0;
  margin-left: 1px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player6,
  .odds-calculator .calc-field:not(.game4) .player6 {
    margin: 0;
    left: 42.8%;
  }
}

.odds-calculator .calc-field:not(.game3) .player7,
.odds-calculator .calc-field:not(.game4) .player7 {
  left: 0;
  top: -1%;
  bottom: auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player7,
  .odds-calculator .calc-field:not(.game4) .player7 {
    left: 64%;
  }
}

.odds-calculator .calc-field:not(.game3) .player8,
.odds-calculator .calc-field:not(.game4) .player8 {
  right: 1%;
  top: 15.2%;
  margin-left: 1px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player8,
  .odds-calculator .calc-field:not(.game4) .player8 {
    margin: 0;
    right: 0;
  }
}

.odds-calculator .calc-field:not(.game3) .player9,
.odds-calculator .calc-field:not(.game4) .player9 {
  right: 0;
  top: 51%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field:not(.game3) .player9,
  .odds-calculator .calc-field:not(.game4) .player9 {
    right: 1%;
  }
}

.odds-calculator .calc-field.game3 .chance-of-winning,
.odds-calculator .calc-field.game3 .field-container-out,
.odds-calculator .calc-field.game4 .chance-of-winning,
.odds-calculator .calc-field.game4 .field-container-out {
  position: relative;
}

.odds-calculator .calc-field.game3 .empty,
.odds-calculator .calc-field.game4 .empty {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .card-wrap,
  .odds-calculator .calc-field.game3 .player1 .card-wrap,
  .odds-calculator .calc-field.game4 .card-wrap,
  .odds-calculator .calc-field.game4 .player1 .card-wrap {
    min-height: 61px;
  }
}

.odds-calculator .calc-field.game3 .player1 .card-wrap .card-value,
.odds-calculator .calc-field.game4 .player1 .card-wrap .card-value {
  padding: 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player1 .card-wrap .card-value,
  .odds-calculator .calc-field.game4 .player1 .card-wrap .card-value {
    font-size: 20px;
  }
}

.odds-calculator .calc-field.game3 .player1 .card-wrap .card-value + .card-suits,
.odds-calculator .calc-field.game4 .player1 .card-wrap .card-value + .card-suits {
  margin-top: 10px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player1 .card-wrap .card-value + .card-suits,
  .odds-calculator .calc-field.game4 .player1 .card-wrap .card-value + .card-suits {
    margin-top: 6px;
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .field-picture .cart-icon-svg.left {
    left: 20%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .field-picture .cart-icon-svg.right {
    right: 20%;
  }
}

.odds-calculator .calc-field.game3 .table-box {
  top: 38%;
}

.odds-calculator .calc-field.game3 .remove_player {
  top: 10px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 576px) {
  .odds-calculator .calc-field.game3 .remove_player {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.odds-calculator .calc-field.game3 .chance-of-winning {
  bottom: auto;
  width: 45%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .chance-of-winning {
    width: auto;
    bottom: -45px;
  }
}

.odds-calculator .calc-field.game3 .chance-of-tie {
  width: 45%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .chance-of-tie {
    width: auto;
  }
}

.odds-calculator .calc-field.game3 .card-layer {
  position: static;
  width: auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .card-layer {
    position: absolute;
    width: 100%;
  }
}

.odds-calculator .calc-field.game3 .empty {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .empty {
    background-color: #66676d;
    padding-bottom: 30%;
  }
}

.odds-calculator .calc-field.game3 .player-cards {
  width: 100%;
  padding-bottom: 5.506%;
  padding-left: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game3 .player-cards {
    width: 22.5%;
    padding-bottom: 2.5%;
  }
}

@media (min-width: 992px) {
  .odds-calculator .calc-field.game3 .player-cards {
    width: 20.5%;
  }
}

.odds-calculator .calc-field.game3 .player-cards:before {
  display: none;
}

.odds-calculator .calc-field.game3 .card-wrap {
  width: 34px;
  margin: 0 0 0 3px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game3 .card-wrap {
    width: 32px;
    margin: 0 1%;
  }
}

@media (min-width: 992px) {
  .odds-calculator .calc-field.game3 .card-wrap {
    width: 37px;
    margin: 0 1.6%;
  }
}

.odds-calculator .calc-field.game3 .text {
  width: 100%;
}

.odds-calculator .calc-field.game3 .player1 {
  left: 0;
  bottom: 10%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player1 {
    left: 39.5%;
  }
}

.odds-calculator .calc-field.game3 .player2 {
  bottom: 10%;
  left: 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player2 {
    left: 14%;
  }
}

.odds-calculator .calc-field.game3 .player3 {
  top: auto;
  left: 0;
  bottom: 45%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player3 {
    left: 15px;
  }
}

.odds-calculator .calc-field.game3 .player4 {
  top: -1%;
  left: 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player4 {
    left: 21%;
  }
}

.odds-calculator .calc-field.game3 .player5 {
  left: 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player5 {
    left: 44.5%;
  }
}

.odds-calculator .calc-field.game3 .player6 {
  left: 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player6 {
    left: 69%;
  }
}

.odds-calculator .calc-field.game3 .player7 {
  left: auto;
  right: 0;
  top: 30%;
  bottom: auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player7 {
    right: -1%;
  }
}

.odds-calculator .calc-field.game3 .player8 {
  left: 0;
  bottom: 10%;
  top: auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game3 .player8 {
    left: 64%;
  }
}

.odds-calculator .calc-field.game4 .table-box {
  top: 35%;
}

.odds-calculator .calc-field.game4 .chance-of-winning {
  bottom: auto;
  width: 40%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .chance-of-winning {
    bottom: 3px;
    width: auto;
  }
}

.odds-calculator .calc-field.game4 .chance-of-tie {
  position: relative;
  bottom: auto;
  width: 40%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .chance-of-tie {
    bottom: -13px;
    width: auto;
  }
}

.odds-calculator .calc-field.game4 .empty {
  padding-bottom: 0;
}

.odds-calculator .calc-field.game4 .text {
  width: 36%;
}

@media (min-width: 576px) and (max-width: 768px) {
  .odds-calculator .calc-field.game4 .text {
    width: 40%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .text {
    width: 100%;
  }
}

.odds-calculator .calc-field.game4 .player-cards {
  width: 100%;
  padding-left: 15px;
  padding-bottom: 15px;
}

@media (min-width: 576px) and (max-width: 768px) {
  .odds-calculator .calc-field.game4 .player-cards {
    padding-left: 35px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player-cards {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player-cards {
    width: 20%;
    padding-left: 0;
  }
}

.odds-calculator .calc-field.game4 .player-cards:before {
  left: 0;
}

@media (min-width: 576px) and (max-width: 768px) {
  .odds-calculator .calc-field.game4 .player-cards:before {
    left: 20px;
  }
}

.odds-calculator .calc-field.game4 .card-wrap {
  width: 34px;
  margin: 0 2.5% 0 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .card-wrap {
    width: 22%;
  }
}

.odds-calculator .calc-field.game4 .player1 {
  top: auto;
  left: 0;
  bottom: 7.3%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player1 {
    top: 69%;
    left: 53%;
  }
}

.odds-calculator .calc-field.game4 .player2 {
  top: auto;
  left: 0;
  bottom: 11%;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player2 {
    left: 21.5%;
  }
}

@media (min-width: 993px) {
  .odds-calculator .calc-field.game4 .player2 {
    top: 69%;
    left: 26%;
  }
}

.odds-calculator .calc-field.game4 .player3 {
  left: 0;
  top: 51%;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player3 {
    left: 2%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player3 {
    top: 48%;
    left: 15px;
  }
}

.odds-calculator .calc-field.game4 .player4 {
  left: 0;
  top: 15.2%;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player4 {
    left: 2%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player4 {
    top: 19.5%;
    left: 15px;
  }
}

.odds-calculator .calc-field.game4 .player5 {
  left: 0;
  top: -1%;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player5 {
    left: 21.5%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player5 {
    left: 18.5%;
  }
}

.odds-calculator .calc-field.game4 .player6 {
  left: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player6 {
    left: 42.8%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player6 {
    left: 41.2%;
  }
}

.odds-calculator .calc-field.game4 .player7 {
  left: 0;
  top: -1%;
  bottom: auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player7 {
    left: 64%;
  }
}

.odds-calculator .calc-field.game4 .player8 {
  right: 0;
  top: 15.2%;
  left: auto;
  bottom: auto;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player8 {
    right: 1%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player8 {
    right: -1%;
    top: 19.5%;
  }
}

.odds-calculator .calc-field.game4 .player9 {
  right: 0;
  top: 51%;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-field.game4 .player9 {
    right: 1%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field.game4 .player9 {
    right: -1%;
    top: 48%;
  }
}

.odds-calculator .calc-field .field-container-out {
  margin: 0 2px;
  padding: 0;
  border: none;
}

.odds-calculator .calc-field .field-container {
  position: relative;
  overflow: initial;
  padding: 0;
  margin-bottom: 3%;
  margin-top: 2%;
  text-align: center;
  z-index: 0;
  counter-reset: players;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-container {
    padding: 8% 4.5% 13%;
    counter-reset: none;
  }
}

.odds-calculator .calc-field .field-container .player6 {
  top: -1%;
  bottom: auto;
}

.odds-calculator .calc-field .field-container .player9 {
  left: auto;
}

.odds-calculator .calc-field .field-container .player10 {
  top: auto;
  bottom: 11%;
  left: 0;
  margin-left: 1px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-container .player10 {
    margin: 0;
    left: 64%;
  }
}

.odds-calculator .calc-field .add_player_btn_wrapper {
  display: block;
  width: 100%;
  margin: 20px auto;
  text-align: left;
  padding: 0;
  max-width: 350px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .add_player_btn_wrapper {
    display: none;
  }
}

.odds-calculator .calc-field .add_player_btn_wrapper .add_player {
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  color: #fff;
}

.odds-calculator .calc-field .add_player_btn_wrapper i {
  font-size: 10px;
}

.odds-calculator .calc-field .table-box {
  position: static;
  left: 0;
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  max-width: 300px;
  top: 4%;
  margin: -120px auto 0;
  padding: 8px 10px 25px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box {
    position: absolute;
    left: 50%;
    width: 45.92%;
    -webkit-transform: translateX(-44%);
    transform: translateX(-44%);
    max-width: none;
    top: auto;
    margin: 0;
    padding: 0;
    overflow: auto;
  }
}

.odds-calculator .calc-field .table-box .flop .card-wrap[data-suit][data-value]:hover,
.odds-calculator .calc-field .table-box .river .card-wrap[data-suit][data-value]:hover,
.odds-calculator .calc-field .table-box .turn .card-wrap[data-suit][data-value]:hover {
  background-color: #fff;
  border-color: transparent;
}

.odds-calculator .calc-field .table-box .flop {
  width: 111px;
  margin-right: 45px;
  float: left;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 576px) and (max-width: 768px) {
  .odds-calculator .calc-field .table-box .flop {
    margin-right: 70px;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box .flop {
    width: 47.28%;
    margin-right: 0;
  }
}

.odds-calculator .calc-field .table-box .flop .card-wrap {
  padding-bottom: 35%;
  border: 2px solid transparent;
  margin: 0 3px 0 0;
  height: 50px;
  width: 34px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box .flop .card-wrap {
    margin: 0 1.5%;
    height: 0;
    width: 26.45%;
  }
}

.odds-calculator .calc-field .table-box .flop .card-wrap.empty {
  background-color: #7891a4;
}

.odds-calculator .calc-field .table-box .flop .card-wrap.active-empty {
  border-color: #f9d653;
}

.odds-calculator .calc-field .table-box .turn {
  width: 36px;
  float: left;
  margin-left: 15px;
  margin-right: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box .turn {
    width: 12.9%;
    margin-left: 4.6%;
  }
}

.odds-calculator .calc-field .table-box .turn .card-wrap {
  width: 100%;
}

.odds-calculator .calc-field .table-box .turn .card-wrap.active-empty {
  border-color: #f9d653;
}

.odds-calculator .calc-field .table-box .turn .card-wrap.empty {
  padding-bottom: 0;
  background-color: #7891a4;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box .turn .card-wrap.empty {
    padding-bottom: 120.38%;
  }
}

#calculator.odds-calculator .calc-field .table-box .river {
  width: 36px;
  float: left;
  margin-left: 4%;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  #calculator.odds-calculator .calc-field .table-box .river {
    width: 12.9%;
    margin-left: 4.6%;
  }
}

.odds-calculator .calc-field .table-box .river .card-wrap {
  width: 100%;
  border: 2px solid transparent;
}

.odds-calculator .calc-field .table-box .river .card-wrap.empty {
  padding: 0;
  background-color: #7891a4;
}

.odds-calculator .calc-field .table-box .river .card-wrap.active-empty {
  border-color: #f9d653;
}

.odds-calculator .calc-field .table-box .card-wrap {
  width: 26.45%;
  margin: 0 1.5%;
  float: left;
  cursor: pointer;
  min-height: auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box .card-wrap {
    min-height: 72px;
    font-size: 20px;
  }
}

.odds-calculator .calc-field .table-box .card-wrap:hover {
  background-color: rgba(237, 198, 33, 0.3);
  border-color: #f9d653;
}

.odds-calculator .calc-field .table-box .text {
  padding: 0 0 5px;
  font-size: 11px;
  overflow: visible;
  color: #7891a4;
  font-weight: 700;
  order: -1;
  width: 100%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .table-box .text {
    font-size: 12px;
    width: 90%;
  }
}

.odds-calculator .calc-field .field-picture {
  background-color: #0c4f93;
  width: 100%;
  height: 140px;
  max-width: 350px;
  border-radius: 175px;
  border: 5px solid transparent;
  background-clip: padding-box;
  position: relative;
  margin: 10px auto 0;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-picture {
    height: 300px;
    max-width: none;
    margin: 0;
  }
}

.odds-calculator .calc-field .field-picture:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3px;
  border-radius: inherit;
  background-color: #7c7e86;
}

.odds-calculator .calc-field .field-picture .cart-icon-svg {
  position: absolute;
  top: calc(50% - 15px);
  margin: 0;
  color: #7891a4;
  font-size: 30px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-picture .cart-icon-svg {
    top: calc(50% - 23px);
    font-size: 55px;
  }
}

.odds-calculator .calc-field .field-picture .cart-icon-svg.left {
  left: calc(50% - 15px);
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-picture .cart-icon-svg.left {
    left: 13%;
  }
}

.odds-calculator .calc-field .field-picture .cart-icon-svg.right {
  right: 13%;
  display: none;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-picture .cart-icon-svg.right {
    display: block;
  }
}

.odds-calculator .calc-field .field-picture .text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 5px;
  color: #7891a4;
  font-size: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-field .field-picture .text {
    padding-bottom: 10%;
    font-size: 16px;
  }
}

.odds-calculator .calc-cards {
  position: relative;
  border-radius: 10px 10px 0 0;
  display: none;
  overflow: hidden;
  background-color: #4d5b6b;
  border: 2px solid #999ba3;
  border-bottom: transparent;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards {
    display: block;
  }
}

.odds-calculator .calc-cards.all-cards {
  background: none;
  border: none;
  overflow: inherit;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards.all-cards {
    overflow: visible;
    margin: 0;
  }
}

.odds-calculator .calc-cards.all-cards .suits {
  display: flex;
  width: 100%;
  padding: 5px 25px 5px 35px;
  border: 1px solid #fff;
  margin: 19px 0;
  background-color: #0c4f93;
  border-radius: 5px;
  position: relative;
  justify-content: center;
  transition: background-color 0.5s, border-color 0.5s;
  font-size: 22px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards.all-cards .suits {
    display: none;
  }
}

.odds-calculator .calc-cards.all-cards .cards {
  padding: 10px;
  width: 100%;
  overflow: visible;
  line-height: 0;
  position: relative;
  clear: both;
  float: left;
  transition: background-color 0.5s;
  border-radius: 5px;
  min-height: 95px;
  border: 2px solid #999ba3;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards.all-cards .cards {
    padding: 0;
    overflow: inherit;
    position: static;
    clear: none;
    float: none;
    border-radius: 0;
    min-height: inherit;
    border: none;
  }
}

.odds-calculator .calc-cards.all-cards .card-wrap {
  margin: 5px 0 5px 4px;
  width: 17.5%;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-cards.all-cards .card-wrap {
    margin: 5px 0 5px 3px;
  }
}

.odds-calculator .calc-cards .suits {
  width: 26%;
  padding: 13px 0;
  float: left;
}

.odds-calculator .calc-cards .suits .card-wrap[data-suit][data-value] .card-suits {
  padding: 0;
}

.odds-calculator .calc-cards .suits .card-wrap[data-suit] .card-suits {
  padding: 12px 0;
  text-align: center;
}

.odds-calculator .calc-cards .suits .card-wrap {
  width: 16.1%;
  margin-left: 4.4%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards .suits .card-wrap:first-child {
    margin-left: 15%;
  }
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards .card-wrap {
    min-height: inherit;
  }
}

.odds-calculator .calc-cards .cards {
  width: auto;
  margin: 0;
  padding: 13px 0;
  overflow: hidden;
  border-left: 2px solid transparent;
  list-style: none;
}

.odds-calculator .calc-cards .cards .card-wrap[data-suit][data-value] .card-value {
  padding: 0;
  text-align: left;
}

.odds-calculator .calc-cards .cards .card-wrap[data-value] .card-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  font-size: 20px;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards .cards .card-wrap[data-value] .card-value {
    padding: 12px 0;
    font-size: 16px;
    display: block;
  }
}

.odds-calculator .calc-cards .suit-type {
  background-color: #4d5b6b;
  position: relative;
  border-radius: 10px 10px 0 0;
  border: 2px solid #999ba3;
  border-bottom: transparent;
  width: 23%;
  float: none;
  clear: both;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin: 0 1%;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards .suit-type {
    display: inline-block;
  }
}

.odds-calculator .calc-cards .suit-type:before {
  content: "";
  font-family: FontAwesome !important;
  display: inline-block;
  position: absolute;
  left: -15px;
  border: 2px solid #999ba3;
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 25px;
  border-radius: 50%;
  top: 5px;
  background-color: #e5e6e9;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-cards .suit-type:before {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
  }
}

.odds-calculator .calc-cards .suit-type.h:before {
  content: "\e903";
  color: #df4040;
}

.odds-calculator .calc-cards .suit-type.d:before {
  content: "\e904";
  color: #df4040;
}

.odds-calculator .calc-cards .suit-type.c:before {
  color: #000;
  content: "\e901";
}

.odds-calculator .calc-cards .suit-type.s:before {
  color: #000;
  content: "\e902";
}

.odds-calculator .calc-cards .suit-type .type-space {
  float: left;
  margin: 5px 0 5px 4px;
  width: 17.5%;
}

.odds-calculator .calc-cards .card-wrap {
  width: 42px;
  float: left;
  margin: 6px 2%;
  border-radius: 7px;
  border: 2px solid transparent;
}

@media (min-width: 768px) {
  .odds-calculator .calc-cards .card-wrap {
    width: 5.55%;
    margin-left: 1.75%;
    margin-right: 0;
  }
}

.odds-calculator .calc-cards .card-wrap:nth-child(13n + 1) {
  clear: none;
}

.odds-calculator .calc-cards .card-wrap.disabled:hover {
  border-color: transparent;
}

.odds-calculator .calc-cards .card-wrap:hover {
  padding: 0;
  border: 2px solid #f9d653;
}

.odds-calculator .calc-cards .card-wrap.disabled {
  border: 2px solid transparent;
}

.odds-calculator .calc-cards .card-wrap.disabled .card {
  cursor: default;
  background-color: #999ba3;
}

.odds-calculator .calc-cards .card-wrap.active .card {
  background-color: #999ba3;
}

.odds-calculator .calc-cards .card {
  position: relative;
  cursor: pointer;
  background-color: #f6f6f8;
  border-radius: 5px;
  min-height: 53px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-cards .card {
    padding: 3px;
    min-height: 45px;
    font-size: 14px;
  }
}

.odds-calculator .calc-cards .card-value {
  padding: 0;
}

.odds-calculator .calc-cards .card-suits {
  width: 100%;
}

.odds-calculator .calc-cards .card-value + .card-suits {
  margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .odds-calculator .calc-cards .card-value + .card-suits {
    margin-top: 8px;
  }
}
